/* =========================================================
   USHER SERVICES
   EXACT JAVA WEBSITE STYLE
========================================================= */


/* =========================================================
   ROOT COLORS
========================================================= */

:root {
    --green-dark: #123d1b;
    --green: #35b524;
    --green-light: #5ed44b;
    --lime: #7bea68;
    --blue-dark: #1e2768;
    --blue: #4654bd;
    --blue-light: #6875d6;
    --dark: #101827;
    --text: #273142;
    --text-light: #667085;
    --cream: #f7faf7;
    --light: #f0f4ff;
    --white: #ffffff;
    --border: #dfe4ee;
    --shadow: 0 15px 45px rgba(30, 50, 80, 0.10);
    --shadow-hover: 0 25px 60px rgba(30, 50, 80, 0.18);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================================
   BOOTSTRAP CONTAINER OVERRIDE
   IMPORTANT FOR .NET
========================================================= */

.container,
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-height: 90px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(70, 84, 189, 0.12);
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.logo-image {
    width: 145px;
    height: 55px;
    object-fit: contain;
    object-position: left center;
    margin: 0;
    padding: 0;
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

    .nav-menu a {
        position: relative;
        font-size: 13px;
        font-weight: 600;
        color: #394235;
        white-space: nowrap;
        transition: 0.3s;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--blue);
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: 0.3s;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {
    flex-shrink: 0;
    background: var(--green-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

    .nav-button:hover {
        background: var(--blue);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(70, 84, 189, 0.25);
        color: white;
    }


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    min-height: 760px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}


/* =========================================================
   HERO SLIDESHOW
========================================================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 18s infinite;
}

.slide-one {
    background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2000&q=90");
    animation-delay: 0s;
}

.slide-two {
    background-image: url("https://images.openai.com/static-rsc-4/sfFc-U_C9E1tasYvSLdVq6ADc5CGOc2Fb8-i8u3Nvd5xmK5blUTl-ulV-h0LFSHEnGjgTK3SL0isuS1pvftkXPRHctPIemuLpURnpL89AV6WbTUPMKHwqQh-dwrzSSmVcgc4Boe5WGeD5w4nwAdKMQD912DMV15w8gWjRt4CxNjL99upgsPVIDgfIE0rhqNB?purpose=fullsize");
    animation-delay: 6s;
}

.slide-three {
    background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2000&q=90");
    animation-delay: 12s;
}


/* =========================================================
   HERO ANIMATION
========================================================= */

@keyframes heroSlide {

    0% {
        opacity: 0;
        transform: scale(1);
    }

    8% {
        opacity: 1;
    }

    30% {
        opacity: 1;
        transform: scale(1.06);
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1.06);
    }
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(10, 35, 18, 0.94) 0%, rgba(18, 61, 27, 0.82) 38%, rgba(30, 39, 104, 0.55) 70%, rgba(20, 30, 70, 0.25) 100% );
    z-index: 1;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 25px 75px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 750px;
    color: white;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--lime);
    margin-bottom: 18px;
}

    .hero-tag br {
        display: none;
    }

    .hero-tag::before {
        content: "";
        width: 45px;
        height: 2px;
        background: var(--green);
        flex-shrink: 0;
    }


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

    .hero h1 span {
        color: var(--green);
        display: block;
        font-weight: 800;
    }


    /* =========================================================
   HIGHLIGHT / BOLD TEXT
========================================================= */

    .hero strong,
    .hero b,
    .hero h1 strong,
    .hero h1 b,
    .section-heading strong,
    .section-heading b,
    .about-content strong,
    .about-content b,
    .area-content strong,
    .area-content b,
    .why-left strong,
    .why-left b,
    .contact-info strong,
    .contact-info b {
        font-weight: 800;
    }

.hero-content > p:empty {
    display: none;
}

.hero-content > p {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.primary-btn {
    background: var(--green);
    color: #ffffff;
}

    .primary-btn:hover {
        background: var(--blue);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .primary-btn span,
    .cta-button span {
        margin-left: 12px;
        font-size: 18px;
    }

.outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
}

    .outline-btn:hover {
        background: white;
        color: var(--blue-dark);
    }


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    display: flex;
    gap: 0;
    min-width: 300px;
    color: white;
}

.hero-stat {
    padding: 0 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

    .hero-stat strong {
        font-size: 40px;
        line-height: 1;
        font-weight: 800;
    }

    .hero-stat span {
        color: var(--green);
        font-size: 18px;
        font-weight: 700;
    }

    .hero-stat p {
        margin-top: 8px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }


/* =========================================================
   COMMON SECTIONS
========================================================= */

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.section-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 13px;
}

.light-label {
    color: var(--green);
}

.section-heading {
    max-width: 750px;
    margin-bottom: 48px;
}

    .section-heading h2,
    .about-content h2 {
        font-size: clamp(34px, 4vw, 52px);
        line-height: 1.15;
        color: var(--green-dark);
        letter-spacing: -1.5px;
        margin-bottom: 16px;
        font-weight: 800;
    }

        .section-heading h2 span,
        .about-content h2 span {
            color: var(--blue);
            font-weight: 800;
        }

    .section-heading p {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.7;
    }


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    width: 100%;
    padding: 115px 0;
    background: var(--cream);
    position: relative;
}

    .about-section .section-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 75px;
        align-items: center;
    }

.about-image {
    position: relative;
    padding-right: 30px;
}

    .about-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 1;
    }

    .about-image::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -20px;
        width: 150px;
        height: 150px;
        border: 15px solid var(--green);
        border-radius: 20px;
        z-index: 0;
    }

.experience-box {
    position: absolute;
    z-index: 2;
    left: -20px;
    bottom: 30px;
    background: var(--green-dark);
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

    .experience-box strong {
        color: var(--green);
        font-size: 38px;
        line-height: 1;
    }

    .experience-box span {
        font-size: 12px;
        margin-top: 5px;
    }

.about-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-content h2 strong,
.about-content h2 b {
    font-weight: 800;
}

.about-points {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
}

    .about-points div {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
    }

    .about-points span {
        color: var(--green);
        margin-right: 8px;
        font-size: 17px;
    }


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    width: 100%;
    padding: 115px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

.service-card {
    width: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(30, 50, 80, 0.04);
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(70, 84, 189, 0.3);
    }


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    width: 100%;
    height: 225px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.5s;
    }

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 30%, rgba(15, 25, 50, 0.72) );
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
    padding: 23px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .service-content h3 {
        color: var(--green-dark);
        font-size: 19px;
        line-height: 1.35;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .service-content p {
        color: var(--text-light);
        font-size: 13px;
        line-height: 1.65;
        margin: 0;
    }


/* =========================================================
   SERVICE 7
========================================================= */

.service-card-7 {
    width: min( calc((100% - 50px) / 3), 366px );
    margin: 32px auto 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(30, 50, 80, 0.04);
    display: flex;
    flex-direction: column;
}

    .service-card-7:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(70, 84, 189, 0.3);
    }

.service-image7 {
    width: 100%;
    height: 225px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .service-image7 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.5s;
    }

.service-card-7:hover .service-image7 img {
    transform: scale(1.08);
}

.service-image7::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 30%, rgba(15, 25, 50, 0.72) );
}

.service-content7 {
    padding: 23px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .service-content7 h3 {
        color: var(--green-dark);
        font-size: 19px;
        line-height: 1.35;
        margin: 0 0 10px 0;
        font-weight: 800;
    }

    .service-content7 p {
        color: var(--text-light);
        font-size: 13px;
        line-height: 1.65;
        margin: 0;
    }


/* =========================================================
   AREA
========================================================= */

.area-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient( 135deg, #123d1b 0%, #172b55 55%, #1e2768 100% );
    color: white;
}

    .area-section .section-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 70px;
        align-items: center;
    }

.area-content h2 {
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 800;
}

    .area-content h2 strong,
    .area-content h2 b {
        font-weight: 800;
    }

.area-content p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 530px;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.area-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

    .area-card:hover {
        background: rgba(53, 181, 36, 0.15);
        transform: translateY(-5px);
    }

.area-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--green);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.area-card h3 {
    font-size: 17px;
    margin-bottom: 7px;
    font-weight: 800;
}

.area-card p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-section {
    width: 100%;
    padding: 115px 0;
    background: var(--light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.expertise-card {
    background: white;
    padding: 26px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    .expertise-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow);
        border-color: rgba(70, 84, 189, 0.25);
    }

.expertise-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(70, 84, 189, 0.10);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.expertise-card h3 {
    color: var(--green-dark);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 16px;
    font-weight: 800;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-content: flex-start;
}

    .expertise-list span {
        padding: 6px 10px;
        border-radius: 5px;
        background: var(--light);
        color: #526047;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.4;
    }


/* Only RPA & Automation points */
.rpa-card .expertise-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rpa-card .expertise-list span {
    display: block;
}


/* =========================================================
   LAST EXPERTISE CARD CENTER
========================================================= */
.expertise-card:last-child {
    grid-column: 2;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    width: 100%;
    position: relative;
    padding: 115px 0;
    background: linear-gradient( 135deg, #123d1b, #172b55, #1e2768 );
    color: white;
    overflow: hidden;
}

.why-background {
    position: absolute;
    inset: 0;
    opacity: 0.10;
    background: radial-gradient( circle at 80% 30%, var(--green), transparent 35% );
}

.why-section .section-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.why-left h2 {
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

    .why-left h2 span {
        color: var(--green);
        font-weight: 800;
    }

.why-left p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-card {
    padding: 28px;
    border-left: 2px solid var(--green);
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

    .why-card:hover {
        background: rgba(255, 255, 255, 0.09);
        transform: translateY(-5px);
    }

    .why-card strong {
        color: var(--green);
        font-size: 34px;
        font-weight: 800;
    }

    .why-card h3 {
        font-size: 18px;
        margin: 7px 0;
        font-weight: 800;
    }

    .why-card p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 13px;
        line-height: 1.6;
    }


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {
    width: 100%;
    background: #f4f7ec;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.clients-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.clients-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.clients-label {
    display: inline-block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.clients-heading h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

    .clients-heading h2 span {
        color: var(--blue);
        font-weight: 800;
    }

.clients-heading p {
    color: #66705d;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 18px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.client-card {
    background: #ffffff;
    border: 1px solid #dfe7d4;
    border-radius: 18px;
    padding: 28px 24px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(40, 85, 29, 0.05);
}

    .client-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: linear-gradient( 90deg, var(--green), var(--blue) );
        transition: width 0.35s ease;
    }

.client-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4df;
    color: var(--blue);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.client-card h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.client-card span {
    margin-top: 7px;
    color: #89917f;
    font-size: 13px;
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: rgba(70, 84, 189, 0.35);
    box-shadow: 0 18px 35px rgba(40, 85, 29, 0.14);
}

    .client-card:hover::before {
        width: 100%;
    }

    .client-card:hover .client-icon {
        background: var(--blue);
        color: #ffffff;
        transform: scale(1.08);
    }


/* =========================================================
   MODERN CLIENTS
========================================================= */

.clients-modern {
    width: 100%;
    background: #f5f7ef;
    padding: 105px 0 115px;
    position: relative;
}

.clients-wrapper {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

.clients-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 58px;
}

    .clients-title span {
        display: inline-block;
        color: var(--blue);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .clients-title h2 {
        margin: 0;
        color: var(--green-dark);
        font-size: 48px;
        font-weight: 800;
        line-height: 1.15;
    }

        .clients-title h2 strong {
            color: var(--blue);
            font-weight: 800;
        }

    .clients-title p {
        margin-top: 18px;
        color: #68705f;
        font-size: 17px;
        line-height: 1.7;
    }


/* =========================================================
   CLIENT SHOWCASE
========================================================= */

.clients-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.client-box {
    background: #ffffff;
    border: 1px solid #dfe6d4;
    border-radius: 16px;
    min-height: 145px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(40, 85, 29, 0.04);
}

    .client-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 0;
        background: linear-gradient( 180deg, var(--green), var(--blue) );
        transition: height 0.35s ease;
    }

.client-logo {
    min-width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4df;
    color: var(--blue);
    font-size: 23px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.client-box h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.client-box p {
    margin: 6px 0 0;
    color: #929a88;
    font-size: 13px;
}

.client-box:hover {
    transform: translateY(-7px);
    border-color: rgba(70, 84, 189, 0.35);
    box-shadow: 0 18px 35px rgba(30, 50, 80, 0.12);
}

    .client-box:hover::before {
        height: 100%;
    }

    .client-box:hover .client-logo {
        background: #89f09c;
        color: white;
        transform: scale(1.05);
    }


/* =========================================================
   CTA
========================================================= */

.cta-section {
    width: 100%;
    background: linear-gradient( 90deg, #35b524, #4654bd );
    padding: 65px 0;
}

.cta-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

    .cta-container .light-label {
        color: #020203 !important;
    }

    .cta-container h2 {
        color: #ffffff;
        font-size: clamp(30px, 4vw, 45px);
        line-height: 1.15;
        max-width: 700px;
        font-weight: 800;
    }

.cta-button {
    background: var(--green-dark);
    color: white;
    padding: 17px 28px;
    border-radius: 7px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

    .cta-button:hover {
        background: white;
        color: var(--green-dark);
    }

    .cta-button span {
        margin-left: 12px;
    }


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    width: 100%;
    padding: 115px 0;
    background: var(--cream);
    position: relative;
    display: block;
    clear: both;
    overflow: visible;
    z-index: 1;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.1;
    color: var(--green-dark);
    margin-bottom: 18px;
    font-weight: 800;
}

    .contact-info h2 span {
        color: var(--blue);
        font-weight: 800;
    }

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 17px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    background: var(--green-dark);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item strong {
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
}

.contact-item p {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 13px;
}

.contact-item a {
    color: var(--blue);
    font-weight: 600;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    background: white;
    padding: 38px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.form-header span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.form-header h3 {
    color: var(--green-dark);
    font-size: 28px;
    line-height: 1.2;
    margin: 8px 0 28px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        color: var(--green-dark);
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        border: 1px solid var(--border);
        background: var(--cream);
        border-radius: 6px;
        padding: 13px 15px;
        font-family: inherit;
        font-size: 13px;
        outline: none;
        transition: 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(70, 84, 189, 0.08);
        }

    .form-group textarea {
        resize: vertical;
    }

.submit-btn {
    border: none;
    background: var(--green-dark);
    color: white;
    padding: 15px 25px;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        background: var(--blue);
        transform: translateY(-2px);
    }

    .submit-btn span {
        margin-left: 10px;
    }


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100% !important;
    max-width: 100% !important;
     background:
        radial-gradient(
            ellipse 420px 300px at 20% 25%,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.62) 18%,
            rgba(235, 245, 255, 0.38) 38%,
            rgba(170, 215, 245, 0.16) 58%,
            transparent 78%
        ),
        linear-gradient(
            120deg,
            #071522 0%,
            #0a2030 50%,
            #102f45 100%
        );
    color: white;
    padding-top: 70px;
    padding-bottom: 0;
    position: relative !important;
    display: block !important;
    clear: both;
    float: none !important;
    z-index: 10;
    margin: 0 !important;
    /* IMPORTANT */
    height: auto !important;
    min-height: 0 !important;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px 55px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 65px;
    height: auto !important;
    min-height: 0 !important;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 330px;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links h3,
.footer-contact h3 {
    color: var(--green);
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    height: auto !important;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.65);
        font-size: 13px;
        line-height: 1.6;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: var(--blue);
            padding-left: 5px;
        }


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    min-width: 0;
}

    .footer-contact p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 13px;
        line-height: 1.7;
        margin-top: 0;
        margin-bottom: 10px;
    }


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo-image {
    width: 230px;
    height: 90px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    height: auto !important;
    min-height: 0 !important;
}


/* =========================================================
   CONTACT → FOOTER SEPARATION FIX
========================================================= */

.contact-section {
    position: relative;
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    clear: both;
}


/* Contact content should never go behind footer */

.contact-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   REMOVE FLOAT PROBLEMS
========================================================= */

.contact-section::after {
    content: "";
    display: table;
    clear: both;
}


/* =========================================================
   IMPORTANT: MAIN CONTENT
========================================================= */

main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}


/* =========================================================
   RESPONSIVE - 750px
========================================================= */

@media (max-width: 750px) {

    .footer {
        width: 100% !important;
        padding-top: 55px;
    }

    .footer-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 45px;
    }

    .footer-bottom {
        width: 100%;
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-image {
        width: 200px;
        height: 80px;
    }
}


/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

    .nav-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =========================================================
   RESPONSIVE - 1000px
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-button {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 115px;
    }

    .hero-stats {
        margin-top: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-7 {
        width: min(50%, 370px);
        margin-top: 28px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expertise-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 500px);
        justify-self: center;
    }

    .clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-section .section-container,
    .area-section .section-container,
    .why-section .section-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .clients-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-image {
        padding-right: 20px;
    }

    .area-section .section-container {
        gap: 45px;
    }

    .why-section .section-container {
        gap: 45px;
    }
}


/* =========================================================
   RESPONSIVE - 750px
========================================================= */

@media (max-width: 750px) {

    .navbar {
        position: relative;
        min-height: auto;
    }

    .nav-container {
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-container {
        padding: 85px 20px 55px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-tag {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-stats {
        width: 100%;
        margin-top: 15px;
    }

    .hero-stat {
        padding: 0 20px;
    }

    .section-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-section,
    .services-section,
    .expertise-section,
    .clients-section,
    .contact-section {
        padding: 80px 0;
    }

    .about-image img {
        height: 420px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .service-card-7 {
        width: calc(100% - 40px);
        max-width: none;
        margin: 25px 20px 0;
    }

    .expertise-card:last-child {
        grid-column: 1;
        width: 100%;
    }

    .area-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clients-showcase {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .clients-modern {
        padding: 75px 0;
    }

    .clients-title h2 {
        font-size: 36px;
    }

    .logo-image {
        width: 125px;
        height: 48px;
    }

    .section-heading {
        margin-bottom: 38px;
    }
}


/* =========================================================
   RESPONSIVE - 500px
========================================================= */

@media (max-width: 500px) {

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .clients-heading h2 {
        font-size: 30px;
    }

    .clients-heading p {
        font-size: 15px;
    }

    .clients-title h2 {
        font-size: 30px;
    }

    .client-box {
        padding: 22px;
    }

    .service-image,
    .service-image7 {
        height: 210px;
    }

    .expertise-card {
        padding: 22px;
    }

    .expertise-icon {
        width: 55px;
        height: 55px;
    }

    .hero-stat strong {
        font-size: 32px;
    }
}


/* =========================================================
   RESPONSIVE - 450px
========================================================= */

@media (max-width: 450px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero-stat strong {
        font-size: 30px;
    }

    .hero-stats {
        min-width: 0;
    }

    .hero-stat {
        padding: 0 15px;
    }

        .hero-stat:first-child {
            padding-left: 0;
        }

    .service-card-7 {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .client-box {
        gap: 15px;
    }

    .client-logo {
        min-width: 52px;
        width: 52px;
        height: 52px;
    }

    .footer-logo-image {
        width: 190px;
        height: 75px;
    }
}


/* =========================================================
   EXTRA PREMIUM EFFECTS
========================================================= */

.service-card,
.service-card-7,
.expertise-card,
.client-card,
.client-box,
.contact-form-wrapper {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


/* =========================================================
   SELECTION
========================================================= */

::selection {
    background: var(--blue);
    color: white;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eef2ee;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( var(--green), var(--blue) );
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--blue);
    }



/* =========================================================
FORM VALIDATION & ALERT MESSAGES
========================================================= */

.validation-error {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #dc3545;
}

.form-group .validation-error:empty {
    display: none;
}

.form-alert {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.success-message {
    background: #eaf8ef;
    color: #176b35;
    border: 1px solid #b9e4c7;
}

.error-message {
    background: #fff0f0;
    color: #b42318;
    border: 1px solid #f1b5b5;
}


/* =========================================================
   CLIENT LOGOS
   Only logo styling - existing card design unchanged
========================================================= */
.client-logo {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4df;
    overflow: hidden;
    flex-shrink: 0;
}

.client-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

/* Keep logo visible on hover */
.client-box:hover .client-logo img {
    transform: scale(1.02);
}


