/* Start custom CSS for html, class: .elementor-element-61d2ba1 *//*=====================================================
        GOOGLE FONT
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================================================
        RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=====================================================
        HEADER
=====================================================*/

.mds-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:linear-gradient(90deg, rgba(240,247,255,.98), rgba(234,244,255,.98));
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(11,94,215,.08);
    transition:.35s ease;
}

/*=====================================================
        CONTAINER
=====================================================*/

.header-container{
    width:92%;
    max-width:1400px;
    margin:auto;
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/*=====================================================
        LOGO
=====================================================*/

.logo-area{
    display:flex;
    align-items:center;
}

.logo-area img{
    width:235px;
    height:auto;
    display:block;
    transition:.35s;
}

.logo-area img:hover{
    transform:scale(1.03);
}

/*=====================================================
        NAVIGATION
=====================================================*/

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
    margin-left:40px;
    margin-right:20px;
}

.main-nav>ul{
    display:flex;
    align-items:center;
    gap:38px;
}

.main-nav>ul>li{
    position:relative;
}

.main-nav>ul>li>a{
    color:#082542;
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    padding:34px 0;
    position:relative;
    transition:.3s;
}

/*=====================================================
        HOVER LINE
=====================================================*/

.main-nav>ul>li>a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:24px;
    width:0;
    height:3px;
    background:#0B5ED7;
    border-radius:20px;
    transition:.35s;
}

.main-nav>ul>li:hover>a::after,
.main-nav>ul>li>a.active::after{
    width:100%;
}

.main-nav>ul>li:hover>a{
    color:#0B5ED7;
}

/*=====================================================
        DROPDOWN ICON
=====================================================*/

.has-dropdown>a i{
    font-size:12px;
    transition:.3s;
}

.has-dropdown:hover>a i{
    transform:rotate(180deg);
}

/*=====================================================
        HEADER BUTTONS
=====================================================*/

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.call-btn,
.whatsapp-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.35s;
}

.call-btn{
    background:#0B5ED7;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-4px);
}

/*=====================================================
        PREMIUM DROPDOWN
=====================================================*/

.dropdown-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(20px);
    width:380px;
    background:#ffffff;
    border-radius:20px;
    padding:25px;
    border:1px solid rgba(11,94,215,.08);
    box-shadow:0 25px 60px rgba(0,0,0,.10);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:999;
}

.has-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

/*=====================================================
        DROPDOWN TITLE
=====================================================*/

.dropdown-title{
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid #eef4ff;
}

.dropdown-title h4{
    font-size:22px;
    color:#082542;
    font-weight:700;
    margin-bottom:6px;
}

.dropdown-title p{
    color:#6b7280;
    font-size:14px;
}

/*=====================================================
        DROPDOWN LIST
=====================================================*/

.dropdown-menu ul{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.dropdown-menu ul li a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    border-radius:12px;
    color:#082542;
    font-weight:500;
    transition:.3s;
}

.dropdown-menu ul li a i{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef6ff;
    color:#0B5ED7;
    border-radius:12px;
    transition:.3s;
}

.dropdown-menu ul li a:hover{
    background:#f5f9ff;
    color:#0B5ED7;
    transform:translateX(6px);
}

.dropdown-menu ul li a:hover i{
    background:#0B5ED7;
    color:#fff;
}

/*=====================================================
        ENROLL BUTTON
=====================================================*/

.enroll-btn{
    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#0B5ED7,#4DA3FF);
    color:#fff;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(11,94,215,.25);
}

.enroll-btn i{
    transition:.35s;
}

.enroll-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(11,94,215,.35);
}

.enroll-btn:hover i{
    transform:translateX(6px);
}

/*=====================================================
        MENU TOGGLE
=====================================================*/

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:#0B5ED7;
    border-radius:12px;
    cursor:pointer;
    position:relative;
}

.menu-toggle span{
    position:absolute;
    left:12px;
    width:24px;
    height:2px;
    background:#fff;
    transition:.3s;
}

.menu-toggle span:nth-child(1){ top:15px; }
.menu-toggle span:nth-child(2){ top:23px; }
.menu-toggle span:nth-child(3){ top:31px; }

/*=====================================================
        MOBILE NAV — default hidden state
=====================================================*/

.mobile-nav{
    display:none;
}

/*=====================================================
        HEADER SCROLL
=====================================================*/

.mds-header.scrolled{
    background:#ffffff;
    box-shadow:0 15px 45px rgba(8,37,66,.10);
}

/*=========================================
        HEADER RESPONSIVE
=========================================*/

@media (max-width:1200px){

    .header-container{ width:95%; }

    .main-nav{
        margin-left:20px;
        margin-right:15px;
    }

    .main-nav>ul{ gap:24px; }

    .main-nav>ul>li>a{ font-size:15px; }

    .logo-area img{ width:190px; }

    .enroll-btn{
        padding:12px 22px;
        font-size:14px;
    }

}

@media (max-width:992px){

    .header-container{ height:80px; }

    .logo-area img{ width:170px; }

    .main-nav{ display:none; }

    .call-btn,
    .whatsapp-btn,
    .enroll-btn{ display:none; }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .mobile-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        max-height:calc(100vh - 80px);
        overflow-y:auto;
        background:#ffffff;
        padding:20px;
        box-shadow:0 20px 40px rgba(0,0,0,.10);
        z-index:9999;
    }

    .mobile-nav.active{
        display:block;
    }

    .mobile-nav ul{
        display:flex;
        flex-direction:column;
        gap:8px;
    }

    .mobile-nav ul li a{
        display:flex;
        align-items:center;
        gap:10px;
        padding:14px 18px;
        color:#082542;
        font-weight:600;
        border-radius:10px;
        transition:.3s;
    }

    .mobile-nav ul li a:hover{
        background:#EEF5FF;
        color:#0B5ED7;
    }

    /*=====================================
            "OUR COURSES" ACCORDION
            Text link navigates normally.
            Arrow button toggles the submenu.
    =====================================*/

    .mobile-nav .mobile-dropdown-toggle{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .mobile-nav .mobile-dropdown-toggle a{
        flex:1;
        padding:14px 18px;
        color:#082542;
        font-weight:600;
    }

    .mobile-nav .mobile-dropdown-toggle a:hover{
        background:#EEF5FF;
        color:#0B5ED7;
    }

    .mobile-nav .mobile-submenu-arrow{
        background:none;
        border:none;
        padding:14px 18px;
        color:#082542;
        cursor:pointer;
    }

    .mobile-nav .mobile-submenu-arrow i{
        transition:.3s;
    }

    .mobile-nav .has-dropdown.open .mobile-submenu-arrow i{
        transform:rotate(180deg);
    }

    .mobile-nav .mobile-submenu{
        display:none;
        flex-direction:column;
        gap:2px;
        padding-left:12px;
        margin-top:4px;
    }

    .mobile-nav .has-dropdown.open .mobile-submenu{
        display:flex;
    }

    .mobile-nav .mobile-submenu li a{
        padding:12px 16px;
        font-size:14px;
        font-weight:500;
    }

    .mobile-nav .mobile-submenu li a i{
        width:20px;
        color:#0B5ED7;
    }

}

/*=========================================
        HAMBURGER ANIMATION
=========================================*/

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:23px;
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:23px;
}

body{
    padding-top:92px;
}

@media (max-width:992px){
    body{
        padding-top:80px;
    }
}/* End custom CSS */