* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    backdrop-filter: blur(30px);
    background: rgba(0, 0, 0, 0.683);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

/* Logo */
.logo a {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    font-family: poppins, "sans-serif";
}

.logo span {
    color: #FF8F00;
}

#menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

#menu li a,
.dropbtn {
    text-decoration: none;
    color: #1B5E20;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

.dropbtn {
    border-radius: 50px;
    outline: none;
    border: none;
    padding: 10px 40px;
    font-size: 0.9rem;
    font-weight: bold;
}

.dropbtn:hover {
    transform: scale(1.1);
}

#menu li a {
    color: white;
    font-size: 1.1rem;
}

#menu li a:hover,
.dropbtn:hover {
    color: #FF8F00;
}

.dropdown {
    position: relative;
}

.dropdown-content a {
    color: rgb(4, 120, 14);
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    background-color: #43A047;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.753);
    border-radius: 10px;
    overflow: hidden;
    top: 38px;
    z-index: 999;
    top: 40px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #1B5E20;
}

.dropdown-content a:hover {
    background: #FFECB3;
    color: #1B5E20;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

@media(max-width:768px) {
    #menu {
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        display: none;
        padding: 20px 0;
        z-index: 999;
    }

    #menu.active {
        display: flex;
    }

    #menu li {
        margin: 10px 0;
        text-align: center;
    }

    #menu li a,
    .dropbtn {
        color: black;
        font-size: 1.2rem;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        box-shadow: none;
        border-radius: 0;
        background: #1B5E20;
    }

    .dropdown-content a {
        color: white;
    }

    .dropdown-content a:hover {
        background: #FF8F00;
        color: #fff;
    }
}

/* HERO SECTION */
.hero {
    height: 110vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 20s ease-in-out;
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 25%;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }

    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* COUNTDOWN */
.countdown {
    margin-top: 220px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.time-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 12px 25px;
    border-radius: 10px;
    min-width: 120px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.time-box small {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.daydiv {
    color: #dcff16;
}

.hoursdiv {
    color: #56fff7;
}

.mindiv {
    color: #fd30e2;
}

.secdiv {
    color: #fff;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media(max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .time-box span {
        font-size: 2.5rem;
    }

    .time-box {
        min-width: 100px;
        padding: 10px 20px;
    }
}

@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .time-box {
        min-width: 90px;
        padding: 8px 15px;
    }

    .time-box span {
        font-size: 2rem;
    }

    .countdown {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        top: 10%;
    }

    .countdown {
        flex-direction: column;
        margin-top: 100px;
        gap: 5px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .time-box {
        min-width: auto;
        width: 100%;
        padding: 6px 15px;
        border-radius: 12px;
        backdrop-filter: blur(6px);
        background: rgba(0, 0, 0, 0.45);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .time-box span {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .time-box small {
        font-size: 0.5rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ddd;
    }

    .daydiv {
        color: #ffff00;
    }

    .hoursdiv {
        color: #00ffff;
    }

    .mindiv {
        color: #ff69b4;
    }

    .secdiv {
        color: #ffffff;
    }

    .mountain {
        top: -30px;
    }
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 100px 20px;
    text-align: center;
    background: #F9FBFD;
    color: #1b1b1b;
    font-family: 'Poppins', sans-serif;
}

.events-section h2 {
    font-size: 42px;
    color: #1B5E20;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== EVENT CARDS ===== */
.events-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.event-card h3 {
    color: #1B5E20;
    font-size: 28px;
    margin-bottom: 15px;
}

.event-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-card .categories {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    color: #1976D2;
    margin-bottom: 25px;
}

.event-card .categories li {
    margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.event-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.event-buttons .btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    flex: 1;
}

.event-buttons .btn.explore {
    background: linear-gradient(135deg, #1B5E20, #43A047);
}

.event-buttons .btn.explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-buttons .btn.register {
    background: linear-gradient(135deg, #C62828, #E53935);
}

.event-buttons .btn.register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media(max-width: 992px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        max-width: 90%;
    }

    .event-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: 60px 20px;
    text-align: center;
    background: #F9FBFD;
    color: #1b1b1b;
    font-family: 'Poppins', sans-serif;
}

.events-section h2 {
    font-size: 36px;
    color: #1B5E20;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

.events-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-card {
    background: #fff;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    padding: 30px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.event-card h3 {
    color: #1B5E20;
    font-size: 24px;
    margin-bottom: 12px;
}

.event-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-card .categories {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    color: #1976D2;
    margin-bottom: 20px;
}

.event-card .categories li {
    margin-bottom: 6px;
}


.event-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.event-buttons .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
    flex: 1 1 auto;
}

.event-buttons .btn.explore {
    background: linear-gradient(135deg, #1B5E20, #43A047);
}

.event-buttons .btn.explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-buttons .btn.register {
    background: linear-gradient(135deg, #C62828, #E53935);
}

.event-buttons .btn.register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-details {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 30px 15px;
    box-sizing: border-box;
}

.event-details .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

#eventContent {
    max-width: 90%;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    color: #333;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

#eventContent img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

#eventContent h3 {
    font-size: 28px;
    color: #1B5E20;
    margin-bottom: 12px;
}

#eventContent p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

#eventContent ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

#eventContent ul li {
    margin-bottom: 8px;
    color: #1976D2;
}

@media(max-width: 1200px) {
    .events-container {
        gap: 15px;
    }
}

@media(max-width: 992px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        max-width: 90%;
    }

    .event-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media(max-width: 576px) {
    .events-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .event-card h3 {
        font-size: 20px;
    }

    .event-card p {
        font-size: 14px;
    }

    .event-card .categories li {
        font-size: 13px;
    }

    .event-buttons .btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    #eventContent {
        padding: 20px 15px;
    }

    #eventContent h3 {
        font-size: 22px;
    }

    #eventContent p {
        font-size: 14px;
    }

    #eventContent ul li {
        font-size: 13px;
    }
}

.guests-section {
    background: #F9FBFD;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.guests-section h2 {
    font-size: 42px;
    color: #1B5E20;
    margin-bottom: 60px;
    font-weight: 700;
}

.announce {
    font-size: 35px;
    color: #FF8F00;
    padding-bottom: 15px;
}

.chief-guest {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.chief-guest:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.chief-guest img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guest-details {
    text-align: left;
    flex: 1;
}

.guest-details h3 {
    font-size: 28px;
    color: #1B5E20;
    margin-bottom: 10px;
}

.guest-details .designation {
    color: #1976D2;
    font-weight: 600;
    margin-bottom: 15px;
}

.guest-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.other-guests {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.guest-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 20px;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.guest-card h4 {
    font-size: 20px;
    color: #1B5E20;
    margin-bottom: 5px;
}

.guest-card p {
    font-size: 14px;
    color: #1976D2;
}

@media(max-width: 992px) {
    .chief-guest {
        flex-direction: column;
        text-align: center;
    }

    .guest-details {
        text-align: center;
    }
}

.guests-section {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.guests-section h2 {
    font-size: 42px;
    color: #1B5E20;
    margin-bottom: 10px;
    font-weight: 700;
}

.chief-guest {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.chief-guest:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.chief-guest img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guest-details {
    text-align: left;
    flex: 1;
}

.guest-details h3 {
    font-size: 28px;
    color: #1B5E20;
    margin-bottom: 10px;
}

.guest-details .designation {
    color: #1976D2;
    font-weight: 600;
    margin-bottom: 15px;
}

.guest-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.other-guests {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.guest-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 20px;
    border-radius: 20px;
    width: 250px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.guest-card h4 {
    font-size: 20px;
    color: #1B5E20;
    margin-bottom: 5px;
}

.guest-card p {
    font-size: 14px;
    color: #1976D2;
}

@media(max-width: 992px) {
    .chief-guest {
        flex-direction: column;
        text-align: center;
    }

    .guest-details {
        text-align: center;
    }
}

.hosts-sponsors-section {
    background: #F9FBFD;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.hosts-sponsors-section h2 {
    font-size: 42px;
    color: #1B5E20;
    margin-bottom: 60px;
    font-weight: 700;
}

.hosts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.host-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 20px;
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.host-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.host-card img {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.host-card h4 {
    font-size: 18px;
    color: #1B5E20;
    margin-bottom: 5px;
    font-weight: 600;
}

.host-card a {
    font-size: 14px;
    color: #1976D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.host-card a:hover {
    color: #FF8F00;
    text-decoration: underline;
}

.sponsors-wrap {
    overflow: hidden;
    max-width: 100%;
}

.sponsor-track {
    display: flex;
    gap: 60px;
    animation: scrollSponsors 20s linear infinite;
    justify-content: center;
}

.sponsor-track img {
    height: 60px;
    opacity: 0.8;
    transition: 0.3s;
}

.sponsor-track img:hover {
    opacity: 1;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width: 992px) {
    .hosts {
        gap: 25px;
    }

    .host-card {
        width: 180px;
        padding: 20px 15px;
    }

    .host-card img {
        max-width: 100px;
        max-height: 80px;
    }

    .sponsor-track {
        gap: 30px;
    }
}

.contact-venue {
    background: #EDF7F2;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}

.contact-venue .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 38px;
    color: #1B5E20;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info strong {
    color: #1976D2;
}

.directions-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #1B5E20;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.directions-btn:hover {
    background: #FF8F00;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media(max-width: 992px) {
    .contact-venue .container {
        flex-direction: column;
        align-items: center;
    }

    .contact-map {
        height: 350px;
        width: 100%;
    }

    .contact-info {
        text-align: center;
    }
}

@media(max-width:768px) {
    #menu {
        display: none;
        position: absolute;
        top: 65px;
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        padding: 20px;
    }

    #menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-carousel {
        flex-direction: column;
        bottom: 160px;
    }

    .hero-carousel img {
        width: 90%;
    }
}

.site-footer {
    background: #1B5E20;
    color: #fff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-top p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-top a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-top a:hover {
    color: #FF8F00;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-social a {
    font-size: 22px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #FFD700;
    transform: scale(1.3);
}

.footer-social a {
    font-size: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.footer-social a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.footer-social a:hover::after {
    transform: scale(1.5);
}

@media(max-width:768px) {
    .footer-social {
        gap: 15px;
    }

    .footer-top p {
        font-size: 13px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.carousel-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(240, 240, 240, 1), rgba(240, 240, 240, 0));
    z-index: 10;
}

.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(240, 240, 240, 1), rgba(240, 240, 240, 0));
    z-index: 10;
}

.carousel-track {
    display: flex;
    gap: 15px;
    will-change: transform;
    user-select: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-card img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .carousel-card {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        width: 150px;
        height: 150px;
    }
}

.event-section {
    width: 100%;
    padding: 80px 16px;
    display: flex;
    justify-content: center;
}

.event-wrap {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.event-date {
    font-size: 4rem;
    font-weight: 800;
    color: #1B5E20;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #6bff75;
    width: 0;
}

.type-active {
    animation: typing 2.5s steps(24, end) forwards,
        blink 0.7s infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.event-day {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
    position: relative;
    display: inline-block;
}

.event-day::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffa502);
}

.event-time-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.time-chip {
    padding: 10px 22px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #008f0a;
    background: rgba(107, 255, 114, 0.12);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.time-chip:hover {
    background: #34fe6a;
    color: #fff;
    transform: translateY(-4px);
}

.time-sep {
    font-size: 1.6rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .event-date {
        font-size: 3rem;
    }

    .event-day {
        font-size: 1.8rem;
    }

    .time-chip {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .event-date {
        font-size: 2.3rem;
    }

    .event-day {
        font-size: 1.5rem;
    }
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #07b401;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #029b38;
    transform: translateY(-4px);
}

.core-team {
    position: relative;
    padding: 90px 30px;
    background: url("https://media.istockphoto.com/id/484389570/photo/himalayas.jpg?s=612x612&w=0&k=20&c=6jM32XJBWlvv6x7AF-av52jlncPkz5hn_AEhjaDSFYI=") center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 45, 40, 0.85),
            rgba(11, 79, 108, 0.85));
    z-index: 0;
}

.core-team h2,
.core-team .subtitle,
.team-row {
    position: relative;
    z-index: 1;
    text-align: center;
}

.core-team h2 {
    font-size: 42px;
    color: orange;
    letter-spacing: 1px;
}

.subtitle {
    margin: 12px 0 60px;
    opacity: 0.9;
}

.team-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: nowrap;
}

.team-card {
    width: 270px;
    padding: 30px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.team-card h3 {
    font-size: 24px;
    color: orange;
    margin-bottom: 6px;
}

.designation {
    font-size: 14px;
    color: #b7e4c7;
}

.badge {
    display: inline-block;
    margin: 18px 0;
    padding: 6px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2dd4bf, #38bdf8);
    color: #003049;
    font-size: 13px;
    font-weight: 600;
}

.contact a {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .team-row {
        flex-wrap: wrap;
    }
}

.reg-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(135deg,
            rgba(25, 25, 45, 0.88),
            rgba(10, 10, 25, 0.88));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
}

.reg-inner {
    max-width: 1200px;
    margin: auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.reg-text {
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.85);
}

.reg-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-btn {
    background: linear-gradient(135deg, #f3c97a, #d1a04d);
    color: #1a1a1a;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(209, 160, 77, 0.35);
    transition: all 0.25s ease;
}

.reg-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(209, 160, 77, 0.45);
}

.reg-close {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: 0.25s ease;
}

.reg-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 480px) {
    .reg-inner {
        flex-direction: column;
        text-align: center;
        padding: 10px 14px;
        gap: 8px;
    }

    .reg-text {
        font-size: 14px;
    }

    .reg-actions {
        width: 100%;
    }

    .reg-btn {
        flex: 1;
        text-align: center;
    }
}

.reg-sticky,
.reg-inner,
.reg-text,
.reg-btn {
    transition: all 0.35s ease;
}

.reg-sticky.full .reg-inner {
    padding: 16px 18px;
}

.reg-sticky.full .reg-text {
    font-size: 16px;
}

.reg-sticky.full .reg-btn {
    padding: 10px 24px;
    font-size: 15px;
}

.reg-sticky.slim .reg-inner {
    padding: 8px 16px;
}

.reg-sticky.slim .reg-text {
    font-size: 14px;
    opacity: 0.85;
}

.reg-sticky.slim .reg-btn {
    padding: 7px 18px;
    font-size: 14px;
}