@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Noto+Sans+Devanagari:wght@400;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: Conthrax-bold;
    src: url(Conthrax-Font/Conthrax\ Bold.otf);
}

@font-face {
    font-family: Conthrax-light;
    src: url(Conthrax-Font/Conthrax\ Light.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Poppins';
}

:root {
    /* Theme: Light Indian Heritage x Innovation */
    --body-color: #F9FAFB;
    /* Light/Off-White Background */
    --prim-color: #FF9933;
    /* Saffron */
    --sec-color: #138808;
    /* India Green */
    --accent-blue: #000080;
    /* Navy Blue */
    --gold-accent: #FFD700;

    /* Gradients */
    --gradient-color: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    /* Tricolor Gradient - Keeps White center for cleanliness */

    --text-gradient: linear-gradient(90deg, #FF9933 0%, #000080 50%, #138808 100%);
    /* Text Gradient - Swapped White center for Navy to be visible on white bg */

    --btn-gradient: linear-gradient(135deg, #FF9933 0%, #FF7B02 100%);
    --sec-gradient-color: linear-gradient(135deg, #138808 0%, #25D366 100%);

    --white-color: #ffffff;
    /* Pure White for cards/containers */
    --black-color: #000000;
    --light-border: rgba(0, 0, 128, 0.1);
    /* Navy tint border */
    --light-text: #4B5563;
    /* Dark Gray for reading */
    --extra-light-text: #9CA3AF;
    /* Medium Gray */

    --Kaushan-font: "Kaushan Script", serif;
    --Conthrax-bold: Conthrax-bold;
    --Conthrax-light: Conthrax-light;

    --transition: .3s;
    --transition2: .6s;
}


/* CUSTOM CURSOR */

.cursor {
    display: none;
}

.cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    background-color: var(--prim-color);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 6;
    transition: var(--transition);
    transition-property: opacity, transform;
}

body:hover .cursor {
    opacity: 0.5;
}

body .cursor.hovered {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.75;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--prim-color);
    border-radius: 10px;
}

img {
    width: 100%;
    height: 100%;
}

section {
    width: 100%;
    padding: 5% 12%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    width: 100vw;
    background-color: var(--body-color) !important;
    overflow-x: hidden; /* Check if this causes sticky header issues */
    color: var(--light-text) !important; /* Fixed: Text should be dark on light theme */
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    header {
        overflow-x: hidden;
    }
    
    .circular-carousel-container {
        overflow: hidden;
    }
    
    .circular-carousel {
        overflow: visible;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 38px;
    bottom: 48px;
    z-index: 996;
    background: var(--prim-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.back-to-top i {
    font-size: 20px;
    color: var(--white-color);
    line-height: 0;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--text-gradient);
}

.back-to-top:hover i {
    transform: scale(1.2) translateY(-5px);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/* NAV */
nav {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
    background: none;
    transition: all 0.4s ease;
    z-index: 99999;
    position: relative;
    isolation: isolate;
    pointer-events: auto;
}
/* Ensure nav and all its links/buttons stay clickable on every page */
#main-nav a,
#main-nav button,
#main-nav .bars,
nav .menu li a,
nav .logo a {
    pointer-events: auto !important;
}

nav.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0 5%;
    animation: slideDown 0.5s ease forwards;
    margin: 0;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.logo a {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--Kaushan-font);
    color: var(--white-color);
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    margin-left: -10%;
    margin-top: 3%;
    width: 100%;
    height: 105px;
    object-fit: contain;
    /* Ensures the image fits properly */
    position: relative;
    z-index: 1;
}

.logo img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 39, 255, 0.5);
    /* Primary color with transparency */
    mix-blend-mode: multiply;
    /* Blends the overlay with the image */
    z-index: -1;
    /* Puts the overlay behind the image */
}


.logo a span {
    font-family: var(--Kaushan-font);
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 5%;
}

.menu li a {
    position: relative;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: none;
    transition: color var(--transition);
    /* Smooth color transition */
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Adjust spacing between the link and the line */
    left: 0;
    width: 0%;
    height: 2px;
    /* Line thickness */
    background-color: var(--prim-color);
    transition: width 0.3s ease;
    /* Controls the animation timing */
}

.menu li:hover a {
    color: var(--prim-color);
}

.menu li a:hover::after {
    width: 100%;
    /* Expand the line fully on hover */
}

.v1 {
    display: none;
}

.nav_btns {
    align-items: center;
    gap: 20px;
}

.about_btn {
    width: 280px !important;
}

.v2 {
    display: flex;
}

.nav_btns i {
    font-size: 1.3rem;
    color: var(--white-color);
    transition: var(--transition);
}

.nav_btns i:hover {
    color: var(--prim-color);
    cursor: pointer;
}

button {
    width: 180px !important;
    height: 35px !important;
    border-radius: 5px !important;
    background: var(--btn-gradient) !important;
    background-size: 200% 200% !important;
    color: var(--white-color) !important;
    border: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    position: relative !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    font-family: var(--Conthrax-light) !important;
    font-weight: 600 !important;
    padding: 0 3px !important;
}

button::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 106% !important;
    height: 46px !important;
    border-radius: 5px !important;
    border: 1px solid var(--light-border) !important;
    background: linear-gradient(89.96deg, rgba(255, 255, 255, 0.05) 0.03%, rgba(255, 255, 255, 0.08) 49.67%, rgba(255, 255, 255, 0.05) 99.96%) !important;
}

button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 0% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0px, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0)) !important;
    background-size: 150% 150% !important;
    transition: var(--transition2) !important;
}

button:hover::before {
    width: 100% !important;
    
    left: auto !important;
    right: 0 !important;
}

nav button {
    margin-left: 10%;
}

.bars {
    display: none;
}

/* HERO */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Changed from center to flex-start to align top */
    gap: 50px;
    position: relative;
    z-index: 5;
    padding-top: 120px; /* Increased top padding to prevent carousel overlap with header (nav is 100px) */
    margin-top: 0; /* Reset margin */
    min-height: 600px; /* Ensure enough space for carousel */
}

.hero_shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 46%, rgba(92, 39, 255, 0.3) 100%);
    filter: blur(10px);
    z-index: -1;
}

.hero_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
}

.hero_content .button-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero_content h1 {
    font-size: 3.2rem;
    line-height: 3.5rem;
    font-family: Conthrax-bold;
}

.hero_content h3 {
    min-height: 1.4em;
    line-height: 1.5;
    margin: 8px 0;
    display: block;
}

.hero_content h3 span {
    font-size: 1.1rem;
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Conthrax-bold;
}

.hero-tagline {
    font-size: 0.95rem;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    color: var(--light-text) !important;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* .brandSwiper {
    width: 100%;
    margin-top: 50px;
}

.brandSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brandSwiper .swiper-slide:hover img {
    cursor: pointer;
} */

.hero_img {
    padding-bottom: 12px;
    padding-top: 60px; /* Increased top padding to prevent overlap with header */
    width: 38%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Ensure carousel is visible */
    margin-top: 20px; /* Additional top margin */
}

.hero_img img {
    width: 100%;
    border-radius: 100px;
    z-index: 3;
    position: relative;
}

.hero_img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero_img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.img_box {
    position: absolute;
    top: 1%;
    left: 60%;
    padding: 8px;
    width: 250px;
    border-radius: 20px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: Anim_LR 5s infinite linear;
    z-index: 4;
}

.img_box img {
    width: 60px;
    height: 60px;
}

.box_info {
    display: flex;
    flex-direction: column;
}

.box_info h2 {
    color: var(--black-color);
    font-size: 0.8rem;
    font-family: var(--Conthrax-bold);

}

.box_info h5 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black-color);
}

.img_box2 {
    width: 300px;
    top: 86%;
    left: -30%;
    animation: Anim_TB 5s infinite linear;
    z-index: 4;
}

.button-container button {
    width: 200px;
}

.about_imgs .play-btn,
.hero_content .play-btn {
    width: 80px;
    height: 80px;
    background: radial-gradient(#5c27ff 50%, rgba(101, 111, 150, 0.15) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.about_imgs .play-btn::after,
.hero_content .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about_imgs .play-btn::before,
.hero_content .play-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid rgba(163, 163, 163, 0.4);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about_imgs .play-btn:hover::after,
.hero_content .play-btn:hover::after {
    border-left: 15px solid #5c27ff;
    transform: scale(20);
}

.about_imgs .play-btn:hover::before,
.hero_content .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

/* Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-family: var(--Conthrax-bold);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.5rem;
    color: var(--white-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    width: 80px;
}

.time-box span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--prim-color);
    /* Tomato color (Change to your color preference) */
}

.time-box span:last-child {
    font-size: 0.9rem;
    color: #ccc;
}

/* Event Started Styles */
.event-started {
    text-align: center;
    font-size: 2rem;
    font-family: var(--Conthrax-bold);
    color: var(--prim-color);
    margin-top: 50px;
    font-weight: bold;
}

/* ABOUT */
.about {
    gap: 80px;
    position: relative;
}

.bg_shape {
    position: absolute;
    top: 60%;
    right: 0;
    width: 700px;
    height: 700px;
    background-color: var(--prim-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
}

.about_imgs {
    width: 40%;
    z-index: 1;
    position: relative;
}

.about_img_shape {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
}

.about_img_shape1 {
    top: 30%;
    left: 4%;
    animation: Anim_TB 5s infinite linear;
}

.about_img_shape2 {
    top: 60%;
    left: 3%;
    width: 230px;
    height: 230px;
    animation: Anim_mini_TB 5s 0.2s infinite linear !important;
    z-index: -1;
}

.about_img_shape3 {
    width: 80px;
    height: 80px;
    top: 83%;
    left: 22%;
    animation: Anim_mini_TB 5s 0.4s infinite linear !important;
}

.about_img_shape4 {
    top: 72%;
    left: 32%;
    width: 180px;
    height: 180px;
    animation: Anim_mini_LR 5s 0.6s infinite linear !important;
    z-index: 5;
}

.about_imgs img {
    width: 100%;
    object-fit: contain;
    border-radius: 100px;
    position: relative;
}

.about_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.Headings {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 25px 0;
}

.Headings h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    border: 1px solid --light-border;
    border-radius: 50px;
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    font-family: var(--Conthrax-bold);
    font-weight: 400;
    font-size: 1rem;
    background-clip: text;
    position: relative;
}

.Headings h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.96deg, rgba(255, 255, 255, 0.05) 0.03%, rgba(255, 255, 255, 0.08) 49.67%, rgba(255, 255, 255, 0.05) 99.96%);
    border-radius: 50px;
}

.Headings h1 {
    font-size: 3rem;
    line-height: 4.5rem;
    font-family: var(--Conthrax-bold);
    font-weight: 300;
}

.about_content p {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 500;
    margin: 10px 0;
}

.about_content button {
    margin-top: 10px;
    width: 200px;
}

.about_imgs .play-btn {
    position: absolute;
    top: 42%;
    left: 38%;
    z-index: 999;
}

/* SWADESHI THEME PILLARS */
.swadeshi-theme {
    flex-direction: column;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.swadeshi-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 153, 51, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(19, 136, 8, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 128, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.swadeshi-theme .Headings {
    position: relative;
    z-index: 1;
}

.swadeshi-theme .Headings p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 10px;
    font-weight: 500;
}

.swadeshi-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.swadeshi-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-border);
    transition: all 0.4s ease;
}

.swadeshi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 153, 51, 0.15);
    border-color: rgba(255, 153, 51, 0.3);
}

.swadeshi-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swadeshi-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.swadeshi-card:hover .swadeshi-card-img img {
    transform: scale(1.08);
}

.swadeshi-card-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-family: var(--Conthrax-bold);
    font-size: 1.2rem;
}

.swadeshi-card-fallback i {
    font-size: 3.5rem;
    opacity: 0.95;
}

.swadeshi-card-content {
    padding: 24px 20px;
}

.swadeshi-card-content h2 {
    font-family: var(--Conthrax-bold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.swadeshi-card-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .swadeshi-pillars {
        grid-template-columns: 1fr;
    }
}

/* CIRCULAR ROTATING IMAGE CAROUSEL */
.circular-carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
    z-index: 3;
    margin-top: 0; /* Reset margin, padding handled by parent */
    padding-top: 40px; /* Add top padding to prevent header overlap */
    overflow: visible; /* Allow carousel to be visible */
}

.circular-carousel {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 0 auto;
    z-index: 3;
    margin-top: 0; /* Ensure no extra top margin */
    padding-top: 20px; /* Add padding to prevent top overflow */
}

.carousel-item {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

/* Center image (active) - larger */
.carousel-item.active {
    width: 220px !important;
    height: 220px !important;
    z-index: 10 !important;
    border-width: 6px;
    border-color: var(--prim-color);
    box-shadow: 0 12px 40px rgba(255, 153, 51, 0.4);
    max-width: 220px; /* Prevent overflow */
    max-height: 220px; /* Prevent overflow */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .circular-carousel {
        max-width: 400px;
        height: 400px;
    }
    
    .carousel-item {
        width: 110px;
        height: 110px;
    }
    
    .carousel-item.active {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 900px) {
    .circular-carousel-container {
        min-height: 400px;
    }
    
    .circular-carousel {
        max-width: 380px;
        height: 380px;
    }
    
    .carousel-item {
        width: 108px;
        height: 108px;
    }
    
    .carousel-item.active {
        width: 195px !important;
        height: 195px !important;
    }
}

@media (max-width: 768px) {
    .circular-carousel-container {
        min-height: 420px;
        padding-top: 25px;
    }
    
    .circular-carousel {
        max-width: 380px;
        height: 380px;
        padding-top: 15px;
    }
    
    .carousel-item {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
    
    .carousel-item.active {
        width: 200px !important;
        height: 200px !important;
        border-width: 5px;
    }
    
    .hero_img {
        padding-top: 40px;
        width: 100%;
        margin-top: 20px;
    }
    
    header {
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        gap: 30px;
    }
    
    .hero_content {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 8px;
    }
    
    .hero_content h3 {
        min-height: 2.2em;
        margin: 10px 0;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero_content h3 span {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }
    
    .hero-tagline {
        text-align: center;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .circular-carousel-container {
        min-height: 400px;
        padding-top: 20px;
        width: 100%;
        margin-top: 0;
    }
    
    .circular-carousel {
        max-width: 360px;
        height: 360px;
        padding-top: 15px;
    }
    
    .carousel-item {
        width: 100px;
        height: 100px;
        border-width: 3px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-item.active {
        width: 190px !important;
        height: 190px !important;
        border-width: 5px;
        box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
    }
    
    .hero_img {
        padding-top: 30px;
        padding-bottom: 20px;
        width: 100%;
        margin-top: 0;
    }
    
    header {
        padding-top: 90px;
        min-height: auto;
        gap: 15px;
    }
    
    .hero_content {
        width: 100%;
        padding: 0 15px;
        gap: 10px;
    }
    
    .hero_content h1 {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
    }
    
    .hero_content h2 {
        font-size: 1rem !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .hero_content h3 {
        font-size: 0.9rem !important;
        min-height: 2.8em;
        margin: 12px 0;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero_content h3 span {
        font-size: 0.85rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        display: inline;
        line-height: 1.5;
    }
    
    .hero-tagline {
        margin-top: 4px;
        margin-bottom: 8px;
        padding: 0 10px;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .button-container {
        flex-direction: column;
        gap: 15px !important;
        width: 100%;
    }
    
    .button-container button {
        width: 100%;
        max-width: 250px;
    }
    
    /* Larger scroll-to-top for easier tap on phone */
    .back-to-top {
        width: 56px;
        height: 56px;
        right: 20px;
        bottom: 24px;
    }
    .back-to-top i {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .circular-carousel-container {
        min-height: 380px;
        padding-top: 15px;
    }
    
    .circular-carousel {
        max-width: 340px;
        height: 340px;
        padding-top: 10px;
    }
    
    .carousel-item {
        width: 95px;
        height: 95px;
        border-width: 3px;
    }
    
    .carousel-item.active {
        width: 180px !important;
        height: 180px !important;
        border-width: 4px;
    }
    
    .hero_img {
        padding-top: 25px;
        padding-bottom: 15px;
    }
    
    header {
        padding-top: 80px;
        gap: 10px;
    }
    
    .hero_content h1 {
        font-size: 1.6rem !important;
        line-height: 2rem !important;
    }
    
    .hero_content h3 span {
        font-size: 0.8rem !important;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        gap: 5px !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-box {
        width: 60px !important;
        padding: 8px 5px !important;
    }
}

/* SPECIALITY */
.speciality {
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
    position: relative;
}

.speciality .bg_shape {
    left: 0;
}

.portfolio .Headings,
.speciality .Headings,
.collection .Headings,
.road_map .Headings,
.team .Headings,
.testimonial .Headings,
.sponsors .Headings {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
}

.speciality .Headings p {
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--light-text);
    width: 70%;
    margin-top: 20px;
    text-align: center;
}

.speciality_cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    place-items: center;
    gap: 40px;
    margin-top: -3%;
}

.speciality_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.speciality_card::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.speciality_card img {
    width: 60px;
    height: 60px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: var(--text-gradient);
    transition: 1.5s;
    margin-top: 8%;
}

.speciality_card:hover img {
    transform: rotateY(360deg);
}

.speciality_card_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.speciality_card_info h2 {
    font-family: var(--Conthrax-bold);
    font-weight: 400;
    font-size: 1.2rem;
    transition: var(--transition);
}

.speciality_card_info h2:hover {
    color: var(--prim-color);
    cursor: pointer;
}

.speciality_card_info p {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--light-text);
    margin: 10px 15px;
}

.speciality_card_info h1 {
    font-size: 3rem;
    line-height: 2rem;
    font-weight: 500;
    font-family: var(--Conthrax-bold);
    opacity: 0.3;
    transition: var(--transition);
}

.speciality_card:hover .speciality_card_info h1 {
    opacity: 1;
}

/* JOIN NFT PORTFOLIO */
.portfolio {
    flex-direction: column;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.portfolio_imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio_imgs img {
    position: absolute;
    z-index: 1;
    /* Ensures images are layered correctly */
}

.portfolio_imgs img:nth-child(1) {
    /* p1.png */
    bottom: 20px;
    left: 56%;
    top: 72%;
    z-index: 3;
    /* Ensure it appears above portfolio.png */
    width: 150px;
    /* Adjust size as needed */
    height: 150px;
    animation: Anim_mini_LR 5s infinite linear;
}

.portfolio_imgs img:nth-child(3) {
    /* p3.png */
    bottom: 20px;
    left: 80%;
    top: 30%;
    z-index: 3;
    /* Ensure it appears above portfolio.png */
    width: 180px;
    /* Adjust size as needed */
    height: 180px;
    animation: Anim_mini_TB 5s infinite linear;
}

.portfolio_imgs img:nth-child(2) {
    /* p2.png */
    top: 15%;
    left: 0%;
    z-index: 3;
    /* Ensure it appears above headings and boxes */
    width: 270px;
    /* Adjust size as needed */
    height: 250px;
    animation: Anim_TB 5s infinite linear;
}

.portfolio_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.portfolio_boxses {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}



.portfolio_box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

.portfolio_box_img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.portfolio_box_info {
    /* Center the text block inside the card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.portfolio_box_info h2 {
    font-family: var(--Conthrax-bold);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-color);
    transition: color 0.3s ease;
}

.portfolio_box_info h2,
.portfolio_box_info p {
    margin: 0;
    line-height: 1;
}

.portfolio_box:hover h2 {
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

.portfolio_box_info p {
    font-family: var(--Conthrax-bold);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.portfolio_img {
    padding-left: 20px;
    width: 38%;
    /* Adjust image width */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}


/* OUR COLLECTION */
.collection {
    padding: 5% 3%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.collectionSwiper {
    width: 100%;
}

.collection_box {
    width: 200px;
    /* Adjust size as needed */
    height: 200px;
    /* Make it equal to width for a perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(131, 131, 131, 0.1);
    /* Optional background */
    border-radius: 50%;
    /* Ensures the box is circular */
    border: 5px solid var(--light-border);
    /* Proper border for each image */
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    /* Center the boxes horizontally */
    overflow: hidden;
    /* Ensure image stays within the circle */
}

.collection_box_img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Ensures the image is circular */
    overflow: hidden;
}

.collection_box_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    /* Keeps images properly scaled */
    transition: var(--transition);
    /* Smooth hover effect */
}

.collection_box:hover .collection_box_img img {
    transform: scale(1.1);
    /* Slight zoom-in effect on hover */
}


/* ROAD MAP & TEAM */
.roadmap_Teams {
    flex-direction: column;
    gap: 50px;
    background-image: url(Images/line.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-size: contain;
}

.roadmap_Teams .bg_shape {
    top: 0;
}

.road_map {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.road_map button {
    margin-top: 55px;
    width: 300px;
}

.road_map_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    margin-top: 50px;
    position: relative;
}

.road_map_container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    background-color: var(--prim-color);
}

.road_map_boxses {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

.road_map_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2% 5%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--light-border);
    cursor: pointer;
}

.road_map_box {
    margin-top: -20%;
}

.road_map_box2 {
    margin-top: 30%;
}

.road_map_box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 35px;
    height: 1px;
    background-color: var(--prim-color);
}

.road_map_box2::after {
    left: -8%;
}

.road_map_box::before {
    content: '';
    position: absolute;
    top: 48.5%;
    left: 107%;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--prim-color);
}

.road_map_box2::before {
    left: -9%;
    top: 47.5%;
}

.road_map_box span {
    position: absolute;
    top: -10%;
    left: 2%;
    border-radius: 20px;
    padding: 5px 10px;
    font-family: var(--Conthrax-bold);
    font-weight: 400;
    border: 1px solid var(--light-border);
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.road_map_box h2 {
    margin: 10px 0;
    font-family: var(--Conthrax-bold);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.road_map_box:hover h2 {
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.road_map_box h2::after {
    content: '';
    position: absolute;
    top: 120%;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--text-gradient);
}

.road_map_box p {
    margin: 12px 0;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--light-text);
}

.roadmap_Teams .guni_img {
    width: 70%;
    height: 70%;
}

.choose_marquee {
    color: var(--white);
    padding: 2%;
}

.marquee_text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee_text img {
    height: 100px;
}

.marquee_text i {
    font-size: 2rem;
}

/* TEAM */
.team {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.teamSwiper {
    width: 100%;
    margin-top: 30px;
}

.team_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team_img_box {
    width: 100%;
    height: 250px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--light-border);
    background-color: rgba(131, 131, 131, 0.1);
}

.team_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* 👈 ensures bottom is kept, top is cropped */
}


.team_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    /*background-size: cover;*/
    /*background-position: top;*/
}

.team_img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(89.96deg, rgba(255, 255, 255, 0.3) 0.03%, rgba(255, 255, 255, 0.4) 49.67%, rgba(255, 255, 255, 0.05) 99.96%);
    transition: var(--transition2);
}

.team_box:hover .team_img::after {
    width: 100%;
    left: auto;
    right: 0;
}

.team_img img {
    object-fit: cover;
    border-radius: 10px;
}

.team_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.team_content h2 {
    font-family: var(--Conthrax-bold);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
    transition: var(--transition);
}

.team_content h2:hover {
    color: var(--prim-color);
    cursor: pointer;
}

.team_content p {
    font-size: 1rem !important;
    font-weight: 400;
    color: var(--light-text);
    margin: 5px 0;
}

.team_social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.team_social i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.team_social i:hover {
    color: var(--prim-color);
    cursor: pointer;
}

/* SPONSORS */
.sponsors {
    flex-direction: column;
    background-image: url(Images/line.png);
    background-repeat: repeat;
    background-position: center;
    position: relative;
    background-size: contain;
}

.sponsors .bg_shape {
    top: 0;
}

.sponsors .bg_shape2 {
    top: 80%;
}

.sponsors_wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns layout */
    place-items: center;
    gap: 35px;
    margin-top: 2%;
}

.sponsor_img {
    width: 100%;
    /* Ensure it spans the container width */
    aspect-ratio: 1 / 1;
    /* Set a square aspect ratio */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    /* Optional: Rounded corners */
    background-color: rgba(131, 131, 131, 0.5);
    /* Fallback background */
}

.sponsor_img img {
    width: 80%;
    /* Make the image fill the container */
    height: 50%;
    /* Keep aspect ratio within bounds */
    object-fit: contain;
    /* Ensure images are not stretched */
    transition: transform 0.3s ease;
    /* Smooth zoom on hover */
}

.sponsor_img:nth-of-type(even) {
    transform: translateY(50px);
    /* Offset even items */
}

.sponsor_img:hover img {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

.sponsor-label {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 6rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    font-family: var(--Conthrax-bold);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Space between text and lines */
}

.sponsor-label::before,
.sponsor-label::after {
    content: "";
    width: 80px;
    /* Adjust line length */
    height: 3px;
    /* Line thickness */
    background-color: var(--white-color);
    /* Line color */
    display: inline-block;
}

@media (max-width: 768px) {

    .sponsor-label::before,
    .sponsor-label::after {
        width: 50px;
        /* Shorter lines for smaller screens */
    }
}




/* FOOTER - Swadeshi theme, clearly visible */
footer {
    width: 100%;
    padding: 5% 12%;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b2838 50%, #0d1b2a 100%);
    color: #ffffff;
    position: relative;
    margin-top: 60px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
}

.footer_grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: start;
    place-items: start;
    gap: 20px;
}

.footer_col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.footer_col p {
    font-size: 1.3rem;
    font-family: var(--Conthrax-bold);
    font-weight: 300;
    color: #ffffff !important;
}

.footer_col p span {
    font-size: 1.2rem;
    font-family: var(--Conthrax-bold);
    font-weight: 200;
    background: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social_media_icon {
    display: flex;
    align-items: center;
    gap: 23px;
    margin: 13px 0;
}

.social_media_icon i {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social_media_icon i:hover {
    border-color: var(--prim-color);
    background: rgba(255, 153, 51, 0.2);
    color: #ffffff !important;
    transform: scale(1.15) translateY(-3px);
    cursor: pointer;
    cursor: pointer;
}

.footer_col_links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
}

.footer_col h2 {
    margin-top: 14%;
    font-size: 1.2rem;
    color: #ffffff !important;
    font-family: var(--Conthrax-bold);
}

.footer_col a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transition);
    font-size: 1rem;
}

.footer_col a:hover {
    color: #ffffff !important;
    transform: translateX(5px);
}

.footer_box {
    margin-top: 35px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer_box i {
    font-size: 1.3rem;
    color: var(--prim-color) !important;
}

.footer_box_text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.footer_box_text h3 {
    color: #ffffff !important;
    font-weight: 600;
    font-family: var(--Conthrax-bold);
    font-size: 1.02rem;
}

.footer_box_text p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
    font-family: var(--Conthrax-light);
    font-size: 0.8rem;
}

.footer_bottom {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff !important;
}

.footer_bottom p {
    font-size: 0.8rem;
}

.footer_created_by {
    position: relative;
    width: 100vw;
    padding: 10px 0;
    text-align: center;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: var(--black-color);
    font-family: var(--Conthrax-bold);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    margin: 0;
    /* Removes default margins */
    z-index: 1;
    /* Ensures visibility over other elements */
}

.footer_created_by p {
    margin: 0;
}

.footer_created_by a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-family: var(--Conthrax-light);
}

.footer_created_by a span {
    font-family: var(--Conthrax-bold);
    padding: 6px;
}

/* ANIMATIONS */

@keyframes Anim_LR {
    0% {
        transform: translateX(50px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(50px);
    }
}

@keyframes Anim_mini_LR {
    0% {
        transform: translateX(20px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(20px);
    }
}

@keyframes Anim_TB {
    0% {
        transform: translateY(-50px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-50px);
    }
}

@keyframes Anim_mini_TB {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* MQ */

@media (max-width:1200px) {
    .hero_content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .img_box {
        left: 75%;
    }

    .img_box2 {
        left: -10%;
    }

    .hero_content p {
        margin: 5px 0;
    }

    .Headings h1 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .about_img_shape1 {
        width: 100px;
        height: 100px;
        top: 40%;
    }

    .about_img_shape2 {
        width: 170px;
        height: 170px;
        left: 5%;
    }

    .about_img_shape3 {
        left: 21%;
        top: 85%;
    }

    .about_img_shape4 {
        width: 180px;
        height: 180px;
        left: 28%;
    }

    .about_imgs img {
        width: 90%;
    }

    .speciality_cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio_box_info h2 {
        font-size: 1rem;
    }

    .portfolio_box_info p {
        font-size: 0.8rem;
    }

    .portfolio_box {
        border-radius: 10px;
    }

    .portfolio_box span {
        left: 0;
    }

    .collection {
        padding-left: 5%;
        padding-right: 5%;
    }

    .collection_box_info h2 {
        font-size: 1.5rem;
    }

    .collection_box_info {
        width: 92%;
    }

    .road_map_box2::after {
        left: -8.2%;
    }

    .road_map_box::after {
        width: 34px;
    }

    .road_map_box2::before {
        left: -10%;
        top: 48%;
    }

    .road_map_box::before {
        top: 47.5%;
        left: 107.5%;
    }

    .road_map_box p {
        font-size: 0.8rem;
    }

    .banner_img {
        width: 350px;
        height: 350px;
        left: 58%;
        top: -1%;
    }

    .banner_content h2 {
        font-size: 2rem;
    }

    .logo img {
        width: 100%;
        height: 100px;
    }

    nav button {
        margin: 0 6%;
    }

    .about_img_shape {
        display: none;
    }

    .about_imgs .play-btn {
        top: 40%;
        left: 40%;
    }

    .sponsors_wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        margin-top: 16%;
    }

    /* .footer_logo .logo {
        width: 100%;
        height: 135px;
    } */
    .footer_logo .logo a img {
        width: 120%;
        height: 80%;
    }

    .footer_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_bottom {
        margin-bottom: 3%;
    }

    .footer_col_links {
        margin-top: -3%;
    }

    .footer_created_by {
        padding-bottom: 3%;
    }

    .footer_col h2 {
        margin-bottom: 10px;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:900px) {
    .bars {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        background: transparent;
        border: 2px solid #333;
        border-radius: 6px;
        cursor: pointer;
        color: #000000 !important;
        position: relative;
        z-index: 100000;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .bars i {
        font-size: 1.4rem;
        color: #000000 !important;
        pointer-events: none;
    }

    nav {
        position: fixed !important;
        width: 100% !important;
        left: 0 !important;
        touch-action: manipulation;
    }

    nav .logo,
    nav .logo a,
    nav .nav_btns a,
    nav .nav_btns button {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    nav.sticky {
        width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
    }
    
    /* Hero section mobile layout */
    header {
        flex-direction: column;
        align-items: center;
        padding-top: 110px;
        gap: 30px;
    }
    
    .hero_content {
        width: 100%;
        text-align: center;
        align-items: center;
        padding-top: 0 !important;
    }
    
    .hero_img {
        width: 100%;
        padding-top: 30px;
        margin-top: 0;
    }

    .menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        max-height: calc(100vh - 90px);
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 9998;
        align-items: stretch;
        padding: 10px 0;
        transition: all 0.3s ease;
        overflow-y: auto;
        /* When closed, don't capture touch – lets taps reach nav/content behind */
        pointer-events: none;
    }

    .menu li {
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .menu li a {
        color: #333333 !important;
        font-size: 1rem !important;
        display: block;
        padding: 14px 20px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .menu li a:hover {
        background: rgba(255, 153, 51, 0.1);
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .show_menu {
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    header,
    section,
    .portfolio_container {
        flex-direction: column;
        gap: 50px;
    }

    .about_content,
    .hero_content,
    .portfolio_boxses,
    .portfolio_img {
        width: 100%;
    }

    .hero_img {
        width: 70%;
        margin-top: 25px;
    }

    .hero_content h1 {
        font-size: 2.8rem;
        line-height: 3.5rem;
    }

    .about_img_shape {
        display: block;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about_imgs {
        width: 80%;
    }

    .about_imgs img {
        width: 100%;
    }

    .about_img_shape1 {
        top: 60%;
        width: 120px;
        height: 120px;
    }

    .about_img_shape2 {
        top: 87%;
        width: 200px;
        height: 200px;
    }

    .about_img_shape3 {
        top: 76%;
        left: 83%;
        width: 120px;
        height: 120px;
    }

    .about_img_shape4 {
        width: 250px;
        height: 250px;
        top: 85%;
        left: 55%;
    }

    .speciality_cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .speciality .Headings,
    .portfolio .Headings,
    .collection .Headings,
    .road_map .Headings,
    .team .Headings,
    .testimonial .Headings,
    .sponsors .Headings {
        width: 80%;
    }

    .portfolio .Headings h1 {
        font-size: 2.3rem !important;
    }

    .portfolio_box span {
        border-radius: 5px;
        left: 2%;
        top: -27%;
    }

    .portfolio_box_info h2 {
        font-size: 3rem;
    }

    .portfolio_box_info p {
        font-size: 1.8rem;
    }

    .portfolio_imgs img:nth-child(1) {
        left: 21%;
        top: 86%;
        width: 150px;
        height: 150px;
    }

    .portfolio_imgs img:nth-child(3) {
        left: 68%;
        top: 50%;
        width: 200px;
        height: 200px;
    }

    .portfolio_imgs img:nth-child(2) {
        top: 12%;
        left: 0%;
        width: 180px;
        height: 150px;
    }

    .portfolio_img {
        padding-left: 20px;
        width: 80%;
        /* Adjust image width */
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .collection_box_info h2 {
        font-size: 2rem;
    }

    .collection_box_info {
        width: 95%;
    }

    .road_map_box::after,
    .road_map_box::before,
    .road_map_container::after {
        display: none;
    }

    .road_map_container {
        flex-direction: column;
    }

    .road_map_boxses {
        width: 100%;
    }

    .road_map_box {
        margin-top: 0;
    }

    .road_map_box2 {
        margin-top: -5%;
    }

    .road_map_box p {
        font-size: 1rem;
    }

    .testimonial_box p {
        width: 100%;
    }

    .banner_img {
        width: 300px;
        height: 300px;
        left: 54%;
        top: -7%;
    }

    .banner_content h2 {
        font-size: 1.3rem;
    }

    .hero_content h1 {
        font-size: 4rem;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:850px) {
    .hero_img {
        transform: scale(0.9);
    }

    .about_img_shape {
        display: none;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:750px) {
    .bg_shape {
        display: none;
    }

    .hero_content h1 {
        font-size: 3em;
    }

    .hero_img {
        transform: scale(0.8);
    }

    .cursor {
        display: none;
    }
}

@media (max-width:700px) {
    .portfolio_box_info h2 {
        font-size: 2.5rem;
    }

    .portfolio_box_info p {
        font-size: 1.5rem;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:650px) {
    .portfolio_imgs img:nth-child(2) {
        display: none;
    }

    .portfolio_imgs img:nth-child(1) {
        height: 130px;
        width: 130px;
    }

    .portfolio_imgs img:nth-child(3) {
        height: 180px;
        width: 180px;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:600px) {
    .hero_content h1 {
        font-size: 2.2em;
        line-height: 2.8rem;
    }
    
    .hero_content {
        padding: 0 15px;
    }
    
    .circular-carousel-container {
        min-height: 400px;
        padding-top: 20px;
    }
    
    .circular-carousel {
        max-width: 360px;
        height: 360px;
        padding-top: 15px;
    }
    
    .carousel-item {
        width: 105px;
        height: 105px;
        border-width: 3px;
    }
    
    .carousel-item.active {
        width: 195px !important;
        height: 195px !important;
        border-width: 5px;
    }

    .cursor {
        display: none;
    }
}

@media (max-width:500px) {

    .cursor {
        display: none;
    }

    .hero_content h1 {
        font-size: 2em;
    }

    .time-box {
        width: 75px;
    }

    .time-box span:first-child {
        font-size: 1.5rem;
    }

    .countdown-timer {
        gap: 5px;
    }

    .portfolio_box_info h2 {
        font-size: 2rem;
    }

    .portfolio_box_info p {
        font-size: 1rem;
    }

    .portfolio_box_img {
        display: none;
    }

    .portfolio_imgs img {
        display: none;
    }

    .v1 {
        display: flex;
        margin-bottom: 10px;
        margin-left: -10px;
    }

    .v2 {
        display: none;
    }

    .hero_content p {
        width: 100%;
    }

    .img_box {
        left: 40%;
        top: -5%;
    }

    .img_box2 {
        top: 80%;
        left: -7%;
    }

    .hero_img {
        transform: scale(1);
        width: 100%;
    }

    .hero_img::after {
        transform: translate(-50%, -50%) rotate(14deg);
    }

    .hero_img::before {
        transform: translate(-50%, -50%) rotate(-14deg);
    }

    .Headings h1 {
        font-size: 1.8rem;
        line-height: 3rem;
    }

    .about_imgs {
        width: 100%;
    }

    .about_imgs img {
        border-radius: 20px;
    }

    .about_img_shape {
        display: none;
    }

    .speciality_cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .sponsors_wrap {
        gap: 20px;
    }

    .speciality .Headings,
    .speciality .Headings p,
    .portfolio .Headings,
    .collection .Headings,
    .road_map .Headings,
    .team .Headings,
    .testimonial .Headings,
    .sponsors .Headings {
        width: 100%;
    }

    .speciality .Headings h1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .portfolio_box {
        flex-direction: column;
    }

    .portfolio_box span {
        top: -11%;
    }

    .collection_box_info h2 {
        font-size: 2.5rem;
    }

    .testimonial_box p {
        font-size: 0.9rem;
        font-weight: 300;
    }

    .banner_img {
        display: none;
    }

    .newsletter_content h2 {
        font-size: 2rem;
    }

    .newsletter_content input {
        width: 100%;
    }

    .footer_head {
        flex-direction: column;
        gap: 10px;
    }

    .footer_menu {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}


@media (max-width:400px) {
    .hero_content h1 {
        font-size: 1.8rem;
    }

    .cursor {
        display: none;
    }

    .back-to-top {
        left: 85%;
        bottom: 6%;
    }
}

.events {
    background: url(Images/line.png);
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.events .bg_shape {
    top: 0;
}

.Headings {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.events-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    margin: 50px auto;
}

.col {
    display: flex;
    justify-content: center;
}

.event-box {
    background: var(--white-color); /* Fixed: White card for light theme */
    /* Transparent effect removed/reduced */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    /* backdrop-filter: blur(10px); */
    transition: transform 0.3s ease-in-out;
    width: 320px;
    /* Fixed width */
    height: 450px;
    /* Fixed height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.event-box .image-container {
    width: 280px;
    /* Fixed width for all images */
    height: 280px;
    /* Fixed height for all images */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensures no overflow issues */
    border-radius: 10px;
}

.event-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fills the box while maintaining aspect ratio */
    transition: transform 0.3s ease-in-out;
}

.event-box:hover img {
    transform: scale(1.1);
}

.events h4 {
    font-size: 1.3rem;
    color: var(--black-color); /* Fixed: Dark text */
    font-family: var(--Conthrax-bold);
    margin: 20px auto;
}

.events p {
    color: var(--light-text); /* Fixed: Dark text */
    font-family: var(--Conthrax-light);
    font-size: 0.8rem;
}

.ganpat-heading {
    font-size: 3rem;
}



.main-page {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.event-details .container {
    width: 1000px;
    background: var(--body-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h2 {
    margin: 0;
}

.content {
    display: flex;
    width: 100%;
    height: 400px;
    /* Fixed height for uniform design */
    gap: 20px;
}

.image-container {
    width: 300px;
    /* Fixed width */
    height: 100%;
    /* Fixed height */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster {
    width: 300px;
    height: 400px;
    object-fit: cover;
    /* Ensures image fits within the container */
    border-radius: 10px;
}

.details {
    flex: 1;
    /* Takes remaining space */
    background: var(--body-color);
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    overflow-y: auto;
    /* Scrollable text */
}

.register-btn {
    background-color: #007bff;
    color: white;
    /* padding: 10px 15px; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.register-btn:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 910px) {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .content {
        width: 100%;
    }

    .event-details .container {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .content {
        flex-wrap: wrap;
    }

    .details {
        width: 400px;
        min-width: 400px;
    }

    .image-container {
        width: 100%;
        margin-bottom: 50px;
    }

    .poster {
        width: 100%;
        height: 100%;
    }

    .content {
        margin-bottom: 370px;
    }
}

@media screen and (max-width: 640px) {
    .details {
        width: 100%;
        min-width: 100%;
    }

    .image-container {
        width: 100%;
        margin-bottom: 50px;
    }

    .event-details {
        padding: 0%;
    }

    .content {
        margin-bottom: 450px;
    }
}

.hidden {
    display: none;
}

@media screen and (max-width:900px) {
    .hidden {
        display: block;
    }

    .not-hidden {
        display: none;
    }

    .home-header {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.dropdown {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
    white-space: nowrap;
}

.dropdown-inner {
    border: 2px solid #5c27ff;
}

.dropdown-inner ul li a {
    transition: 0.5s;
    color: #070A29;
}

.dropdown-inner ul li a:hover {
    color: #5c27ff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0px 1000px #070A29 inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white !important;
}

.profile-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    color: var(--black-color) !important; /* Fixed: Dark text */
}

.profile-container {
    display: flex;
    gap: 20px;
    /* width: 80%; */
    max-width: 1000px;
    flex-wrap: wrap;
}

.left {
    width: 60%;
}

.right {
    width: 100%;
    height: 350px;
}

.profile-box {
    flex: 1;
    padding: 20px;
    background: var(--white-color); /* Fixed: White card */
    border: 1px solid var(--light-border);
    /* backdrop-filter: blur(10px); */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-box h3 {
    font-family: var(--Conthrax-bold);
    font-size: 1.5rem;
    margin: 15px 0;
}

.profile-box h5 {
    /* font-family: var(--Conthrax-light); */
    font-size: 1.2rem;
    margin: 15px 0;
}

.btn-container {
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    margin-top: 10px;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.status-message {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--white-color);
    font-size: 1rem;
    /* font-family: var(--Conthrax-light); */
}

.btn-container button {
    margin: 10px 0;
}

#remove-btn {
    width: 100px;
}

@media screen and (max-width: 900px) {
    .profile-container {
        width: 80%;
    }
}

@media screen and (max-width: 700px) {

    table th,
    table td {
        font-size: 0.5rem;
        padding: 5px;
    }

    #remove-btn {
        font-size: 0.5rem;
    }

    #remove-btn {
        width: 50px;
    }

    .profile-container {
        width: 100%;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
    }
}

.inner-table {
    height: 250px;
    overflow-y: scroll;
    margin-bottom: 20px;
    scrollbar-width: none;
}


.p_footer_bottom p {
    margin-top: 10px;
}

.portfolio_box {
    /* Card container */
    width: 100%;
    height: 120px;
    /* let height be defined by content so it can center perfectly */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: 20px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}