/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
}

/* HEADER */

/* ==========================
   HEADER
========================== */

.header{
    width:100%;
    height:70px;

    background:#fff;

    position:sticky;
    top:0;

    z-index:9999;

    box-shadow:0 3px 20px rgba(0,0,0,.08);
}

/* ==========================
   CONTAINER
========================== */

.container{

    width:100%;
    max-width:1800px;

    margin:auto;

    padding:0 15px;

    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

}

/* ==========================
   LOGO
========================== */

.logo{
    flex-shrink:0;
}

.logo img{

    height:55px;
    width:auto;

    display:block;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    height:100%;

}

.nav-menu{

    display:flex;
    align-items:center;

    height:100%;

    gap:2px;

    list-style:none;

}

/* ==========================
   MENU ITEMS
========================== */

.nav-menu > li{

    position:relative;

}

.nav-menu > li > a{

    display:flex;
    align-items:center;
    justify-content:center;

    height:70px;

    padding:0 8px;

    text-decoration:none;

    color:#222;

    font-size:14px;
    font-weight:500;

    white-space:nowrap;

    transition:.3s;

}

.nav-menu > li > a:hover{

    color:#0d6efd;

}

/* ==========================
   UNDERLINE
========================== */

.nav-menu > li::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:12px;

    width:0;
    height:2px;

    background:#0d6efd;

    transform:translateX(-50%);

    transition:.4s;

}

.nav-menu > li:hover::after{

    width:70%;

}

/* ==========================
   DROPDOWN
========================== */

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:300px;

    background:#fff;

    list-style:none;

    border-radius:12px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    overflow:hidden;

}

/* remove underline */

.dropdown-menu li::after{
    display:none;
}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    padding:14px 20px;

    text-decoration:none;

    color:#222;

    font-size:14px;

    white-space:normal;

    line-height:1.5;

    transition:.3s;

}

.dropdown-menu li a:hover{

    background:#0d6efd;

    color:#fff;

}

/* SHOW MENU */

.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

/* ==========================
   ARROW
========================== */

.dropdown > a::after{

    content:"\f107";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    font-size:11px;

    margin-left:6px;

}

/* ==========================
   MOBILE TOGGLE
========================== */

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .header{

        height:70px;

    }

    .container{

        justify-content:space-between;

    }

    .menu-toggle{

        display:block;

    }

    .navbar{

        position:absolute;

        top:70px;
        left:-100%;

        width:100%;

        background:#fff;

        transition:.4s;

        box-shadow:
        0 5px 20px rgba(0,0,0,.08);

        height:auto;

    }

    .navbar.active{

        left:0;

    }

    .nav-menu{

        flex-direction:column;

        align-items:flex-start;

        width:100%;

        gap:0;

    }

    .nav-menu li{

        width:100%;

    }

    .nav-menu > li > a{

        width:100%;

        height:auto;

        padding:16px 20px;

        border-bottom:1px solid #eee;

        justify-content:space-between;

    }

    .nav-menu > li::after{

        display:none;

    }

    .dropdown-menu{

        position:static;

        display:none;

        opacity:1;
        visibility:visible;

        transform:none;

        width:100%;

        min-width:100%;

        box-shadow:none;

        border-radius:0;

    }

    .dropdown.active .dropdown-menu{

        display:block;

    }

    .logo img{

        height:50px;

    }

}

@media(max-width:768px){

    .logo img{

        height:45px;

    }

    .nav-menu > li > a{

        font-size:14px;

    }

}
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;

    background-size:cover;
    background-position:center;

    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    z-index:1;
}

/* CENTER CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1000px;

    height:100%;

    margin:auto;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:20px;
}

.hero-subtitle{
    font-size:20px;
    font-weight:500;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:50px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    max-width:850px;

    font-size:22px;
    line-height:1.8;

    margin-bottom:35px;

    color:#f1f1f1;
}

.hero-btn{
    display:inline-block;

    padding:18px 45px;

    background:#ff7b00;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;
    font-weight:600;

    transition:.4s;
}

.hero-btn:hover{
    background:#e96f00;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-subtitle{
        font-size:16px;
    }

    .hero-content p{
        font-size:15px;
    }

}
/* =========================
   WELCOME SECTION
========================= */

.welcome-section{

    padding:120px 8%;
    background:#ffffff;

}

.welcome-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

/* IMAGE */

.welcome-image{

    position:relative;

}

.welcome-image img{

    width:100%;
    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}

/* EXPERIENCE BOX */

.experience-box{

    position:absolute;

    bottom:-30px;
    right:-20px;

    background:#ff7b00;

    color:#fff;

    padding:25px 35px;

    border-radius:15px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(255,123,0,.4);

}

.experience-box h3{

    font-size:42px;
    font-weight:800;

}

.experience-box p{

    margin-top:5px;

}

/* CONTENT */

.sub-title{

    color:#ff7b00;

    font-size:16px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.welcome-content h2{

    font-size:48px;
    font-weight:800;

    margin:15px 0 25px;

    color:#0f172a;

}

.welcome-content p{

    color:#64748b;

    line-height:1.9;
    margin-bottom:20px;

    font-size:17px;

}

/* FEATURES */

.welcome-features{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;

    margin:30px 0;

}

.feature-item{

    font-weight:600;
    color:#0f172a;

}

.feature-item i{

    color:#ff7b00;
    margin-right:10px;

}

/* BUTTON */

.welcome-btn{

    display:inline-block;

    padding:15px 35px;

    background:#ff7b00;
    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.welcome-btn:hover{

    background:#e66f00;

    transform:translateY(-5px);

}

/* RESPONSIVE */

@media(max-width:992px){

    .welcome-wrapper{

        grid-template-columns:1fr;

    }

    .welcome-content h2{

        font-size:38px;

    }

}

@media(max-width:576px){

    .welcome-content h2{

        font-size:30px;

    }

    .welcome-features{

        grid-template-columns:1fr;

    }

    .experience-box{

        right:10px;
        bottom:10px;

    }

}
.courses-section{
    padding:20px 8%;
}

.section-title{
    text-align:center;
    font-size:35px;
    font-weight:700;
    color:#0b3c73;
    margin-bottom:60px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.course-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.course-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.course-image{
    height:230px;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}

.course-content{
    padding:25px;
}

.course-content h3{
    color:#0b3c73;
    font-size:20px;
    margin-bottom:15px;
    font-weight:700;
}

.course-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    font-size:16px;
}

.learn-btn{
    display:inline-block;
    background:linear-gradient(135deg,#ffb300,#ff8f00);
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.learn-btn:hover{
    background:#0b3c73;
}

.course-icon{
    position:absolute;
    top:200px;
    left:20px;
    width:60px;
    height:60px;
    background:#1d4e89;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

@media(max-width:768px){

    .section-title{
        font-size:30px;
    }

    .course-content h3{
        font-size:24px;
    }
}

/* ==========================
   FOOTER
========================== */

.footer{

    position:relative;

    background:
    linear-gradient(
    135deg,
    #00152e,
    #002147,
    #0a2d63
    );

    color:#fff;

    padding-top:90px;

    overflow:hidden;

}

/* SHAPE */

.footer-shape{

    position:absolute;

    top:-100px;
    right:-100px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

}

/* GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.5fr;

    gap:50px;

    padding-bottom:60px;

}

/* LOGO */

.footer-logo img{

    height:80px;
    margin-bottom:20px;

}

.footer-widget p{

    color:#cbd5e1;
    line-height:1.9;

}

/* HEADING */

.footer-widget h3{

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer-widget h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:#ff7b00;

}

/* LINKS */

.footer-widget ul{

    list-style:none;

}

.footer-widget ul li{

    margin-bottom:15px;

}

.footer-widget ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-widget ul li a:hover{

    color:#ff7b00;

    padding-left:8px;

}

/* CONTACT */

.contact-info li{

    display:flex;
    align-items:flex-start;

    gap:12px;

    color:#cbd5e1;

}

.contact-info i{

    color:#ff7b00;
    margin-top:5px;

}

/* SOCIAL */

.social-icons{

    display:flex;
    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    transition:.4s;

}

.social-icons a:hover{

    background:#ff7b00;

    transform:translateY(-5px);

}

/* COPYRIGHT */

.copyright{

    border-top:
    1px solid rgba(255,255,255,.1);

    padding:20px 0;

}

.copyright .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.copyright p{

    color:#cbd5e1;
    font-size:14px;

}

/* RESPONSIVE */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .copyright .container{

        flex-direction:column;
        text-align:center;

    }

}
/* ==========================
   TOP BRANDING HEADER
========================== */

.top-branding{

    width:100%;

    background:#ffffff;

    border-bottom:1px solid #e5e7eb;

    padding:15px 20px;

}

.branding-container{

    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

}

/* LOGO */

.branding-logo img{

    width:90px;
    height:auto;

}

/* CONTENT */

.branding-content{

    text-align:center;

}

.branding-content h1{

    font-size:34px;

    font-weight:800;

    color:#002147;

    line-height:1.2;

    margin-bottom:5px;

}

.branding-content p{

    font-size:16px;

    color:#ff7b00;

    font-weight:600;

    font-style:italic;

}

/* RESPONSIVE */

@media(max-width:992px){

    .branding-content h1{

        font-size:26px;

    }

}

@media(max-width:768px){

    .branding-container{

        flex-direction:column;

        text-align:center;

    }

    .branding-logo img{

        width:75px;

    }

    .branding-content h1{

        font-size:20px;

    }

    .branding-content p{

        font-size:14px;

    }

}

@media(max-width:480px){

    .top-branding{

        padding:12px 10px;

    }

    .branding-content h1{

        font-size:18px;
        line-height:1.4;

    }

    .branding-content p{

        font-size:13px;

    }

}
/* ==================================
   WELCOME HEADER
================================== */

.welcome-header{
    text-align:center;
    margin-bottom:70px;
    position:relative;
}

.welcome-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 25px;

    background:rgba(255,153,0,.12);
    color:#ff9800;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.welcome-tag i{
    font-size:16px;
}

.welcome-header h2{
    margin-top:25px;

    font-size:52px;
    font-weight:800;
    line-height:1.2;

    color:#0b2c5f;
}

.welcome-header h2 span{
    display:block;
    color:#ff9800;
}

.header-divider{
    width:100px;
    height:5px;

    margin:25px auto;

    background:linear-gradient(
    90deg,
    #0b2c5f,
    #ff9800);

    border-radius:20px;
}

.welcome-header p{
    max-width:800px;
    margin:auto;

    color:#6b7280;

    font-size:18px;
    line-height:1.9;
}

/* Tablet */

@media(max-width:992px){

    .welcome-header h2{
        font-size:42px;
    }

}

/* Mobile */

@media(max-width:768px){

    .welcome-header{
        margin-bottom:50px;
    }

    .welcome-header h2{
        font-size:30px;
    }

    .welcome-header p{
        font-size:15px;
        padding:0 10px;
    }

    .welcome-tag{
        font-size:12px;
    }

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose{
    padding:80px 0;
    background:#f8f8f8;
}

.why-title{
    text-align:center;
    margin-bottom:50px;
}

.why-title h2{
    font-size:42px;
    font-weight:800;
    color:#003b78;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-title p{
    color:#34526f;
    font-size:18px;
    max-width:550px;
    margin:auto;
    line-height:1.7;
}

/* Top Row */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* Bottom Row */

.why-bottom{
    margin-top:20px;
    display:flex;
    justify-content:center;
}

/* Card */

.why-box{
    background:#fff;
    border-radius:15px;
    padding:35px 20px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);

    transition:.3s;
}

.why-box:hover{
    transform:translateY(-5px);
}

.why-box i{
    color:#f5a623;
    font-size:28px;
    margin-bottom:15px;
}

.why-box h4{
    color:#003b78;
    font-size:17px;
    font-weight:600;
    line-height:1.5;
    margin:0;
}

/* Highlighted Card */

.why-box.active{
    border:1px solid #f5a623;
}

/* Center Card Width */

.why-bottom .why-box{
    width:270px;
}

/* Tablet */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-bottom{
        justify-content:center;
    }
}

/* Mobile */

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-title h2{
        font-size:30px;
    }

    .why-bottom .why-box{
        width:100%;
    }
}