
    
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        body {
            background-color: #0d3861;
            /* display: flex; */
            justify-content: center;
            align-items: center;
            /* min-height: 100vh; */
            font-family: "Kumbh Sans", sans-serif !important;
            
           
        }
        h1,h2,h3,h4,h5,h6,p,a,tab,li,ul,button{
            font-family: "Kumbh Sans", sans-serif !important;;
        }
         .poster-scaler {
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Outer Poster Container */
        .poster {
            width: 1500px;
            height: 650px;
            position: relative;
            background-color: #ffffff;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }


       

        /* 1. LAYER 1: Full Height Right Image */
        .classroom-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: calc(100% - 32px);
            z-index: 1;
        }
        .classroom-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left top;
        }

        /* 2. LAYER 2: Blue Curve Accent (Peeche wala Blue Wave) */
        .blue-swoosh-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100% - 32px);
            background: #0d3861;
            z-index: 2;
            clip-path: path('M 0 0 L 499 0 Q 520 280, 840 330 Q 940 350, 930 460 Q 920 540, 1000 618 L 0 618 Z');
        }

        /* 3. LAYER 3: Main White Body with Exact S-Curve Boundary */
        .white-body-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100% - 32px);
            background: #ffffff;
            z-index: 3;
            /* Curved boundary cutting out to reveal image on top-right and bottom-right */
            clip-path: path('M 0 0 L 512 0 Q 467 0, 710 294 Q 926 367, 901 467 Q 910 548, 975 618 L 0 521 Z');
        }

        /* Top Right Badge */
        .top-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #27a753;
            color: white;
            padding: 6px 20px;
            border-bottom-left-radius: 18px;
            text-align: center;
            z-index: 20;
            line-height: 1.1;
        }
        .top-badge .p1 { font-size: 11px; font-weight: 900; }
        .top-badge .hm { font-size: 9.5px; font-weight: 600; }

        /* Header Area */
        .header-box {
            position: absolute;
            top: 25px;
            left: 35px;
            z-index: 10;
            display: flex;
            align-items: flex-start;
        }
        .logo-title {
            font-size: 60px;
            font-weight: 900;
            color: #0d3861;
            line-height: 0.9;
            letter-spacing: -1px;
        }
        .logo-sub {
            font-size: 22px;
            font-weight: 800;
            color: #0d3861;
            margin-top: 4px;
        }
        .title-right {
            margin-left: 272px;
            margin-top: 2px;
        }
        .title-green {
            font-size: 40px;
            font-weight: 900;
            color: #006837;
            line-height: 1.1;
        }
        .title-blue {
            font-size: 36px;
            font-weight: 900;
            color: #0d3861;
            line-height: 1.1;
            margin-top: 2px;
        }

        /* Text Para */
        .desc-para {
            position: absolute;
            top: 125px;
            left: 35px;
            width: 440px;
            font-size: 15px;
            font-weight: 700;
            color: #111;
            line-height: 1.4;
            z-index: 10;
        }

        /* Dark Blue Stats Bar */
        .stats-bar {
            position: absolute;
            top: 235px;
            left: 0;
            width: 713px;
            height: 75px;
            background-color: #0d3861;
            border-top-right-radius: 16px;
            border-bottom-right-radius: 16px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0 15px 0 35px;
            color: white;
        }
        .stat-item {
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.25);
            padding: 0 8px;
            flex: 1;
        }
        .stat-item:last-child { border-right: none; }
        .stat-num { font-size: 30px; font-weight: 900; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .stat-num i { font-size: 29px; }
        .stat-txt { font-size: 12.5px; font-weight: 600; color: #d0e1f9; margin-top: 2px; }

        /* Section Heading */
        .core-business-title {
            position: absolute;
            top: 335px;
            left: 0;
            width: 820px;
            text-align: center;
            font-size: 22px;
            font-weight: 900;
            color: #0d3861;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        /* 3 Cards Wrapper (Sits inside the Curve) */
        .cards-container {
            position: absolute;
            top: 370px;
            left: 30px;
            width: 841px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .card {
            flex: 1;
            background: #ffffff;
            border: 1.5px solid #dcdfe3;
            border-radius: 10px;
            padding: 10px;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }

        .card-head {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
        }

        .circle-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            color: white;
            font-size: 13px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .card-h-text {
            font-size: 20px;
            font-weight: 900;
            line-height: 1.15;
        }

        .card-1 .circle-num { background: #006837; }
        .card-1 .card-h-text { color: #006837; }

        .card-2 .circle-num { background: #0d3861; }
        .card-2 .card-h-text { color: #0d3861; }

        .card-3 .circle-num { background: #4a154b; }
        .card-3 .card-h-text { color: #4a154b; }

        .card-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 5px;
        }

        .card-bullets {
            list-style: none;
            width: 56%;
        }
        .card-bullets li {
            font-size: 11.5px;
            font-weight: 800;
            color: #222;
            margin-bottom: 6px;
            position: relative;
            padding-left: 0px;
        }
        .card-bullets li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #222;
        }

        .card-img {
            width: 42%;
            height: 135px;
            border-radius: 6px;
            overflow: hidden;
        }
        .card-img img {
            width: 100%;
            height: 89%;
            object-fit: cover;
        }

        /* Footer Strip */
        .footer-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 32px;
            background-color: #072542;
            z-index: 20;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            color: white;
            font-size: 16px;
            font-weight: 700;
        }
        .footer-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .footer-item i { font-size: 11px; }
        .f-div { color: rgba(255,255,255,0.3); }


        /* =========================================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   ========================================================= */

@media screen and (max-width: 1024px) {
    body {
        padding: 0;
        background-color: #f3f4f6;
    }

    /* Poster Frame Reset */
    .poster {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh;
        position: relative;
        overflow: visible !important;
        display: flex;
        flex-direction: column;
        box-shadow: none;
    }

    /* Absolute Positioning Clear */
    .classroom-bg, 
    .blue-swoosh-layer, 
    .white-body-layer, 
    .header-box, 
    .desc-para, 
    .stats-bar, 
    .core-business-title, 
    .cards-container, 
    .footer-strip {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        clip-path: none !important; /* Mobile me clip path disable kar diya taaki flow ruin na ho */
    }

    /* Top Page Badge */
    .top-badge {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 50;
    }

    /* Header Layer */
    .header-box {
        padding: 25px 20px 10px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .title-right {
        margin-left: 0;
        margin-top: 5px;
    }

    .logo-title { font-size: 38px; }
    .title-green { font-size: 30px; }
    .title-blue { font-size: 24px; }

    /* Paragraph Text */
    .desc-para {
        padding: 0 20px 15px 20px;
        font-size: 13px;
        line-height: 1.5;
    }

    /* Stats Bar Grid */
    .stats-bar {
        border-radius: 0;
        padding: 15px 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 8px;
    }

    .stat-item:last-child {
        border-bottom: none;
        grid-column: span 2;
    }

    .stat-num { font-size: 30px; }
    .stat-txt { font-size: 11px; }

    /* Top Background Image Section */
    .classroom-bg {
        height: 220px !important;
        order: -1; /* Header se pehle ya baad me flexible rakhne ke liye */
    }

    /* Core Business Section */
    .core-business-title {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 18px;
    }

    /* Cards Vertical Stack */
    .cards-container {
        flex-direction: column;
        padding: 0 20px 20px 20px;
        gap: 15px;
    }

    .card {
        height: auto;
        padding: 15px;
    }

    .card-h-text { font-size: 14px; }
    .card-bullets li { font-size: 11px; margin-bottom: 6px; }

    .card-img {
        height: 110px;
    }

    /* Footer Navigation/Info */
    .footer-strip {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
        height: auto;
        text-align: center;
    }

    .f-div { display: none; }
    .footer-item { font-size: 12px; }
}



/* 1. LAYER 1: Full Height Right Image with Soft Gradient Fade Edge */
.classroom-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: calc(100% - 32px);
    z-index: 1;
    
    /* Left Edge Soft Gradient Fade Effect */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 40%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 40%);
}

.classroom-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}


  












    /* ==========================================
   MAIN HEADER
========================================== */

.main-header {
    width: 100%;
    background: #0d3861;
    position: relative;
    z-index: 999;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    min-height: 85px;

    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;

    padding: 0 40px;
}


/* ==========================================
   LOGO
========================================== */

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
}

.header-logo img {
    max-width: 180px;
    width: auto;
    height: auto;
    display: block;
}


/* ==========================================
   MENU
========================================== */

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 32px;
}

.header-menu ul li {
    margin: 0;
    padding: 0;
}

.header-menu ul li a {
    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    display: inline-block;

    padding: 10px 0;

    transition: all 0.3s ease;
}

.header-menu ul li a:hover {
    color: #f5c542;
}


/* ==========================================
   GET A QUOTE
========================================== */

.header-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    height: 48px;

    padding: 0 25px;

    background: #ffffff;
    color: #0d3861;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #fff;
    color: #0d3861;
}


/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 26px;
    height: 2px;

    margin: 5px auto;

    background: #ffffff;

    transition: all 0.3s ease;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .header-container {
        grid-template-columns: 1fr 2fr 1fr;
        padding: 0 25px;
    }

    .header-menu ul {
        gap: 20px;
    }

    .header-menu ul li a {
        font-size: 14px;
    }

    .header-logo img {
        max-width: 155px;
    }

    .quote-btn {
        min-width: 125px;
        padding: 0 18px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .header-container {
        min-height: 75px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 0 20px;
    }


    /* LOGO */

    .header-logo {
        justify-content: flex-start;
    }

    .header-logo img {
        max-width: 140px;
    }


    /* HIDE DESKTOP MENU */

    .header-menu {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #0d3861;

        padding: 15px 20px 25px;

        border-top: 1px solid rgba(255,255,255,0.15);
    }


    /* SHOW MENU */

    .header-menu.active {
        display: block;
    }


    .header-menu ul {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;
    }

    .header-menu ul li {
        width: 100%;
    }

    .header-menu ul li a {
        width: 100%;

        display: block;

        padding: 13px 5px;

        border-bottom: 1px solid rgba(255,255,255,0.10);
    }


    /* HIDE QUOTE BUTTON ON MOBILE */

    .header-button {
        display: none;
    }


    /* SHOW HAMBURGER */

    .mobile-menu-btn {
        display: block;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .header-container {
        padding: 0 15px;
    }

    .header-logo img {
        max-width: 125px;
    }

}



    /* ==========================================
   EFORA ABOUT SECTION
========================================== */

.efora-about {
    width: 100%;
    padding: 60px 20px;
    background: #ffffff;
    overflow: hidden;
}

.efora-about-container {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 80px;
}


/* ==========================================
   IMAGE
========================================== */

.efora-about-image {
    position: relative;
    padding: 15px;
}

.about-image-box {
    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 0 80px 0 80px;

    position: relative;
}

.about-image-box::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(13, 56, 97, 0.25),
        transparent
    );
}

.about-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ==========================================
   EXPERIENCE BOX
========================================== */

.about-experience {
    position: absolute;

    bottom: 0;
    right: -10px;

    min-width: 180px;

    padding: 22px 25px;

    background: #0d3861;
    color: #ffffff;

    border-radius: 15px 0 15px 0;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-experience strong {
    font-size: 30px;
    line-height: 1;

    margin-bottom: 7px;
}

.about-experience span {
    font-size: 14px;
    font-weight: 500;
}


/* ==========================================
   CONTENT
========================================== */

.efora-about-content {
    padding-right: 10px;
}

.about-small-title {
    display: inline-block;

    color: #0d3861;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

    position: relative;
    padding-left: 45px;
}

.about-small-title::before {
    content: "";

    position: absolute;

    width: 35px;
    height: 2px;

    background: #0d3861;

    left: 0;
    top: 50%;

    transform: translateY(-50%);
}


.efora-about-content h2 {
    margin: 0 0 22px;

    font-size: 42px;
    line-height: 1.2;

    color: #17324d;

    font-weight: 700;
}

.efora-about-content h2 span {
    color: #0d3861;
}


.efora-about-content p {
    margin: 0 0 16px;

    color: #020202;

    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   FEATURES
========================================== */

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px 25px;

    margin: 25px 0 30px;
}

.about-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #17324d;

    font-size: 14px;
    font-weight: 600;
}

.feature-icon {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d3861;

    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
}


/* ==========================================
   BUTTON
========================================== */

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 28px;

    background: #0d3861;
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #173f67;
    color: #ffffff;

    transform: translateY(-2px);
}

.about-btn i {
    font-size: 13px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .efora-about {
        padding: 70px 20px;
    }

    .efora-about-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .about-image-box {
        height: 450px;
    }

    .efora-about-content h2 {
        font-size: 34px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .efora-about {
        padding: 55px 15px;
    }

    .efora-about-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* IMAGE */

    .efora-about-image {
        padding: 8px;
    }

    .about-image-box {
        height: 380px;

        border-radius: 0 50px 0 50px;
    }

    .about-experience {
        right: 0;
        bottom: -15px;

        min-width: 160px;

        padding: 18px 20px;
    }

    .about-experience strong {
        font-size: 25px;
    }


    /* CONTENT */

    .efora-about-content {
        padding: 0;
    }

    .efora-about-content h2 {
        font-size: 30px;
    }

    .efora-about-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* FEATURES */

    .about-features {
        grid-template-columns: 1fr;

        gap: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .about-image-box {
        height: 320px;
    }

    .efora-about-content h2 {
        font-size: 27px;
    }

    .about-experience {
        min-width: 145px;
    }

}




    /* ==========================================
   EFORA SERVICES SECTION
========================================== */

.efora-services {
    width: 100%;
    padding: 60px 20px;
    background: #f5f8fb;
    overflow: hidden;
}

.efora-services-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


/* ==========================================
   SECTION HEADING
========================================== */

.efora-services-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.efora-services-heading > span {
    display: inline-block;

    margin-bottom: 12px;

    color: #0d3861;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    position: relative;
}

.efora-services-heading > span::before
 {
    content: "";

    display: inline-block;

    width: 30px;
    height: 2px;

    background: #0d3861;

    vertical-align: middle;

    margin: 0 12px;
}

.efora-services-heading h2 {
    margin: 0 0 15px;

    color: #17324d;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 700;
}

.efora-services-heading h2 strong {
    color: #0d3861;
}

.efora-services-heading p {
    margin: 0;

    color: #020202;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   SERVICES GRID
========================================== */

.efora-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* ==========================================
   SERVICE CARD
========================================== */

.efora-service-card {
    background: #ffffff;

    border-radius: 0 35px 0 35px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(13, 56, 97, 0.10);

    transition: all 0.4s ease;

    border: 1px solid rgba(13, 56, 97, 0.07);
}

.efora-service-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(13, 56, 97, 0.16);
}


/* ==========================================
   SERVICE IMAGE
========================================== */

.efora-service-image {
    width: 100%;
    height: 270px;

    position: relative;

    overflow: hidden;
}

.efora-service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}

.efora-service-card:hover .efora-service-image img {
    transform: scale(1.06);
}


/* ==========================================
   NUMBER
========================================== */

.efora-service-number {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0d3861;

    font-size: 17px;
    font-weight: 800;

    border-radius: 50%;

    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* ==========================================
   SERVICE CONTENT
========================================== */

.efora-service-content {
    padding: 32px 35px 35px;
}

.efora-service-label {
    display: block;

    margin-bottom: 8px;

    color: #0d3861;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.efora-service-content h3 {
    margin: 0 0 12px;

    color: #17324d;

    font-size: 28px;
    line-height: 1.25;

    font-weight: 700;
}

.efora-service-content p {
    margin: 0 0 20px;

    color: #020202;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================
   SERVICE LIST
========================================== */

.efora-service-content ul {
    margin: 0 0 25px;
    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 20px;
}

.efora-service-content ul li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #34495e;

    font-size: 14px;
    font-weight: 500;
}

.efora-service-content ul li i {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #0d3861;
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;
}


/* ==========================================
   BUTTON
========================================== */

.efora-service-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 13px 23px;

    background: #0d3861;
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.efora-service-btn:hover {
    background: #173f67;

    color: #ffffff;

    gap: 16px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .efora-services {
        padding: 70px 20px;
    }

    .efora-services-heading {
        margin-bottom: 40px;
    }

    .efora-services-heading h2 {
        font-size: 34px;
    }

    .efora-services-grid {
        gap: 22px;
    }

    .efora-service-image {
        height: 250px;
    }

    .efora-service-content {
        padding: 28px 25px 30px;
    }

    .efora-service-content h3 {
        font-size: 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .efora-services {
        padding: 55px 15px;
    }

    .efora-services-heading {
        margin-bottom: 35px;
    }

    .efora-services-heading > span::before,
    .efora-services-heading > span::after {
        width: 20px;
        margin: 0 8px;
    }

    .efora-services-heading h2 {
        font-size: 30px;
    }

    .efora-services-heading p {
        font-size: 15px;
    }


    /* ONE CARD PER ROW */

    .efora-services-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .efora-service-image {
        height: 240px;
    }

    .efora-service-content {
        padding: 27px 22px 28px;
    }

    .efora-service-content h3 {
        font-size: 25px;
    }

    .efora-service-content ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .efora-services-heading h2 {
        font-size: 27px;
    }

    .efora-service-image {
        height: auto !important;
    }

    .efora-service-number {
        width: 50px;
        height: 50px;

        top: 15px;
        right: 15px;
    }

}




    /* ==========================================
   EFORA FEATURED PROJECTS
========================================== */

.efora-projects {
    width: 100%;
    padding: 60px 20px;

    background: #fff;

    overflow: hidden;
}

.efora-projects-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.projects-heading-left {
    max-width: 550px;
}

.projects-heading-left span {
    display: inline-block;

    margin-bottom: 10px;

    color: #0d3861;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.projects-heading-left h2 {
    margin: 0;

    color: #17324d;

    font-size: 43px;
    line-height: 1.15;

    font-weight: 700;
}

.projects-heading-left h2 strong {
    color: #0d3861;
}

.projects-heading-right {
    max-width: 430px;
}

.projects-heading-right p {
    margin: 0;

    color: #020202;

    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   PROJECT GRID
========================================== */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}


/* ==========================================
   PROJECT CARD
========================================== */

.project-item {
    background: #ffffff;

    border-radius: 0 25px 0 25px;

    overflow: hidden;

    border: 1px solid rgba(13, 56, 97, 0.08);

    box-shadow: 0 8px 30px rgba(13, 56, 97, 0.07);

    transition: all 0.4s ease;
}

.project-item:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(13, 56, 97, 0.15);
}


/* ==========================================
   PROJECT IMAGE
========================================== */

.project-image {
    position: relative;

    width: 100%;
    height: 215px;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.07);
}


/* ==========================================
   DARK OVERLAY
========================================== */

.project-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(
        to top,
        rgba(13, 56, 97, 0.75),
        transparent
    );

    pointer-events: none;
}


/* ==========================================
   NUMBER
========================================== */

.project-number {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #0d3861;

    font-size: 13px;
    font-weight: 800;

    border-radius: 50%;
}


/* ==========================================
   LOCATION
========================================== */

.project-location {
    position: absolute;

    bottom: 14px;
    left: 15px;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.project-location i {
    font-size: 11px;
}


/* ==========================================
   PROJECT CONTENT
========================================== */

.project-info {
    padding: 22px 20px 23px;
}

.project-info h3 {
    margin: 0 0 9px;

    color: #17324d;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 700;
}

.project-info p {
    min-height: 70px;

    margin: 0 0 18px;

    color: #020202;

    font-size: 15px;
    line-height: 1.65;
}


/* ==========================================
   PROJECT LINK
========================================== */

.project-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #0d3861;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.project-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.project-link:hover {
    color: #0d3861;
}

.project-link:hover i {
    transform: translateX(5px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }

    .project-image {
        height: 260px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .efora-projects {
        padding: 60px 15px;
    }

    .projects-heading {
        display: block;

        margin-bottom: 35px;
    }

    .projects-heading-left h2 {
        font-size: 34px;
    }

    .projects-heading-right {
        margin-top: 15px;
    }

    .projects-heading-right p {
        font-size: 14px;
    }

    .projects-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .project-image {
        height: 240px;
    }

    .project-info {
        padding: 22px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .efora-projects {
        padding: 50px 12px;
    }

    .projects-heading-left h2 {
        font-size: 30px;
    }

    .project-image {
        height: 215px;
    }

}



    /* ==========================================
   EFORA FOOTER
========================================== */

.efora-footer {
    width: 100%;
    background: #0d3861;
    color: #ffffff;
}


/* ==========================================
   MAIN FOOTER
========================================== */

.efora-footer-main {
    position: relative;

    padding: 75px 20px 60px;

    overflow: hidden;
}


/* Decorative background */

.efora-footer-main::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -200px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.efora-footer-main::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -180px;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}


.efora-footer-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1350px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;

    gap: 55px;
}


/* ==========================================
   FOOTER ABOUT
========================================== */

.footer-about {
    padding-right: 20px;
}


/* Logo */

.footer-logo {
    display: inline-flex;

    flex-direction: column;

    text-decoration: none;

    margin-bottom: 20px;
}

.footer-logo span {
    color: #ffffff;

    font-size: 32px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;
}

.footer-logo small {
    margin-top: 6px;

    color: rgba(255,255,255,0.65);

    font-size: 10px;

    letter-spacing: 0.5px;
}


.footer-about > p {
    margin: 0;

    color: #fff;

    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;

    color: #0d3861;

    transform: translateY(-3px);
}


/* ==========================================
   FOOTER COLUMN
========================================== */

.footer-column h3 {
    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #ffffff;
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.4;

    transition: all 0.3s ease;
}

.footer-column ul li a i {
    color: #fff;

    font-size: 15px;

    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;

    transform: translateX(4px);
}

.footer-column ul li a:hover i {
    transform: translateX(3px);
}


/* ==========================================
   CONTACT
========================================== */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.10);

    color: #ffffff;

    border-radius: 8px;

    font-size: 15px;
}

.footer-contact-item span {
    display: block;

    margin-bottom: 3px;

    color: #fff;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-contact-item p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.4;
}

.footer-contact-item p a {
    color: #ffffff;

    text-decoration: none;
}


/* ==========================================
   GET QUOTE BUTTON
========================================== */

.footer-quote-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 5px;

    padding: 13px 23px;

    background: #ffffff;

    color: #0d3861;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.footer-quote-btn:hover {
    background: #eaf1f6;

    color: #0d3861;

    transform: translateY(-2px);
}

.footer-quote-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.footer-quote-btn:hover i {
    transform: translateX(4px);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.efora-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);

    padding: 20px;
}

.efora-footer-bottom-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;
}

.efora-footer-bottom p {
    margin: 0;

    color: #fff;

    font-size: 15px;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-bottom-links a {
    color: #fff;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.25);

    font-size: 11px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .efora-footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 40px;
    }

    .footer-about {
        padding-right: 30px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .efora-footer-main {
        padding: 55px 20px 45px;
    }

    .efora-footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-column h3 {
        margin-bottom: 20px;
    }


    .efora-footer-bottom-container {
        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;

        flex-wrap: wrap;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .efora-footer-main {
        padding: 45px 15px 40px;
    }

    .footer-logo span {
        font-size: 29px;
    }

    .footer-about > p {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-contact-item p {
        font-size: 13px;
    }

}



    /* ==========================================
   EFORA WHY CHOOSE US
========================================== */

.efora-why {
    width: 100%;
    padding: 60px 20px;

    background: #ffffff;

    overflow: hidden;
}

.efora-why-container {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 75px;

    align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.why-left {
    position: relative;
}

.why-tag {
    display: inline-block;

    margin-bottom: 14px;

    padding-left: 45px;

    position: relative;

    color: #0d3861;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.why-tag::before {
    content: "";

    position: absolute;

    width: 35px;
    height: 2px;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    background: #0d3861;
}


.why-left h2 {
    margin: 0 0 20px;

    color: #17324d;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 700;
}

.why-left h2 strong {
    color: #0d3861;
}


.why-intro {
    margin: 0 0 28px;

    color: #020202;

    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   HIGHLIGHT BOX
========================================== */

.why-highlight {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    margin-bottom: 28px;

    background: #f4f8fb;

    border-left: 4px solid #0d3861;

    border-radius: 0 12px 12px 0;
}

.why-highlight-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d3861;

    color: #ffffff;

    border-radius: 50%;

    font-size: 16px;
}

.why-highlight strong {
    display: block;

    margin-bottom: 5px;

    color: #17324d;

    font-size: 16px;
}

.why-highlight p {
    margin: 0;

    color: #020202;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================
   BUTTON
========================================== */

.why-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 26px;

    background: #0d3861;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border-radius: 5px;

    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #173f67;

    color: #ffffff;

    transform: translateY(-2px);
}

.why-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.why-btn:hover i {
    transform: translateX(5px);
}


/* ==========================================
   RIGHT FEATURE GRID
========================================== */

.why-right {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* ==========================================
   WHY CARD
========================================== */

.why-card {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 25px 20px;

    background: #f7f9fb;

    border: 1px solid #e5ebf0;

    border-radius: 12px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: #0d3861;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;
}

.why-card:hover {
    background: #ffffff;

    border-color: rgba(13, 56, 97, 0.18);

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(13, 56, 97, 0.10);
}

.why-card:hover::before {
    transform: scaleY(1);
}


/* ==========================================
   NUMBER
========================================== */

.why-card-number {
    position: absolute;

    right: 12px;
    top: 10px;

    color: rgba(13, 56, 97, 0.08);

    font-size: 28px;

    font-weight: 800;

    line-height: 1;
}


/* ==========================================
   ICON
========================================== */

.why-card-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d3861;

    color: #ffffff;

    border-radius: 10px;

    font-size: 17px;

    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    border-radius: 50%;

    transform: rotate(-5deg);
}


/* ==========================================
   CARD CONTENT
========================================== */

.why-card-content {
    padding-right: 5px;
}

.why-card-content h3 {
    margin: 2px 0 7px;

    color: #17324d;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}

.why-card-content p {
    margin: 0;

    color: #020202;

    font-size: 16px;

    line-height: 1.65;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

    .efora-why-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .why-left h2 {
        font-size: 36px;
    }

    .why-right {
        gap: 14px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .efora-why {
        padding: 60px 15px;
    }

    .efora-why-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .why-left h2 {
        font-size: 32px;
    }

    .why-intro {
        font-size: 14px;
    }

    .why-right {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .why-card {
        padding: 22px 18px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .efora-why {
        padding: 50px 12px;
    }

    .why-left h2 {
        font-size: 29px;
    }

    .why-highlight {
        padding: 16px;
    }

    .why-card-icon {
        width: 44px;
        height: 44px;
    }

    .why-card-content h3 {
        font-size: 15px;
    }

}




   /* ==========================================
   EFORA CONTACT SECTION
========================================== */

.efora-contact {
    width: 100%;

    padding: 60px 20px;

    background: #f5f8fb;
}

.efora-contact-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 50px rgba(13, 56, 97, 0.10);
}


/* ==========================================
   LEFT IMAGE
========================================== */

.contact-visual {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: #0d3861;
}

.contact-visual img {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    object-fit: cover;
}


/* ==========================================
   IMAGE OVERLAY
========================================== */

.contact-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 29, 52, 0.95) 0%,
            rgba(13, 56, 97, 0.60) 50%,
            rgba(13, 56, 97, 0.15) 100%
        );
}


/* ==========================================
   LEFT CONTENT
========================================== */

.contact-visual-content {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 115px;

    z-index: 2;
}

.contact-visual-content > span {
    display: inline-block;

    margin-bottom: 13px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-visual-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}

.contact-visual-content h2 strong {
    display: block;

    color: #ffffff;
}

.contact-visual-content p {
    max-width: 460px;

    margin: 0;

    color: rgba(255,255,255,0.78);

    font-size: 16px;

    line-height: 1.8;
}


/* ==========================================
   FLOATING CONTACT BOX
========================================== */

.contact-floating {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 18px;

    background: rgba(255,255,255,0.97);

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-floating-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0d3861;

    color: #ffffff;

    border-radius: 50%;
}

.contact-floating small {
    display: block;

    margin-bottom: 3px;

    /* color: #7a8791; */

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-floating a {
    color: #17324d;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;
}


/* ==========================================
   RIGHT FORM AREA
========================================== */

.contact-form-area {
    padding: 55px 50px;
}


/* ==========================================
   FORM HEADING
========================================== */

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #0d3861;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-form-heading h2 {
    margin: 0 0 10px;

    color: #17324d;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;
}

.contact-form-heading h2 strong {
    color: #0d3861;
}

.contact-form-heading p {
    margin: 0;

    color: #020202;

    font-size: 16px;

    line-height: 1.7;
}


/* ==========================================
   FORM ROW
========================================== */

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;
}

.contact-input-group {
    margin-bottom: 18px;
}

.contact-input-group label {
    display: block;

    margin-bottom: 7px;

    color: #263f55;

    font-size: 15px;

    font-weight: 700;
}


/* ==========================================
   INPUT
========================================== */

.contact-input {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 48px;

    border: 1px solid #dce4ea;

    background: #f9fbfc;

    border-radius: 7px;

    transition: all 0.3s ease;
}

.contact-input:focus-within {
    border-color: #0d3861;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(13, 56, 97, 0.07);
}

.contact-input > i {
    width: 45px;

    flex-shrink: 0;

    text-align: center;

    color: #0d3861;

    font-size: 13px;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #263f55;

    font-family: inherit;

    font-size: 13px;
}

.contact-input input,
.contact-input select {
    height: 46px;

    padding: 0 12px 0 0;
}

.contact-input select {
    cursor: pointer;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #9aa7b1;
}


/* ==========================================
   TEXTAREA
========================================== */

.contact-textarea {
    align-items: flex-start;

    padding-top: 13px;
}

.contact-textarea > i {
    padding-top: 3px;
}

.contact-input textarea {
    min-height: 105px;

    padding: 0 12px 12px 0;

    resize: vertical;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.contact-submit {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    background: #0d3861;

    color: #ffffff;

    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #173f67;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(13, 56, 97, 0.20);
}

.contact-submit i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.contact-submit:hover i {
    transform: translateX(5px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .efora-contact-container {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        min-height: 480px;
    }

    .contact-form-area {
        padding: 45px 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .efora-contact {
        padding: 55px 12px;
    }

    .efora-contact-container {
        border-radius: 14px;
    }

    .contact-visual {
        min-height: 480px;
    }

    .contact-visual-content {
        left: 25px;
        right: 25px;
        bottom: 115px;
    }

    .contact-visual-content h2 {
        font-size: 32px;
    }

    .contact-visual-content p {
        font-size: 13px;
    }

    .contact-floating {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .contact-form-area {
        padding: 40px 20px;
    }

    .contact-form-heading h2 {
        font-size: 30px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .contact-visual {
        min-height: 500px;
    }

    .contact-visual-content h2 {
        font-size: 28px;
    }

    .contact-floating a {
        font-size: 13px;
    }

} 


/* ==========================================
   EFORA ABOUT ANIMATION
========================================== */

.efora-about-image,
.efora-about-content {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.22, .61, .36, 1);
}

/* Image comes from left */
.efora-about-image {
    transform: translateX(-70px);
}

/* Content comes from right */
.efora-about-content {
    transform: translateX(70px);
}

/* Active state */
.efora-about.show .efora-about-image,
.efora-about.show .efora-about-content {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   IMAGE ZOOM
========================================== */

.about-image-box {
    overflow: hidden;
}

.about-image-box img {
    width: 100%;
    display: block;
    transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);
}

.efora-about.show .about-image-box img {
    transform: scale(1.04);
}


/* ==========================================
   EXPERIENCE BOX
========================================== */

.about-experience {
    opacity: 0;
    transform: translateY(30px) scale(.85);
    transition:
        opacity .7s ease .6s,
        transform .7s cubic-bezier(.22, .61, .36, 1) .6s;
}

.efora-about.show .about-experience {
    opacity: 1;
    transform: translateY(0) scale(1);
    
    /* Floating animation */
    animation: experienceFloat 3s ease-in-out 1.3s infinite;
}

@keyframes experienceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* ==========================================
   SMALL TITLE
========================================== */

.about-small-title {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all .7s ease .25s;
}

.efora-about.show .about-small-title {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   HEADING
========================================== */

.efora-about-content h2 {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .8s ease .4s,
        transform .8s cubic-bezier(.22, .61, .36, 1) .4s;
}

.efora-about.show .efora-about-content h2 {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   PARAGRAPHS
========================================== */

.efora-about-content p {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .7s ease .55s,
        transform .7s ease .55s;
}

.efora-about-content p:nth-of-type(2) {
    transition-delay: .7s;
}

.efora-about.show .efora-about-content p {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   FEATURES
========================================== */

.about-feature {
    opacity: 0;
    transform: translateX(25px);
    transition:
        opacity .6s ease,
        transform .6s cubic-bezier(.22, .61, .36, 1);
}

.about-feature:nth-child(1) {
    transition-delay: .8s;
}

.about-feature:nth-child(2) {
    transition-delay: .9s;
}

.about-feature:nth-child(3) {
    transition-delay: 1s;
}

.about-feature:nth-child(4) {
    transition-delay: 1.1s;
}

.efora-about.show .about-feature {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   FEATURE ICON POP
========================================== */

.feature-icon {
    transition: transform .3s ease;
}

.efora-about.show .about-feature:hover .feature-icon {
    transform: rotate(10deg) scale(1.12);
}


/* ==========================================
   KNOW MORE BUTTON
========================================== */

.about-btn {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .7s ease 1.25s,
        transform .7s ease 1.25s,
        background .3s ease,
        color .3s ease;
}

.efora-about.show .about-btn {
    opacity: 1;
    transform: translateY(0);
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover i {
    transform: translateX(6px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .efora-about-image {
        transform: translateY(50px);
    }

    .efora-about-content {
        transform: translateY(50px);
    }

    .efora-about.show .efora-about-image,
    .efora-about.show .efora-about-content {
        transform: translateY(0);
    }

}





 /* ==========================================
   EFORA SERVICES ANIMATION
========================================== */

.efora-services-heading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(.22, .61, .36, 1);
}

.efora-services.show .efora-services-heading {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   SERVICE CARDS
========================================== */

.efora-service-card {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

/* Stagger effect */

.efora-service-card:nth-child(1) {
    transition-delay: 0.25s;
}

.efora-service-card:nth-child(2) {
    transition-delay: 0.45s;
}

.efora-service-card:nth-child(3) {
    transition-delay: 0.65s;
}


.efora-services.show .efora-service-card {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   IMAGE ZOOM
========================================== */

.efora-service-image {
    overflow: hidden;
}

.efora-service-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

.efora-service-card:hover .efora-service-image img {
    transform: scale(1.08);
}


/* ==========================================
   SERVICE NUMBER
========================================== */

.efora-service-number {
    opacity: 0;
    transform: scale(0.5);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(.34, 1.56, .64, 1);
}

.efora-services.show .efora-service-card:nth-child(1)
.efora-service-number {
    transition-delay: 0.55s;
}

.efora-services.show .efora-service-card:nth-child(2)
.efora-service-number {
    transition-delay: 0.75s;
}

.efora-services.show .efora-service-card:nth-child(3)
.efora-service-number {
    transition-delay: 0.95s;
}

.efora-services.show .efora-service-number {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================
   CARD CONTENT
========================================== */

.efora-service-content h3,
.efora-service-content p,
.efora-service-btn {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


/* Heading */

.efora-services.show .efora-service-card:nth-child(1) h3 {
    transition-delay: 0.65s;
}

.efora-services.show .efora-service-card:nth-child(2) h3 {
    transition-delay: 0.85s;
}

.efora-services.show .efora-service-card:nth-child(3) h3 {
    transition-delay: 1.05s;
}


/* Paragraph */

.efora-services.show .efora-service-card:nth-child(1) p {
    transition-delay: 0.75s;
}

.efora-services.show .efora-service-card:nth-child(2) p {
    transition-delay: 0.95s;
}

.efora-services.show .efora-service-card:nth-child(3) p {
    transition-delay: 1.15s;
}


/* Button */

.efora-services.show .efora-service-card:nth-child(1) .efora-service-btn {
    transition-delay: 0.85s;
}

.efora-services.show .efora-service-card:nth-child(2) .efora-service-btn {
    transition-delay: 1.05s;
}

.efora-services.show .efora-service-card:nth-child(3) .efora-service-btn {
    transition-delay: 1.25s;
}


/* Show content */

.efora-services.show .efora-service-content h3,
.efora-services.show .efora-service-content p,
.efora-services.show .efora-service-btn {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   BUTTON ARROW
========================================== */

.efora-service-btn i {
    transition: transform 0.3s ease;
}

.efora-service-btn:hover i {
    transform: translateX(6px);
}


/* ==========================================
   CARD HOVER
========================================== */

.efora-service-card {
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.35s ease;
}

.efora-service-card:hover {
    transform: translateY(-8px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .efora-services-heading {
        transform: translateY(35px);
    }

    .efora-service-card {
        transform: translateY(50px);
    }

}





/* ==========================================
   EFORA PROJECTS ANIMATION
========================================== */

.efora-projects .projects-heading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(.22, .61, .36, 1);
}

.efora-projects.show .projects-heading {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   PROJECT ITEMS
========================================== */

.efora-projects .project-item {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, .61, .36, 1);
}


/* Staggered cards */

.efora-projects .project-item:nth-child(1) {
    transition-delay: 0.15s;
}

.efora-projects .project-item:nth-child(2) {
    transition-delay: 0.30s;
}

.efora-projects .project-item:nth-child(3) {
    transition-delay: 0.45s;
}

.efora-projects .project-item:nth-child(4) {
    transition-delay: 0.60s;
}

.efora-projects .project-item:nth-child(5) {
    transition-delay: 0.75s;
}

.efora-projects .project-item:nth-child(6) {
    transition-delay: 0.90s;
}

.efora-projects .project-item:nth-child(7) {
    transition-delay: 1.05s;
}

.efora-projects .project-item:nth-child(8) {
    transition-delay: 1.20s;
}


/* Show cards */

.efora-projects.show .project-item {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   PROJECT IMAGE
========================================== */

.efora-projects .project-image {
    overflow: hidden;
}

.efora-projects .project-image img {
    width: 100%;
    display: block;
    transition:
        transform 0.9s cubic-bezier(.22, .61, .36, 1);
}


/* Image hover zoom */

.efora-projects .project-item:hover .project-image img {
    transform: scale(1.08);
}


/* ==========================================
   PROJECT NUMBER
========================================== */

.efora-projects .project-number {
    opacity: 0;
    transform: scale(0.5);
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(.34, 1.56, .64, 1);
}


/* Number delay */

.efora-projects .project-item:nth-child(1) .project-number {
    transition-delay: 0.40s;
}

.efora-projects .project-item:nth-child(2) .project-number {
    transition-delay: 0.55s;
}

.efora-projects .project-item:nth-child(3) .project-number {
    transition-delay: 0.70s;
}

.efora-projects .project-item:nth-child(4) .project-number {
    transition-delay: 0.85s;
}

.efora-projects .project-item:nth-child(5) .project-number {
    transition-delay: 1s;
}

.efora-projects .project-item:nth-child(6) .project-number {
    transition-delay: 1.15s;
}

.efora-projects .project-item:nth-child(7) .project-number {
    transition-delay: 1.30s;
}

.efora-projects .project-item:nth-child(8) .project-number {
    transition-delay: 1.45s;
}


.efora-projects.show .project-number {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================
   LOCATION BADGE
========================================== */

.efora-projects .project-location {
    opacity: 0;
    transform: translateX(-25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


.efora-projects .project-item:nth-child(1) .project-location {
    transition-delay: 0.55s;
}

.efora-projects .project-item:nth-child(2) .project-location {
    transition-delay: 0.70s;
}

.efora-projects .project-item:nth-child(3) .project-location {
    transition-delay: 0.85s;
}

.efora-projects .project-item:nth-child(4) .project-location {
    transition-delay: 1s;
}

.efora-projects .project-item:nth-child(5) .project-location {
    transition-delay: 1.15s;
}

.efora-projects .project-item:nth-child(6) .project-location {
    transition-delay: 1.30s;
}

.efora-projects .project-item:nth-child(7) .project-location {
    transition-delay: 1.45s;
}

.efora-projects .project-item:nth-child(8) .project-location {
    transition-delay: 1.60s;
}


.efora-projects.show .project-location {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   PROJECT CONTENT
========================================== */

.efora-projects .project-info h3,
.efora-projects .project-info p,
.efora-projects .project-link {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


/* Heading delays */

.efora-projects .project-item:nth-child(1) h3 {
    transition-delay: 0.50s;
}

.efora-projects .project-item:nth-child(2) h3 {
    transition-delay: 0.65s;
}

.efora-projects .project-item:nth-child(3) h3 {
    transition-delay: 0.80s;
}

.efora-projects .project-item:nth-child(4) h3 {
    transition-delay: 0.95s;
}

.efora-projects .project-item:nth-child(5) h3 {
    transition-delay: 1.10s;
}

.efora-projects .project-item:nth-child(6) h3 {
    transition-delay: 1.25s;
}

.efora-projects .project-item:nth-child(7) h3 {
    transition-delay: 1.40s;
}

.efora-projects .project-item:nth-child(8) h3 {
    transition-delay: 1.55s;
}


/* Paragraph */

.efora-projects .project-item:nth-child(1) p {
    transition-delay: 0.60s;
}

.efora-projects .project-item:nth-child(2) p {
    transition-delay: 0.75s;
}

.efora-projects .project-item:nth-child(3) p {
    transition-delay: 0.90s;
}

.efora-projects .project-item:nth-child(4) p {
    transition-delay: 1.05s;
}

.efora-projects .project-item:nth-child(5) p {
    transition-delay: 1.20s;
}

.efora-projects .project-item:nth-child(6) p {
    transition-delay: 1.35s;
}

.efora-projects .project-item:nth-child(7) p {
    transition-delay: 1.50s;
}

.efora-projects .project-item:nth-child(8) p {
    transition-delay: 1.65s;
}


/* Links */

.efora-projects .project-item:nth-child(1) .project-link {
    transition-delay: 0.70s;
}

.efora-projects .project-item:nth-child(2) .project-link {
    transition-delay: 0.85s;
}

.efora-projects .project-item:nth-child(3) .project-link {
    transition-delay: 1s;
}

.efora-projects .project-item:nth-child(4) .project-link {
    transition-delay: 1.15s;
}

.efora-projects .project-item:nth-child(5) .project-link {
    transition-delay: 1.30s;
}

.efora-projects .project-item:nth-child(6) .project-link {
    transition-delay: 1.45s;
}

.efora-projects .project-item:nth-child(7) .project-link {
    transition-delay: 1.60s;
}

.efora-projects .project-item:nth-child(8) .project-link {
    transition-delay: 1.75s;
}


/* Show content */

.efora-projects.show .project-info h3,
.efora-projects.show .project-info p,
.efora-projects.show .project-link {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   VIEW PROJECT ARROW
========================================== */

.efora-projects .project-link i {
    transition: transform 0.3s ease;
}

.efora-projects .project-link:hover i {
    transform: translateX(6px);
}


/* ==========================================
   CARD HOVER
========================================== */

.efora-projects .project-item {
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .efora-projects .projects-heading {
        transform: translateY(35px);
    }

    .efora-projects .project-item {
        transform: translateY(50px);
    }

}




/* ==========================================
   EFORA WHY CHOOSE ANIMATION
========================================== */

.efora-why .why-left {
    opacity: 0;
    transform: translateX(-70px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22, .61, .36, 1);
}

.efora-why.show .why-left {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   LEFT CONTENT SEQUENCE
========================================== */

.efora-why .why-tag,
.efora-why .why-left h2,
.efora-why .why-intro,
.efora-why .why-highlight,
.efora-why .why-btn {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, .61, .36, 1);
}


/* Tag */

.efora-why.show .why-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}


/* Heading */

.efora-why.show .why-left h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}


/* Intro */

.efora-why.show .why-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}


/* Highlight */

.efora-why.show .why-highlight {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}


/* Button */

.efora-why.show .why-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}


/* ==========================================
   HIGHLIGHT ICON
========================================== */

.efora-why .why-highlight-icon {
    transition:
        transform 0.6s cubic-bezier(.34, 1.56, .64, 1);
}

.efora-why.show .why-highlight-icon {
    transform: scale(1);
    animation: whyAwardPop 0.8s ease 0.9s both;
}

@keyframes whyAwardPop {

    0% {
        transform: scale(0.5) rotate(-15deg);
    }

    70% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}


/* ==========================================
   RIGHT CARDS
========================================== */

.efora-why .why-card {
    opacity: 0;
    transform: translateX(70px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================
   STAGGER CARDS
========================================== */

.efora-why .why-card:nth-child(1) {
    transition-delay: 0.25s;
}

.efora-why .why-card:nth-child(2) {
    transition-delay: 0.40s;
}

.efora-why .why-card:nth-child(3) {
    transition-delay: 0.55s;
}

.efora-why .why-card:nth-child(4) {
    transition-delay: 0.70s;
}

.efora-why .why-card:nth-child(5) {
    transition-delay: 0.85s;
}

.efora-why .why-card:nth-child(6) {
    transition-delay: 1s;
}


.efora-why.show .why-card {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   CARD NUMBER
========================================== */

.efora-why .why-card-number {
    opacity: 0;
    transform: scale(0.6);
    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(.34, 1.56, .64, 1);
}

.efora-why.show .why-card-number {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================
   CARD ICON
========================================== */

.efora-why .why-card-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    transition:
        opacity 0.6s ease,
        transform 0.7s cubic-bezier(.34, 1.56, .64, 1);
}

.efora-why.show .why-card-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}


/* ==========================================
   CARD CONTENT
========================================== */

.efora-why .why-card-content {
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.efora-why.show .why-card-content {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   CARD HOVER
========================================== */

.efora-why .why-card {
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.3s ease;
}

.efora-why .why-card:hover {
    transform: translateX(6px);
}


/* Icon hover */

.efora-why .why-card:hover .why-card-icon {
    transform: scale(1.08) rotate(5deg);
}


/* ==========================================
   BUTTON ARROW
========================================== */

.efora-why .why-btn i {
    transition: transform 0.3s ease;
}

.efora-why .why-btn:hover i {
    transform: translateX(6px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .efora-why .why-left {
        transform: translateY(50px);
    }

    .efora-why.show .why-left {
        transform: translateY(0);
    }

    .efora-why .why-card {
        transform: translateY(50px);
    }

    .efora-why.show .why-card {
        transform: translateY(0);
    }

    .efora-why .why-card:hover {
        transform: translateY(-4px);
    }

}






/* ==========================================
   EFORA TESTIMONIALS
========================================== */

.efora-testimonials {
    width: 100%;
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
}

.testimonial-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

.testimonial-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #0d3861;
    font-size: 12px;
    letter-spacing: 2px;
}

.testimonial-label::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #0d3861;
}

.testimonial-heading h2 {
    margin: 0 0 12px;
    color: #17324d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.testimonial-heading h2 strong {
    color: #0d3861;
}

.testimonial-heading p {
    margin: 0;
    color: #020202;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   SLIDER
========================================== */

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 1px 25px;
}

.testimonial-track {
    display: flex;
    width: 100%;

    transition:
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;
}


/* ==========================================
   DESKTOP - 3 CARDS
========================================== */

.testimonial-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 10px;
    box-sizing: border-box;
}


/* ==========================================
   CARD
========================================== */

.testimonial-card {
    position: relative;

    min-height: 330px;

    padding: 32px 27px 25px;

    background: #ffffff;

    border: 1px solid #e1e8ee;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(13, 56, 97, 0.06);

    transition: all 0.35s ease;
}

.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #0d3861;
}

.testimonial-card:hover {
    transform: translateY(-6px);

    border-color: rgba(13, 56, 97, 0.15);

    box-shadow:
        0 18px 40px rgba(13, 56, 97, 0.13);
}


/* ==========================================
   TOP
========================================== */

.testimonial-top {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.quote-mark {
    color: rgba(13, 56, 97, 0.10);

    font-family: Georgia, serif;

    font-size: 65px;

    font-weight: bold;

    line-height: 0.6;
}


/* ==========================================
   SVG STARS
========================================== */

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-stars svg {
    width: 17px;
    height: 17px;

    display: block;

    fill: #0d3861;
}


/* ==========================================
   TEXT
========================================== */

.testimonial-text {
    margin: 0;

    color: #020202;

    font-size: 16px;

    line-height: 1.8;
}


/* ==========================================
   PERSON
========================================== */

.testimonial-person {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid #edf1f4;
}

.person-avatar {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0d3861;

    color: #ffffff;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.person-info h4 {
    margin: 0 0 4px;

    color: #17324d;

    font-size: 14px;
    font-weight: 700;
}

.person-info span {
    color: #87949e;

    font-size: 11px;
}


/* ==========================================
   ARROWS
========================================== */

.testimonial-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 42px;
    height: 42px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid #dce5eb;

    background: #ffffff;

    color: #0d3861;

    border-radius: 50%;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(13, 56, 97, 0.10);

    transition: all 0.3s ease;
}

.testimonial-arrow svg {
    width: 19px;
    height: 19px;
}

.testimonial-arrow:hover {
    background: #0d3861;
    color: #ffffff;
    border-color: #0d3861;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}


/* ==========================================
   DOTS
========================================== */

.testimonial-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    background: #cbd6df;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 25px;

    background: #0d3861;

    border-radius: 10px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
    }

    .testimonial-heading h2 {
        font-size: 36px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .efora-testimonials {
        padding: 60px 12px;
    }

    .testimonial-heading {
        margin-bottom: 30px;
    }

    .testimonial-heading h2 {
        font-size: 31px;
    }

    .testimonial-heading p {
        font-size: 13px;
    }

    .testimonial-slider {
        padding-left: 0px;
        padding-right: 0px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 5px;
    }

    .testimonial-card {
        min-height: 320px;
        padding: 30px 22px 25px;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
    }

    .testimonial-arrow svg {
        width: 16px;
        height: 16px;
    }

    .testimonial-prev {
        left: 2px;
    }

    .testimonial-next {
        right: 2px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .testimonial-heading h2 {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-stars svg {
        width: 15px;
        height: 15px;
    }

}




    .about-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-image: url(../img/eora/abou-new.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 27, 48, 0.48);
    z-index: 1;
}

/* Diagonal Shapes */
.about-shape {
    position: absolute;
    top: -80px;
    height: 560px;
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.about-shape-1 {
    width: 135px;
    left: 43%;
    background: rgba(255, 255, 255, 0.10);
}

.about-shape-2 {
    width: 90px;
    left: 52%;
    background: rgba(255, 255, 255, 0.15);
}

.about-shape-3 {
    width: 145px;
    right: 13%;
    background: rgba(255, 255, 255, 0.22);
}

/* Heading */
.about-banner-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.about-banner-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

/* Tablet */
@media (max-width: 991px) {
    .about-banner {
        height: 330px;
    }

    .about-banner-content h1 {
        font-size: 42px;
    }

    .about-shape-1 {
        left: 38%;
    }

    .about-shape-2 {
        left: 48%;
    }

    .about-shape-3 {
        right: 5%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-banner {
        height: 260px;
        background-position: center;
    }

    .about-banner-content h1 {
        font-size: 34px;
    }

    .about-shape {
        height: 400px;
    }

    .about-shape-1 {
        width: 80px;
        left: 32%;
    }

    .about-shape-2 {
        width: 55px;
        left: 45%;
    }

    .about-shape-3 {
        width: 80px;
        right: -5%;
    }
}



    .efora-mission-vision {
    position: relative;
    padding: 60px 20px;
    background: #f7f9fc;
    overflow: hidden;
}

.efora-mission-vision::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 56, 97, 0.04);
    top: -180px;
    left: -150px;
}

.efora-mission-vision::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(13, 56, 97, 0.035);
    bottom: -180px;
    right: -100px;
}

.mv-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
}

/* Heading */

.mv-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.mv-heading > span {
    display: inline-block;
    color: #0d3861;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 45px;
}

.mv-heading > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 2px;
    background: #0d3861;
    transform: translateY(-50%);
}

.mv-heading h2 {
    margin: 0 0 16px;
    color: #172b3a;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.mv-heading p {
    margin: 0;
    color: #020202;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards */

.mv-card {
    position: relative;
    padding: 42px 40px 40px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e6ebf0;
    overflow: hidden;
    display: flex;
    gap: 28px;
    transition: all 0.35s ease;
}

.mv-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #0d3861;
}

.mv-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(13, 56, 97, 0.12);
}

/* Vision Accent */

.vision-card::before {
    background: #1d78b5;
}

/* Icon */

.mv-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 16px;
    background: #edf4f9;
    color: #0d3861;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.mv-icon svg {
    width: 48px;
    height: 48px;
}

.vision-card .mv-icon {
    background: #eef7fb;
    color: #1d78b5;
}

.mv-card:hover .mv-icon {
    background: #0d3861;
    color: #ffffff;
}

.vision-card:hover .mv-icon {
    background: #1d78b5;
    color: #ffffff;
}

/* Content */

.mv-content {
    flex: 1;
}

.mv-number {
    display: block;
    margin-bottom: 5px;
    color: #9aa8b5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.mv-content h3 {
    margin: 0 0 16px;
    color: #172b3a;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.mv-content p {
    margin: 0 0 14px;
    color: #020202;
    font-size: 16px;
    line-height: 1.75;
}

.mv-content p:last-child {
    margin-bottom: 0;
}

/* Tablet */

@media (max-width: 991px) {

    .efora-mission-vision {
        padding: 75px 20px;
    }

    .mv-heading h2 {
        font-size: 38px;
    }

    .mv-grid {
        gap: 22px;
    }

    .mv-card {
        padding: 32px 28px;
        gap: 20px;
    }

    .mv-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .mv-icon svg {
        width: 42px;
        height: 42px;
    }

    .mv-content h3 {
        font-size: 24px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .efora-mission-vision {
        padding: 60px 18px;
    }

    .mv-heading {
        margin-bottom: 38px;
    }

    .mv-heading h2 {
        font-size: 32px;
    }

    .mv-heading p {
        font-size: 15px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        padding: 30px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .mv-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .mv-content h3 {
        font-size: 24px;
    }

    .mv-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}


    .efora-faq {
    padding: 60px 20px;
    background-color: #fff;
    
}

.faq-container {
    max-width: 1300px;
    margin: auto;
}


/* Heading */

.faq-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-heading > span {
    display: inline-block;
    position: relative;
    padding-left: 45px;

    color: #0d3861;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.faq-heading > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 32px;
    height: 2px;

    background: #0d3861;

    transform: translateY(-50%);
}

.faq-heading h2 {
    margin: 0 0 16px;

    color: #172b3a;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.faq-heading h2 strong {
    color: #0d3861;
}

.faq-heading p {
    margin: 0;

    color: #020202;
    font-size: 16px;
    line-height: 1.7;
}


/* FAQ List */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e3e9ee;
    border-radius: 10px;
    overflow: hidden;

    transition: 0.3s ease;
}

.faq-item.active {
    border-color: #0d3861;
    box-shadow: 0 8px 25px rgba(13, 56, 97, 0.08);
}


/* Question */

.faq-question {
    width: 100%;
    border: none;
    outline: none;

    background: transparent;

    padding: 21px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    color: #172b3a;

    font-size: 16px;
    font-weight: 600;

    text-align: left;
}

.faq-question svg {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    color: #0d3861;

    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 22px;

    color: #020202;

    font-size: 15px;
    line-height: 1.75;
}


/* Active */

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* Mobile */

@media (max-width: 767px) {

    .efora-faq {
        padding: 60px 18px;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 31px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 15px;
        gap: 15px;
    }

    .faq-answer p {
        padding: 0 18px 20px;
        font-size: 14px;
    }
}





    /* HEADER BANNER STYLES */
.main-header-banner {
  background-color: #060e28;
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.main-header-banner h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  color: #ffffff;
}

.main-header-banner p {
  font-size: 15px;
  font-weight: 700;
  color: #f7b928; /* Yellow Tagline Color */
  margin: 0;
}



.main-header-banner-1 {
  background-color: #005452;
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.main-header-banner-1 h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  color: #ffffff;
}

.main-header-banner-1 p {
  font-size: 15px;
  font-weight: 700;
  color: #f7b928; /* Yellow Tagline Color */
  margin: 0;
}


@media (max-width: 600px) {
  .main-header-banner-1 {
    padding: 12px 10px;
  }
  
  .main-header-banner-1 h1 {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .main-header-banner-1 p {
    font-size: 12px;
  }
}

/* RESPONSIVE FOR MOBILE DEVICES */
@media (max-width: 600px) {
  .main-header-banner {
    padding: 12px 10px;
  }
  
  .main-header-banner h1 {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .main-header-banner p {
    font-size: 12px;
  }
}
    .dashboard-section {
  width: 100%;
  padding: 20px 10px;
  background-color: #f1f3f7;
  box-sizing: border-box;

  position: relative;
}

.dashboard-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Vertical Stacking */
  gap: 15px;
  width: 100%;
}

/* Card Styling */
.dashboard-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #d9e0e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: static; /* Fixed absolute position issues */
}

.section-title {
  text-align: center;
  color: #0d3861;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* 1. TOP LAYOUT GRID */
.top-layout-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 15px;
  width: 100%;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* OUR SOLUTIONS */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sol-card {
  border: 1px solid #e1e6eb;
  border-radius: 8px;
  padding: 12px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  min-height: 88px;
}

.sol-card i {
  font-size: 24px;
  color: #0d3861;
  margin-bottom: 6px;
}

.sol-card span {
  font-size: 15px;
  font-weight: 700;
  color: #0d3861;
  line-height: 1.2;
}

.sol-card-wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 10px;
}

.sol-card-wide i {
  margin-bottom: 0;
}

/* EXECUTION PROCESS */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5px 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 42px;
}

.step-num {
  width: 24px;
  height: 24px;
  background-color: #0d1e3a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 6px;
}

.step-label {
  font-size: 9px;
  font-weight: 700;
  color: #333333;
  line-height: 1.1;
}

.process-arrow {
  color: #0d1e3a;
  font-size: 11px;
  margin-top: 4px;
  font-weight: bold;
}

/* FEATURED PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.project-item {
  border: 1px solid #e1e6eb;
  border-radius: 10px;
  padding: 10px;
  background-color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proj-heading {
  font-size: 15px;
  font-weight: 800;
  color: #0d1e3a;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.img-wrapper {
  width: 100%;
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item p {
  font-size: 16px;
  font-weight: 400;
  color: #020202;
  line-height: 1.3;
}

/* 2. STATS BAR (FIXED - FULL WIDTH RIGHT ABOVE FOOTER BANNER) */
.stats-bar-1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  box-sizing: border-box;
}

.stat-box-1 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #0d1e3a;
  border-right: 1px solid #e1e6eb;
  padding: 0 10px;
  width: 100%;
  justify-content: center;
}

.stat-box-1:last-child {
  border-right: none;
}

.stat-box-1 i {
  font-size: 24px;
  color: #0d3861;
}

.stat-box-1 strong {
  font-size: 16px;
  font-weight: 800;
}

/* 3. BOTTOM FOOTER BANNER */
.bottom-footer-bar {
  width: 100%;
  background-color: #0d3861;
  color: #ffffff;
  text-align: center;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-sizing: border-box;
}

.bottom-footer-bar span {
  color: #f7b928;
  font-weight: 800;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .top-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar-1 {
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-box-1 {
    border-right: none;
    width: 50%;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .process-arrow {
    display: none;
  }

  .stat-box-1 {
    width: 100%;
  }

  .bottom-footer-bar {
    font-size: 12px;
  }
}



.efora-section {
  width: 100%;
  background-color: #f6f2ee;
  padding: 25px 15px;
 
}

.efora-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 1. TOP MAIN GRID */
.top-main-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 20px;
  align-items: stretch;
}

/* LEFT SERVICES CARD */
.left-services-card {
  background: #fdfaf6;
  border: 1px solid #e7dac9;
  border-radius: 12px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  background-color: #793311;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-info h3 {
  font-size: 14px;
  font-weight: 800;
  color: #632608;
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}

.service-info p {
  font-size: 12px;
  color: #2b1f1a;
  font-weight: 600;
  line-height: 1.3;
}

/* RIGHT HERO AREA (IMAGE AS BACKGROUND WITH OVERLAYS) */
.right-hero-area {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  min-height: 380px;

  /* YAHAN APNI TRUCK WALI IMAGE KA LINK DALEN */
  background-image: url(../img/eora/relocation.png); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* FADE EFFECT ON LEFT & TOP FOR SEAMLESS BLEND */
.hero-bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(246, 242, 238, 0.85) 0%, 
    rgba(246, 242, 238, 0.2) 30%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* HEADING OVERLAY */
.hero-title-group {
  position: relative;
  z-index: 2;
}

.hero-title-group h1 {
  font-size: 26px;
  font-weight: 900;
  color: #632608;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.hero-title-group p {
  font-size: 15px;
  font-weight: 800;
  color: #1a100b;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

/* OVERLAPPING WHY CHOOSE CARD AT BOTTOM */
.why-choose-overlay-card {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(253, 250, 246, 0.95); /* Slight glass opacity */
  border: 1px solid #e7dac9;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
}

.why-choose-heading {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #632608;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.why-choose-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}

.feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e7dac9;
  padding: 0 4px;
}

.feature-col:last-child {
  border-right: none;
}

.feature-col i {
  font-size: 22px;
  color: #793311;
  margin-bottom: 6px;
}

.feature-col span {
  font-size: 14px;
  font-weight: 700;
  color: #1a100b;
  line-height: 1.2;
}

/* 2. OUR RELOCATION EDGE */
.relocation-edge-wrapper {
  background-color: #ffffff;
  border: 1px solid #e7dac9;
  border-radius: 8px;
  overflow: hidden;
}

.edge-header-bar {
  background-color: #793311;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 7px;
  letter-spacing: 0.5px;
}

.edge-items-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 12px 5px;
}

.edge-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid #e7dac9;
  padding: 0 8px;
}

.edge-box:last-child {
  border-right: none;
}

.edge-box i {
  font-size: 24px;
  color: #793311;
}

.edge-box span {
  font-size: 14px;
  font-weight: 700;
  color: #1a100b;
  line-height: 1.2;
}

/* 3. BOTTOM SERVE BAR */
.bottom-serve-bar {
  background-color: #fdfaf6;
  border: 1px solid #e7dac9;
  border-radius: 8px;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.serve-text {
  font-size: 15px;
  font-weight: 900;
  color: #632608;
  letter-spacing: 0.5px;
}

.qr-code-group {
  display: flex;
  align-items: center;
  gap: 35px;
}

.qr-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-item img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.qr-details {
  display: flex;
  flex-direction: column;
}

.qr-platform {
  font-size: 11px;
  color: #1a100b;
  font-weight: 600;
}

.qr-handle {
  font-size: 11px;
  color: #632608;
  font-weight: 800;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .top-main-grid {
    grid-template-columns: 1fr;
  }

  .right-hero-area {
    min-height: 450px;
  }

  .why-choose-features, .edge-items-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .feature-col, .edge-box {
    border-right: none;
    padding: 8px 0;
  }
}

@media (max-width: 600px) {
  .why-choose-features, .edge-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-serve-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .qr-code-group {
    gap: 15px;
    flex-wrap: wrap;
  }
}







 
.logistics-section {
  width: 100%;
  background-color: #f2f4f3;
  padding: 20px;
}

.logistics-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARDS COMMON */
.card-box {
  background: #ffffff;
  border: 1px solid #d4ded9;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
}

.card-heading-center {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #034233; /* Dark Green Header */
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  position: relative;
}

/* 1. TOP ROW GRID */
.top-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* SERVICES CARD */
.services-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-col {
  display: flex;
  flex-direction: column;
  align-items: left;
  border-right: 1px solid #e1e8e5;
  padding: 0 20px;
}

.service-col:last-child {
  border-right: none;
}

.circle-icon {
  width: 60px;
  height: 60px;
  background-color: #034233;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 8px;
}

.col-title {
  font-size: 15px;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 8px;
  height: 28px;
  display: flex;
  align-items: center;
}

.dot-list {
  list-style: none;
  width: 100%;
}

.dot-list li {
  font-size: 13px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 5px;
  position: relative;
  padding-left: 12px;
  line-height: 1.2;
}

.dot-list li::before {
  content: "•";
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -1px;
}

/* INFRASTRUCTURE CARD */
.infra-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.infra-sub-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d4ded9;
}

.infra-sub-header {
  background-color: #034233;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  padding: 6px;
  letter-spacing: 0.5px;
}

.infra-bg-box {
  height: 172px;
  padding: 10px 12px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Set your internal background photos here */
.warehouse-bg {
  background-image:  url(../img/eora/network.png);
}

.vehicle-bg {
  background-image:  url(../img/eora/truckiwarehouse.png);
}

.infra-text-list {
  list-style: none;
}

.infra-text-list li {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

/* 2. MIDDLE ROW GRID */
.middle-row-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  align-items: stretch;
}

.mid-img-box {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.mid-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT CARD */
.contact-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-header {
  background-color: #034233;
  color: #ffffff;
  text-align: center;
  padding: 10px 12px;
}

.contact-header h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.contact-header p {
  font-size: 11px;
  font-weight: 600;
}

.contact-details {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-grow: 1;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-row i {
  color: #034233;
  font-size: 16px;
  margin-top: 2px;
}

.contact-row span {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}

.address-row div span {
  line-height: 1.3;
}

/* 3. BOTTOM FOOTER BANNER */
.footer-banner-dark {
  background-color: #034233;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-connect-side {
  display: flex;
  align-items: center;
  gap: 25px;
}

.follow-label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.qr-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qr-block img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.qr-info {
  display: flex;
  flex-direction: column;
}

.qr-info strong {
  font-size: 11px;
}

.qr-info span {
  font-size: 8px;
  color: #d1e2dd;
}

.slogan-side {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 25px;
}

.slogan-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.slogan-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #ffffff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .top-row-grid, .middle-row-grid {
    grid-template-columns: 1fr;
  }

  .footer-banner-dark {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .slogan-side {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services-three-col, .infra-two-col {
    grid-template-columns: 1fr;
  }

  .service-col {
    border-right: none;
    border-bottom: 1px solid #e1e8e5;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .contact-details {
    flex-direction: column;
    align-items: flex-start;
  }
}


.contact-info-section {
    padding: 60px 20px;
    background: #fff;
    
}

.contact-info-container {
    max-width: 1350px;
    margin: auto;
}

.contact-info-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-info-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0d3861;
}

.contact-info-heading > span::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #0d3861;
    display: block;
}

.contact-info-heading h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    color: #172b3a;
    font-weight: 700;
}

.contact-info-heading h2 strong {
    color: #0d3861;
}

.contact-info-heading p {
    margin: 0;
    color: #020202;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-box {
    background: #ffffff;
    border: 1px solid #e7edf1;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.contact-info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #0d3861;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 27px;
    height: 27px;
}

.contact-info-content span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0d3861;
    margin-bottom: 5px;
}

.contact-info-content h3 {
    margin: 0 0 7px;
    color: #172b3a;
    font-size: 19px;
    font-weight: 700;
}

.contact-info-content a,
.contact-info-content p {
    margin: 0;
    color: #020202;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-info-content a:hover {
    color: #0d3861;
}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .contact-info-section {
        padding: 60px 15px;
    }

    .contact-info-heading h2 {
        font-size: 30px;
    }

    .contact-info-heading p {
        font-size: 14px;
    }

    .contact-info-box {
        padding: 25px 20px;
    }
}



    .header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-menu li {
    position: relative;
}

.header-menu a {
    text-decoration: none;
}

/* Dropdown */
.header-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #0d3861;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.header-menu .dropdown-menu li {
    width: 100%;
}

.header-menu .dropdown-menu a {
    display: block;
    padding: 5px 18px;
    white-space: nowrap;
}

/* Show dropdown on hover */
.header-menu .dropdown:hover > .dropdown-menu {
    display: flex;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}





.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}





  /* =========================================
   SIMPLE & LIGHT HOVER ANIMATION
========================================= */

/* Service Row */
.service-row {
    transition: transform 0.3s ease;
}

.service-row:hover {
    transform: translateX(5px);
}

.service-icon-box {
    transition: transform 0.3s ease;
}

.service-row:hover .service-icon-box {
    transform: scale(1.06);
}

.service-info h3,
.service-info p {
    transition: transform 0.3s ease;
}

.service-row:hover .service-info h3 {
    transform: translateX(3px);
}

.service-row:hover .service-info p {
    transform: translateX(3px);
}


/* Hero Heading */
.hero-title-group {
    transition: transform 0.4s ease;
}

.right-hero-area:hover .hero-title-group {
    transform: translateY(-4px);
}


/* Why Choose Features */
.feature-col {
    transition: transform 0.3s ease;
}

.feature-col:hover {
    transform: translateY(-4px);
}

.feature-col i {
    transition: transform 0.3s ease;
}

.feature-col:hover i {
    transform: scale(1.08);
}


/* Relocation Edge */
.edge-box {
    transition: transform 0.3s ease;
}

.edge-box:hover {
    transform: translateY(-4px);
}

.edge-box i {
    transition: transform 0.3s ease;
}

.edge-box:hover i {
    transform: scale(1.08);
}


/* QR */
.qr-item {
    transition: transform 0.3s ease;
}

.qr-item:hover {
    transform: translateY(-4px);
}

.qr-item img {
    transition: transform 0.3s ease;
}

.qr-item:hover img {
    transform: scale(1.04);
}


/* Header Text */
.edge-header-bar,
.serve-text {
    transition: transform 0.3s ease;
}

.edge-header-bar:hover {
    transform: translateX(3px);
}

.serve-text:hover {
    transform: translateX(3px);
}



/* =========================================
   SKILL INDIA - SUBTLE HOVER ANIMATION
========================================= */

/* Main Header */
.main-header-banner h1,
.main-header-banner p {
    transition: transform 0.35s ease;
}

.main-header-banner:hover h1 {
    transform: translateY(-3px);
}

.main-header-banner:hover p {
    transform: translateY(-2px);
}


/* =========================================
   SOLUTION CARDS
========================================= */

.sol-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sol-card:hover {
    transform: translateY(-5px);
}

.sol-card i {
    transition: transform 0.3s ease;
}

.sol-card:hover i {
    transform: scale(1.08);
}


/* =========================================
   PROCESS STEPS
========================================= */

.process-step {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-num {
    transition: transform 0.3s ease;
}

.process-step:hover .step-num {
    transform: scale(1.08);
}

.process-arrow {
    transition: transform 0.3s ease;
}

.process-step:hover + .process-arrow {
    transform: translateX(3px);
}


/* =========================================
   FEATURED PROJECTS
========================================= */

.project-item {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-5px);
}


/* Project Image */
.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    transition: transform 0.45s ease;
}

.project-item:hover .img-wrapper img {
    transform: scale(1.04);
}


/* Project Heading */
.proj-heading {
    transition: transform 0.3s ease;
}

.project-item:hover .proj-heading {
    transform: translateX(3px);
}


/* Project Description */
.project-item p {
    transition: transform 0.3s ease;
}

.project-item:hover p {
    transform: translateX(2px);
}


/* =========================================
   STATS
========================================= */

.stat-box-1 {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.stat-box-1:hover {
    transform: translateY(-4px);
}

.stat-box-1 i {
    transition: transform 0.3s ease;
}

.stat-box-1:hover i {
    transform: scale(1.08);
}

.stat-box-1 strong {
    transition: transform 0.3s ease;
}

.stat-box-1:hover strong {
    display: inline-block;
    transform: translateY(-2px);
}


/* =========================================
   BOTTOM FOOTER BANNER
========================================= */

.bottom-footer-bar {
    transition: transform 0.3s ease;
}

.bottom-footer-bar:hover {
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .sol-card:hover {
        transform: translateY(-3px);
    }

    .process-step:hover {
        transform: translateY(-2px);
    }

    .project-item:hover {
        transform: translateY(-3px);
    }

    .stat-box-1:hover {
        transform: translateY(-2px);
    }

}




 /* =========================================
    LOGISTICS SECTION - SUBTLE HOVER
 ========================================= */

 /* Header */
 .main-header-banner-1 h1,
 .main-header-banner-1 p {
     transition: transform 0.35s ease;
 }

 .main-header-banner-1:hover h1 {
     transform: translateY(-3px);
 }

 .main-header-banner-1:hover p {
     transform: translateY(-2px);
 }


 /* =========================================
    LOGISTICS SERVICE COLUMNS
 ========================================= */

 .service-col {
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .service-col:hover {
     transform: translateY(-5px);
 }

 .circle-icon {
     transition: transform 0.35s ease;
 }

 .service-col:hover .circle-icon {
     transform: scale(1.08);
 }

 .col-title {
     transition: transform 0.3s ease;
 }

 .service-col:hover .col-title {
     transform: translateY(-2px);
 }


 /* =========================================
    INFRASTRUCTURE BOXES
 ========================================= */

 .infra-sub-box {
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .infra-sub-box:hover {
     transform: translateY(-5px);
 }

 .infra-sub-header {
     transition: transform 0.3s ease;
 }

 .infra-sub-box:hover .infra-sub-header {
     transform: translateY(-2px);
 }

 .infra-text-list li {
     transition: transform 0.25s ease;
 }

 .infra-sub-box:hover .infra-text-list li {
     transform: translateX(3px);
 }


 /* =========================================
    MIDDLE IMAGE
 ========================================= */

 .mid-img-box {
     overflow: hidden;
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .mid-img-box:hover {
     transform: translateY(-4px);
 }

 .mid-img-box img {
     transition: transform 0.5s ease;
 }

 .mid-img-box:hover img {
     transform: scale(1.04);
 }


 /* =========================================
    CONTACT CARD
 ========================================= */

 .contact-card {
     transition: transform 0.3s ease;
 }

 .contact-card:hover {
     transform: translateY(-4px);
 }

 .contact-row {
     transition: transform 0.3s ease;
 }

 .contact-row:hover {
     transform: translateX(4px);
 }

 .contact-row i {
     transition: transform 0.3s ease;
 }

 .contact-row:hover i {
     transform: scale(1.08);
 }


 /* =========================================
    QR / SOCIAL
 ========================================= */

 .qr-block {
     transition: transform 0.3s ease;
     cursor: pointer;
 }

 .qr-block:hover {
     transform: translateY(-4px);
 }

 .qr-block img {
     transition: transform 0.35s ease;
 }

 .qr-block:hover img {
     transform: scale(1.05);
 }


 /* =========================================
    SLOGAN
 ========================================= */

 .slogan-main,
 .slogan-sub {
     transition: transform 0.35s ease;
 }

 .slogan-side:hover .slogan-main {
     transform: translateX(4px);
 }

 .slogan-side:hover .slogan-sub {
     transform: translateX(3px);
 }


 /* =========================================
    FOLLOW LABEL
 ========================================= */

 .follow-label {
     transition: transform 0.3s ease;
 }

 .follow-label:hover {
     transform: translateX(3px);
 }


 /* =========================================
    MOBILE
 ========================================= */

 @media (max-width: 768px) {

     .service-col:hover {
         transform: translateY(-3px);
     }

     .infra-sub-box:hover {
         transform: translateY(-3px);
     }

     .mid-img-box:hover {
         transform: translateY(-2px);
     }

     .contact-card:hover {
         transform: translateY(-2px);
     }

     .qr-block:hover {
         transform: translateY(-2px);
     }

 }





/* =========================================
   MAIN SLIDER
========================================= */

.psychology-slider {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
    background: #222;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}


/* =========================================
   SLIDES
========================================= */

.psychology-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease;

    z-index: 0;
}

.psychology-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* =========================================
   OVERLAY
========================================= */

.slider-overlay {
    position: absolute;
    inset: 0;

    background:
linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.70) 40%,
    rgba(0, 0, 0, 0.25) 75%,
    rgba(0, 0, 0, 0.10) 100%
)
}


/* =========================================
   CONTAINER
========================================= */

.slider-container {
    width: 100%;
    max-width: 1200px;

    height: 100%;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 3;
}


/* =========================================
   CONTENT
========================================= */

.slider-content {
    width: 650px;
    max-width: 100%;

    color: #fff;
}


/* =========================================
   SUB HEADING
========================================= */

.slider-subtitle {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #e5c99a;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.slider-subtitle::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #e5c99a;
}


/* =========================================
   MAIN HEADING
========================================= */

.slider-content h1 {
    margin: 0 0 22px;

    color: #fff;

    font-size: 56px;
    line-height: 1.12;

    font-weight: 600;
}


/* =========================================
   PARAGRAPH
========================================= */

.slider-content p {
    margin: 0 0 32px;

    max-width: 600px;

    color: rgba(255,255,255,0.88);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BUTTON
========================================= */

.slider-btn {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 15px 27px;

    background: #fff;

    color: #17384b;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 3px;

    transition: all 0.3s ease;
}

.slider-btn span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.slider-btn:hover {
    background: #e5c99a;

    color: #17384b;
}

.slider-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   ARROWS
========================================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.55);

    border-radius: 50%;

    background: rgba(0,0,0,0.15);

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;

    color: #17384b;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}


/* =========================================
   DOTS
========================================= */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;

    border-radius: 10px;

    background: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .psychology-slider {
        height: 580px;
    }

    .slider-container {
        padding: 0 60px;
    }

    .slider-content h1 {
        font-size: 44px;
    }

    .slider-content p {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .psychology-slider {
        height: 620px;
    }

    .slider-container {
        padding: 0 25px;
    }

    .psychology-slide {
        background-position: center;
    }

    .slider-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,30,45,0.90),
                rgba(8,30,45,0.65)
            );
    }

    .slider-content {
        width: 100%;
    }

    .slider-subtitle {
        font-size: 10px;

        letter-spacing: 1.8px;

        margin-bottom: 14px;
    }

    .slider-subtitle::before {
        width: 25px;
    }

    .slider-content h1 {
        font-size: 35px;

        line-height: 1.18;

        margin-bottom: 18px;
    }

    .slider-content p {
        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 25px;
    }

    .slider-btn {
        padding: 13px 21px;

        font-size: 13px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .psychology-slider {
        height: 600px;
    }

    .slider-container {
        padding: 0 20px;
    }

    .slider-content h1 {
        font-size: 30px;
    }

    .slider-content p {
        font-size: 13px;
    }

    .slider-arrow {
        display: none;
    }

}



    .efora-capabilities {
    padding: 60px 0;
    background: #fff;
}

.efora-capabilities-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}


/* HEADER */

.capabilities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}

.capabilities-label {
    display: block;
    margin-bottom: 12px;

    color: #0d3861;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.capabilities-header h2 {
    margin: 0;

    
    font-size: 44px;
    line-height: 1.1;
    font-weight: 400;
}



.capabilities-header > p {
    max-width: 500px;
    margin: 0;

    color: #020202;
    font-size: 16px;
    line-height: 1.8;
}


/* GRID */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    background: #dce2e6;
    border: 1px solid #dce2e6;
}


/* CARD */

.capability-card {
    position: relative;

    min-height: 300px;
    padding: 32px;

    background: #ffffff;

    transition: all .4s ease;
}

.capability-card:hover {
    background: #0d3861;
}

.capability-card:hover h3 {
    color: #ffffff;
}

.capability-card:hover p {
    color: rgba(255,255,255,.72);
}

.capability-card:hover .capability-top span {
    color: rgba(255,255,255,.5);
}

.capability-card:hover .capability-top i {
    color: #ffffff;
}


/* TOP */

.capability-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 55px;
}

.capability-top span {
    color: #a3adb4;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.capability-top i {
    color: #0d3861;
    font-size: 25px;
}


/* CONTENT */

.capability-card h3 {
    margin: 0 0 13px;

    color: #102d43;
    font-size: 22px;
    line-height: 1.3;

    transition: .3s ease;
}

.capability-card p {
    max-width: 360px;

    margin: 0;

    color: #020202;
    font-size: 16px;
    line-height: 1.75;

    transition: .3s ease;
}


/* BOTTOM LINE */

.capability-line {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 24px;

    height: 2px;

    background: #e5e9ec;

    transition: .4s ease;
}

.capability-card:hover .capability-line {
    background: rgba(255,255,255,.3);
}


/* FEATURED */

.capability-featured {
    background: #102d43;
}

.capability-featured h3 {
    color: #ffffff;
}

.capability-featured p {
    color: rgba(255,255,255,.7);
}

.capability-featured .capability-top span {
    color: rgba(255,255,255,.5);
}

.capability-featured .capability-top i {
    color: #ffffff;
}

.capability-featured .capability-line {
    background: rgba(255,255,255,.25);
}


/* TABLET */

@media (max-width: 991px) {

    .capabilities-header {
        display: block;
    }

    .capabilities-header > p {
        margin-top: 20px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .efora-capabilities {
        padding: 65px 0;
    }

    .capabilities-header h2 {
        font-size: 34px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: 270px;
    }

}




