/* ==================================
   GLOBAL RESET
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#333;
    overflow-x:hidden;
}

/* ==================================
   SECTION TITLE
================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#1A1A1A;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
/* ==========================
   PREMIUM GLASS NAVBAR
========================== */

.navbar{
    min-height:90px;
    padding:12px 5%;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(12px);
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

.logo-text h2{
    color:#2E7D32;
    font-size:26px;
    margin:0;
}

.logo-text span{
    font-size:12px;
    color:#777;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#2E7D32;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:3px;
    background:#2E7D32;
    border-radius:10px;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

.nav-btn{
    background:#2E7D32;
    color:white;
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    background:#1f5d24;
    transform:translateY(-2px);
}
/* ==================================
   HERO SECTION
================================== */

.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;

    padding:140px 20px 80px;
}

.hero-content{
    max-width:900px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    max-width:800px;
    margin:0 auto 40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#2E7D32;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#256428;
}

.btn-secondary{
    background:white;
    color:#2E7D32;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#f2f2f2;
}
/* ==================================
   ABOUT SECTION
================================== */

.about{
    padding:90px 8% 50px;
    background:white;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

/* HERO PREMIUM */

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.30);
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:50px;
    flex-wrap:wrap;
}

.stat{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);

    padding:20px 35px;
    border-radius:18px;

    min-width:180px;

    text-align:center;
}

.stat h3{
    font-size:32px;
    color:#fff;
    margin-bottom:8px;
}

.stat p{
    color:#fff;
    margin:0;
    font-size:16px;
}
/* ==================================
   COURSES SECTION
================================== */

.courses{
    padding:80px 8%;
    background:#f8f9fa;
}

.course-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.course-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-icon{
    font-size:42px;
    margin-bottom:20px;
}

.course-card h3{
    color:#1A1A1A;
    margin-bottom:15px;
    font-size:24px;
}

.course-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.course-card h4{
    color:#2E7D32;
    font-size:28px;
    margin-bottom:20px;
}

.course-card a{
    display:inline-block;
    background:#2E7D32;
    color:white;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.course-card a:hover{
    background:#256428;
}

/* ==================================
   WHY CHOOSE US
================================== */

.why-us{
    padding:90px 8%;
    background:white;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:#2E7D32;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* ==================================
   LEARN & EARN
================================== */

.learn-earn{
    padding:100px 8%;
    background:#f8f9fa;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#2E7D32;
    color:white;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.learn-left h2{
    font-size:48px;
    margin-bottom:20px;
}

.learn-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.learn-left ul{
    list-style:none;
    margin-bottom:30px;
}

.learn-left ul li{
    margin-bottom:12px;
    color:#444;
}

.learn-btn{
    display:inline-block;
    background:#2E7D32;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.learn-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stat-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:40px;
    color:#2E7D32;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
}

/* ==================================
   FEATURED COURSE
================================== */

.featured-course{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg,#2E7D32,#1B5E20);
    color:white;
}

.featured-content{
    max-width:800px;
    margin:auto;
}

.featured-content h2{
    margin-bottom:15px;
}

.featured-content h3{
    font-size:42px;
    margin-bottom:20px;
}

.featured-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.price{
    font-size:50px;
    font-weight:800;
    margin:25px 0;
}/* ==================================
   TESTIMONIALS
================================== */

.testimonials{
    padding:90px 8%;
    background:white;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#f8f9fa;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
    font-style:italic;
}

.student h4{
    color:#2E7D32;
    margin-bottom:5px;
}

.student span{
    color:#777;
}

/* ==================================
   FAQ
================================== */

.faq{
    padding:90px 8%;
    background:#f8f9fa;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    padding:25px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-item h3{
    color:#2E7D32;
    margin-bottom:10px;
}

.faq-item p{
    color:#555;
    line-height:1.8;
}

/* ==================================
   CONTACT FORM
================================== */

.contact-form-section{
    padding:90px 8%;
    background:white;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    background:#2E7D32;
    color:white;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

/* ==================================
   CTA SECTION
================================== */

.contact-section{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg,#2E7D32,#1B5E20);
    color:white;
}

.contact-content{
    max-width:800px;
    margin:auto;
}

.contact-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.contact-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btn{
    background:white;
    color:#2E7D32;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

/* ==================================
   SOCIAL SECTION
================================== */

.social-section{
    padding:80px 8%;
    text-align:center;
    background:#f8f9fa;
}

.social-section h2{
    margin-bottom:30px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.social-links a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#2E7D32;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:24px;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-5px);
    background:#1B5E20;
}

/* ==================================
   FOOTER
================================== */

.footer{
    background:#111;
    color:white;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:20px;
}

.footer-col p{
    color:#ccc;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
}

.footer-col ul li a:hover{
    color:#2E7D32;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#888;
}

/* ==================================
   WHATSAPP FLOAT BUTTON
================================== */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    z-index:999;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

/* ==================================
   MOBILE RESPONSIVE
================================== */

@media(max-width:768px){

    .navbar{
        padding:15px 20px;
        flex-direction:column;
        gap:15px;
    }

    .logo img{
        height:60px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding:130px 20px 80px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-stats{
        flex-direction:column;
        align-items:center;
    }

    .stat{
        width:250px;
    }

    .section-title h2{
        font-size:34px;
    }

    .learn-earn{
        grid-template-columns:1fr;
    }

    .learn-right{
        grid-template-columns:1fr;
    }

    .footer-container{
        text-align:center;
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:34px;
    }

    .btn-primary,
    .btn-secondary,
    .contact-btn,
    .whatsapp-btn{
        width:100%;
        text-align:center;
    }

    .hero-buttons,
    .contact-buttons{
        flex-direction:column;
    }
}@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-title h2{
        font-size:34px;
    }

    .learn-earn{
        grid-template-columns:1fr;
    }

    .learn-right{
        grid-template-columns:1fr;
    }

    .contact-content h2{
        font-size:34px;
    }

    .footer-container{
        text-align:center;
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:34px;
    }

    .btn-primary,
    .btn-secondary,
    .contact-btn,
    .whatsapp-btn{
        width:100%;
        text-align:center;
    }

    .hero-buttons,
    .contact-buttons{
        flex-direction:column;
    }
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding-top:170px !important;
min-height:auto !important;
}

.hero-content h1{
font-size:42px !important;
}

.hero-content p{
font-size:18px !important;
}

.hero-stats{
flex-direction:column !important;
}

.stat{
width:100% !important;
max-width:280px;
}

.navbar{
padding:15px !important;
}

.logo img{
height:70px !important;
}

.logo-text h2{
font-size:24px !important;
}

nav ul{
gap:15px !important;
}

nav ul li a{
font-size:15px !important;
}

.section-title h2{
font-size:34px !important;
}

.course-card{
padding:25px !important;
}

.contact-content h2{
font-size:36px !important;
}

.btn-primary,
.btn-secondary{
width:100%;
max-width:320px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

}

@media(max-width:480px){

.hero-content h1{
font-size:34px !important;
}

.hero-content p{
font-size:16px !important;
}

.logo img{
height:60px !important;
}

}
.hero{
min-height:85vh !important;
}

.hero-content h1{
font-size:58px !important;
}

.hero-stats{
justify-content:center !important;
gap:30px !important;
}

.course-card{
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.course-card:hover{
transform:translateY(-12px);
}

.learn-btn{
background:#2E7D32;
padding:16px 36px;
border-radius:50px;
}
@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
}

.hero-stats{
    flex-direction:column;
    align-items:center;
}

.stat{
    width:260px;
}

}/* CLEAN FIX */

.hero{
    min-height:90vh;
}

.hero-content h1{
    font-size:60px;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:40px;
}

.stat{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:18px;
    min-width:180px;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-stats{
        flex-direction:column;
        align-items:center;
    }

    .stat{
        width:250px;
    }

}