/* =========================================================
   PROTATECH INTELLIGENCE MANPOWER
   COMMON WEBSITE STYLESHEET
   Theme: Blue / Navy / White
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
    --primary: #0878d1;
    --primary-dark: #005aa8;
    --primary-light: #eaf5ff;

    --navy: #061a2d;
    --navy-2: #082944;
    --dark: #101820;

    --white: #ffffff;
    --black: #000000;

    --text: #333d49;
    --text-light: #697586;

    --border: #e2e8f0;
    --light-bg: #f6f9fc;

    --shadow-sm: 0 5px 20px rgba(6, 26, 45, 0.06);
    --shadow-md: 0 12px 35px rgba(6, 26, 45, 0.10);
    --shadow-lg: 0 20px 50px rgba(6, 26, 45, 0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --container: 1200px;

    --transition: all 0.3s ease;
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   03. COMMON CONTAINER
========================================================= */

.container-custom {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. TOP HEADER
========================================================= */

.top-header {
    background: var(--white);
    border-bottom: 1px solid #edf1f5;
    position: relative;
    z-index: 1001;
}

.top-header-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 22px;

    font-size: 12px;
    color: #596575;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--primary);
}

.top-contact i {
    color: var(--primary);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-social a {
    width: 27px;
    height: 27px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef6ff;
    color: var(--primary);

    font-size: 12px;

    transition: var(--transition);
}

.top-social a:hover {
    background: var(--primary);
    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   05. MAIN HEADER
========================================================= */

.main-header {
    background: var(--white);

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 18px rgba(6, 26, 45, 0.06);

    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 8px 30px rgba(6, 26, 45, 0.12);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.site-logo img {
    width: 75px;
    height: 75px;

    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 800;

    color: var(--navy);

    letter-spacing: 0.2px;
}

.logo-text span {
    margin-top: 3px;

    font-size: 9px;
    font-weight: 700;

    color: var(--primary);

    letter-spacing: 0.7px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.desktop-nav > a {
    position: relative;

    padding: 11px 13px;

    font-size: 13px;
    font-weight: 600;

    color: #263444;

    border-radius: 7px;

    transition: var(--transition);
}

.desktop-nav > a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.desktop-nav > a.active {
    color: var(--primary);
}

.desktop-nav > a.active::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 3px;

    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


/* =========================================================
   NAV CTA
========================================================= */

.desktop-nav .nav-cta {
    margin-left: 8px;

    padding: 11px 17px;

    color: var(--white) !important;

    background: var(--primary);

    border-radius: 7px;

    box-shadow: 0 5px 15px rgba(8, 120, 209, 0.25);
}

.desktop-nav .nav-cta:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.desktop-nav .nav-cta::after {
    display: none;
}

.nav-cta i {
    margin-left: 5px;
    font-size: 11px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    border-radius: 8px;

    font-size: 18px;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;

    background: var(--white);

    border-top: 1px solid var(--border);

    padding: 10px 5% 20px;
}

.mobile-nav a {
    display: block;

    padding: 13px 10px;

    border-bottom: 1px solid #edf1f5;

    font-size: 14px;
    font-weight: 600;

    color: var(--navy);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
}

.mobile-nav.open {
    display: block;
}


/* =========================================================
   06. HERO SECTION
========================================================= */

.hero-section {
    min-height: 610px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 32, 0.94) 0%,
            rgba(3, 24, 43, 0.82) 42%,
            rgba(3, 24, 43, 0.35) 100%
        ),
        url("../images/hero.jpg") center center / cover no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(8, 120, 209, 0.28),
            transparent 40%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;

    padding: 80px 0;
}

.hero-small-title {
    display: inline-block;

    margin-bottom: 16px;

    color: #73c4ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero-content h1 {
    margin-bottom: 18px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;

    color: #1b91ef;
}

.hero-content > p {
    margin-bottom: 8px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 23px;
    font-weight: 700;
}

.hero-description {
    max-width: 570px;

    margin-top: 10px;

    color: rgba(255, 255, 255, 0.76) !important;

    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   COMMON BUTTONS
========================================================= */

.btn {
    min-height: 48px;

    padding: 13px 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    color: var(--white);

    background: var(--primary);

    box-shadow: 0 8px 22px rgba(8, 120, 209, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(8, 120, 209, 0.32);
}

.btn-outline {
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.65);

    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    color: var(--navy);

    background: var(--white);

    transform: translateY(-2px);
}

.btn-outline-blue {
    color: var(--primary);

    border: 1px solid var(--primary);

    background: var(--white);
}

.btn-outline-blue:hover {
    color: var(--white);

    background: var(--primary);

    transform: translateY(-2px);
}


/* =========================================================
   HERO WAVE
========================================================= */

.hero-bottom-wave {
    position: absolute;

    left: -5%;
    bottom: -45px;

    width: 110%;
    height: 90px;

    background: var(--white);

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    z-index: 3;
}


/* =========================================================
   07. TRUST SECTION
========================================================= */

.trust-section {
    position: relative;

    margin-top: -1px;

    background: var(--white);

    z-index: 5;
}

.trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--white);

    box-shadow: var(--shadow-md);

    overflow: hidden;
}

.trust-item {
    min-height: 100px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);
    background: var(--primary);

    font-size: 17px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.trust-item span {
    color: var(--text-light);

    font-size: 12px;
}


/* =========================================================
   08. SECTION COMMON
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 13px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;

    line-height: 1.2;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   09. ABOUT INTRO
========================================================= */

.about-intro {
    background: var(--white);
}

.two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 75px;
}

.about-image-wrapper {
    position: relative;

    padding: 20px 20px 20px 0;
}

.image-decoration {
    position: absolute;

    left: 0;
    top: 0;

    width: 88%;
    height: 92%;

    border: 2px solid var(--primary);

    border-radius: 20px;

    z-index: 0;
}

.about-main-image {
    position: relative;
    z-index: 1;

    width: 92%;

    margin-left: 25px;

    border-radius: 18px;

    box-shadow: var(--shadow-lg);
}

.experience-card {
    position: absolute;

    right: 0;
    bottom: 5px;

    z-index: 3;

    min-width: 145px;

    padding: 17px 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--white);

    background: var(--primary);

    border-radius: 10px;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    font-family: "Manrope", sans-serif;

    font-size: 28px;
    font-weight: 800;

    line-height: 1;
}

.experience-card span {
    font-size: 10px;

    line-height: 1.4;
}

.about-content .section-tag {
    margin-bottom: 10px;
}

.about-content h2 {
    margin-bottom: 20px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;

    line-height: 1.2;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    margin-bottom: 14px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT HIGHLIGHTS
========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px 20px;

    margin: 25px 0 30px;
}

.about-highlights div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 600;
}

.about-highlights i {
    color: var(--primary);

    font-size: 15px;
}


/* =========================================================
   10. WHY SECTION
========================================================= */

.why-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #082f4f
        );

    position: relative;

    overflow: hidden;
}

.why-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -200px;
    top: -220px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.why-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    padding: 30px 23px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.10);

    transform: translateY(-7px);

    border-color: rgba(8, 120, 209, 0.7);
}

.why-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary);

    color: var(--white);

    font-size: 20px;
}

.why-card h3 {
    margin-bottom: 8px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 700;
}

.why-card p {
    color: rgba(255, 255, 255, 0.64);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   11. SERVICES
========================================================= */

.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 30px 23px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--primary);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(8, 120, 209, 0.25);

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 12px;

    font-size: 20px;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--white);

    background: var(--primary);

    transform: rotate(-5deg);
}

.service-card h3 {
    margin-bottom: 9px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 16px;
    font-weight: 700;
}

.service-card p {
    min-height: 68px;

    margin-bottom: 15px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}

.service-link i {
    font-size: 9px;

    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}


/* =========================================================
   CENTER BUTTON
========================================================= */

.center-button {
    margin-top: 40px;

    text-align: center;
}


/* =========================================================
   12. STATS
========================================================= */

.stats-section {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #061a2d,
            #07385f
        );
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.stat-box {
    padding: 28px 15px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    display: block;

    margin-bottom: 12px;

    color: #53b5ff;

    font-size: 21px;
}

.stat-box strong {
    display: block;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;

    line-height: 1.1;
}

.stat-box span {
    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
}


/* =========================================================
   13. SECTORS
========================================================= */

.sectors-section {
    background: var(--white);
}

.sectors-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.sector-card {
    position: relative;

    height: 220px;

    overflow: hidden;

    border-radius: 13px;

    box-shadow: var(--shadow-sm);
}

.sector-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.sector-card:hover img {
    transform: scale(1.08);
}

.sector-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 18, 32, 0.92),
            rgba(2, 18, 32, 0.05) 70%
        );
}

.sector-overlay {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 17px;

    z-index: 2;
}

.sector-overlay i {
    margin-bottom: 5px;

    color: #5bbcff;

    font-size: 16px;
}

.sector-overlay h3 {
    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   14. PROCESS
========================================================= */

.process-section {
    padding: 100px 0;

    background: var(--navy);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-item {
    position: relative;

    padding: 30px 24px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.035);

    transition: var(--transition);
}

.process-item:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(8, 120, 209, 0.7);
}

.process-number {
    position: absolute;

    top: 12px;
    right: 15px;

    color: rgba(255, 255, 255, 0.10);

    font-family: "Manrope", sans-serif;

    font-size: 35px;
    font-weight: 800;
}

.process-item > i {
    width: 55px;
    height: 55px;

    margin: 5px auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--primary);

    border-radius: 50%;

    font-size: 18px;
}

.process-item h3 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 16px;
    font-weight: 700;
}

.process-item p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
}


/* =========================================================
   15. CTA
========================================================= */

.cta-section {
    padding: 80px 0;

    background: var(--white);
}

.cta-box {
    position: relative;

    padding: 50px 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background:
        linear-gradient(
            110deg,
            #eaf5ff,
            #f7fbff
        );

    border: 1px solid #dbeeff;

    border-radius: 20px;

    overflow: hidden;
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -150px;

    border: 35px solid rgba(8, 120, 209, 0.05);

    border-radius: 50%;
}

.cta-box > div {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    margin-bottom: 8px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;

    line-height: 1.2;
}

.cta-box h2 span {
    color: var(--primary);
}

.cta-box p {
    color: var(--text-light);

    font-size: 13px;
}

.cta-box .btn {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    padding-top: 65px;

    color: rgba(255, 255, 255, 0.72);

    background:
        linear-gradient(
            135deg,
            #04121f,
            #061e34
        );
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 1.2fr 1.3fr;

    gap: 50px;

    padding-bottom: 50px;
}


/* =========================================================
   FOOTER COMPANY
========================================================= */

.footer-logo img {
    width: 185px;
    max-height: 65px;

    object-fit: contain;
    object-position: left center;

    margin-bottom: 20px;

    /* filter: brightness(0) invert(1); */
}

.footer-company p {
    max-width: 300px;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.8);

    font-size: 13px;

    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--white);

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    position: relative;

    margin-bottom: 22px;

    padding-bottom: 9px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    background: var(--primary);
}

.footer-column > a {
    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 11px;

    transition: var(--transition);
}

.footer-column > a:hover {
    color: #55b9ff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact > a {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    width: 100%;
}

.footer-contact > a i {
    width: 15px;

    margin-top: 3px;

    color: #55b9ff;
}

.footer-address {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 11px;

    line-height: 1.7;
}

.footer-address i {
    margin-top: 4px;

    color: #55b9ff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 58px;

    padding: 17px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}


/* =========================================================
   17. FLOATING CONTACT
========================================================= */

.floating-contact {
    position: fixed;

    right: 20px;
    bottom: 22px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.floating-contact a {
    width: 49px;
    height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 21px;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);

    transition: var(--transition);
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background: #16c76a;
}

.float-call {
    background: var(--primary);
}


/* =========================================================
   18. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 145px;

    z-index: 9998;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--navy);

    border-radius: 8px;

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}


/* =========================================================
   19. ANIMATIONS
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   20. SELECTION
========================================================= */

::selection {
    color: var(--white);
    background: var(--primary);
}


/* =========================================================
   21. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #edf2f7;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* =========================================================
   22. RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 0;
    }

    .desktop-nav > a {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 12px;
    }

    .two-column {
        gap: 45px;
    }

    .footer-grid {
        gap: 30px;
    }

}


/* =========================================================
   23. RESPONSIVE — 1024px
========================================================= */

@media (max-width: 1024px) {

    .top-contact {
        gap: 12px;
    }

    .top-contact a {
        font-size: 10px;
    }

    .logo-text strong {
        font-size: 12px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .site-logo img {
        width: 48px;
        height: 48px;
    }

    .desktop-nav > a {
        padding: 9px 7px;

        font-size: 11px;
    }

    .desktop-nav .nav-cta {
        padding: 10px 12px;
    }

    .hero-section {
        min-height: 570px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .two-column {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-box:nth-child(3) {
        border-right: none;
    }

    .stat-box:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   24. RESPONSIVE — 768px
========================================================= */

@media (max-width: 768px) {

    .top-header {
        display: none;
    }

    .header-inner {
        min-height: 70px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-section {
        min-height: 600px;

        background-position: 65% center;
    }

    .hero-content {
        padding: 65px 0;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 19px;
    }

    .hero-description {
        font-size: 13px !important;
    }

    .section-padding {
        padding: 75px 0;
    }

    .two-column {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 620px;

        margin: 0 auto;
    }

    .about-content {
        text-align: left;
    }

    .why-section {
        padding: 75px 0;
    }

    .cta-box {
        padding: 40px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        gap: 40px;
    }

}


/* =========================================================
   25. RESPONSIVE — 600px
========================================================= */

@media (max-width: 600px) {

    .container-custom {
        width: 90%;
    }

    .site-logo {
        gap: 7px;
    }

    .site-logo img {
        width: 45px;
        height: 45px;
    }

    .logo-text strong {
        font-size: 10px;
    }

    .logo-text span {
        font-size: 7px;
        letter-spacing: 0.3px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .hero-section {
        min-height: 600px;

        background-position: 63% center;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero-content h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 240px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 85px;

        justify-content: flex-start;

        padding-left: 25px;

        border-right: 0 !important;

        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-box:nth-child(even) {
        border-right: none;
    }

    .stat-box:last-child {
        grid-column: span 2;

        border-right: none;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        height: 210px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-company p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;
    }

    .floating-contact {
        right: 14px;
        bottom: 15px;
    }

    .floating-contact a {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .back-to-top {
        right: 15px;
        bottom: 125px;
    }

}


/* =========================================================
   26. RESPONSIVE — 400px
========================================================= */

@media (max-width: 400px) {

    .logo-text strong {
        font-size: 9px;
    }

    .logo-text span {
        font-size: 6px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-small-title {
        font-size: 10px;

        letter-spacing: 1.3px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .experience-card {
        right: -5px;

        min-width: 125px;

        padding: 13px;
    }

    .experience-card strong {
        font-size: 23px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box,
    .stat-box:nth-child(even) {
        grid-column: auto;

        border-right: none;
    }

    .stat-box:last-child {
        grid-column: auto;
    }

}

/* =========================================================
   27. INNER PAGE HERO
   Shared by About / Services / Team / Sectors / Clients / Contact
========================================================= */
.inner-page-hero{position:relative;min-height:390px;display:flex;align-items:center;overflow:hidden;background:radial-gradient(circle at 82% 35%,rgba(8,120,209,.28),transparent 30%),linear-gradient(115deg,#061a2d 0%,#082944 55%,#0b395b 100%)}
.inner-page-hero::before{content:"";position:absolute;width:500px;height:500px;right:-220px;top:-250px;border:1px solid rgba(85,181,255,.18);border-radius:50%}
.inner-page-hero::after{content:"";position:absolute;width:300px;height:300px;right:80px;bottom:-230px;border:1px solid rgba(85,181,255,.12);border-radius:50%}
.inner-page-content{position:relative;z-index:2;max-width:780px;padding:80px 0}
.inner-page-content h1{color:var(--white);font-family:"Manrope",sans-serif;font-size:clamp(42px,6vw,68px);font-weight:800;line-height:1.08;letter-spacing:-1.5px}
.inner-page-content h1 span{color:#55b9ff}
.inner-page-content p{max-width:680px;margin-top:18px;color:rgba(255,255,255,.72);font-size:16px;line-height:1.8}
.breadcrumb{display:flex;align-items:center;gap:10px;margin-top:22px;color:rgba(255,255,255,.48);font-size:12px}
.breadcrumb a{color:#55b9ff}.breadcrumb i{font-size:8px}

/* =========================================================
   28. PAGE CONTENT / TYPOGRAPHY
========================================================= */
.page-content p{color:var(--text-light);font-size:14px;line-height:1.85;margin-bottom:14px}
.section-heading.left{text-align:left;margin-left:0}
.section-heading.left p{margin-left:0}
.text-blue{color:var(--primary)}

/* =========================================================
   29. ABOUT PAGE
========================================================= */
.about-page-intro{background:var(--white)}
.about-page-image{position:relative}
.about-page-image img{width:100%;border-radius:18px;box-shadow:var(--shadow-lg)}
.about-badge{position:absolute;right:-20px;bottom:25px;padding:20px 24px;background:var(--primary);color:var(--white);border-radius:12px;box-shadow:var(--shadow-md)}
.about-badge strong{display:block;font:800 30px/1 "Manrope",sans-serif}.about-badge span{font-size:10px}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.value-card{padding:30px 25px;background:var(--white);border:1px solid var(--border);border-radius:14px;transition:var(--transition)}
.value-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:rgba(8,120,209,.3)}
.value-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;background:var(--primary-light);color:var(--primary);border-radius:11px;font-size:19px;margin-bottom:18px}
.value-card h3{font:700 17px "Manrope",sans-serif;color:var(--navy);margin-bottom:8px}.value-card p{font-size:12px;color:var(--text-light);line-height:1.75}
.mission-vision{background:var(--light-bg)}
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}.mv-card{padding:38px;background:var(--white);border:1px solid var(--border);border-radius:16px}.mv-card.dark{background:var(--navy);border-color:var(--navy)}
.mv-card h3{font:800 24px "Manrope",sans-serif;color:var(--navy);margin-bottom:10px}.mv-card.dark h3{color:var(--white)}.mv-card p{font-size:13px;color:var(--text-light)}.mv-card.dark p{color:rgba(255,255,255,.65)}

/* =========================================================
   30. SERVICES PAGE
========================================================= */
.service-detail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.service-detail-card{position:relative;padding:34px 28px;background:var(--white);border:1px solid var(--border);border-radius:15px;overflow:hidden;transition:var(--transition)}
.service-detail-card::before{content:"";position:absolute;left:0;top:0;width:100%;height:3px;background:var(--primary);transform:scaleX(0);transform-origin:left;transition:var(--transition)}
.service-detail-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-md)}.service-detail-card:hover::before{transform:scaleX(1)}
.service-detail-card .service-icon{margin-bottom:20px}.service-detail-card h3{font:700 18px "Manrope",sans-serif;color:var(--navy);margin-bottom:9px}.service-detail-card p{font-size:13px;color:var(--text-light);line-height:1.75}
.service-feature-section{background:var(--light-bg)}.feature-list{display:grid;gap:14px}.feature-list li{display:flex;align-items:flex-start;gap:12px;font-size:13px;color:var(--text);line-height:1.6}.feature-list i{color:var(--primary);margin-top:5px}

/* =========================================================
   31. TEAM PAGE
========================================================= */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:15px;overflow:hidden;transition:var(--transition)}
.team-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-md)}
.team-image{position:relative;height:285px;overflow:hidden;background:var(--light-bg)}.team-image img{width:100%;height:100%;object-fit:cover;transition:.5s}.team-card:hover .team-image img{transform:scale(1.05)}
.team-social{position:absolute;left:0;right:0;bottom:0;padding:13px;display:flex;justify-content:center;gap:7px;background:linear-gradient(transparent,rgba(0,0,0,.75));transform:translateY(100%);transition:.35s}.team-card:hover .team-social{transform:translateY(0)}
.team-social a{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--white);color:var(--primary);font-size:12px}.team-info{text-align:center;padding:20px}.team-info h3{font:700 17px "Manrope",sans-serif;color:var(--navy)}.team-info p{font-size:11px;color:var(--primary);font-weight:700;margin-top:3px}
.team-intro{max-width:800px;margin:0 auto 45px;text-align:center}.team-intro p{color:var(--text-light);font-size:14px}

/* =========================================================
   32. SECTORS PAGE
========================================================= */
.sector-detail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.sector-detail-card{position:relative;min-height:280px;border-radius:15px;overflow:hidden;box-shadow:var(--shadow-sm)}
.sector-detail-card img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;transition:.6s}.sector-detail-card:hover img{transform:scale(1.07)}
.sector-detail-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(3,18,32,.94),rgba(3,18,32,.08) 75%)}
.sector-detail-content{position:absolute;z-index:2;left:24px;right:24px;bottom:22px}.sector-detail-content i{color:#55b9ff;font-size:18px;margin-bottom:9px}.sector-detail-content h3{font:700 19px "Manrope",sans-serif;color:var(--white);margin-bottom:5px}.sector-detail-content p{font-size:11px;color:rgba(255,255,255,.65)}

/* =========================================================
   33. CLIENTS PAGE
========================================================= */
.client-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border)}
.client-stat{min-height:150px;padding:28px;text-align:center;background:var(--white)}.client-stat-icon{width:48px;height:48px;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--primary-light);color:var(--primary)}.client-stat strong{display:block;font:800 22px "Manrope",sans-serif;color:var(--navy)}.client-stat span{font-size:11px;color:var(--text-light)}
.client-logo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.client-logo-card{height:135px;display:flex;align-items:center;justify-content:center;padding:22px;background:var(--white);border:1px solid var(--border);border-radius:13px;transition:var(--transition)}.client-logo-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);border-color:rgba(8,120,209,.3)}.client-logo-card img{max-width:145px;max-height:65px;object-fit:contain;opacity:.72;transition:.3s}.client-logo-card:hover img{opacity:1}
.client-industry-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.client-industry-card{padding:30px;background:var(--white);border:1px solid var(--border);border-radius:14px;transition:var(--transition)}.client-industry-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}.client-industry-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;background:var(--primary-light);color:var(--primary);border-radius:10px;margin-bottom:18px}.client-industry-card h3{font:700 17px "Manrope",sans-serif;color:var(--navy);margin-bottom:7px}.client-industry-card p{font-size:12px;color:var(--text-light)}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.testimonial-section{background:var(--navy)}.testimonial-card{padding:30px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.1);border-radius:14px}.testimonial-card p{color:rgba(255,255,255,.68);font-size:13px;line-height:1.8}.quote-icon{color:#55b9ff;font-size:25px;margin-bottom:15px}.testimonial-author{display:flex;gap:10px;align-items:center;margin-top:22px;padding-top:17px;border-top:1px solid rgba(255,255,255,.1)}.author-avatar{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(8,120,209,.2);color:#55b9ff}.testimonial-author strong{font-size:12px;color:var(--white)}.testimonial-author span{display:block;font-size:10px;color:rgba(255,255,255,.4)}

/* =========================================================
   34. CONTACT PAGE
========================================================= */
.contact-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.contact-info-card{display:flex;align-items:center;gap:15px;padding:24px;background:var(--white);border:1px solid var(--border);border-radius:14px;transition:var(--transition)}.contact-info-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}.contact-info-icon{width:50px;height:50px;flex-shrink:0;display:flex;align-items:center;justify-content:center;background:var(--primary-light);color:var(--primary);border-radius:10px}.contact-info-card span{display:block;color:var(--primary);font-size:9px;font-weight:800;letter-spacing:1px}.contact-info-card h3{font:700 14px "Manrope",sans-serif;color:var(--navy);margin-top:3px}.contact-info-card p{font-size:10px;color:var(--text-light)}
.contact-main-section{background:var(--light-bg)}.contact-main-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:55px;align-items:start}.contact-form-wrapper{padding:38px;background:var(--white);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow-sm)}.form-heading h2,.contact-details-heading h2{font:800 31px "Manrope",sans-serif;color:var(--navy)}.form-heading h2 span,.contact-details-heading h2 span{color:var(--primary)}.form-heading p,.contact-details-heading p{font-size:13px;color:var(--text-light);margin-top:8px}.contact-form{display:flex;flex-direction:column;gap:18px;margin-top:25px}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}.form-group label{display:block;font-size:11px;font-weight:700;color:var(--navy);margin-bottom:7px}.input-wrap,.textarea-wrap{position:relative}.input-wrap i,.textarea-wrap i{position:absolute;left:14px;top:15px;color:var(--primary);font-size:12px}.input-wrap input,.input-wrap select,.textarea-wrap textarea{width:100%;padding:12px 13px 12px 38px;border:1px solid var(--border);border-radius:7px;outline:0;background:var(--white);font-size:12px;color:var(--text);transition:.25s}.textarea-wrap textarea{min-height:135px;resize:vertical}.input-wrap input:focus,.input-wrap select:focus,.textarea-wrap textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(8,120,209,.08)}
.contact-detail-item{display:flex;gap:15px;padding:18px 0;border-bottom:1px solid var(--border)}.detail-icon{width:44px;height:44px;flex-shrink:0;display:flex;align-items:center;justify-content:center;background:var(--navy);color:#55b9ff;border-radius:9px}.contact-detail-item span{display:block;color:var(--primary);font-size:9px;font-weight:800;letter-spacing:1px}.contact-detail-item h3{font:700 14px "Manrope",sans-serif;color:var(--navy);margin:3px 0}.contact-detail-item p,.contact-detail-item a{font-size:12px;color:var(--text-light);line-height:1.7}.contact-detail-item a:hover{color:var(--primary)}
.whatsapp-contact-card{margin-top:20px;display:flex;align-items:center;gap:12px;padding:17px;border:1px solid #c8f3d7;background:#e9fff1;border-radius:11px;color:#168b45}.whatsapp-icon{width:43px;height:43px;display:flex;align-items:center;justify-content:center;background:#16c76a;color:white;border-radius:50%;font-size:21px}.whatsapp-contact-card h3{font:700 14px "Manrope",sans-serif;color:#116c38}.whatsapp-contact-card span{display:block;font-size:9px;font-weight:800;letter-spacing:1px}.whatsapp-contact-card>i{margin-left:auto}
.map-section{padding:0 0 90px;background:var(--light-bg)}.map-wrapper{position:relative;overflow:hidden;border-radius:16px;box-shadow:var(--shadow-md)}.map-wrapper iframe{display:block;width:100%;min-height:420px;border:0}.map-overlay-card{position:absolute;left:20px;bottom:20px;display:flex;gap:12px;align-items:center;padding:16px 19px;background:rgba(255,255,255,.96);border-radius:10px;box-shadow:var(--shadow-md)}.map-pin{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:var(--primary-light);color:var(--primary);border-radius:50%}.map-overlay-card span{display:block;font-size:8px;color:var(--primary);font-weight:800;letter-spacing:1px}.map-overlay-card h3{font:700 13px "Manrope",sans-serif;color:var(--navy)}.map-overlay-card p{font-size:10px;color:var(--text-light)}

/* =========================================================
   35. FAQ / PROCESS
========================================================= */
.faq-list{max-width:900px;margin:auto;border-top:1px solid var(--border)}.faq-item{border-bottom:1px solid var(--border)}.faq-question{width:100%;padding:20px 4px;display:flex;align-items:center;justify-content:space-between;background:none;text-align:left;font:700 14px "Manrope",sans-serif;color:var(--navy)}.faq-question i{color:var(--primary);transition:.3s}.faq-item.active .faq-question{color:var(--primary)}.faq-item.active .faq-question i{transform:rotate(45deg)}.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}.faq-answer p{padding:0 30px 20px 4px;color:var(--text-light);font-size:12px;line-height:1.8}
.client-process{display:flex;align-items:flex-start;justify-content:center}.client-process-item{flex:1;max-width:230px;text-align:center}.process-number{font-size:10px;font-weight:800;color:var(--primary);letter-spacing:1px;margin-bottom:8px}.process-icon{width:60px;height:60px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--navy);color:#55b9ff}.client-process-item h3{font:700 15px "Manrope",sans-serif;color:var(--navy);margin-bottom:6px}.client-process-item p{font-size:11px;color:var(--text-light)}.client-process-line{width:60px;height:1px;background:var(--border);margin-top:68px}

/* =========================================================
   36. EXTRA RESPONSIVE FOR INNER PAGES
========================================================= */
@media(max-width:1024px){.team-grid{grid-template-columns:repeat(2,1fr)}.service-detail-grid{grid-template-columns:repeat(2,1fr)}.sector-detail-grid{grid-template-columns:repeat(2,1fr)}.client-logo-grid{grid-template-columns:repeat(3,1fr)}.client-industry-grid{grid-template-columns:repeat(2,1fr)}.contact-main-grid{gap:30px}.contact-info-grid{grid-template-columns:1fr 1fr}.testimonial-grid{grid-template-columns:1fr 1fr}.values-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.inner-page-hero{min-height:320px}.inner-page-content{padding:60px 0}.inner-page-content h1{font-size:43px}.inner-page-content p{font-size:14px}.mv-grid,.contact-main-grid{grid-template-columns:1fr}.service-detail-grid,.sector-detail-grid,.client-industry-grid,.testimonial-grid{grid-template-columns:1fr}.client-logo-grid{grid-template-columns:repeat(2,1fr)}.contact-info-grid{grid-template-columns:1fr}.client-stats-grid{grid-template-columns:repeat(2,1fr)}.client-process{flex-direction:column;align-items:center;gap:20px}.client-process-line{width:1px;height:30px;margin:0}.team-grid{grid-template-columns:1fr 1fr}.team-image{height:260px}.form-row{grid-template-columns:1fr}.cta-box{padding:35px 28px}.about-badge{right:0}}
@media(max-width:550px){.inner-page-content h1{font-size:36px}.inner-page-content p{font-size:13px}.values-grid,.team-grid,.client-logo-grid,.client-stats-grid{grid-template-columns:1fr}.client-logo-card{height:120px}.contact-form-wrapper{padding:27px 20px}.form-heading h2,.contact-details-heading h2{font-size:27px}.map-overlay-card{left:10px;right:10px;bottom:10px}.client-stat{min-height:130px}.about-badge{position:relative;right:auto;bottom:auto;display:inline-block;margin:-30px 0 0 20px}.mv-card{padding:28px 22px}}


/* =========================================================
   ABOUT PAGE FIX — APPROACH + MISSION / VISION
   Fixes missing styles caused by class-name mismatch.
========================================================= */

.about-approach-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(8, 120, 209, 0.18), transparent 32%),
        linear-gradient(135deg, var(--navy), #082f4f);
    position: relative;
    overflow: hidden;
}

.about-approach-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    bottom: -250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.about-approach-section .container-custom {
    position: relative;
    z-index: 2;
}

.about-approach-section .section-heading {
    margin-bottom: 50px;
}

.about-approach-section .section-heading h2 {
    color: var(--white);
}

.about-approach-section .section-heading h2 span {
    color: #55b9ff;
}

.about-approach-section .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.about-approach-section .section-tag {
    color: #55b9ff;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.approach-card {
    position: relative;
    min-height: 250px;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.approach-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(8, 120, 209, 0.65);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.approach-card:hover::after {
    transform: scaleX(1);
}

.approach-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 19px;
}

.approach-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(255, 255, 255, 0.14);
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.approach-card h3 {
    margin-bottom: 9px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.75;
}

.mission-section {
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.mission-card {
    position: relative;
    padding: 38px 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 120, 209, 0.25);
}

.mission-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mission-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 11px;
    font-size: 17px;
}

.mission-card-top > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.mission-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
}

.mission-card p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}

.mission-card ul {
    display: grid;
    gap: 9px;
}

.mission-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.mission-card li i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
    font-size: 11px;
}

.vision-card::before {
    background: #55b9ff;
}

/* About page: Tailwind CDN preflight can affect headings/lists.
   These scoped rules keep the custom design consistent. */
.about-approach-section h2,
.about-approach-section h3,
.mission-section h3 {
    margin-top: 0;
}

.mission-section ul,
.mission-section ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================================================
   ABOUT PAGE FIX — RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-approach-section,
    .mission-section {
        padding: 75px 0;
    }

    .approach-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: auto;
    }

    .mission-card {
        padding: 30px 25px;
    }
}

@media (max-width: 550px) {
    .about-approach-section,
    .mission-section {
        padding: 60px 0;
    }

    .about-approach-section .section-heading {
        margin-bottom: 35px;
    }

    .approach-card {
        padding: 25px 20px;
    }

    .mission-card h3 {
        font-size: 20px;
    }
}
