*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
}

/* TOP BAR */
.top-bar{
    background:#17373b;
    color:#fff;
    padding:8px 0;
    font-size:14px;
}

.top-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:28px;
    align-items:center;
    flex-wrap:wrap;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:400;
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    transition:.35s;
}

/* icon */

.top-left a i{
    font-size:14px;
    transition:.35s;
}

/* underline */

.top-left a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:1px;
    background:#ee232b;
    transition:.35s;
}

/* hover */

.top-left a:hover{
    color:#ee232b;
}

.top-left a:hover i{
    transform:translateY(-2px);
}

.top-left a:hover::after{
    width:100%;
}

.top-right{
    display:flex;
    gap:18px;
}

.top-right{
    display:flex;
    gap:12px;
    align-items:center;
}

.top-right a{
    width:30px;
    height:30px;
    background:#fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#14285c;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.5);
}

/* hover */

.top-right a:hover{
    background:#ee232b;
    color:#fff;
    transform:translateY(-3px);
}

/* icon */

.top-right a i{
    font-size:16px;
}

/* HEADER */
.main-header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.header-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
}

.logo{
    flex:1;
}

.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* NAV */
nav{
/*    flex:1;*/
    display:flex;
    justify-content:center;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
    align-items:center;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#1f2d5a;
    font-weight:500;
    font-size:16px;
    position:relative;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:6px;
}

nav ul li a:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ee232b;
    transition:.3s;
}

nav ul li a:hover:after{
    width:100%;
}

nav ul li a:hover{
    color:#ee232b;
}

/* Dropdown */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-radius:12px;
    padding:8px 0;
    margin: 10px 0;
    display:none;
    gap:2px !important;
    flex-direction:column;
    z-index:999;
}

.dropdown-menu li{
    width:100%;
    margin:0;
    padding:0;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    line-height:1.4;
    font-size:15px;
    color:#1f2d5a;
}

.dropdown-menu li a:hover{
    background:#f8f8f8;
    color:#ee232b;
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

/* Mobile */
@media(max-width:991px){

    nav{
    position: fixed;
    top: 15px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 20px 20px;
    transition: .4s;
    z-index: 9999;
    overflow-y: auto;
}

    nav.active{
        right:0;
    }
    nav *{
    margin-top: 0 !important;
}

    nav ul{
        flex-direction:column;
        gap:20px;
        align-items:flex-start;
        width:100%;
    }

    .dropdown-menu{
        display:none;
        flex-direction:column;
        padding-left:15px;
    }

    .dropdown.active .dropdown-menu{
        display:flex;
    }

    .dropdown > a{
        cursor:pointer;
    }
}

/* BUTTON */
.right-btn{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.demo-btn{
    background:linear-gradient(135deg, #ee232b, #ee232bd1);
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 6px 15px rgba(242,140,40,0.25);
    transition:.4s;
}

.demo-btn:hover{
    transform:translateY(-2px);
}

/* MENU ICON */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#1f2d5a;
}

.mobile-top{
    display:none;
}

/* MOBILE */
@media(max-width:992px){

    .top-bar{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .mobile-top{
        width:90%;
        margin:auto;
        display:flex;
        justify-content:space-between;
        align-items:center;
        margin-bottom:35px;
    }

    .mobile-top img{
        height:50px;
    }

    .close-btn{
        font-size:30px;
        color:#1f2d5a;
        cursor:pointer;
    }

    nav ul{
        width:90%;
        margin:auto;
        flex-direction:column;
        gap:0;
        padding:0;
    }

    nav ul li{
        width:100%;
        border-bottom:1px solid #e8e8e8;
        padding:16px 0;
    }

    nav ul li a{
        font-size:16px;
        font-weight:400;
        display:block;
        width:100%;
        text-align:left;
    }

    .right-btn{
        display:none;
    }

    .logo img{
        height:48px;
    }
}
.hero-section{
    position:relative;
    width:100%;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#f8fbff;
}

/* Image */
.hero-image{
    position:absolute;
    right:0;
    top:0;
    width:100%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:floatImage 7s ease-in-out infinite alternate;
}

/* subtle premium motion */
@keyframes floatImage{
    from{
        transform:scale(1) translateY(0);
    }
    to{
        transform:scale(1.03) translateY(-8px);
    }
}

/* Overlay */
.hero-overlay{
    position:absolute;
    left:0;
    top:0;
    width:58%;
    height:100%;
    background:linear-gradient(to right,
    rgba(248,250,255,0.98),
    rgba(248,250,255,0.85),
    rgba(248,250,255,0.08));
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    max-width:560px;
    margin-left:7%;
    animation:fadeUp 1.2s ease;
}

/* Tag */
.hero-tag{
    display:inline-block;
    background:rgba(242,140,40,0.12);
    color:#ee232b;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

/* Heading */
.hero-content h1{
    font-size:50px;
    line-height:1.1;
    color:#ef2c34;
    font-weight:600;
    margin-bottom:16px;
}

/* Paragraph */
.hero-content p{
    font-size:20px;
    color:#4b587c;
    line-height:1.6;
    margin-bottom:10px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}

/* COMMON */

.hero-buttons a{
    min-width:180px;
    padding:14px 15px;
    border-radius:14px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

/* PRIMARY */

.hero-btn-primary{
    background:#518187;
    color:#fff;
    animation:btnGlowBlue 2s infinite;
}

/* SECONDARY */

.hero-btn-secondary{
    background:#ee242b;
    color:#fff;
    animation:btnGlowOrange 2s infinite;
}

/* hover */

.hero-buttons a:hover{
    transform:translateY(-3px);
}

/* glow */

@keyframes btnGlowBlue{
    0%,100%{
        box-shadow:0 0 0 rgba(38,38,111,.35);
    }
    50%{
        box-shadow:0 0 18px rgba(38,38,111,.35);
    }
}

@keyframes btnGlowOrange{
    0%,100%{
        box-shadow:0 0 0 rgba(233,132,40,.35);
    }
    50%{
        box-shadow:0 0 18px rgba(233,132,40,.35);
    }
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero-title{
    font-family:'Playfair Display', serif;
    font-size:68px;
    line-height:1.08;
    color:#14285c;
    font-weight:600;
    margin-bottom:25px;
}

/* each line animation */

.hero-title span{
    display:inline-block;
    opacity:0;
    transform:translateY(45px);
    animation:heroReveal .9s forwards;
}

/* stagger */

.hero-title span:nth-child(1){
    animation-delay:.2s;
}

.hero-title span:nth-child(3){
    animation-delay:.5s;
}

.hero-title span:nth-child(5){
    animation-delay:.8s;
}
@keyframes heroReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero-title span:last-child{
    color:#ee232b;
}
@media(max-width:992px){

    .hero-title{
        font-size:44px;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:32px;
        line-height:1.25;
    }

}
@media(max-width:992px){

    .hero-section{
        flex-direction:column;
        min-height:auto;
    }

    .hero-image{
        position:relative;
        width:100%;
        height:45vh;
    }

    .hero-overlay{
        width:100%;
        height:45vh;
        background:linear-gradient(to bottom,
        rgba(248,250,255,0.15),
        rgba(248,250,255,0.75));
    }

    .hero-content{
        margin:40px 8%;
        max-width:100%;
        text-align:center;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:18px;
    }

    /*.hero-buttons{
        justify-content:center;
    }*/
}

@media(max-width:576px){

    .hero-image{
        height:36vh;
    }
    .hero-overlay{
        display:none;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-wrap:nowrap;
        gap:10px;
    }

    .hero-buttons a{
        min-width:auto;
        flex:1;
        font-size:13px;
        padding:12px 10px;
        border-radius:12px;
    }
}

.desktop-image{
    display:block;
}

.mobile-image{
    display:none;
}

/* Mobile image switch */
@media(max-width:768px){

    .desktop-image{
        display:none;
    }

    .mobile-image{
        display:block;
        position:relative;
        width:100%;
        height:100%;
    }

    .mobile-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

}
/* STATS SECTION */
.hero-stats{
    display:flex;
    gap:12px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-stats h3{
    font-size:22px;
    color:#14285c;
    margin-bottom:2px;
    font-weight:600;
}

.hero-stats p{
    font-size:12px;
    color:#4b587c;
}

/* MOBILE FIX */
@media(max-width:768px){
    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons a{
        width:100%;
        flex:none;
        font-size:14px;
        padding:14px;
        border-radius:10px;
    }
    .hero-stats{
        justify-content:center;
        gap:20px;
        flex-wrap: initial!important;
    }

    .hero-stats div{
        width:45%;
        text-align:center;
    }
}
.about-section{
    width:100%;
    padding:80px 7%;
    background:#f3effc;
    overflow:hidden;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT */
.about-content{
    width:48%;
    opacity:0;
    transform:translateY(50px);
    transition:1s ease;
}

.about-content.show{
    opacity:1;
    transform:translateY(0);
}

.about-content h2{
    font-size:54px;
    color:#16295c;
    margin-bottom:25px;
}

.about-content p{
    font-family:'Poppins', sans-serif;
    font-size:19px;
    line-height:1.9;
    color:#4d597c;
    margin-bottom:35px;
}

/* COUNTER BOX */
.stats-box{
    display:flex;
    background:#f1f1f8;
    border-radius:18px;
    overflow:hidden;
}

.stat-item{
    flex:1;
    text-align:center;
    padding:28px 20px;
    border-right:1px solid #e5e5ee;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item h3{
    font-family:'Playfair Display', serif;
    font-size:44px;
    color:#16295c;
    margin-bottom:10px;
}

.stat-item span{
    font-family:'Poppins', sans-serif;
    font-size:16px;
    color:#4d597c;
}

/* RIGHT IMAGE */
.about-image{
    width:48%;
    position:relative;
    opacity:0;
    transform:translateY(50px);
    transition:1s ease .3s;
}

.about-image.show{
    opacity:1;
    transform:translateY(0);
}

.about-image img{
    width:100%;
    border-radius:18px;
    display:block;
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:95px;
    height:95px;
    background:rgba(255,255,255,0.75);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#16295c;
    cursor:pointer;
    transition:.4s;
}

.play-btn:hover{
    background:#fff;
    transform:translate(-50%,-50%) scale(1.08);
}

/* SEE MORE */
.see-more{
    position:absolute;
    top:-38px;
    right:0;
    font-family:'Poppins', sans-serif;
    color:#ee232b;
    text-decoration:none;
    font-weight:500;
}
.enx-video-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 25px 55px rgba(0,0,0,.10);
    transition:.55s;
}

/* shine */

.enx-video-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    z-index:3;
    transition:.9s;
}

.enx-video-card:hover::before{
    left:130%;
}

/* image */

.enx-video-card img{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:.7s;
}

.enx-video-card:hover img{
    transform:scale(1.08);
}

/* overlay */

.enx-video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );
}

/* see more */

.enx-see-more{
    position:absolute;
    top:24px;
    left:24px;
    z-index:6;
    padding:12px 20px;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(14px);
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

/* play button */

.enx-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:5;
    animation:pulseGlow 2s infinite;
    transition:.35s;
}

.enx-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.1);
    background:#ee232b;
}

/* pulse */

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(255,255,255,.35);
    }
    70%{
        box-shadow:0 0 0 25px rgba(255,255,255,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}

/* modal */

.enx-video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    backdrop-filter:blur(14px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.enx-video-box{
    width:90%;
    max-width:900px;
    position:relative;
}

.enx-video-box iframe{
    width:100%;
    height:520px;
    border-radius:18px;
}

.close-video{
    position:absolute;
    top:-45px;
    right:0;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}
/* TABLET */
@media(max-width:992px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-content,
    .about-image{
        width:100%;
    }

    .about-content h2{
        font-size:42px;
        text-align:left;
    }

    .about-content p{
        text-align:center;
    }

    .stats-box{
        margin:auto;
    }
}

/* MOBILE */
@media(max-width:576px){

    /*.about-section{
        padding:70px 5%;
    }
*/
    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:16px;
    }

    .stats-box{
        flex-direction:column;
    }

    .stat-item{
        border-right:none;
        border-bottom:1px solid #e5e5ee;
    }

    .stat-item:last-child{
        border-bottom:none;
    }

    .stat-item h3{
        font-size:34px;
    }

    .play-btn{
        width:75px;
        height:75px;
        font-size:28px;
    }
    .enx-video-card img{
        height:320px;
    }

    .enx-play-btn{
        width:68px;
        height:68px;
        font-size:22px;
    }

    .enx-video-box iframe{
        height:260px;
    }
}
.enx-solutions-wrap{
    padding:80px 6%;
    background:linear-gradient(180deg,#f8fbff,#f3f7fc);
    overflow:hidden;
}

.enx-solutions-head{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
}

.enx-solutions-head span{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:#ee232b;
    font-weight:600;
    margin-bottom:18px;
}

.enx-solutions-head h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    line-height:1.2;
    color:#142b6f;
    margin-bottom:18px;
}

.enx-solutions-head p{
    font-size:18px;
    line-height:1.8;
    color:#66728f;
}

/* GRID */

.enx-solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.enx-solution-box{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(12px);
    padding:42px 32px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(10,40,120,0.08);
    transition:.45s;
    position:relative;
    border:1px solid rgba(255,255,255,0.6);
}

.enx-solution-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(10,40,120,0.12);
}
.enx-solution-box::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    animation:cardLightMove 5s linear infinite;
}
@keyframes cardLightMove{
    from{
        left:-120%;
    }
    to{
        left:140%;
    }
}
.enx-solution-box *{
    position:relative;
    z-index:2;
}

/* ICON */

.enx-icon-box{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    border-radius:22px;
    background:#191866;
    color:#fff;
    margin-bottom:28px;
}

.enx-icon-box{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:linear-gradient(135deg,#142b6f,#3aa6cf);
    color:#fff;
    margin-bottom:28px;
    font-size:30px;
}

/* TITLE */

.enx-solution-box h3{
    font-size:24px;
    color:#142b6f;
    margin-bottom:16px;
}

/* TEXT */

.enx-solution-box p{
    font-size:16px;
    line-height:1.8;
    color:#66728f;
    margin-bottom:24px;
}

/* LINK */

.enx-solution-box a{
    color:#ee232b;
    font-weight:600;
    text-decoration:none;
}

/* Bottom Accent */

.enx-solution-box::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    border-radius:0 0 24px 24px;
    background:linear-gradient(90deg,#ee232b,#3aa6cf);
}
@media(max-width:992px){

    .enx-solutions-grid{
        grid-template-columns:1fr 1fr;
    }

    .enx-solutions-head h2{
        font-size:40px;
    }

}

@media(max-width:600px){

    .enx-solutions-grid{
        grid-template-columns:1fr;
    }

    .enx-solutions-head h2{
        font-size:30px;
    }

}
.enx-courses-section{
    width:100%;
    padding:80px 6%;
    background:#f8fbff;
    overflow:hidden;
}

/* HEADER */

.enx-course-head{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:65px;
}

.enx-course-head span{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:#ee232b;
    font-weight:600;
    margin-bottom:16px;
}

.enx-course-head h2{
    font-family:'Playfair Display', serif;
    font-size:50px;
    color:#14285c;
    margin-bottom:18px;
}

.enx-course-head p{
    font-size:18px;
    line-height:1.8;
    color:#5f6d8c;
}

/* GRID */

.enx-courses-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */

.enx-course-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition:.45s;
}

.enx-course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,0.10);
}

/* IMAGE */

.enx-course-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* CONTENT */

.enx-course-content{
    padding:28px;
}

.enx-course-content h3{
    font-family:'Playfair Display', serif;
    font-size:28px;
    color:#14285c;
    margin-bottom:14px;
}

.enx-course-content p{
    font-size:15px;
    line-height:1.8;
    color:#5f6d8c;
    margin-bottom:22px;
}

/* BUTTON */

.enx-course-btn{
    display:inline-block;
    padding:11px 24px;
    background:linear-gradient(135deg,#f8a145,#e67e22);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}
@media(max-width:992px){

    .enx-courses-grid{
        grid-template-columns:1fr 1fr;
    }

    .enx-course-head h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .enx-courses-grid{
        grid-template-columns:1fr;
    }

    .enx-course-head h2{
        font-size:30px;
    }

}
#preloader{
    position:fixed;
    inset:0;
    background:linear-gradient(
        135deg,
        #ffffff,
        #f5f8fc,
        #eef5ff,
        #ffffff
    );
    background-size:300% 300%;
    animation:bgMove 8s ease infinite;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .9s ease, visibility .9s ease;
}

@keyframes bgMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

#preloader::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(42,167,179,.06);
    filter:blur(90px);
    animation:floatGlow 6s ease-in-out infinite alternate;
}

#preloader::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(42,167,179,.06);
    filter:blur(90px);
    animation:floatGlow 6s ease-in-out infinite alternate;
}

/* wrapper */

.loader-wrapper{
    position:relative;
    width:180px;
    height:180px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* logo bigger */

.loader-wrapper img{
    width:105px;
    height:auto;
    z-index:5;
    animation:pulseLogo 2s infinite ease-in-out;
    filter:drop-shadow(0 8px 18px rgba(20,40,92,.10));
}

/* rings */

.loader-ring{
    position:absolute;
    border-radius:50%;
    border-style:solid;
}

/* outer */

.outer-ring{
    width:180px;
    height:180px;
    border-width:3px;
    border-color:rgba(20,40,92,.06);
    border-top-color:#ee232b;
    border-right-color:#14285c;
    animation:spin 2s linear infinite;
}

/* inner */

.inner-ring{
    width:135px;
    height:135px;
    border-width:2px;
    border-color:rgba(242,140,40,.08);
    border-bottom-color:#2aa7b3;
    border-left-color:#ee232b;
    animation:spinReverse 1.6s linear infinite;
}

/* logo pulse */

@keyframes pulseLogo{
    0%,100%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.12);
        opacity:.92;
    }
}

/* rotate */

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes spinReverse{
    100%{
        transform:rotate(-360deg);
    }
}

/* hide */

#preloader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
@media(max-width:576px){

    .loader-wrapper{
        width:140px;
        height:140px;
    }

    .loader-wrapper img{
        width:82px;
    }

    .outer-ring{
        width:140px;
        height:140px;
    }

    .inner-ring{
        width:105px;
        height:105px;
    }

}

/*About Us*/
.enx-about-block{
    width:100%;
    padding:80px 5%;
    background:#f5f7fa;
    overflow:hidden;   /* horizontal scroll remove */
}

.enx-about-wrap{
    display:grid;
    grid-template-columns:48% 48%;
    gap:4%;   /* column gap */
    max-width:1400px;
    margin:auto;
    align-items:stretch;
}

/* IMAGE */

.enx-about-photo{
    height:700px;
    overflow:hidden;
}

.enx-about-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.enx-about-panel{
    background:#f1555a;
    padding:80px 65px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-width:0;   /* overflow fix */
}

/* LABEL */

.enx-about-small{
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    color:#fff;
    margin-bottom:25px;
}

/* HEADING */

.enx-about-panel h2{
    font-family:'Playfair Display', serif;
    font-size:58px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    max-width:100%;
    word-break:break-word;
}

/* TEXT */

.enx-about-panel p{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    margin-bottom:30px;
}

/* BUTTON */

.enx-about-link{
    display:inline-block;
    padding:14px 34px;
    border:2px solid #fff;
    border-radius:35px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    width:max-content;
}

.enx-about-link:hover{
    background:#fff;
    color:#3aa6cf;
}
@media(max-width:992px){

    .enx-about-wrap{
        grid-template-columns:1fr;
        gap:30px;
    }

    .enx-about-photo{
        height:420px;
    }

    .enx-about-panel{
        padding:50px 35px;
    }

    .enx-about-panel h2{
        font-size:38px;
    }

    .enx-about-panel p{
        font-size:17px;
    }

}

@media(max-width:576px){

    .enx-about-photo{
        height:300px;
    }

    .enx-about-panel{
        padding:40px 25px;
    }

    .enx-about-panel h2{
        font-size:30px;
        line-height:1.25;
    }

}

/* SECTION */
.enx-events-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.enx-events-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.enx-events-head span {
  color: #00a6a6;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.enx-events-head h2 {
  font-size: 42px;
  color: #0f2a44;
  font-weight: 700;
  margin-bottom: 15px;
}

.enx-events-head p {
  color: #5f6c7b;
  font-size: 16px;
  line-height: 1.6;
}

/* EVENT LIST */
.enx-events-list {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.enx-event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.enx-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* DATE BOX */
.enx-event-date {
  background: #0f2a44;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 70px;
}

.enx-event-date span {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.enx-event-date h3 {
  font-size: 20px;
  margin: 5px 0 0;
  font-weight: 700;
}

/* CONTENT */
.enx-event-content {
  flex: 1;
  margin-left: 20px;
}

.enx-event-content h4 {
  font-size: 18px;
  color: #0f2a44;
  margin-bottom: 6px;
  font-weight: 600;
}

.enx-event-content p {
  font-size: 14px;
  color: #6b7a8c;
}

/* BADGES */
.enx-event-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* COLORS */
.enx-event-badge.upcoming {
  background: #d1f7ef;
  color: #00a67e;
}

.enx-event-badge.recent {
  background: #e0f2ff;
  color: #0077cc;
}

.enx-event-badge.past {
  background: #eef1f5;
  color: #7a8796;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enx-event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .enx-event-content {
    margin-left: 0;
  }

  .enx-event-badge {
    align-self: flex-start;
  }

  .enx-events-head h2 {
    font-size: 28px;
  }
}

.enx-premium-footer{
    background:#253f42;
    color:#fff;
    padding:80px 6% 28px;
    position:relative;
    overflow:hidden;
}

/* zig zag animated light */

.enx-premium-footer::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-20%;
    width:140%;
    height:200%;
    background:
    repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.04) 0px,
        rgba(255,255,255,0.04) 2px,
        transparent 2px,
        transparent 18px
    );
    animation:zigMove 14s linear infinite;
    pointer-events:none;
}

/* soft glow */

.enx-premium-footer::after{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 20% 30%, rgba(42,167,179,.08), transparent 40%);
    pointer-events:none;
}
@keyframes zigMove{
    from{
        transform:translateX(0) translateY(0);
    }
    to{
        transform:translateX(80px) translateY(80px);
    }
}

/* GRID */

.enx-footer-inner{
    display:grid;
    grid-template-columns:1.6fr 1fr 1.2fr 1fr;
    gap:50px;
    margin-bottom:55px;
}

/* LOGO */

.enx-footer-logo{
    max-width:170px;
    margin-bottom:24px;
/*    filter:brightness(0) invert(1);*/
}

/* COLUMN TITLE */

.enx-foot-col h4{
    font-size:18px;
    font-weight:400;
    margin-bottom:22px;
    letter-spacing:.5px;
}

/* TEXT */

.enx-foot-col p,
.enx-foot-col ul li{
    font-size:15px;
    font-weight:300;
    line-height:1.9;
    color:rgba(255,255,255,0.78);
}

/* LINKS */

.enx-foot-col ul{
    list-style:none;
    padding:0;
}

.enx-foot-col ul li{
    margin-bottom:14px;
}

.enx-foot-col ul li a{
    color:rgba(255,255,255,0.78);
    text-decoration:none;
    transition:.3s;
    font-weight:300;
}

.enx-foot-col ul li a:hover{
    color:#ee232b;
}

.enx-foot-col ul li i{
    margin-right:10px;
    color:#ee232b;
}

/* SOCIAL */

.enx-foot-social{
    display:flex;
    gap:14px;
}

.enx-foot-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;
}

.enx-foot-social a:hover{
    background:#ee232b;
    transform:translateY(-3px);
}

/* BOTTOM */

.enx-foot-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:22px;
    text-align:center;
}

.enx-foot-bottom p{
    font-size:14px;
    font-weight:300;
    color:rgba(255,255,255,0.65);
}

/* TOP BUTTON */

.enx-scroll-progress{
    position:fixed;
    right:25px;
    bottom:25px;
    width:74px;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:999;
    border-radius:50%;
    background:rgba(255,255,255);
    backdrop-filter:blur(14px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.10),
        inset 0 1px 1px rgba(255,255,255,.4);
    transition:.45s;
}
#progressText{
    font-size:22px;
    font-weight:600;
    color:#14285c;
    transition:.35s;
}
/* floating */

.enx-scroll-progress:hover{
    transform:translateY(-6px) scale(1.05);
}

/* subtle pulse */

.enx-scroll-progress::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    box-shadow:0 0 0 rgba(42,167,179,.35);
    animation:scrollPulse 2.5s infinite;
}
@keyframes scrollPulse{
    0%{
        box-shadow:0 0 0 0 rgba(42,167,179,.25);
    }
    70%{
        box-shadow:0 0 0 18px rgba(42,167,179,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(42,167,179,0);
    }
}
.progress-ring{
    position:absolute;
    transform:rotate(-90deg);
}

.progress-ring circle{
    fill:none;
    stroke-width:2;
}

.progress-ring circle:first-child{
    stroke:rgba(255,255,255,.35);
}

#progressCircle{
    stroke:#2aa7b3;
    stroke-linecap:round;
    stroke-dasharray:188;
    stroke-dashoffset:188;
    transition:stroke-dashoffset .35s;
}
@media(max-width:992px){

    .enx-footer-inner{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:576px){

    .enx-footer-inner{
        grid-template-columns:1fr;
    }

    .enx-footer-logo{
        max-width:140px;
    }

}

.enx-leadership-section{
    width:100%;
    padding:80px 6%;
    background:#f8fbff;
    overflow:hidden;
}

/* HEADER */

.enx-leadership-head{
    text-align:center;
    margin-bottom:70px;
}

.enx-leadership-head span{
    display:inline-block;
    padding:8px 18px;
    background:#343377;
    border-radius:8px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:18px;
}

.enx-leadership-head h2{
    font-size:58px;
    font-weight:300;
    color:#14285c;
}

.enx-leadership-head h2 strong{
    color:#e88125;
    font-weight:500;
}

/* GRID */

.enx-leadership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.enx-leader-card{
    position:relative;
}

/* IMAGE WRAP */

.enx-leader-img-wrap{
    position:relative;
    border-radius:22px;
    overflow:hidden;
}

/* SHAPE */

.enx-shape{
    position:absolute;
    top:10px;
    left:-10px;
    width:100%;
    height:100%;
    background:#ea862a;
    border-radius:22px;
    transform:rotate(3deg);
    z-index:0;
}

/* IMAGE */

.enx-leader-img-wrap img{
    position:relative;
    width:100%;
    height:480px;
    object-fit:cover;
    border-radius:22px;
    z-index:1;
    transition:.5s;
}

/* OVERLAY */

.enx-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,20,45,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
    z-index:2;
}

/* HOVER */

.enx-leader-card:hover img{
    transform:scale(1.06);
}

.enx-leader-card:hover .enx-overlay{
    opacity:1;
}

/* SOCIAL */

.enx-social{
    display:flex;
    gap:14px;
}

.enx-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#14285c;
    transition:.3s;
}

.enx-social a:hover{
    background:#ee232b;
    color:#fff;
}

/* INFO */

.enx-leader-info{
    padding-top:24px;
}

.enx-leader-info h3{
    font-size:28px;
    color:#14285c;
    margin-bottom:8px;
}

.enx-leader-info span{
    color:#7a879f;
    font-size:16px;
}
@media(max-width:992px){

    .enx-leadership-grid{
        grid-template-columns:1fr 1fr;
    }

    .enx-leadership-head h2{
        font-size:40px;
    }

}

@media(max-width:576px){

    .enx-leadership-grid{
        grid-template-columns:1fr;
    }

    .enx-leadership-head h2{
        font-size:30px;
    }

    .enx-leader-img-wrap img{
        height:420px;
    }

}

.enx-event-showcase{
    padding:80px 6%;
    background:#181866;
    overflow:hidden;
}

/* TOP */

.enx-event-top{
    display:grid;
    grid-template-columns:1.4fr 1fr auto;
    align-items:center;
    gap:40px;
    margin-bottom:55px;
}

.enx-event-left span{
    display:inline-block;
    padding:8px 16px;
    background:#fff;
    border-radius:8px;
    color:#181866;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:18px;
}

.enx-event-left h2{
    font-size:58px;
    font-weight:300;
    color:#ea862a;
}

.enx-event-left h2 strong{
    color:#fff;
    font-weight:500;
}

.enx-event-right p{
    font-size:20px;
    line-height:1.8;
    color:#fff;
}

/* NAV */

.enx-event-nav{
    display:flex;
    gap:15px;
}

.enx-event-nav button{
    width:56px;
    height:56px;
    border-radius:50%;
    border:1px solid #d8e2e5;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.enx-event-nav button:hover{
    background:#ee232b;
    color:#fff;
}

/* SLIDER */

.enx-event-slider{
    overflow:hidden;
    width:100%;
}

.enx-event-track{
    display:flex;
    gap:28px;
    transition:.6s ease;
}

/* CARD */

.enx-event-item{
    flex:0 0 calc(33.333% - 19px);
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.4s;
}

.enx-event-item:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.enx-event-image{
    position:relative;
}

.enx-event-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.enx-event-item:hover img{
    transform:scale(1.05);
}

/* DATE */

.enx-date-box{
    position:absolute;
    top:20px;
    left:20px;
    width:78px;
    height:90px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    color:#fff;
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.enx-date-box span{
    font-size:28px;
    font-weight:700;
}

.enx-date-box small{
    font-size:14px;
}

/* CONTENT */

.enx-event-content{
    padding:28px;
}

.tag{
    display:inline-block;
    padding:6px 14px;
    border:1px solid #dbe5e8;
    border-radius:8px;
    font-size:13px;
    margin-bottom:16px;
}

.enx-event-content h3{
    font-size:30px;
    color:#14285c;
    line-height:1.3;
    margin-bottom:22px;
}

.enx-event-content a{
    color:#14285c;
    font-weight:600;
    text-decoration:none;
}

.enx-event-content a i{
    margin-left:8px;
    color:#ee232b;
}
@media(max-width:992px){

    .enx-event-top{
        grid-template-columns:1fr;
        gap:25px;
    }

    .enx-event-left h2{
        font-size:40px;
        line-height:1.2;
    }

    .enx-event-right p{
        font-size:18px;
        max-width:100%;
    }

    .enx-event-nav{
        justify-content:flex-start;
    }

    .enx-event-item{
        flex:0 0 calc(50% - 14px);
    }

    .enx-event-content h3{
        font-size:24px;
    }

}

@media(max-width:576px){

    .enx-event-left h2{
        font-size:30px;
    }

    .enx-event-left span{
        font-size:11px;
        letter-spacing:1px;
    }

    .enx-event-right p{
        font-size:16px;
        line-height:1.7;
    }

    .enx-event-slider{
        overflow:hidden;
        width:100%;
    }

    .enx-event-track{
        display:flex;
        gap:0;
    }

    .enx-event-item{
        flex:0 0 100%;
        min-width:100%;
        margin:0;
    }

    .enx-event-image img{
        width:100%;
        height:220px;
        object-fit:cover;
    }

}




/*Testimonials*/
.enx-testi-showcase{
    padding:80px 6%;
    background:#f7fbfc;
    overflow:hidden;
}

.enx-testi-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:stretch;
}

/* LEFT */

.enx-testi-left{
    position:relative;
    border-radius:24px;
    overflow:hidden;
}

.enx-testi-left {
    position: relative;
    overflow: hidden;
}

.enx-testi-left img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.enx-testi-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 71%); /* overlay color */
    z-index: 1;
}

.enx-testi-left:hover img{
    transform:scale(1.05);
}

/* TITLE */

.enx-overlay-title{
    position:absolute;
    top:50px;
    left:40px;
    font-size:58px;
    color:#fff;
    line-height:1.1;
    font-weight:300;
}
.testimonial-slider{
    position:relative;
    min-height:280px;
}

.testimonial-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    opacity:0;
    transform:translateX(40px);
    transition:opacity .8s ease, transform .8s ease;
    pointer-events:none;
}

.testimonial-slide.active{
    opacity:1;
    transform:translateX(0);
    pointer-events:auto;
    position:relative;
}
.enx-overlay-title span{
    color:rgba(255,255,255,.35);
}

/* RATING */

.enx-rating-box{
    position:absolute;
    right:0;
    bottom:0;
    background:#181866;
    color:#fff;
    padding:35px;
    width:280px;
    border-radius:24px 0 24px 0;
}

.enx-rating-box h3{
    font-size:80px;
    line-height:1;
}

.stars{
    font-size:26px;
    margin:15px 0;
}

/* RIGHT */

.enx-testi-right{
    background:#fff;
    border-radius:24px;
    padding:60px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    position:relative;
}

/* QUOTE */

.quote-icon{
    font-size:90px;
    color:#181866;
    line-height:1;
    margin-bottom:20px;
}

/* SLIDES */

.testimonial-slide{
    display:none;
}

.testimonial-slide.active{
    display:block;
}

.testimonial-slide p{
    font-size:20px;
    line-height:34px;
    color:#546578;
    margin-bottom:40px;
}

/* USER */

.enx-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.enx-user img{
    width:72px;
    height:72px;
    border-radius:50%;
}

.enx-user h4{
    font-size:28px;
    color:#14285c;
}

.enx-user span{
    color:#7a879f;
}

/* DOTS */

.enx-testi-dots{
    display:flex;
    gap:10px;
    justify-content:flex-end;
    margin-top:40px;
}

.enx-testi-dots span{
    width:12px;
    height:12px;
    border-radius:20px;
    background:#d8e8ea;
}

.enx-testi-dots span.active{
    width:80px;
    background:#181866;
}
@media(max-width:992px){

    .enx-testi-grid{
        grid-template-columns:1fr;
    }

    .enx-overlay-title{
        font-size:38px;
    }

    .testimonial-slide p{
        font-size:20px;
    }

}

@media(max-width:576px){

    .enx-testi-right{
        padding:35px 25px;
    }

    .enx-overlay-title{
        font-size:30px;
    }

    .enx-rating-box{
        width:220px;
        padding:25px;
    }

}

/*Contact*/
.enx-global-contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:850px;
    background:#010116;
    overflow:hidden;
}
.enx-premium-footer .enx-footer-inner{
    position:relative;
    z-index:2;
}
/* MAP SIDE */

.enx-map-side{
    position:relative;
    overflow:hidden;
}

.enx-map-side img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.18;
}

/* DOTS */

.dot{
    position:absolute;
    width:18px;
    height:18px;
    background:#fff;
    border-radius:50%;
    animation:blink 1.8s infinite;
    box-shadow:0 0 0 rgba(255,255,255,.6);
}

.dot::after{
    content:'';
    position:absolute;
    inset:-10px;
    border:2px solid rgba(255,255,255,.25);
    border-radius:50%;
}

.dot1{
    top:25%;
    left:30%;
}

/*.dot2{
    top:35%;
    left:78%;
}

.dot3{
    top:78%;
    left:55%;
}*/
.dot{
    position:absolute;
    width:18px;
    height:18px;
    background:#fff;
    border-radius:50%;
    animation:blink 1.8s infinite;
    box-shadow:0 0 0 rgba(42,167,179,.6);
}

/* TOOLTIP */

.location-tip{
    position:absolute;
    bottom:36px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    padding:14px 18px;
    border-radius:14px;
    min-width:240px;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.dot:hover .location-tip{
    opacity:1;
    visibility:visible;
    bottom:46px;
}

/* arrow */

.location-tip::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:50%;
    transform:translateX(-50%);
    border-width:8px;
    border-style:solid;
    border-color:rgba(255,255,255,.12) transparent transparent transparent;
}

/* hover */

.dot:hover .location-tip{
    opacity:1;
    visibility:visible;
    bottom:42px;
}

/* text */

.location-tip strong{
    display:block;
    font-size:14px;
    margin-bottom:4px;
    color:#fff;
}

.location-tip small{
    font-size:12px;
    color:rgba(255,255,255,.8);
}

/* blink animation */

@keyframes blink{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(42,167,179,.7);
    }
    70%{
        transform:scale(1.1);
        box-shadow:0 0 0 16px rgba(42,167,179,0);
    }
    100%{
        transform:scale(1);
    }
}

/* FORM */

.enx-form-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px 70px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(16px);
}

/* LABEL */

.small-label{
    display:inline-block;
    width:max-content;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:24px;
}

/* TITLE */

.enx-form-side h2{
    font-size:64px;
    color:#fff;
    margin-bottom:45px;
}

.enx-form-side h2 strong{
    color:#ee242b;
}

/* FORM ROW */

.enx-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    margin-bottom:35px;
}

/* INPUT */

.enx-form-side input,
.enx-form-side select,
.enx-form-side textarea{
    width:100%;
    background:none;
    border:none;
    border-bottom:1px solid rgba(255,255,255,.18);
    padding:14px 0;
    color:#fff;
    font-size:18px;
    outline:none;
}

.enx-form-side textarea{
    min-height:130px;
    margin-bottom:35px;
}

/* BUTTON */

.enx-form-side button{
    width:max-content;
    padding:10px 15px;
    background:#ee242b;
    border:none;
    border-radius:50px;
    color:#fff;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:14px;
    cursor:pointer;
    transition:.35s;
}

.enx-form-side button:hover{
    transform:translateY(-3px);
}
@media(max-width:992px){

    .enx-global-contact{
        grid-template-columns:1fr;
    }

    .enx-map-side{
        min-height:400px;
    }

    .enx-form-side{
        padding:60px 35px;
    }

    .enx-form-side h2{
        font-size:42px;
    }

}

@media(max-width:576px){

    .enx-row{
        grid-template-columns:1fr;
    }

    .enx-form-side h2{
        font-size:32px;
    }

}

/*Sticky footer*/
.enx-mobile-strip{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    background:#172c2f;
    display:none;
    grid-template-columns:repeat(4,1fr);
    z-index:9999;
    box-shadow:0 -8px 25px rgba(0,0,0,.12);
    transition:.4s ease;
}

.enx-mobile-strip a{
    color:#fff;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:12px 4px;
    font-size:11px;
    font-weight:500;
    gap:6px;
    transition:.3s;
    border-right:1px solid rgba(255,255,255,.09);
}

.enx-mobile-strip a:last-child{
    border-right:none;
}

.enx-mobile-strip a svg{
    width:20px;
    height:20px;
}

.enx-mobile-strip a:hover{
    background:#ee232b;
}

/* mobile only */

@media(max-width:768px){
    .enx-mobile-strip{
        display:grid;
    }
}

/*client*/
.enx-clients-section{
    padding:80px 0;
    background:#181865;
    overflow:hidden;
}

.enx-clients-top{
    text-align:center;
    margin-bottom:40px;
}

.enx-clients-top span{
    display:inline-block;
    padding:10px 24px;
    border:1px solid rgba(20,40,92,.08);
    border-radius:40px;
    font-size:16px;
    color:#14285c;
    background:#fff;
}

.enx-clients-slider{
    overflow:hidden;
    width:100%;
}

.enx-clients-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:clientScroll 22s linear infinite;
}

.enx-client-card{
    min-width:280px;
    height:140px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.enx-client-card img{
    max-width:150px;
    max-height:60px;
    object-fit:contain;
    opacity:.75;
    transition:.35s;
}

.enx-client-card:hover{
    transform:translateY(-5px);
}

.enx-client-card:hover img{
    opacity:1;
    transform:scale(1.05);
}

@keyframes clientScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
.enx-associates-head{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:65px;
}

.enx-associates-head span{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

.enx-associates-head h2{
    font-family:'Playfair Display', serif;
    font-size:50px;
    color:#fff;
    margin-bottom:18px;
}

.enx-associates-head p{
    font-size:18px;
    color:#fff;
    line-height:1.8;
}
@media(max-width:576px){

    .enx-client-card{
        min-width:200px;
        height:100px;
    }
    .enx-associates-head h2{
      font-size:30px;
  }
      .enx-client-card img{
        max-width:110px;
    }

}

@media (max-width: 767px) {

    .enx-solutions-wrap{
        padding: 40px 5%;
    }

    .about-section{
        padding: 40px 5%;
    }

    .enx-courses-section{
        padding: 40px 5%;
    }

    .enx-clients-section{
        padding: 40px 0;
    }

    .enx-leadership-section{
        padding: 40px 5%;
    }

    .enx-event-showcase{
        padding: 40px 5%;
    }

    .enx-testi-showcase{
        padding: 40px 5%;
    }

    .enx-form-side{
        padding: 40px 20px;
    }

    .enx-premium-footer{
        padding: 40px 5% 28px;
    }
    .enx-about-block{
        padding: 40px 5%;
    }
    .enx-scroll-progress {
    position: fixed;
    right: 25px;
    bottom: 80px;
    width: 54px;
    height: 54px;
}

}

/* SECTION */
.fast-pro-section{
  padding:80px 20px;
  background:#F4F8FB;
}

/* CONTAINER ALIGNMENT */
.fast-pro-section .container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.fast-head span{
  color:#1FA79D;
  font-size:14px;
  font-weight:600;
}

.fast-head h2{
  font-size:40px;
  margin:10px 0;
  color:#0E3B5F;
}

.fast-head p{
  color:#5a6b7b;
  max-width:600px;
}

/* MAIN BOX */
.fast-box-wrapper{
  margin-top:40px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* TOP BAR */
.fast-top-bar{
  background:#0E2F4F;
  color:#fff;
  padding:20px 30px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.fast-top-bar .left{
  font-weight:600;
  font-size:18px;
}

.fast-top-bar .right{
  font-size:14px;
  opacity:.8;
}

/* GRID */
.fast-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

/* ITEM */
.fast-item{
  background:#fff;
  padding:40px 25px;
  border-right:1px solid #eee;
  transition:all 0.4s ease;
}

.fast-item:last-child{
  border-right:none;
}

/* HOVER EFFECT */
.fast-item:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* LETTER */
.fast-item h1{
  font-size:60px;
  margin-bottom:10px;
  color:#0E3B5F;
  font-weight:700;
}

.fast-item h1.highlight{
  color:#1FA79D;
}

/* TITLE */
.fast-item h4{
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:10px;
  color:#0E3B5F;
}

/* TEXT */
.fast-item p{
  font-size:14px;
  color:#5a6b7b;
  line-height:1.6;
}

/* TABLET */
@media(max-width:992px){
  .fast-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .fast-item{
    border-right:none;
    border-bottom:1px solid #eee;
  }
}

/* MOBILE */
@media(max-width:576px){
  .fast-grid{
    grid-template-columns:1fr;
  }

  .fast-head h2{
    font-size:26px;
  }

  .fast-top-bar{
    flex-direction:column;
    gap:10px;
  }

  .fast-item{
    text-align:center;
  }
}

/* SECTION */
.enx-founder-section {
  padding: 80px 20px;
  background: #d1e2e4;
}

.enx-founder-head {
  text-align: center;
  margin-bottom: 40px;
}

.enx-founder-head span {
  color: #f04148;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.enx-founder-head h2 {
  font-size: 42px;
  color: #0f2a44;
  margin-top: 10px;
}

/* CARD */
.enx-founder-card {
  max-width: 1000px;
  margin: auto;
  background: #46797f;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.enx-founder-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
}

/* CONTENT */
.enx-founder-content {
  flex: 1;
}

.enx-founder-quote {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  color: #e6eef6;
}

.enx-founder-content h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
}

.enx-founder-content span {
  font-size: 14px;
  color: #b8c7d6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enx-founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .enx-founder-img img {
    width: 110px;
    height: 110px;
  }

  .enx-founder-head h2 {
    font-size: 28px;
  }
}

.enx-ticker-wrap {
  width: 100%;
  background: #c0392b;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

/* GRADIENT FADE LEFT/RIGHT */
.enx-ticker-wrap::before,
.enx-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}

.enx-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #c0392b, transparent);
}

.enx-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #c0392b, transparent);
}

.enx-ticker {
  white-space: nowrap;
  overflow: hidden;
}

.enx-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  animation: tickerScroll 20s linear infinite;
}

/* PAUSE ON HOVER */
.enx-ticker-wrap:hover .enx-ticker-track {
  animation-play-state: paused;
}

/* TEXT */
.enx-ticker-track span,
.enx-ticker-track a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.enx-ticker-track a {
  text-decoration: none;
  font-weight: 600;
}

.enx-ticker-track a:hover {
  color: #ffdada;
}

/* BADGE */
.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
}

/* DOT DIVIDER */
.divider {
  opacity: 0.7;
}

/* ANIMATION */
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enx-ticker-track {
    gap: 18px;
    animation-duration: 25s;
  }

  .enx-ticker-track span,
  .enx-ticker-track a {
    font-size: 13px;
  }

  .badge {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.wc-hero {
    background: linear-gradient(135deg, #0b2c4a, #103a5c);
    padding: 80px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wc-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: rgba(238, 36, 43, 0.08);
    border-radius: 50%;
}

/* CONTAINER */
.wc-hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.wc-hero-left {
    flex: 1;
    animation: wcFadeLeft 1s ease;
}

.wc-tag {
    display: inline-block;
    background: rgb(239 48 55);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.wc-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.wc-title span {
    color: #ee242b;
}

.wc-desc {
    color: #cbd5e1;
    margin-bottom: 25px;
}

/* BUTTONS */
.wc-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.wc-btn-primary {
    background: #ee242b;
    padding: 14px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.wc-btn-primary:hover {
    background: #c91d24;
}

.wc-btn-secondary {
    border: 1px solid #fff;
    padding: 14px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.wc-btn-secondary:hover {
    background: #ee242b;
    color: #fff;
}

/* STATS */
.wc-stats {
    display: flex;
    gap: 40px;
}

.wc-stats h3 {
    font-size: 28px;
}

.wc-stats p {
    font-size: 14px;
    color: #cbd5e1;
}

/* RIGHT */
.wc-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: wcFadeRight 1s ease;
}

.wc-card {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.wc-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.wc-card h4 {
    margin-bottom: 8px;
}

/* ANIMATION */
@keyframes wcFadeLeft {
    from {opacity:0; transform:translateX(-50px);}
    to {opacity:1; transform:translateX(0);}
}

@keyframes wcFadeRight {
    from {opacity:0; transform:translateX(50px);}
    to {opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wc-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .wc-buttons {
        justify-content: center;
    }

    .wc-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .wc-title {
        font-size: 32px;
    }

    /* BUTTON FIX */
    .wc-buttons {
        flex-direction: column;
        width: 100%;
    }

    .wc-buttons a {
        width: 100%;
        text-align: center;
    }

    .wc-stats {
        flex-direction: column;
        gap: 20px;
    }
    .wc-hero {
        padding: 35px 20px;
    }
}

/*About Us Page*/
/* HERO DARK */
/* HERO SECTION */
.about-hero-dark {
    background: linear-gradient(135deg, #0b2c4a, #103a5c);
    padding: 60px 20px 80px;
    color: #fff;
}

/* CONTAINER */
.about-hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* INNER */
.about-hero-inner {
    text-align: center; /* change to left if needed */
}

/* TITLE */
.about-title {
    font-size: 42px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.about-breadcrumb {
    font-size: 14px;
    opacity: 0.85;
}

.about-breadcrumb a {
    color: #ef3037!important;
    text-decoration: none;
}

.about-breadcrumb span {
    margin: 0 6px;
}

/* MOBILE */
@media(max-width:768px) {
    .about-title {
        font-size: 28px;
    }

    .about-hero-dark {
        padding: 40px 15px 60px;
    }
}


.about-premium {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f8fbff, #eef4f9);
}

.about-premium .container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE SIDE */
.img-wrapper {
    position: relative;
}

.img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* FLOATING CARD */
.floating-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.floating-card h4 {
    margin: 0;
    color: #0d1b2a;
}

/* RIGHT */
.about-content {
    flex: 1;
}

.tag {
    color: #ef323a;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 36px;
    margin: 15px 0;
}

.about-content h2 span {
    color: #e63946;
}

.about-content p {
    color: #555;
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    margin-top: 30px;
}

.feature-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-box i {
    font-size: 22px;
    color: #e63946;
    background: #ffe5e5;
    padding: 12px;
    border-radius: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .container {
        flex-direction: column;
    }
    .about-premium .container {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/*What is Stroke Page*/
/* GLOBAL CONTAINER SAME AS ABOUT PAGE */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* SECTION */
.stroke-premium {
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8fbff, #eef4f9);
}

/* FLEX LAYOUT */
.stroke-premium .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.stroke-content {
    flex: 1;
}

.stroke-content h2 {
    font-size: 36px;
    margin: 15px 0;
}

.stroke-content h2 span {
    color: #e63946;
}

.stroke-content p {
    color: #555;
    line-height: 1.7;
}

/* FEATURES */
.stroke-features {
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* RIGHT IMAGE */
.stroke-image {
    flex: 1;
}

.img-box {
    position: relative;
}

.img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* FLOATING CARD */
.stroke-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stroke-card h4 {
    margin: 0;
    color: #e63946;
}

/* MOBILE */
@media(max-width:768px) {

    .stroke-premium .container {
        flex-direction: column;
    }

    .stroke-content h2 {
        font-size: 26px;
    }

    .stroke-card {
        position: static;
        margin-top: 15px;
    }
}

/* FAQ SECTION */
.faq-premium {
    padding: 50px 0;
    background: #f8fbff;
}

/* HEADING */
.faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.faq-head span {
    color: #f04349;
    font-weight: 600;
}

.faq-head h2 {
    font-size: 34px;
    margin: 10px 0;
}

/* CARD */
.faq-card {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-q {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    align-items: center;
}

.faq-q h4 {
    margin: 0;
}

/* ANSWER */
.faq-a {
    padding: 0 20px 20px;
    display: none;
    color: #555;
}

/* ACTIVE */
.faq-card.active .faq-a {
    display: block;
}

.faq-card.active span {
    transform: rotate(45deg);
}

/* HOVER */
.faq-card:hover {
    transform: translateY(-4px);
}

/* MOBILE */
@media(max-width:768px) {
    .faq-head h2 {
        font-size: 26px;
    }
}
.cta-premium {
    padding: 50px 0;
    background: linear-gradient(135deg, #0b2c4a, #103a5c);
}

/* BOX */
.cta-wrapper {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #445075;
    padding: 60px;
    border-radius: 20px;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* TEXT */
.cta-wrapper h2 {
    font-size: 34px;
}

.cta-wrapper p {
    opacity: 0.85;
    margin: 15px 0 25px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn {
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
}

/* PRIMARY */
.cta-btn.primary {
    background: #e63946;
    color: #fff;
}

/* SECONDARY */
.cta-btn.secondary {
    background: #00b4d8;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-wrapper {
        padding: 30px;
    }

    .cta-wrapper h2 {
        font-size: 26px;
    }
}

/*Publications Page*/
/* SECTION */
.publication-section {
    padding: 50px 0;
    background: #f8fbff;
}

/* GRID */
.publication-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.pub-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.pub-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.pub-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.pub-content {
    padding: 20px;
}

.pub-date {
    font-size: 13px;
    color: #00b4d8;
}

.pub-content h3 {
    margin: 10px 0;
}

.pub-content p {
    color: #555;
}

/* BUTTON */
.read-btn {
    display: inline-block;
    margin-top: 10px;
    color: #e63946;
    font-weight: 500;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:992px) {
    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .publication-grid {
        grid-template-columns: 1fr;
    }
}

/*Contact Page*/
/* SECTION */
.contact-modern {
    padding: 50px 0;
    background: linear-gradient(to right, #f8fbff, #eef4f9);
}

/* BOX */
.contact-box {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* LEFT PANEL */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #0f3859, #0f385a);
    color: #fff;
    padding: 40px;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 30px;
}

/* INFO ITEM */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 10px;
}

/* SOCIAL */
.social-row a {
    margin-right: 10px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    background: #e63946;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

/* MAP */
.map-modern iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-box {
        flex-direction: column;
    }
}

/* ONLY contact links */
.contact-link {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: #00b4d8;
}

/* ===== DROPDOWN CARD ===== */
.main-menu .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 240px;
    background: #ffffff;

    border-radius: 14px;
    padding: 12px 0;

    box-shadow: 0 20px 60px rgba(0,0,0,0.12);

    display: none;
    transform: translateY(10px);
    opacity: 0;

    transition: all 0.35s ease;
}

/* SHOW */
.main-menu li.active > .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ===== SUBMENU ITEM ===== */
.main-menu .sub-menu li {
    position: relative;
}

/* ===== LINKS ===== */
.main-menu .sub-menu li a {
    display: flex;
    align-items: center;

    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;

    color: #1a2b49;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* ===== LEFT ACCENT LINE ===== */
.main-menu .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    height: 0;
    width: 3px;
    background: #0d6efd;

    transition: 0.3s;
}

/* ===== HOVER EFFECT ===== */
.main-menu .sub-menu li a:hover {
    background: #f4f8ff;
    color: #0d6efd;
    padding-left: 26px;
}

/* ANIMATE LINE */
.main-menu .sub-menu li a:hover::before {
    height: 100%;
}

/* ===== FIRST & LAST ROUND ===== */
.main-menu .sub-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.main-menu .sub-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

.menu-arrow {
    font-size: 10px;
    transition: 0.3s ease;
    margin-left: 6px;
}

/* rotate */
.menu-item-has-children.active .menu-arrow {
    transform: rotate(180deg);
}

.main-menu .sub-menu {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

/*mobile menu*/
/* ===== HAMBURGER BASE ===== */
.menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 999999;
}

/* LINES */
.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #1a2b49;
    border-radius: 3px;

    transition: all 0.35s ease;
}

/* POSITION */
.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

/* ===== ACTIVE (CROSS ANIMATION) ===== */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* ===== SHOW ON MOBILE ===== */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* HIDE MOBILE HEADER ON DESKTOP */
.mobile-header {
    display: none;
}