/* ===============================
   ROOT VARIABLES
================================= */
:root{
    --white:#ffffff;
    --light:#f1f5f9;
    --dark:#1e293b;
    --accent:#6366F1;
}

/* ===============================
   GLOBAL
================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;
}

section{
    padding:100px 60px;
    text-align:center;
}

/* ===============================
   PARTICLE CANVAS
================================= */
#particles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}

/* ===============================
   NAVBAR
================================= */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    height:70px;
    background:#f1f5f9;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    border-bottom:1px solid #e2e8f0;
    z-index:1000;
}

/* LOGO */
.logo{
    font-size:26px;
    font-weight:700;
    letter-spacing:1px;
}

.logo-blue{
    background:linear-gradient(90deg,#2563eb,#3b82f6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo-purple{
    background:linear-gradient(90deg,#7c3aed,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#1768d1;
    font-size:15px;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--accent);
}


/* HERO LAYOUT */
.hero{
    padding:120px 20px 80px;
    text-align:center;
}

.hero-main{
    margin-bottom:60px;
}

/* COUNTDOWN */
.countdown-section{
    margin-top:40px;
}

.section-heading{
    font-size:24px;
    font-weight:600;
    margin-bottom:30px;
    color:#6366F1;
}

.countdown-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.time-box{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    padding:25px 30px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    min-width:120px;
    transition:0.3s;
}

.time-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(99,102,241,0.25);
}

.time-box span{
    font-size:32px;
    font-weight:700;
    color:#6366F1;
}

.time-box p{
    margin-top:5px;
    font-size:14px;
    color:#475569;
}

/* STATS SECTION */
.stats-section{
    padding:120px 20px;
    background:#f8fafc;
}

.stats-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

.stat-card{
    background:white;
    padding:40px 20px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(99,102,241,0.25);
}

.icon-circle{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#6366F1,#7c3aed);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:22px;
    color:white;
}

.stat-card h3{
    font-size:28px;
    color:#6366F1;
    margin-bottom:10px;
}

.mt-80{
    margin-top:80px;
}

/* HERO BUTTON WRAPPER */
.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.btn-primary{
    padding:14px 36px;
    border-radius:40px;
    background:linear-gradient(90deg,#4f46e5,#7c3aed);
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(124,58,237,0.35);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(124,58,237,0.5);
}

/* OUTLINE BUTTON */
.btn-outline{
    padding:14px 36px;
    border-radius:40px;
    border:2px solid #6366F1;
    color:#6366F1;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    transition:0.3s ease;
}

.btn-outline:hover{
    background:#6366F1;
    color:white;
    transform:translateY(-4px);
}

/* ===============================
   ABOUT SECTION
================================= */
.about-section{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    max-width:1200px;
    width:100%;
}

/* LEFT CARD */
.about-card{
    flex:1;
    max-width:900px;
    padding:60px;
    border-radius:20px;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(12px);
    border:1px solid rgba(99,102,241,0.2);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(99,102,241,0.25);
}

.about-card h2{
    font-size:32px;
    margin-bottom:25px;
}

.about-card h2::after{
    content:"";
    width:90px;
    height:4px;
    background:var(--accent);
    display:block;
    margin:10px 0 0;
    border-radius:5px;
}

.about-card p{
    line-height:1.8;
    margin-bottom:20px;
    font-size:16px;
}

/* RIGHT IMAGE */
.about-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
    transition:0.5s ease;
}

.about-image img:hover{
    transform:scale(1.05);
    box-shadow:0 30px 80px rgba(99,102,241,0.4);
}

/* FEES SECTION */
.fees-section{
    padding:120px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* CARD */
.fees-card{
    width:100%;
    max-width:900px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:60px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    text-align:center;
}

/* TITLE */
.fees-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:50px;
    position:relative;
}

.fees-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#6366F1;
    display:block;
    margin:10px auto 0;
    border-radius:4px;
}

/* FEE ROW */
.fee-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid #e2e8f0;
    font-size:16px;
    color:#334155;
}

/* REMOVE LAST BORDER */
.fee-row:last-of-type{
    border-bottom:none;
}

/* AMOUNT */
.amount{
    font-weight:700;
    color:#6366F1;
    font-size:18px;
}

/* BUTTONS */
.fees-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* GRADIENT BUTTON */
.btn-gradient{
    padding:14px 40px;
    border-radius:40px;
    background:linear-gradient(90deg,#4f46e5,#7c3aed);
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(124,58,237,0.3);
}

.btn-gradient:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(124,58,237,0.5);
}

/* OUTLINE BUTTON */
.btn-outline-purple{
    padding:14px 40px;
    border-radius:40px;
    border:2px solid #6366F1;
    color:#6366F1;
    text-decoration:none;
    font-weight:500;
    transition:0.3s ease;
}

.btn-outline-purple:hover{
    background:#6366F1;
    color:white;
}

/* SCAN & PAY SECTION */
.scan-section{
    padding:120px 20px;
    background:linear-gradient(135deg,#0f172a,#0b1a36);
    text-align:center;
    color:white;
}

.scan-container{
    max-width:700px;
    margin:auto;
}

.scan-section h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:50px;
}

/* QR BOX */
.qr-box{
    display:inline-block;
    padding:20px;
    background:white;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    transition:0.4s ease;
}

.qr-box img{
    width:220px;
    display:block;
}

/* Hover Glow */
.qr-box:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(99,102,241,0.6);
}

/* UPI ID */
.upi-id{
    margin-top:30px;
    font-size:18px;
    color:#e2e8f0;
}

/* NOTE */
.scan-note{
    margin-top:15px;
    font-size:14px;
    color:#94a3b8;
}
/* ===============================
   PATRONS SECTION
================================= */
.patrons-section{
    background:#ebf5ff;
}

.patron-card{
    max-width:900px;
    margin:30px auto;
    padding:40px;
    border-radius:16px;
    background:white;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.patron-card.active{
    opacity:1;
    transform:translateY(0);
}

.patron-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(99,102,241,0.25);
}

.role{
    color:#2563eb;
    margin-bottom:15px;
}

.name{
    font-weight:600;
    color:#f59e0b;
    margin-top:15px;
}

.patron-card span{
    display:block;
    font-size:14px;
    color:#475569;
    margin-bottom:10px;
}

.two-column{
    display:flex;
    justify-content:space-between;
    gap:60px;
    text-align:left;
    margin-top:20px;
}

/* ===============================
   CONTACT
================================= */
#contact{
    background:#f8fafc;
}

#contact h3{
    margin-bottom:20px;
}

/* ===============================
   FOOTER
================================= */
footer{
    padding:30px;
    background:var(--light);
    text-align:center;
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:900px){

    .about-container,
    .fees-container,
    .two-column{
        flex-direction:column;
        text-align:center;
    }

    .fees-details{
        text-align:center;
    }

    .navbar{
        padding:0 20px;
    }

    section{
        padding:80px 20px;
    }
}
/* ===============================
   TRACKS MARQUEE SECTION
================================= */
.tracks-marquee{
    background:linear-gradient(90deg,#111827,#1e293b);
    padding:30px 0;
    overflow:hidden;
}

.marquee-container{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
}

.marquee-content{
    display:inline-block;
    animation:scrollTracks 25s linear infinite;
}

.marquee-content span{
    display:inline-block;
    margin:0 40px;
    font-size:18px;
    font-weight:500;
    color:#ffffff;
    position:relative;
}

/* Separator */
.marquee-content span::after{
    content:"|";
    margin-left:40px;
    color:#6366F1;
}

/* Animation */
@keyframes scrollTracks{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* TRACKS INTRO */
.tracks-intro{
    max-width:900px;
    margin:0 auto 60px;
    padding:40px;
    border-radius:16px;
    background:rgba(255,255,255,0.9);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    text-align:center;
    transition:0.4s ease;
}

.tracks-intro:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(99,102,241,0.25);
}

.tracks-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
    color:#6366F1;
}

.tracks-intro p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    color:#334155;
}

/* FLIP CARDS SECTION */
.tracks-cards-section{
    padding:100px 60px;
    background:#f8fafc;
    text-align:center;
}

/* GRID */
.flip-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
    max-width:1100px;
    margin:60px auto 0;
}

/* PORTRAIT CARD */
.flip-card{
    background:transparent;
    width:100%;
    height:420px;   /* 🔥 Increased height */
    perspective:1000px;
}

/* INNER */
.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform 0.8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform:rotateY(180deg);
}

/* FRONT & BACK */
.flip-card-front,
.flip-card-back{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* FRONT SIDE */
.flip-card-front{
    background:white;
    display:flex;
    flex-direction:column;
}

/* Portrait Image */
.flip-card-front img{
    width:100%;
    height:75%;   /* 🔥 Image takes most height */
    object-fit:cover;
}

/* Title Bottom */
.flip-card-front h3{
    height:25%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    padding:10px;
    background:#f8fafc;
    color:#1e293b;
}

/* BACK SIDE */
.flip-card-back{
    background:linear-gradient(135deg,#6366F1,#7c3aed);
    color:white;
    transform:rotateY(180deg);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
    font-size:15px;
    line-height:1.6;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:992px){
    .flip-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .flip-grid{
        grid-template-columns:1fr;
    }
}

/* ROADMAP SECTION */
.roadmap-section{
    padding:120px 60px;
    background:#f8fafc;
    position:relative;
}

.timeline{
    position:relative;
    max-width:1000px;
    margin:80px auto;
}

/* Vertical Line */
.timeline::after{
    content:'';
    position:absolute;
    width:4px;
    background:#6366F1;
    top:0;
    bottom:0;
    left:50%;
    margin-left:-2px;
}

/* Timeline Item */
.timeline-item{
    padding:20px 40px;
    position:relative;
    width:50%;
}

/* Circle */
.timeline-item::after{
    content:'';
    position:absolute;
    width:20px;
    height:20px;
    right:-10px;
    background:white;
    border:4px solid #6366F1;
    top:30px;
    border-radius:50%;
    z-index:1;
}

/* Left Side */
.left{
    left:0;
    text-align:right;
}

/* Right Side */
.right{
    left:50%;
}

/* Fix circle position for right */
.right::after{
    left:-10px;
}

/* Content Box */
.content{
    padding:25px 30px;
    background:white;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

/* Hover Glow */
.content:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(99,102,241,0.25);
}

.content h3{
    margin-bottom:10px;
    color:#6366F1;
}

.content p{
    color:#334155;
}

/* RESPONSIVE */
@media(max-width:768px){

    .timeline::after{
        left:20px;
    }

    .timeline-item{
        width:100%;
        padding-left:60px;
        padding-right:25px;
        margin-bottom:40px;
    }

    .timeline-item::after{
        left:10px;
    }

    .left, .right{
        left:0;
        text-align:left;
    }
}

/* LOCATION SECTION */
.location-section{
    padding:100px 60px;
    background:#f8fafc;
    text-align:center;
}

.location-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    max-width:1100px;
    margin:60px auto 0;
}

.location-details{
    flex:1;
    text-align:left;
}

.location-details h3{
    font-size:22px;
    margin-bottom:15px;
    color:#2563eb;
}

.location-details p{
    color:#475569;
    margin-bottom:20px;
    line-height:1.6;
}

.map-btn{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(90deg,#2563eb,#7c3aed);
    color:white;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s ease;
}

.map-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(124,58,237,0.4);
}

.location-map{
    flex:1;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:900px){
    .location-container{
        flex-direction:column;
        text-align:center;
    }

    .location-details{
        text-align:center;
    }
}

/* ===============================
   CONTACT SECTION
================================= */
.contact-section{
    padding:100px 60px;
    text-align:center;
}

/* Section Title */
.section-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:60px;
    position:relative;
    color:#1e293b;
}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#6366F1;
    display:block;
    margin:12px auto 0;
    border-radius:5px;
}

/* Container */
.contact-container{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

/* Contact Card */
.contact-card{
    background:rgba(255,255,255,0.9);
    padding:40px 50px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    transition:0.4s ease;
    min-width:260px;
}

/* Hover Effect */
.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(99,102,241,0.25);
}

/* Icon */
.contact-icon{
    font-size:28px;
    margin-bottom:15px;
}

/* Headings */
.contact-card h3{
    color:#6366F1;
    margin-bottom:10px;
}

/* Text */
.contact-card p{
    color:#475569;
    font-size:14px;
    margin:5px 0;
}