/* =========================================================
   MSIE COMPLETE UPGRADED CSS
   Header + Home + CTA + Footer + Mobile Nav
========================================================= */

:root{
    --msie-primary:#0b6b78;
    --msie-primary-dark:#064b55;
    --msie-secondary:#f5a524;
    --msie-soft:#eef9fb;
    --msie-dark:#102a43;
    --msie-muted:#607083;
    --msie-white:#ffffff;
    --msie-radius:22px;
}

body{
    overflow-x:hidden;
}

.msie-home{
    font-family:inherit;
    color:var(--msie-dark);
    overflow:hidden;
}

.msie-home a,
.main-header-two a,
.site-footer a{
    text-decoration:none;
}

/* =========================================================
   COMMON
========================================================= */

.msie-section{
    padding:90px 0;
    position:relative;
}

.msie-section-soft{
    background:linear-gradient(180deg,#f7fcfd 0%,#ffffff 100%);
}

.msie-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(11,107,120,.1);
    color:var(--msie-primary);
    font-weight:800;
    border-radius:999px;
    padding:8px 16px;
    margin-bottom:16px;
}

.msie-kicker:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--msie-secondary);
}

.msie-title{
    font-size:42px;
    line-height:1.16;
    font-weight:900;
    margin:0 0 18px;
    color:var(--msie-dark);
}

.msie-title span{
    color:var(--msie-primary);
}

.msie-text{
    font-size:16px;
    line-height:1.8;
    color:var(--msie-muted);
    margin-bottom:18px;
}

.msie-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--msie-primary);
    color:#fff!important;
    border-radius:999px;
    padding:14px 24px;
    font-weight:900;
    box-shadow:0 12px 30px rgba(11,107,120,.25);
    transition:.3s;
}

.msie-btn:hover{
    background:var(--msie-primary-dark);
    transform:translateY(-2px);
}

.msie-btn-light{
    background:#fff;
    color:var(--msie-primary)!important;
}

.msie-btn-outline{
    background:transparent;
    color:var(--msie-primary)!important;
    border:2px solid rgba(11,107,120,.2);
    box-shadow:none;
}

.msie-btn-gold{
    background:var(--msie-secondary);
    color:#102a43!important;
    box-shadow:0 14px 34px rgba(245,165,36,.32);
}

.msie-btn-gold:hover{
    background:#fff;
    color:var(--msie-primary)!important;
}

/* =========================================================
   HEADER
========================================================= */

.main-header-two{
    position:relative;
    z-index:99;
    background:#fff;
}

.main-menu-two__top{
    background:linear-gradient(135deg,var(--msie-primary-dark),var(--msie-primary));
    padding:10px 0;
}

.main-menu-two__top-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:0 40px;
}

.main-menu-two__contact-list{
    display:flex;
    align-items:center;
    gap:28px;
    margin:0;
    padding:0;
}

.main-menu-two__contact-list li{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
}

.main-menu-two__contact-list li .icon i{
    color:var(--msie-secondary);
    font-size:16px;
}

.main-menu-two__contact-list li .text p{
    margin:0;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.main-menu-two__contact-list li .text a{
    color:#fff;
}

.main-menu__top-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.main-menu__social-title{
    margin:0;
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.main-menu__social{
    display:flex;
    align-items:center;
    gap:8px;
}

.main-menu__social a{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    color:#fff;
    transition:.3s;
}

.main-menu__social a:hover{
    background:var(--msie-secondary);
    color:var(--msie-dark);
}

.main-menu-two{
    background:#fff;
    box-shadow:0 8px 30px rgba(16,42,67,.08);
}

.main-menu-two__wrapper{
    padding:0 40px;
}

.main-menu-two__wrapper-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.main-menu-two__logo img{
    max-height:70px;
    width:auto;
}

.main-menu__list{
    display:flex;
    align-items:center;
    gap:4px;
    margin:0;
    padding:0;
}

.main-menu__list > li{
    position:relative;
    list-style:none;
}

.main-menu__list > li > a{
    display:block;
    padding:32px 14px;
    color:var(--msie-dark);
    font-weight:800;
    font-size:15px;
    transition:.3s;
}

.main-menu__list > li:hover > a,
.main-menu__list > li.current > a{
    color:var(--msie-primary);
}

.main-menu__list li ul{
    position:absolute;
    top:100%;
    left:0;
    min-width:230px;
    background:#fff;
    padding:12px 0;
    border-radius:14px;
    box-shadow:0 18px 50px rgba(16,42,67,.14);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:999;
}

.main-menu__list li:hover > ul{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.main-menu__list li ul li{
    position:relative;
    list-style:none;
}

.main-menu__list li ul li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:11px 20px;
    color:var(--msie-dark);
    font-weight:700;
    font-size:14px;
    transition:.3s;
}

.main-menu__list li ul li a:hover{
    color:var(--msie-primary);
    background:var(--msie-soft);
}

.main-menu__list li ul li ul{
    left:100%;
    top:0;
}

.main-menu-two__btn-box .thm-btn{
    border-radius:999px;
    background:var(--msie-primary);
    color:#fff;
    padding:13px 22px;
    font-weight:800;
    box-shadow:0 12px 28px rgba(11,107,120,.22);
}

.main-menu-two__btn-box .thm-btn:hover{
    background:var(--msie-primary-dark);
}

.mobile-nav__toggler{
    color:var(--msie-primary);
    font-size:24px;
}

/* =========================================================
   HERO UPGRADED
========================================================= */

.msie-hero,
.msie-hero-premium{
    position:relative;
    min-height:820px;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#052f3a 0%,#0b6b78 55%,#0f8290 100%);
    color:#fff;
    overflow:hidden;
}

.msie-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 10% 10%,rgba(245,165,36,.24),transparent 35%),
        radial-gradient(circle at 85% 18%,rgba(255,255,255,.18),transparent 28%);
}

.msie-hero-premium:after{
    content:"";
    position:absolute;
    right:-120px;
    bottom:-160px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(245,165,36,.2);
    filter:blur(2px);
}

.msie-hero .swiper-container,
.msie-hero .swiper-wrapper,
.msie-hero .swiper-slide{
    height:100%;
}

.msie-hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:.22;
    mix-blend-mode:screen;
}

.msie-hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
    padding:165px 0 130px;
}

.msie-hero-badge{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(8px);
    border-radius:999px;
    padding:9px 16px;
    font-weight:800;
    margin-bottom:20px;
}

.msie-hero h1{
    font-size:70px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-2px;
    margin:0 0 22px;
    color:#fff;
    text-shadow:0 10px 30px rgba(0,0,0,.22);
}

.msie-hero p{
    font-size:19px;
    line-height:1.75;
    color:rgba(255,255,255,.88);
    max-width:760px;
    margin-bottom:30px;
}

.msie-hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.main-slider-two__nav{
    position:relative;
    z-index:5;
}

/* Admission Glass Card */
.msie-admission-card{
    position:relative;
    z-index:3;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    border-radius:30px;
    padding:34px;
    box-shadow:0 30px 80px rgba(0,0,0,.22);
    border:1px solid rgba(255,255,255,.5);
}

.msie-admission-card span{
    display:inline-flex;
    background:rgba(245,165,36,.18);
    color:#9b6200;
    border-radius:999px;
    padding:7px 14px;
    font-weight:900;
    margin-bottom:14px;
}

.msie-admission-card h3{
    font-size:28px;
    font-weight:900;
    color:var(--msie-dark);
    margin-bottom:16px;
}

.msie-admission-card ul{
    padding:0;
    margin:0 0 22px;
    list-style:none;
}

.msie-admission-card li{
    display:flex;
    gap:10px;
    align-items:center;
    padding:8px 0;
    font-weight:800;
    color:var(--msie-muted);
}

.msie-admission-card li i{
    color:var(--msie-primary);
}

.msie-admission-card a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--msie-primary);
    color:#fff;
    border-radius:16px;
    padding:14px 18px;
    font-weight:900;
}

.msie-admission-card a:hover{
    background:var(--msie-primary-dark);
    color:#fff;
}

/* =========================================================
   STATS
========================================================= */

.msie-stats-wrap,
.msie-hero-cards{
    position:relative;
    margin-top:-85px;
    z-index:5;
    padding-bottom:40px;
}

.msie-stat-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(10px);
    border-radius:var(--msie-radius);
    padding:28px;
    box-shadow:0 18px 50px rgba(16,42,67,.12);
    height:100%;
    border:0;
}

.msie-stat-card:after{
    content:"";
    position:absolute;
    right:-35px;
    top:-35px;
    width:95px;
    height:95px;
    background:rgba(11,107,120,.08);
    border-radius:50%;
}

.msie-stat-card i{
    font-size:34px;
    color:var(--msie-primary);
    margin-bottom:14px;
    position:relative;
    z-index:2;
}

.msie-stat-card h3{
    font-size:32px;
    font-weight:900;
    margin:0;
    color:var(--msie-dark);
    position:relative;
    z-index:2;
}

.msie-stat-card p{
    margin:6px 0 0;
    color:var(--msie-muted);
    font-weight:700;
    position:relative;
    z-index:2;
}

/* =========================================================
   ABOUT
========================================================= */

.msie-about-premium:before{
    content:"";
    position:absolute;
    left:-120px;
    top:70px;
    width:260px;
    height:260px;
    background:rgba(11,107,120,.08);
    border-radius:50%;
}

.msie-image-stack{
    position:relative;
    padding:0 28px 28px 0;
}

.msie-image-stack img{
    border-radius:30px;
    width:100%;
    box-shadow:0 22px 60px rgba(16,42,67,.14);
}

.msie-image-premium:before{
    content:"";
    position:absolute;
    right:15px;
    top:15px;
    width:100%;
    height:100%;
    border:3px solid rgba(245,165,36,.5);
    border-radius:34px;
    z-index:-1;
}

.msie-floating-badge,
.msie-image-card{
    position:absolute;
    left:30px;
    bottom:8px;
    background:#fff;
    border-radius:22px;
    padding:18px 22px;
    box-shadow:0 20px 55px rgba(16,42,67,.18);
    max-width:280px;
}

.msie-floating-badge strong,
.msie-image-card strong{
    display:block;
    color:var(--msie-primary);
    font-size:24px;
    font-weight:900;
}

.msie-floating-badge span,
.msie-image-card span{
    font-size:14px;
    color:var(--msie-muted);
    font-weight:700;
}

.msie-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px;
    margin:25px 0;
}

.msie-feature{
    display:flex;
    gap:12px;
    align-items:center;
    background:var(--msie-soft);
    border-radius:16px;
    padding:14px 16px;
    font-weight:800;
    color:var(--msie-dark);
    box-shadow:0 10px 26px rgba(16,42,67,.06);
    transition:.3s;
}

.msie-feature:hover{
    transform:translateY(-4px);
    background:#fff;
    box-shadow:0 16px 34px rgba(16,42,67,.12);
}

.msie-feature i{
    color:var(--msie-primary);
    font-size:20px;
}

/* =========================================================
   NOTIFICATIONS
========================================================= */

.msie-notice-card{
    background:#fff;
    border-radius:var(--msie-radius);
    box-shadow:0 15px 45px rgba(16,42,67,.09);
    padding:28px;
    height:100%;
    border-top:5px solid var(--msie-primary);
}

.msie-notice-card h3{
    font-size:24px;
    font-weight:900;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
}

.msie-notice-list{
    list-style:none;
    margin:0;
    padding:0;
    max-height:330px;
    overflow:auto;
}

.msie-notice-list li{
    display:flex;
    gap:12px;
    justify-content:space-between;
    border-bottom:1px solid #eef2f5;
    padding:14px 0;
}

.msie-notice-list li:last-child{
    border-bottom:0;
}

.msie-notice-list a{
    color:var(--msie-dark);
    font-weight:700;
    line-height:1.5;
}

.msie-notice-list a:hover{
    color:var(--msie-primary);
}

.msie-date{
    white-space:nowrap;
    color:var(--msie-muted);
    font-size:13px;
    font-weight:700;
}

.msie-new{
    font-size:10px;
    background:#ff3b30;
    color:#fff;
    border-radius:999px;
    padding:3px 7px;
    margin-left:6px;
}

/* =========================================================
   COURSES
========================================================= */

.msie-courses-premium{
    background:linear-gradient(180deg,#fff 0%,#f3fbfc 100%);
}

.msie-course-card{
    background:#fff;
    border-radius:var(--msie-radius);
    overflow:hidden;
    box-shadow:0 16px 48px rgba(16,42,67,.1);
    height:100%;
    transition:.3s;
    border:0;
}

.msie-course-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 65px rgba(16,42,67,.14);
}

.msie-course-img{
    height:220px;
    overflow:hidden;
    background:#d9eef2;
}

.msie-course-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.msie-course-card:hover .msie-course-img img{
    transform:scale(1.06);
}

.msie-course-body{
    padding:24px;
}

.msie-course-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:14px;
}

.msie-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(11,107,120,.1);
    color:var(--msie-primary);
    border-radius:999px;
    padding:7px 12px;
    font-size:13px;
    font-weight:800;
}

.msie-course-dept{
    margin-bottom:8px;
    font-weight:900;
    color:var(--msie-primary);
}

.msie-course-body h3{
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
}

.msie-course-body h3 a{
    color:var(--msie-dark);
}

.msie-course-body h3 a:hover{
    color:var(--msie-primary);
}

.msie-course-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--msie-primary);
    font-weight:900;
}

.msie-course-link:hover{
    color:var(--msie-primary-dark);
}

/* =========================================================
   FACILITIES
========================================================= */

.msie-facility{
    background:#fff;
    border-radius:20px;
    padding:26px;
    text-align:center;
    height:100%;
    box-shadow:0 12px 35px rgba(16,42,67,.08);
    border:0;
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.msie-facility:before{
    content:"";
    position:absolute;
    inset:auto -30px -30px auto;
    width:90px;
    height:90px;
    background:rgba(245,165,36,.16);
    border-radius:50%;
}

.msie-facility:hover{
    background:var(--msie-primary);
    color:#fff;
    transform:translateY(-6px);
}

.msie-facility i,
.msie-facility span[class^="icon-"]{
    font-size:38px;
    color:var(--msie-secondary);
    margin-bottom:15px;
    display:inline-block;
    position:relative;
    z-index:2;
}

.msie-facility h3{
    font-size:20px;
    font-weight:900;
    margin-bottom:8px;
    position:relative;
    z-index:2;
}

.msie-facility p{
    color:var(--msie-muted);
    margin:0;
    position:relative;
    z-index:2;
}

.msie-facility:hover p{
    color:rgba(255,255,255,.82);
}

/* =========================================================
   ADMISSION SECTION
========================================================= */

.msie-admission{
    background:
        radial-gradient(circle at 10% 0%,rgba(245,165,36,.25),transparent 35%),
        linear-gradient(135deg,#052f3a,#0b6b78);
    color:#fff;
    overflow:hidden;
}

.msie-admission .msie-title,
.msie-admission .msie-text{
    color:#fff;
}

.msie-admission .msie-text{
    color:rgba(255,255,255,.82);
}

.msie-step{
    display:flex;
    gap:15px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    border-radius:18px;
    padding:18px;
    margin-bottom:14px;
    backdrop-filter:blur(10px);
    transition:.3s;
}

.msie-step:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.18);
}

.msie-step-no{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--msie-secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex:0 0 42px;
    color:#102a43;
}

.msie-step h4{
    color:#fff;
    margin:0 0 4px;
    font-weight:900;
}

.msie-step p{
    margin:0;
    color:rgba(255,255,255,.78);
}

/* =========================================================
   PARTNERS
========================================================= */

.msie-logo-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
}

.msie-logo-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    text-align:center;
    box-shadow:0 14px 42px rgba(16,42,67,.08);
    min-height:130px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.msie-logo-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 58px rgba(16,42,67,.13);
}

.msie-logo-card img{
    max-width:130px;
    max-height:75px;
    object-fit:contain;
    margin-bottom:10px;
}

.msie-logo-card h4{
    font-size:15px;
    font-weight:900;
    margin:0;
    color:var(--msie-dark);
}

/* =========================================================
   TESTIMONIAL + BLOG
========================================================= */

.msie-testimonial{
    background:#fff;
    border-radius:var(--msie-radius);
    padding:30px;
    box-shadow:0 16px 45px rgba(16,42,67,.09);
    height:100%;
    border:0;
}

.msie-stars{
    color:#f6b21a;
    margin-bottom:14px;
}

.msie-testimonial h4{
    font-size:20px;
    font-weight:900;
    color:var(--msie-dark);
}

.msie-blog-card{
    background:#fff;
    border-radius:var(--msie-radius);
    overflow:hidden;
    box-shadow:0 16px 45px rgba(16,42,67,.09);
    height:100%;
    border:0;
    transition:.3s;
}

.msie-blog-card:hover{
    transform:translateY(-6px);
}

.msie-blog-img{
    height:220px;
    background:#d9eef2;
    overflow:hidden;
}

.msie-blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.msie-blog-card:hover .msie-blog-img img{
    transform:scale(1.06);
}

.msie-blog-body{
    padding:24px;
}

.msie-blog-meta{
    font-size:13px;
    color:var(--msie-muted);
    font-weight:700;
    margin-bottom:10px;
}

.msie-blog-body h3{
    font-size:21px;
    font-weight:900;
    line-height:1.35;
}

.msie-blog-body h3 a{
    color:var(--msie-dark);
}

.msie-blog-body h3 a:hover{
    color:var(--msie-primary);
}

/* =========================================================
   FINAL CTA
========================================================= */

.msie-final-cta{
    background:
        radial-gradient(circle at 90% 20%,rgba(245,165,36,.32),transparent 28%),
        linear-gradient(135deg,#102a43,#0b6b78);
    border-radius:34px;
    padding:48px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.msie-final-cta:after{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:240px;
    height:240px;
    background:rgba(245,165,36,.22);
    border-radius:50%;
}

.msie-final-cta h2{
    color:#fff;
    font-weight:900;
    font-size:38px;
    margin-bottom:12px;
}

.msie-final-cta p{
    color:rgba(255,255,255,.82);
    margin:0;
}

/* =========================================================
   CTA ONE
========================================================= */

.cta-one{
    margin-bottom:-80px;
    position:relative;
    z-index:3;
}

.cta-one__inner{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:45px 35px;
    background:linear-gradient(135deg,var(--msie-primary-dark),var(--msie-primary));
    box-shadow:0 24px 70px rgba(16,42,67,.18);
}

.cta-one__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:.12;
}

.cta-one__single{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    height:100%;
}

.cta-one__icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--msie-secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 64px;
}

.cta-one__icon span{
    font-size:30px;
    color:var(--msie-dark);
}

.cta-one__content h3{
    color:#fff;
    font-size:22px;
    font-weight:900;
    margin:0 0 6px;
}

.cta-one__content p{
    color:rgba(255,255,255,.82);
    margin:0;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    position:relative;
    background:#081f2d;
    color:#fff;
    padding-top:150px;
    overflow:hidden;
}

.site-footer__map{
    position:absolute;
    inset:0;
    background-repeat:no-repeat;
    background-position:center;
    opacity:.06;
}

.site-footer__top{
    position:relative;
    z-index:2;
    padding:0 0 70px;
}

.footer-widget__about-logo img{
    max-height:60px;
    width:auto;
    background:#fff;
    padding:8px 12px;
    border-radius:12px;
}

.footer-widget__about-text,
.site-footer__text{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin-top:20px;
}

.footer-widget__title{
    color:#fff;
    font-size:22px;
    font-weight:900;
    margin-bottom:24px;
    position:relative;
}

.footer-widget__title:after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:var(--msie-secondary);
    border-radius:10px;
    margin-top:10px;
}

.footer-widget__links-list{
    margin:0;
    padding:0;
}

.footer-widget__links-list li{
    list-style:none;
    margin-bottom:12px;
}

.footer-widget__links-list li a{
    color:rgba(255,255,255,.75);
    font-weight:600;
    transition:.3s;
}

.footer-widget__links-list li a:hover{
    color:var(--msie-secondary);
    padding-left:6px;
}

.footer-widget__contact-info-list{
    margin:0;
    padding:0;
}

.footer-widget__contact-info-list li{
    list-style:none;
    display:flex;
    gap:12px;
    margin-bottom:16px;
}

.footer-widget__contact-info-list .icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 38px;
}

.footer-widget__contact-info-list .icon span{
    color:var(--msie-secondary);
}

.footer-widget__contact-info-list p,
.footer-widget__contact-info-list a{
    color:rgba(255,255,255,.75);
    margin:0;
    line-height:1.6;
}

.footer-widget__contact-info-list a:hover{
    color:var(--msie-secondary);
}

.footer-widget__social-box{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.footer-widget__social-box a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-widget__social-box a:hover{
    background:var(--msie-secondary);
    color:var(--msie-dark);
}

.site-footer__newsletter-input{
    position:relative;
    margin-bottom:14px;
}

.site-footer__newsletter-input input{
    width:100%;
    height:54px;
    border:0;
    outline:0;
    border-radius:999px;
    padding:0 48px 0 18px;
    background:rgba(255,255,255,.1);
    color:#fff;
}

.site-footer__newsletter-input input::placeholder{
    color:rgba(255,255,255,.65);
}

.site-footer__newsletter-input-icon{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--msie-secondary);
}

.checked-box label{
    color:rgba(255,255,255,.7);
    font-size:14px;
}

.site-footer__newsletter-btn{
    width:54px;
    height:54px;
    border:0;
    border-radius:50%;
    background:var(--msie-secondary);
    color:var(--msie-dark);
    font-size:18px;
    transition:.3s;
}

.site-footer__newsletter-btn:hover{
    background:#fff;
}

.site-footer__bottom{
    position:relative;
    z-index:2;
    border-top:1px solid rgba(255,255,255,.1);
    padding:22px 0;
}

.site-footer__bottom-inner{
    text-align:center;
}

.site-footer__copyright-text{
    color:rgba(255,255,255,.75);
    margin:0;
}

.site-footer__copyright-text a{
    color:var(--msie-secondary);
}

/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav__wrapper{
    position:fixed;
    inset:0;
    z-index:9999;
    visibility:hidden;
    opacity:0;
    transition:.3s;
}

.mobile-nav__wrapper.expanded{
    visibility:visible;
    opacity:1;
}

.mobile-nav__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.mobile-nav__content{
    position:absolute;
    top:0;
    left:0;
    width:310px;
    max-width:86%;
    height:100%;
    background:#081f2d;
    padding:30px;
    overflow-y:auto;
    transform:translateX(-100%);
    transition:.3s;
}

.mobile-nav__wrapper.expanded .mobile-nav__content{
    transform:translateX(0);
}

.mobile-nav__close{
    color:#fff;
    font-size:22px;
    display:block;
    text-align:right;
    margin-bottom:20px;
    cursor:pointer;
}

.mobile-nav__content .logo-box img{
    background:#fff;
    padding:8px 12px;
    border-radius:12px;
    max-height:60px;
}

.mobile-nav__contact{
    margin:30px 0 20px;
    padding:0;
}

.mobile-nav__contact li{
    list-style:none;
    display:flex;
    gap:10px;
    margin-bottom:14px;
    color:#fff;
}

.mobile-nav__contact li i{
    color:var(--msie-secondary);
}

.mobile-nav__contact li a{
    color:rgba(255,255,255,.8);
}

.mobile-nav__social{
    display:flex;
    gap:10px;
}

.mobile-nav__social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-nav__social a:hover{
    background:var(--msie-secondary);
    color:var(--msie-dark);
}

/* =========================================================
   SCROLL TOP
========================================================= */

.scroll-to-top{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--msie-primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 30px rgba(11,107,120,.3);
}

.scroll-to-top:hover{
    background:var(--msie-secondary);
    color:var(--msie-dark);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .main-menu-two__top-inner,
    .main-menu-two__wrapper{
        padding-left:20px;
        padding-right:20px;
    }

    .main-menu__list > li > a{
        padding:28px 9px;
        font-size:14px;
    }

    .msie-hero h1{
        font-size:56px;
    }

    .msie-logo-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){

    .main-menu-two__top-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .main-menu-two__contact-list{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .main-menu-two__main-menu-box .main-menu__list,
    .main-menu__list{
        display:none;
    }

    .main-menu-two__right{
        display:none;
    }

    .mobile-nav__toggler{
        display:block;
    }

    .cta-one{
        margin-bottom:-50px;
    }

    .cta-one__single{
        margin-bottom:18px;
    }

    .site-footer{
        padding-top:110px;
    }
}

@media(max-width:767px){

    .main-menu-two__top-inner,
    .main-menu-two__wrapper{
        padding-left:15px;
        padding-right:15px;
    }

    .main-menu__top-right{
        flex-wrap:wrap;
    }

    .main-menu-two__logo img{
        max-height:58px;
    }

    .msie-section{
        padding:60px 0;
    }

    .msie-hero,
    .msie-hero-premium{
        min-height:660px;
    }

    .msie-hero h1{
        font-size:40px;
        letter-spacing:-1px;
    }

    .msie-hero-content{
        padding:120px 0 95px;
    }

    .msie-title{
        font-size:32px;
    }

    .msie-stats-wrap,
    .msie-hero-cards{
        margin-top:-45px;
    }

    .msie-feature-grid{
        grid-template-columns:1fr;
    }

    .msie-logo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .msie-floating-badge,
    .msie-image-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:-35px;
        margin-left:15px;
        margin-right:15px;
    }

    .msie-image-premium:before{
        display:none;
    }

    .msie-notice-list li{
        flex-direction:column;
        gap:4px;
    }

    .cta-one__inner{
        padding:28px 18px;
        border-radius:22px;
    }

    .cta-one__single{
        flex-direction:column;
        text-align:center;
    }

    .site-footer{
        padding-top:90px;
    }

    .footer-widget__about,
    .footer-widget__links,
    .footer-widget__contact-info,
    .site-footer__newsletter{
        margin-bottom:35px;
    }

    .msie-final-cta{
        padding:30px;
    }

    .msie-final-cta h2{
        font-size:28px;
    }
}

/* =========================================
   BLOG DETAILS PREMIUM DESIGN
========================================= */

.blog-details{
    position:relative;
    overflow:hidden;
}

.blog-details:before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(11,107,120,.05);
}

.blog-details .card{
    border:none !important;
    border-radius:28px !important;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(16,42,67,.08) !important;
}

.blog-details .card img{
    transition:.5s;
}

.blog-details .card:hover img{
    transform:scale(1.02);
}

/* AUTHOR BAR */
.blog-details .small{
    font-size:14px !important;
    font-weight:600;
    color:#64748b !important;
}

.blog-details .small i{
    color:#0b6b78;
    margin-right:4px;
}

/* TITLE */
.blog-details h2{
    font-size:42px;
    line-height:1.25;
    font-weight:800;
    letter-spacing:-1px;
    color:#102a43;
    margin-bottom:22px;
}

/* SHORT DESCRIPTION */
.blog-details .text-muted.fs-6{
    font-size:17px !important;
    line-height:1.9 !important;
    color:#5b6574 !important;
    font-weight:500;
}

/* QUOTE BOX */
.blog-details .rounded-3{
    position:relative;
    background:linear-gradient(135deg,#eef9fb,#f7fbff) !important;
    border-left:5px solid #0b6b78 !important;
    border-radius:20px !important;
    padding:28px !important;
}

.blog-details .rounded-3 i{
    font-size:26px;
    color:#0b6b78 !important;
}

.blog-details .rounded-3 span{
    font-size:18px;
    line-height:1.8;
    color:#334155;
    font-weight:500;
}

/* BLOG CONTENT */
.blog-content{
    font-size:17px !important;
    line-height:2 !important;
    color:#374151;
}

.blog-content p{
    margin-bottom:24px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4{
    margin-top:34px;
    margin-bottom:18px;
    font-weight:800;
    color:#102a43;
}

.blog-content h3{
    font-size:30px;
}

.blog-content img{
    max-width:100%;
    border-radius:20px;
    margin:25px 0;
    box-shadow:0 14px 45px rgba(0,0,0,.08);
}

.blog-content ul,
.blog-content ol{
    padding-left:22px;
    margin-bottom:24px;
}

.blog-content li{
    margin-bottom:12px;
    line-height:1.8;
}

/* SIDEBAR */
.blog-details .bg-white{
    border-radius:26px !important;
    box-shadow:0 18px 55px rgba(16,42,67,.08) !important;
    border:none !important;
}

.blog-details .bg-white h4{
    font-size:26px;
    font-weight:800;
    color:#102a43;
}

.blog-details .border-bottom{
    border-color:#eef2f7 !important;
}

/* LATEST BLOG ITEM */
.blog-details .bg-white .d-flex{
    transition:.3s;
    border-radius:14px;
    padding:8px;
}

.blog-details .bg-white .d-flex:hover{
    background:#f8fbfd;
}

.blog-details .bg-white img{
    transition:.4s;
}

.blog-details .bg-white .d-flex:hover img{
    transform:scale(1.05);
}

.blog-details .bg-white h6{
    font-size:17px;
    line-height:1.5;
    font-weight:700;
}

.blog-details .bg-white h6 a{
    transition:.3s;
}

.blog-details .bg-white h6 a:hover{
    color:#0b6b78 !important;
}

.blog-details small{
    font-size:13px;
    font-weight:600;
}

/* PAGE HEADER */
.page-header{
    position:relative;
    padding:140px 0 110px;
    overflow:hidden;
}

.page-header:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(5,47,58,.86),
        rgba(11,107,120,.76)
    );
}

.page-header__bg{
    background-size:cover;
    background-position:center;
    position:absolute;
    inset:0;
}

.page-header__inner{
    position:relative;
    z-index:2;
}

.page-header h2{
    font-size:54px;
    font-weight:900;
    line-height:1.15;
    color:#fff;
    margin-bottom:18px;
}

.thm-breadcrumb{
    gap:10px;
}

.thm-breadcrumb li{
    color:rgba(255,255,255,.82);
    font-size:15px;
    font-weight:600;
}

.thm-breadcrumb li a{
    color:#fff;
    font-weight:700;
}

.thm-breadcrumb li a:hover{
    color:#f5a524;
}

/* RESPONSIVE */
@media(max-width:991px){

    .blog-details h2{
        font-size:34px;
    }

    .page-header h2{
        font-size:42px;
    }

    .blog-content{
        font-size:16px !important;
    }
}

@media(max-width:767px){

    .page-header{
        padding:110px 0 90px;
    }

    .page-header h2{
        font-size:30px;
        line-height:1.3;
    }

    .blog-details .card-body{
        padding:24px 18px !important;
    }

    .blog-details h2{
        font-size:28px;
        line-height:1.35;
    }

    .blog-content{
        font-size:15px !important;
        line-height:1.9 !important;
    }

    .blog-details .rounded-3{
        padding:22px !important;
    }

    .blog-details .rounded-3 span{
        font-size:16px;
    }

    .blog-details .bg-white{
        padding:22px !important;
    }
}

    /* =========================================
   MODERN ABOUT PAGE PREMIUM DESIGN
========================================= */

/* PAGE HEADER */
.modern-page-header{
    position:relative;
    padding:170px 0 130px;
    overflow:hidden;
}

.modern-page-header__bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1.05);
}

.modern-page-header__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            135deg,
            rgba(5,47,58,.88),
            rgba(11,107,120,.72)
        );
}

.modern-page-header__content{
    position:relative;
    z-index:2;
}

.modern-page-header__tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
    padding:10px 18px;
    border-radius:999px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.modern-page-header__title{
    font-size:68px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-2px;
    color:#fff;
    margin-bottom:24px;
}

.modern-page-header__title span{
    color:#f5a524;
}

.modern-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.modern-breadcrumb li{
    color:rgba(255,255,255,.82);
    font-size:15px;
    font-weight:600;
}

.modern-breadcrumb li a{
    color:#fff;
    font-weight:700;
}

.modern-breadcrumb li a:hover{
    color:#f5a524;
}

/* ABOUT SECTION */
.about-modern-section{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:#fff;
}

.about-modern-section:before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(11,107,120,.05);
}

.about-modern-section__image{
    position:relative;
}

.about-modern-section__image img{
    width:100%;
    border-radius:34px;
    box-shadow:0 24px 70px rgba(16,42,67,.14);
}

.about-modern-section__experience{
    position:absolute;
    left:-20px;
    bottom:40px;
    background:#fff;
    border-radius:24px;
    padding:24px 28px;
    box-shadow:0 18px 55px rgba(16,42,67,.12);
    min-width:180px;
}

.about-modern-section__experience h3{
    font-size:44px;
    font-weight:900;
    color:#0b6b78;
    margin-bottom:4px;
}

.about-modern-section__experience p{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#64748b;
}

/* MINI TITLE */
.section-mini-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(11,107,120,.08);
    color:#0b6b78;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:24px;
}

.section-mini-title:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#f5a524;
}

/* TITLE */
.about-modern-section__title{
    font-size:54px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-1px;
    color:#102a43;
    margin-bottom:24px;
}

.about-modern-section__title span{
    color:#0b6b78;
}

.about-modern-section__text{
    font-size:17px;
    line-height:1.9;
    color:#5b6574;
    margin-bottom:18px;
}

/* FEATURES */
.about-modern-section__features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-top:34px;
}

.about-feature{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:20px;
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 45px rgba(16,42,67,.06);
    transition:.35s;
}

.about-feature:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 60px rgba(16,42,67,.12);
}

.about-feature i{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    background:rgba(11,107,120,.1);
    color:#0b6b78;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.about-feature h5{
    font-size:19px;
    font-weight:800;
    color:#102a43;
    margin-bottom:6px;
}

.about-feature p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#64748b;
}

/* COURSES STRIP */
.courses-strip{
    padding:90px 0;
    background:
        linear-gradient(
            135deg,
            #052f3a,
            #0b6b78
        );
    position:relative;
    overflow:hidden;
}

.courses-strip:before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(245,165,36,.16);
}

.section-heading h2{
    font-size:48px;
    font-weight:900;
    color:#fff;
    margin-top:12px;
}

.courses-strip__wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:50px;
}

.modern-course-badge{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:16px 28px;
    border-radius:999px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.modern-course-badge:hover{
    background:#fff;
    color:#0b6b78;
    transform:translateY(-4px);
}

/* MISSION VISION */
.mission-vision-section{
    padding:110px 0;
    background:#f8fbfd;
}

.modern-info-card{
    background:#fff;
    border-radius:32px;
    padding:50px 40px;
    text-align:center;
    height:100%;
    box-shadow:0 18px 60px rgba(16,42,67,.07);
    transition:.35s;
}

.modern-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(16,42,67,.12);
}

.modern-info-card__icon{
    width:92px;
    height:92px;
    border-radius:28px;
    background:rgba(11,107,120,.1);
    color:#0b6b78;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin:0 auto 24px;
}

.modern-info-card h3{
    font-size:34px;
    font-weight:900;
    margin-bottom:18px;
    color:#102a43;
}

.modern-info-card p{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
}

/* WHY CHOOSE */
.why-choose-modern{
    padding:110px 0;
    background:#fff;
}

.modern-feature-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 16px 50px rgba(16,42,67,.06);
    overflow:hidden;
    transition:.35s;
    height:100%;
}

.modern-feature-card:before{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(11,107,120,.05);
}

.modern-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(16,42,67,.12);
}

.modern-feature-card i{
    width:84px;
    height:84px;
    border-radius:24px;
    background:rgba(11,107,120,.1);
    color:#0b6b78;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 24px;
}

.modern-feature-card h4{
    font-size:24px;
    font-weight:800;
    color:#102a43;
    margin-bottom:14px;
}

.modern-feature-card p{
    font-size:16px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

/* RESPONSIVE */
@media(max-width:991px){

    .modern-page-header{
        padding:140px 0 110px;
    }

    .modern-page-header__title{
        font-size:52px;
    }

    .about-modern-section__title{
        font-size:42px;
    }

    .section-heading h2{
        font-size:40px;
    }

    .about-modern-section__features{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .modern-page-header{
        padding:120px 0 90px;
    }

    .modern-page-header__title{
        font-size:34px;
        line-height:1.3;
        letter-spacing:-1px;
    }

    .about-modern-section{
        padding:80px 0;
    }

    .about-modern-section__title{
        font-size:30px;
        line-height:1.35;
    }

    .section-heading h2{
        font-size:30px;
    }

    .about-modern-section__text,
    .modern-info-card p,
    .modern-feature-card p{
        font-size:15px;
        line-height:1.9;
    }

    .about-modern-section__experience{
        left:10px;
        bottom:10px;
        padding:18px 22px;
    }

    .about-modern-section__experience h3{
        font-size:32px;
    }

    .modern-info-card,
    .modern-feature-card{
        padding:34px 24px;
    }
}
