/* ===========================
   Google Font
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0B1120;
    color:#ffffff;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:white;
}

ul{
    list-style:none;
}

section{
    padding:100px 10%;
}

/* ===========================
   Header
=========================== */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(18px);
    background:rgba(8,13,25,.75);
    border-bottom:1px solid rgba(255,255,255,.08);
}

nav{
    max-width:1300px;
    margin:auto;
    padding:18px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.site-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    font-weight:800;
}

.site-logo span{
    background:linear-gradient(90deg,#ffffff,#7dd3fc);
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    transition:.3s;
    font-weight:500;
}

.nav-links a:hover{
    color:#4F9DFF;
}

.btn{
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,99,235,.45);
}

/* ===========================
   Hero
=========================== */

#hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:
    radial-gradient(circle at top,#1D4ED8 0%,transparent 35%),
    radial-gradient(circle at bottom right,#7C3AED 0%,transparent 30%),
    #0B1120;
}

.hero-content{
    max-width:850px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:#cbd5e1;
    font-size:20px;
    margin-bottom:40px;
}

.hero-btn{
    display:inline-block;
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    padding:18px 42px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.hero-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(37,99,235,.5);
}

/* ===========================
   Section Titles
=========================== */

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

/* ===========================
   Features
=========================== */

.feature-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.35s;
    backdrop-filter:blur(20px);
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#2563EB;
    box-shadow:0 20px 40px rgba(37,99,235,.25);
}

.feature-card h3{
    margin-bottom:15px;
    color:#60A5FA;
}

.feature-card p{
    color:#cbd5e1;
}

/* ===========================
   Courses
=========================== */

.course-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.course-card{
    background:#111827;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.course-card:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,#1D4ED8,#7C3AED);
}

.course-card h3{
    font-size:24px;
}

/* ===========================
   Community
=========================== */

#community{
    text-align:center;
}

#community p{
    max-width:750px;
    margin:25px auto;
    color:#cbd5e1;
}

.community-btn{
    display:inline-block;
    margin-top:25px;
    background:#2563EB;
    padding:16px 36px;
    border-radius:12px;
    transition:.3s;
}

.community-btn:hover{
    background:#1D4ED8;
}

/* ===========================
   FAQ
=========================== */

.faq-item{
    background:#111827;
    border-radius:15px;
    padding:25px;
    margin-bottom:25px;
    border-left:5px solid #2563EB;
}

.faq-item h3{
    margin-bottom:12px;
}

.faq-item p{
    color:#cbd5e1;
}

/* ===========================
   Footer
=========================== */

footer{
    background:#050A16;
    padding:45px 10%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
    color:#60A5FA;
    margin-bottom:15px;
}

footer p{
    color:#94A3B8;
    margin:8px 0;
}

/* ===========================
   Scrollbar
=========================== */

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

::-webkit-scrollbar-track{
    background:#0B1120;
}

::-webkit-scrollbar-thumb{
    background:#2563EB;
    border-radius:20px;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        font-size:18px;
    }

    section{
        padding:80px 7%;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .btn,
    .hero-btn,
    .community-btn{
        width:100%;
        display:block;
        text-align:center;
    }

    section h2{
        font-size:32px;
    }

}

/* */
/* Courses.html ka Css Style */

.courses-section{
    padding:40px;
    color:white;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.course-card{
    background:#111827;
    padding:25px;
    border-radius:15px;
}

.course-card h3{
    margin-top:0;
}

.course-card p{
    color:#ccc;
}

.btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

/* =====================================
   WEBSITE TOUR
===================================== */

#website-tour{
    padding:100px 20px;
    background:linear-gradient(180deg,#0b1120 0%, #111827 100%);
    overflow:hidden;
}

.tour-content{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    text-align:center;
    padding:0 15px;
    box-sizing:border-box;
}

.tour-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(37,99,235,.15);
    border:1px solid rgba(37,99,235,.35);
    color:#4f8cff;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.tour-content h2{
    font-size:48px;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.tour-content p{
    max-width:760px;
    margin:0 auto 40px;
    color:#b6c2d0;
    line-height:1.8;
    font-size:18px;
}

/* Video Card */

.video-wrapper{
    width:100%;
    max-width:100%;
    overflow:hidden;
    background:#0f172a;
    padding:12px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
    box-sizing:border-box;
}

.video-wrapper video{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:14px;
    background:#000;
}

/* Tablet */

@media (max-width:768px){

    #website-tour{
        padding:70px 15px;
    }

    .tour-content h2{
        font-size:34px;
    }

    .tour-content p{
        font-size:16px;
        margin-bottom:30px;
    }

    .video-wrapper{
        padding:8px;
        border-radius:16px;
    }

    .video-wrapper video{
        border-radius:10px;
    }

}

/* Mobile */

@media (max-width:480px){

    #website-tour{
        padding:60px 12px;
    }

    .tour-badge{
        font-size:12px;
        padding:6px 14px;
    }

    .tour-content h2{
        font-size:28px;
    }

    .tour-content p{
        font-size:15px;
        line-height:1.6;
    }

    .video-wrapper{
        padding:6px;
    }

}


/* Reels Section ki CSS  */


#reels {
    padding: 80px 8%;
}

#reels h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

/* Horizontal Scroll */
.reels-wrapper {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.reels-wrapper::-webkit-scrollbar {
    height: 6px;
}

.reels-wrapper::-webkit-scrollbar-thumb {
    background: #2b5cff;
    border-radius: 10px;
}

/* Base Reel Card */
.reel {
    flex: 0 0 auto;
    height: 420px; /* Same height for all */
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* First Reel (9:16) */
.featured-reel {
    aspect-ratio: 9 / 16;
}

/* Remaining Reels (1:1) */
.reel:not(.featured-reel) {
    aspect-ratio: 1 / 1;
}

.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

    .reel {
        height: 300px;
    }

}


/* ------------------------------- */

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------ */