/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ================= ROOT COLORS ================= */
:root {
    --dark: #191919;
    --dark-light: #222222;
    --gold: #fab162;
    --gold-light: #ffd27f;

    --white: #ffffff;
    --text-dark: #191919;
    --text-muted: #6b7280;
    --border-light: #eeeeee;
}

/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    /* BODY WHITE */
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 69px;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}











/* ================= NAVBAR ================= */

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(180deg, #191919, #111111);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
}

/* Container */

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 14px 30px;

    display: flex;
    flex-direction: column;
}

/* ================= TOP ROW ================= */

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side */

.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Right side */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    cursor: pointer;
}

/* Logo Text */
.logo-text {
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text .highlight {
    color: var(--gold);
}

/* Icon Styling (Premium Look) */
.logo-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 8px;

    /* Gradient Border Effect */
    background: linear-gradient(#111, #111) padding-box,
                linear-gradient(135deg, var(--gold), #ffcc70) border-box;
    border: 1.5px solid transparent;

    /* Glow */
    box-shadow: 0 0 10px rgba(255, 183, 77, 0.25);

    transition: all 0.3s ease;
}

/* Hover Effects */
.logo:hover .logo-icon {
    background: var(--gold);
    color: #111;
    box-shadow: 0 0 18px rgba(255, 183, 77, 0.8);
    transform: translateY(-2px) scale(1.05);
}

.logo:hover .logo-text {
    text-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

/* Tagline */

.nav-tagline {
    font-size: 14px;
    color: #bbbbbb;
}

/* Status */

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #bbbbbb;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* ================= MENU ROW ================= */

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    margin-top: 10px;
}

/* Links */

.nav-links a,
#authArea {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
    font-size: 13px;
    position: relative;
    padding: 6px 4px;
    transition: 0.3s;
}
.auth-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);

    width: 0%;
    height: 2px;
    background: var(--gold);

    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links #authArea:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Auth area */

#authArea {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logout */

.logout-btn {
    border: 1px solid var(--gold);
    color: var(--gold);

    padding: 6px 16px;
    border-radius: 30px;

    font-weight: 600;
    background: transparent;

    transition: 0.3s;
}

.logout-btn:hover {
    background: var(--gold);
    color: #191919;
}

/* Mentor button */

.mentor-btn {
    padding: 8px 10px !important;
    border-radius: 20px;
    background: rgba(250, 177, 98, 0.15);
    border: 1px solid rgba(250, 177, 98, 0.4);
    color: var(--gold) !important;
    transition: 0.3s;
}

.mentor-btn:hover {
    background: var(--gold);
    color: white !important;

}

/* Menu toggle */

.menu-toggle {
    display: none;
    font-size: 26px;
    color: var(--gold);
    cursor: pointer;
}

/* ================= TABLET ================= */

@media(max-width:1024px) {

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-tagline {
        display: none;
    }

}

/* ================= MOBILE ================= */

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .nav-status {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;

        width: 260px;
        height: 100vh;

        background: #111;

        flex-direction: column;
        align-items: flex-start;

        padding: 100px 30px;
        gap: 22px;

        transition: 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
    }

}







/* ================= HERO SECTION ================= */

.site-header {
    position: relative;

    height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: var(--white);

    overflow: hidden;
}

/* Show first slide instantly */
.slide:first-child {
    opacity: 1;
}

/* ================= HERO SLIDER ================= */

/* ================= HERO SLIDER ================= */

/* ================= HERO SLIDER ================= */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTONS */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    background: rgba(0, 0, 0, 0.45);
    color: white;

    font-size: 26px;
    cursor: pointer;

    z-index: 5;

    transition: 0.3s;
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

.slider-btn:hover {
    background: var(--gold);
    color: black;
}

/* MOBILE */

@media (max-width:768px) {

    .site-header {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

}

/* ================= DARK OVERLAY ================= */

/* LIGHT OVERLAY */

.site-header::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(25, 25, 25, 0.45),
            rgba(25, 25, 25, 0.35));

    z-index: 1;

}

/* ================= HERO CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */

.hero-content h1 {

    font-size: 64px;

    font-weight: 900;

    color: var(--gold);

    line-height: 1.2;

}

/* DESCRIPTION */

.hero-content p {

    margin-top: 20px;

    font-size: 18px;

    color: #e5e5e5;

}

/* ================= SLIDER BUTTONS ================= */

.slider-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.5);

    border: none;

    color: white;

    font-size: 28px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    z-index: 3;

    transition: 0.3s ease;

}

/* LEFT BUTTON */

.prev {
    left: 25px;
}

/* RIGHT BUTTON */

.next {
    right: 25px;
}

/* HOVER EFFECT */

.slider-btn:hover {

    background: var(--gold);

    color: #191919;

}

/* ================= RESPONSIVE ================= */

@media (max-width:768px) {

    .site-header {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

}













/* ================= ANNOUNCEMENT ================= */
.announcement-bar {
    background: #111111;
    color: var(--gold);
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

/* ================= MARQUEE SCROLL ================= */
.announcement-bar {
    background: #111111;
    color: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.announcement-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollLeft 18s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ================= GRID SECTION ================= */

.upcoming-heading {
    padding: 50px 20px;
    background: #f9fafb;
}

/* Heading */
.upcoming-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--dark);
    position: relative;
}

/* Gold underline */
.upcoming-heading:after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--gold);
    display: block;
    margin-top: 15px;
    border-radius: 10px;
}

.hackathon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px auto;
}

/* ================= CARD ================= */
.hackathon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-light);
    transition: 0.4s ease;
}

.hackathon-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(250, 177, 98, 0.25);
}

.image-wrapper {
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.hackathon-card:hover img {
    transform: scale(1.08);
}

.hackathon-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.card-row {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* Fix long text overflow inside cards */
.hackathon-card p,
.hackathon-card span,
.hackathon-card a,
.card-row,
.card-row span {
    word-break: break-word;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* ================= BUTTON ================= */
.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    background: var(--gold);
    color: var(--dark);
    transition: 0.3s;
}

.btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(250, 177, 98, 0.4);
    transform: translateY(-3px);
}

/* ================= STATS SECTION ================= */
/* ================= PREMIUM OUR IMPACT SECTION ================= */
.stats-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: white;
    overflow: hidden;

    background: url("../images/9254934.jpg") center/cover no-repeat;
}

/* Dark Overlay */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.85),
            rgba(25, 25, 25, 0.80));
    z-index: 1;
}

/* Keep content above overlay */
.stats-section>* {
    position: relative;
    z-index: 2;
}

/* Heading */
.stats-section .section-heading {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--gold);
}

/* ================= GRID LAYOUT ================= */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* ================= STAT CARDS ================= */
.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

/* Hover Effect */
.stat-box:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(250, 177, 98, 0.35);
}

/* Number */
.stat-box h3 {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

/* Label */
.stat-box p {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #f0f0f0;
}

/* ================= CTA SECTION ================= */
/* ================= PREMIUM CTA SECTION ================= */
.cta-section {
    padding: 30px 20px;
    background: #f5f5f5;
    text-align: center;
}

.cta-box {
    max-width: 1100px;
    margin: auto;
    padding: 90px 40px;
    border-radius: 30px;

    background: linear-gradient(135deg, #191919, #242424);
    color: #ffffff;

    position: relative;
    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Subtle Gold Border Glow */
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #fab162, transparent, #fab162);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Heading */
.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Description */
.cta-box p {
    font-size: 18px;
    color: #d1d1d1;
    margin-bottom: 40px;
}

/* ================= BUTTON ================= */
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 40px;
    background: var(--gold);
    color: #191919;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(250, 177, 98, 0.4);
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(250, 177, 98, 0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .site-header h1 {
        font-size: 38px;
    }

    .nav-links {
        flex-direction: column;
        background: var(--dark);
        position: absolute;
        right: 20px;
        top: 70px;
        padding: 20px;
        border-radius: 12px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

/* ================= MOBILE NAVIGATION ================= */
/* Hide hamburger by default (Desktop) */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: var(--gold);
        cursor: pointer;
        z-index: 1100;
    }

    /* Hide default nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;

        background: linear-gradient(180deg, #191919, #111111);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px 30px;
        gap: 25px;

        transition: 0.4s ease;
        z-index: 1000;
    }

    /* When active */
    .nav-links.active {
        right: 0;
    }

    /* Make links full width */
    .nav-links a {
        width: 100%;
        font-size: 12px;
        font-weight: 500;
        color: #ffffff;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Dashboard greeting */
    .nav-links span {
        color: #ffffff;
        font-weight: 500;
    }

    /* Logout button full width */
    .logout-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 10px 0;
        border-radius: 25px;
    }

    /* Add overlay background */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 999;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ================= WHY SECTION PREMIUM ================= */
.why-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #fafafa, #f3f4f6);
    text-align: center;
}

/* Heading */
.why-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--dark);
    position: relative;
}

/* Gold underline */
.why-section .section-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--gold);
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ================= GRID ================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* ================= CARD ================= */
.why-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Floating animation */
.why-card {
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    50% {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(250, 177, 98, 0.25);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }
}



/* Hover Effect */
.why-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Gold top glow line */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--gold);
    transition: 0.4s ease;
}

.why-card:hover::before {
    width: 100%;
}

/* Title */
.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Text */
.why-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ================= FEATURED SECTION (MODERN SPLIT) ================= */
/* ================= FEATURED SECTION ================= */
.featured-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

/* Main Box */
.featured-box {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;

    background: linear-gradient(135deg, #191919, #242424);
    border-radius: 30px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    color: white;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Gold Glow */
.featured-box::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 177, 98, 0.25), transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

/* Keep content above glow */
.featured-content,
.featured-image {
    position: relative;
    z-index: 2;
}

/* Badge */
.featured-badge {
    display: inline-block;
    background: rgba(250, 177, 98, 0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Title */
.featured-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Description */
.featured-content p {
    font-size: 18px;
    color: #d1d1d1;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Button */
.featured-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 40px;
    background: var(--gold);
    color: #191919;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.featured-btn:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* Image */
.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* ================= RESPONSIVE FIX ================= */

/* Tablet */
@media (max-width: 1024px) {
    .featured-box {
        gap: 40px;
        padding: 60px 40px;
    }

    .featured-content h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .featured-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
        gap: 30px;
    }

    .featured-image {
        order: -1;
    }

    .featured-content h2 {
        font-size: 28px;
    }

    .featured-content p {
        font-size: 16px;
    }

    .featured-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .featured-section {
        padding: 70px 15px;
    }

    .featured-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .featured-content h2 {
        font-size: 24px;
    }

    .featured-badge {
        font-size: 12px;
    }
}

/* ================= SPONSORS SECTION ================= */
/* ================= TEAM SECTION ================= */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f8f8, #f3f4f6);
    text-align: center;
    overflow: hidden;
}

.team-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--dark);
}

/* Slider Container */
.team-slider {
    overflow: hidden;
    position: relative;
}

/* Track (Moving Part) */
.team-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollTeam 25s linear infinite;
}

/* Team Card */
.team-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    min-width: 250px;
    border: 1px solid #eeeeee;
    transition: 0.4s ease;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--gold);
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--dark);
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hover Effect */
.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Infinite Scroll Animation */
@keyframes scrollTeam {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.team-slider:hover .team-track {
    animation-play-state: paused;
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    padding: -33px 20px;
    background: linear-gradient(135deg, #f8f8f8, #f3f4f6);
    text-align: center;
}

.testimonial-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--dark);
}

/* Container Grid */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    position: relative;
    transition: 0.4s ease;
    text-align: left;
}

/* Quote Icon */
.testimonial-card::before {
    content: "“";
    font-size: 80px;
    color: rgba(250, 177, 98, 0.15);
    position: absolute;
    top: 20px;
    left: 25px;
}

/* Hover */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Text */
.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Name */
.testimonial-card h4 {
    font-weight: 700;
    color: var(--dark);
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 7px 20px;
    background: #ffffff;
    text-align: center;
}

.faq-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: var(--dark);
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

/* FAQ Item */
.faq-item {
    background: #f9f9f9;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 25px 30px;
    border: 1px solid #eeeeee;
    transition: 0.3s ease;
}

/* Hover Effect */
.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Question */
.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Answer */
.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}



/* ================= GLASS FOOTER ================= */
.footer {
    position: relative;
    padding: 100px 20px 30px;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    color: #ffffff;
    overflow: hidden;
}

/* Subtle gold glow background */
.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 177, 98, 0.15), transparent 70%);
    top: -150px;
    left: -150px;
    z-index: 0;
}

/* Container */
.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Glass Card Blocks */
.footer-container>div {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
}

/* Hover Glow */
.footer-container>div:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(250, 177, 98, 0.15);
}

/* Headings */
.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Paragraph */
.footer p {
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
}

/* Links */
.footer a {
    display: inline-block;
    text-decoration: none;
    color: #d1d1d1;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #aaaaaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer {
        padding: 70px 20px 20px;
    }

    .footer-container {
        gap: 30px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*********REGISTER button for apply hackahton ****************/

.registeration-btn{
    display: inline-block;
    padding: 10px 16px !important;
    background: linear-gradient(135deg, #f6b36b, #e8a24c);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 5px;
    transition: 0.3s ease;
}
.registeration-btn:hover{
    color: black !important;;
}
.register-btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f6b36b, #e8a24c);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 5px;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, #e8a24c, #d48c2f);
}

