/* Google Font */
html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f0f0f;
    color:white;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 70px;

    background:rgba(15,15,15,.85);

    backdrop-filter:blur(15px);

    z-index:1000;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.brand img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #FFD700;

}

.brand-text h2{

    color:#FFD700;

    font-size:30px;

}

.brand-text p{

    color:#bbbbbb;

    font-size:14px;

    margin-top:3px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.nav-links a:hover{

    color:#FFD700;

}

/* ===========================
   HERO SECTION
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    background:linear-gradient(180deg,#0f0f0f,#171717);

}

.hero-content{

    max-width:850px;

}

.hero-logo{

    width:170px;

    height:170px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #FFD700;

    box-shadow:0 0 30px rgba(255,215,0,.35);

    margin-bottom:30px;

}

.hero h1{

    color:#FFD700;

    font-size:65px;

    margin-bottom:10px;

}

.hero h2{

    font-size:42px;

    margin-bottom:15px;

}

.hero-subtitle{

    font-size:24px;

    color:#FFD700;

    margin-bottom:20px;

}

.sub-text{

    font-size:18px;

    color:#cfcfcf;

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:35px;

}
.btn{
    display:inline-block;
    background:#FFD700;
    color:black;
    text-decoration:none;

    padding:15px 40px;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;

    box-shadow:0 0 20px rgba(255,215,0,0.4);
}

.btn:hover{
    transform:scale(1.08);
}

/* About */

.about{
    padding:80px;
    text-align:center;
}

.about h2{
    color:#FFD700;
    margin-bottom:20px;
}

.about p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/* ===========================
   COURSES
=========================== */

.courses{
    padding:100px 70px;
    background:#0d0d0d;
    text-align:center;
}

.courses h2{
    font-size:46px;
    color:#FFD700;
    margin-bottom:15px;
}

.course-subtitle{
    color:#bbbbbb;
    font-size:18px;
    max-width:700px;
    margin:0 auto 60px;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.course-card{
    background:#171717;
    border-radius:25px;
    padding:40px 30px;
    position:relative;
    transition:.4s;
    border:2px solid transparent;
}

.course-card:hover{
    transform:translateY(-12px);
}

/* LEVEL 1 */

.basic{
    border-color:#28a745;
}

.basic:hover{
    box-shadow:0 0 30px rgba(40,167,69,.4);
}

/* LEVEL 2 */

.advance{
    border-color:#FFD700;
    transform:scale(1.05);
}

.advance:hover{
    box-shadow:0 0 35px rgba(255,215,0,.5);
}

/* LEVEL 3 */

.premium{
    border-color:#ff4d4d;
}

.premium:hover{
    box-shadow:0 0 30px rgba(255,77,77,.4);
}

.course-card h3{
    color:#FFD700;
    font-size:34px;
    margin-top:15px;
}

.course-card h4{
    color:white;
    margin-bottom:25px;
    font-weight:500;
}

.price{
    color:#FFD700;
    font-size:40px;
    font-weight:bold;
    margin-bottom:25px;
}

.price del{
    color:#777;
    font-size:22px;
}

.course-card ul{
    list-style:none;
    text-align:left;
    margin-bottom:35px;
}

.course-card ul li{
    margin:15px 0;
    color:#dddddd;
    font-size:16px;
}

.course-btn{
    display:block;
    background:#FFD700;
    color:black;
    text-decoration:none;
    padding:15px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.course-btn:hover{
    background:white;
    transform:scale(1.05);
}

.badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#28a745;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
}

.badge-red{
    position:absolute;
    top:20px;
    right:20px;
    background:#ff4d4d;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#FFD700;
    color:black;
    padding:8px 22px;
    border-radius:25px;
    font-weight:bold;
    font-size:13px;
}
/* Contact */

.contact{
    padding:80px;
    text-align:center;
}

.contact h2{
    color:#FFD700;
    margin-bottom:20px;
}

.contact h3{
    margin-top:20px;
    color:#FFD700;
}

/* Footer */

footer{
    background:#111;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #FFD700;
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.08);
    box-shadow:0 0 20px #FFD700;
}

.logo span{
    font-size:32px;
    font-weight:700;
    color:#FFD700;
    letter-spacing:1px;
}

.sub-text{
    font-size:18px;
    color:#cccccc;
    margin-bottom:30px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

/* WHY CHOOSE US */

.why-us{
    padding:80px 60px;
    text-align:center;
}

.why-us h2{
    color:#FFD700;
    font-size:40px;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature-card{
    background:#1a1a1a;
    padding:35px;
    border-radius:18px;
    transition:0.3s;
    border:1px solid rgba(255,215,0,0.2);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,215,0,0.4);
}

.icon{
    font-size:45px;
    margin-bottom:15px;
}

.feature-card h3{
    color:#FFD700;
    margin-bottom:12px;
}

.feature-card p{
    color:#cccccc;
    line-height:1.6;
}

.course-icon{
    font-size:50px;
    margin-bottom:15px;
}

.price{
    font-size:28px;
    color:#FFD700;
    font-weight:bold;
    margin:15px 0;
}

.course-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#FFD700;
    color:#000;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.course-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(255,215,0,0.5);
}

/* ===========================
   OUR EXPERTISE
=========================== */

.expertise{
    padding:100px 70px;
    background:#111;
    text-align:center;
}

.expertise h2{
    font-size:45px;
    color:#FFD700;
    margin-bottom:15px;
}

.expertise-subtitle{
    color:#bbb;
    max-width:700px;
    margin:0 auto 50px;
    font-size:18px;
}

.expertise-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.expertise-card{
    background:#1a1a1a;
    border:1px solid rgba(255,215,0,.2);
    border-radius:20px;
    padding:35px 20px;
    transition:0.3s;
}

.expertise-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
    box-shadow:0 0 25px rgba(255,215,0,.35);
}

.expertise-card span{
    font-size:48px;
    display:block;
    margin-bottom:20px;
}

.expertise-card h3{
    color:#fff;
    font-size:22px;
}

/* ===========================
   SPECIAL OFFER
=========================== */

.offer{
    padding:100px 20px;
    background:#111;
}

.offer-box{
    max-width:900px;
    margin:auto;
    background:linear-gradient(135deg,#181818,#242424);
    border:2px solid #FFD700;
    border-radius:25px;
    padding:50px;
    text-align:center;
}

.offer-box h2{
    color:#FFD700;
    font-size:42px;
    margin-bottom:20px;
}

.offer-box p{
    color:#ddd;
    margin-bottom:35px;
    font-size:18px;
}

.offer-prices{
    display:flex;
    justify-content:center;
    gap:80px;
    margin-bottom:40px;
}

.offer-prices h3{
    color:#fff;
    margin-bottom:10px;
}

.offer-prices span{
    color:#FFD700;
    font-size:30px;
    font-weight:bold;
}

.offer-btn{
    display:inline-block;
    background:#FFD700;
    color:#000;
    text-decoration:none;
    padding:15px 40px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.offer-btn:hover{
    background:#fff;
    transform:scale(1.05);
}


/* ===========================
   FOUNDER
=========================== */

.founder{
    display:flex;
    flex-direction:row-reverse;
    align-items:center;
    justify-content:center;
    gap:70px;
    padding:100px 70px;
    background:#111;
}

.founder-content{
    flex:1;
}

.founder-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.founder-image img{

    width:380px;

    border-radius:25px;

    border:3px solid #FFD700;

    box-shadow:0 15px 40px rgba(255,215,0,.30);

    transition:0.4s;

}

.founder-image img:hover{

    transform:scale(1.03);

    box-shadow:0 20px 50px rgba(255,215,0,.50);

}

.tag{
    display:inline-block;
    background:#FFD700;
    color:#000;
    padding:8px 18px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:20px;
}

.founder-content h2{

    font-size:48px;

    color:#FFD700;

    margin-bottom:20px;

    line-height:1.2;

    text-transform:uppercase;

    letter-spacing:1px;

}

.founder-content p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:25px;
}

.founder-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
    color:white;
}

/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 0 25px rgba(37,211,102,.6);

    transition:.3s;

    z-index:9999;

}

.whatsapp-float:hover{

    transform:scale(1.12);

}

.whatsapp-float img{

    width:38px;

}

/* ===========================
   CONTACT
=========================== */

.contact{

    padding:100px 70px;

    background:#0d0d0d;

    text-align:center;

}

.contact h2{

    color:#FFD700;

    font-size:45px;

}

.contact-subtitle{

    color:#bbb;

    margin:20px auto 50px;

}

.contact-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.contact-card{

    background:#1a1a1a;

    padding:35px;

    border-radius:20px;

    border:1px solid rgba(255,215,0,.15);

    transition:all .3s ease;

    cursor:pointer;

}

.contact-card:hover{

    transform:translateY(-10px);

    border-color:#FFD700;

    box-shadow:0 0 25px rgba(255,215,0,.4);

}

.contact-icon{

    font-size:45px;

    color:#FFD700;

    margin-bottom:18px;

}

.contact-card h3{

    color:#FFD700;

    margin-bottom:15px;

}

.contact-card p{

    color:#ddd;

    line-height:1.8;

}

.contact-card a{

    color:#25D366;

    text-decoration:none;

    font-weight:bold;

}

.contact-card a{
    color:#FFD700;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    word-break:break-word;
}

.contact-card a:hover{
    color:#ffffff;
}

.contact-card:hover .contact-icon{
    transform:scale(1.15);
    transition:0.3s;
}

/* ===========================
   FAQ SECTION
=========================== */

.faq{

    padding:100px 70px;

    background:#111;

}

.faq h2{

    text-align:center;

    color:#FFD700;

    font-size:45px;

    margin-bottom:50px;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#1a1a1a;

    border:1px solid rgba(255,215,0,.20);

    border-radius:15px;

    margin-bottom:20px;

    overflow:hidden;

    transition:0.3s;

}

.faq-item:hover{

    border-color:#FFD700;

    box-shadow:0 0 20px rgba(255,215,0,.20);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    font-size:20px;

    font-weight:600;

    padding:22px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question span{

    color:#FFD700;

    font-size:28px;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height 0.4s ease;

}

.faq-answer p{

    color:#d0d0d0;

    padding:0 25px 22px;

    line-height:1.8;

}

/* ===========================
   FOOTER
=========================== */

.footer{
    background:#080808;
    padding:70px 70px 25px;
    border-top:1px solid rgba(255,215,0,.2);
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    margin-bottom:40px;
}

.footer-logo img{
    width:80px;
    height:80px;
    border-radius:50%;
    border:2px solid #FFD700;
    margin-bottom:15px;
}

.footer-logo h2{
    color:#FFD700;
    margin-bottom:10px;
    font-size:30px;
}

.footer-logo p{
    color:#bdbdbd;
}

.footer-links h3,
.footer-contact h3{
    color:#FFD700;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#d6d6d6;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD700;
    padding-left:8px;
}

.footer-contact p{
    color:#d6d6d6;
    margin-bottom:14px;
    line-height:1.6;
}

.footer-contact i{
    color:#FFD700;
    margin-right:10px;
    width:20px;
}

.footer hr{
    border:none;
    height:1px;
    background:rgba(255,215,0,.2);
    margin:20px 0;
}

.copyright{
    text-align:center;
    color:#999;
    font-size:15px;
}

/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#FFD700;
    cursor:pointer;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width:768px){

    .navbar{
        padding:15px 20px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .brand-text{
        display:none;
    }

    .brand img{
        width:55px;
        height:55px;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        color:#FFD700;
        cursor:pointer;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#111;
        padding:20px 0;
        text-align:center;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:12px 0;
    }

    .nav-links a{
        font-size:16px;
    }

    .hero{
        min-height:auto;
        padding:130px 20px 60px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-logo{
        width:90px;
        height:90px;
    }

    .hero h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero h2{
        font-size:20px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .sub-text{
        font-size:14px;
        line-height:1.7;
    }

    .btn{
        padding:12px 25px;
        font-size:15px;
    }

    /* Founder Mobile */

.founder{

    flex-direction:column;

    text-align:center;

    padding:60px 20px;

    gap:30px;

}

.founder-content{

    width:100%;

}

.founder-content h2{

    font-size:34px;

    line-height:1.2;

}

.founder-content p{

    font-size:15px;

    line-height:1.7;

}

.founder-image{

    width:100%;

    display:flex;

    justify-content:center;

}

.founder-image img{

    width:260px;

    max-width:90%;

}

.founder-features{

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.founder .btn{

    margin:auto;

}

/* OUR EXPERTISE */

.expertise{
    padding:60px 20px;
}

.expertise h2{
    font-size:38px;
}

.expertise-subtitle{
    font-size:16px;
}

.expertise-container{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.expertise-card{
    padding:25px 15px;
}

.expertise-card h3{
    font-size:18px;
}

.expertise-card span{
    font-size:38px;
}


/* COURSES */

.courses{
    padding:60px 20px;
}

.course-grid{
    grid-template-columns:1fr;
}

.course-card{
    transform:none !important;
}


/* WHY US */

.why-us{
    padding:60px 20px;
}

.features{
    grid-template-columns:1fr;
}


/* CONTACT */

.contact{
    padding:60px 20px;
}

.contact-container{
    grid-template-columns:1fr;
}


/* FOOTER */

.footer{
    padding:50px 20px;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo img{
    margin:auto;
    margin-bottom:15px;
}

.footer-links{
    align-items:center;
}

.footer-contact{
    text-align:center;
}


/* OFFER */

.offer{
    padding:60px 20px;
}

.offer-box{
    padding:30px 20px;
}

.offer-prices{
    flex-direction:column;
    gap:25px;
}


/* FAQ */

.faq{
    padding:60px 20px;
}

.faq h2{
    font-size:34px;
}

.faq-question{
    font-size:16px;
}

}

/* ===========================
   GOOGLE MAP
=========================== */

.map-section{

    background:#111;

    padding:100px 70px;

    text-align:center;

}

.map-section h2{

    color:#FFD700;

    font-size:42px;

    margin-bottom:15px;

}

.map-section p{

    color:#cccccc;

    margin-bottom:40px;

    font-size:18px;

}

.map-container{

    border:3px solid #FFD700;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 0 30px rgba(255,215,0,.25);

}

.map-btn{
    display:inline-block;
    margin-top:18px;
    padding:12px 28px;
    background:#FFD700;
    color:#111;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.map-btn:hover{
    background:#fff;
    transform:translateY(-3px);
    box-shadow:0 0 15px rgba(255,215,0,.5);
}

.map-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#111 !important;
    font-size:16px !important;
    font-weight:700 !important;
    min-width:190px !important;
    height:48px !important;
    background:#FFD700 !important;
    text-decoration:none !important;
}