/* =========================================================
   ALBERMAT SECURITY & CLEANING SERVICES
   COMPLETE RESPONSIVE STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --navy: #071a33;
    --navy-light: #0d2b4f;
    --navy-dark: #04101f;

    --blue: #164a85;
    --blue-light: #2468ad;

    --green: #238b57;
    --green-light: #35ad70;
    --green-dark: #176b42;

    --gold: #e3ae22;
    --gold-light: #f3c74d;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-grey: #eef2f6;
    --grey: #687586;
    --dark-grey: #263445;
    --black: #101820;

    --shadow-sm: 0 5px 20px rgba(7, 26, 51, 0.08);
    --shadow-md: 0 15px 40px rgba(7, 26, 51, 0.12);
    --shadow-lg: 0 25px 70px rgba(7, 26, 51, 0.18);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 25px;
    --radius-xl: 35px;

    --transition: all 0.35s ease;

    --container: 1200px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark-grey);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at center,
            rgba(35, 139, 87, 0.12),
            transparent 35%),
        var(--navy);

    color: var(--white);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-shield {
    width: 90px;
    height: 90px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    font-size: 38px;
    color: var(--green-light);

    animation: loaderPulse 1.5s infinite;
}

.preloader h2 {
    margin-top: 22px;

    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
}

.preloader p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.loader-line {
    width: 180px;
    height: 3px;

    margin-top: 22px;

    overflow: hidden;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
    display: block;
    width: 50%;
    height: 100%;

    background: var(--green-light);

    animation: loaderLine 1.4s infinite ease-in-out;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes loaderLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    padding: 18px 0;

    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;

    background: rgba(255, 255, 255, 0.97);

    box-shadow: var(--shadow-sm);

    backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    position: relative;
    z-index: 1002;
}
.preloader-image {
    width: 45%;
    height: 45%;
    border-radius: 50%;
    background: #ffffff;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 10px;
}
.logo-image {
    width: 48px;
    height: 48px;
  
    display: grid;
    place-items: center;

    border-radius: 100px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--green-light),
            var(--green)
        );

    box-shadow:
        0 8px 20px rgba(35, 139, 87, 0.25);

    font-size: 21px;

    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
/* =========================================================
   PRELOADER LOGO
========================================================= */

.preloader-image {
    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    padding: 15px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.25);

    animation: loaderPulse 1.5s infinite;
}

.preloader-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* =========================================================
   HEADER / FOOTER LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    position: relative;
    z-index: 1002;
}

.logo-image {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 8px 20px rgba(35, 139, 87, 0.25);

    transition: var(--transition);
}

.logo-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}

.logo:hover .logo-image {
    transform: rotate(-5deg) scale(1.05);
}


/* =========================================================
   ABOUT LOGO
========================================================= */

.about-logo {
    width: 180px;
    height: 180px;

    display: block;

    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 25px rgba(53, 173, 112, 0.2)
        );
}


/* =========================================================
   MOBILE LOGOS
========================================================= */

@media (max-width: 650px) {

    .preloader-image {
        width: 140px;
        height: 140px;

        padding: 12px;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }

    .about-logo {
        width: 140px;
        height: 140px;
    }

}
.logo-text strong {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo-text span {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.6px;
}


/* Header logo on hero */

.header:not(.scrolled) .logo-text strong,
.header:not(.scrolled) .logo-text span {
    color: var(--white);
}

.header.scrolled .logo-text strong {
    color: var(--navy);
}

.header.scrolled .logo-text span {
    color: var(--green);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;

    padding: 10px 14px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.header.scrolled .nav-link {
    color: var(--navy);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;

    height: 2px;

    transform: scaleX(0);
    transform-origin: center;

    background: var(--green-light);

    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--green) !important;
}

.nav-contact {
    margin-left: 8px;

    padding: 11px 19px;

    border-radius: 50px;

    color: var(--white) !important;
    background: var(--green);

    box-shadow: 0 8px 20px rgba(35, 139, 87, 0.22);
}

.nav-contact::after {
    display: none;
}

.nav-contact:hover {
    color: var(--white) !important;
    background: var(--green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 9px;

    border: 0;
    border-radius: 10px;

    background: transparent;

    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    border-radius: 10px;

    background: currentColor;

    transition: var(--transition);
}

.header:not(.scrolled) .menu-toggle {
    color: var(--white);
}

.header.scrolled .menu-toggle {
    color: var(--navy);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(35, 139, 87, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(22, 74, 133, 0.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy) 55%,
            #0a2948
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 16, 31, 0.75),
            rgba(4, 16, 31, 0.15)
        );

    pointer-events: none;
}


/* =========================================================
   HERO SHAPES
========================================================= */

.hero-shapes {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.shape {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.07);

    animation: floatingShape 9s ease-in-out infinite;
}

.shape-one {
    width: 500px;
    height: 500px;

    top: -220px;
    right: -120px;
}

.shape-two {
    width: 350px;
    height: 350px;

    right: 8%;
    bottom: -230px;

    border-color: rgba(53, 173, 112, 0.15);

    animation-delay: 2s;
}

.shape-three {
    width: 180px;
    height: 180px;

    left: 45%;
    top: 15%;

    border-color: rgba(227, 174, 34, 0.12);

    animation-delay: 4s;
}

@keyframes floatingShape {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -25px) rotate(8deg);
    }
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 14px;

    border: 1px solid rgba(53, 173, 112, 0.35);
    border-radius: 50px;

    color: #bdebd0;

    background: rgba(35, 139, 87, 0.1);

    font-size: 12px;
    font-weight: 600;

    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--green-light);
}

.hero h1 {
    max-width: 850px;

    margin-top: 24px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(44px, 6vw, 78px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--green-light);
}

.hero-description {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 13px 23px;

    border: 1px solid transparent;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green-light),
            var(--green)
        );

    box-shadow:
        0 12px 28px rgba(35, 139, 87, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(35, 139, 87, 0.35);
}

.btn-outline {
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.28);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    color: var(--navy);

    background: var(--white);

    border-color: var(--white);

    transform: translateY(-3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;

    margin-top: 55px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.trust-item > i {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--green-light);

    background: rgba(35, 139, 87, 0.13);

    font-size: 15px;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--white);

    font-size: 12px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    right: 35px;
    bottom: 35px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;
    z-index: 5;

    margin-top: -55px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 28px 25px;

    border-right: 1px solid var(--light-grey);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--green);

    background: rgba(35, 139, 87, 0.09);

    font-size: 19px;
}

.stat-card h3 {
    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 25px;

    line-height: 1;
}

.stat-card p {
    margin-top: 5px;

    color: var(--grey);

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 650px;
}

.section-heading.centered {
    margin-inline: auto;

    text-align: center;
}

.section-tag,
.small-title {
    display: inline-block;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.about-content h2 {
    margin-top: 12px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--green);
}

.section-heading p {
    margin-top: 15px;

    color: var(--grey);

    font-size: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    min-height: 500px;

    display: grid;
    place-items: center;

    position: relative;
    overflow: hidden;

    border-radius: var(--radius-xl);

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(53, 173, 112, 0.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-dark)
        );

    box-shadow: var(--shadow-lg);
}

.about-image::before,
.about-image::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image::before {
    width: 330px;
    height: 330px;
}

.about-image::after {
    width: 230px;
    height: 230px;

    border-color: rgba(53, 173, 112, 0.2);
}

.image-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.image-content > i {
    font-size: 100px;

    color: var(--green-light);

    filter:
        drop-shadow(
            0 20px 25px rgba(53, 173, 112, 0.2)
        );
}

.image-content h3 {
    margin-top: 20px;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

    letter-spacing: 4px;
}

.image-content p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    letter-spacing: 1px;
}

.experience-card {
    position: absolute;

    left: -25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 13px;

    max-width: 260px;

    padding: 18px 20px;

    border-radius: 15px;

    background: var(--white);

    box-shadow: var(--shadow-md);
}

.experience-card > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--gold);

    background: rgba(227, 174, 34, 0.12);
}

.experience-card div {
    display: flex;
    flex-direction: column;
}

.experience-card strong {
    color: var(--navy);

    font-size: 12px;
}

.experience-card span {
    color: var(--grey);

    font-size: 9px;
}

.about-content h2 {
    max-width: 650px;
}

.about-content > p {
    margin-top: 20px;

    color: var(--grey);

    font-size: 15px;
}

.mission-box {
    display: flex;
    gap: 16px;

    margin: 28px 0;

    padding: 20px;

    border-radius: 17px;

    border-left: 3px solid var(--green);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.mission-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--green);

    background: rgba(35, 139, 87, 0.1);
}

.mission-box strong {
    color: var(--navy);

    font-size: 13px;
}

.mission-box p {
    margin-top: 4px;

    color: var(--grey);

    font-size: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--white);
}

.cleaning-section {
    background: var(--off-white);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 55px;
}

.service-card {
    position: relative;

    padding: 30px;

    border: 1px solid var(--light-grey);
    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    transform: scaleX(0);
    transform-origin: left;

    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--gold)
        );

    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-9px);

    border-color: rgba(35, 139, 87, 0.2);

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--green);

    background:
        linear-gradient(
            145deg,
            rgba(35, 139, 87, 0.12),
            rgba(35, 139, 87, 0.05)
        );

    font-size: 21px;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--white);

    background: var(--green);

    transform: scale(1.05) rotate(-4deg);
}

.service-card h3 {
    margin-top: 22px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 19px;
}

.service-card p {
    min-height: 75px;

    margin-top: 10px;

    color: var(--grey);

    font-size: 13px;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;
}

.service-card a i {
    transition: transform 0.3s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: var(--navy);
}

.why-us .section-heading h2 {
    color: var(--white);
}

.why-us .section-heading p {
    color: rgba(255, 255, 255, 0.58);
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.feature-card {
    position: relative;

    padding: 30px;

    min-height: 260px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.035);

    transition: var(--transition);

    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);

    border-color: rgba(53, 173, 112, 0.35);

    background: rgba(255, 255, 255, 0.055);
}

.feature-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: rgba(255, 255, 255, 0.08);

    font-family: "Poppins", sans-serif;

    font-size: 45px;
    font-weight: 800;
}

.feature-card > i {
    color: var(--green-light);

    font-size: 25px;
}

.feature-card h3 {
    margin-top: 25px;

    color: var(--white);

    font-family: "Poppins", sans-serif;

    font-size: 17px;
}

.feature-card p {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.process-card {
    position: relative;

    text-align: center;

    padding: 25px 20px;
}

.process-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 43px;
    right: -20px;

    width: 40px;
    height: 1px;

    background: var(--light-grey);
}

.process-icon {
    width: 86px;
    height: 86px;

    display: grid;
    place-items: center;

    margin: 0 auto;

    border-radius: 50%;

    border: 1px solid rgba(35, 139, 87, 0.2);

    background: rgba(35, 139, 87, 0.05);

    transition: var(--transition);
}

.process-card:hover .process-icon {
    color: var(--white);

    background: var(--green);

    border-color: var(--green);

    transform: translateY(-5px);
}

.process-icon span {
    color: var(--green);

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 800;
}

.process-card:hover .process-icon span {
    color: var(--white);
}

.process-card h3 {
    margin-top: 20px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 17px;
}

.process-card p {
    margin-top: 8px;

    color: var(--grey);

    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 30px 0 110px;

    background: var(--white);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 55px 60px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-xl);

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(53, 173, 112, 0.2),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--navy),
            var(--navy-light)
        );

    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -80px;
    top: -100px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.cta-box h2 {
    max-width: 700px;

    margin-top: 8px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;
}

.cta-box p {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
}

.cta-box .btn {
    flex-shrink: 0;

    position: relative;
    z-index: 2;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 70px;

    margin-top: 55px;

    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 20px;

    border: 1px solid var(--light-grey);
    border-radius: 15px;

    background: var(--white);

    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);

    border-color: rgba(35, 139, 87, 0.25);

    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--green);

    background: rgba(35, 139, 87, 0.09);
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: var(--grey);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
    margin-top: 2px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--green);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 35px;

    border: 1px solid var(--light-grey);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: var(--navy);

    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 14px 16px;

    outline: none;

    border: 1px solid #dfe5eb;

    border-radius: 10px;

    color: var(--navy);

    background: var(--off-white);

    font-size: 13px;

    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(35, 139, 87, 0.08);
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a9b3;
}

.contact-form .btn {
    width: fit-content;

    border: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    color: rgba(255, 255, 255, 0.65);

    background: var(--navy-dark);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding: 75px 0;
}

.footer .logo-text strong {
    color: var(--white);
}

.footer .logo-text span {
    color: var(--green-light);
}

.footer-brand > p {
    max-width: 350px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 8px;

    margin-top: 22px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 9px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);

    background: var(--green);

    border-color: var(--green);

    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 7px;

    color: var(--white);

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--green-light);

    transform: translateX(4px);
}

.footer-column a i {
    color: var(--green-light);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background: var(--green);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}


/* =========================================================
   TEXT SELECTION
========================================================= */

::selection {
    color: var(--white);
    background: var(--green);
}


/* =========================================================
   AOS FALLBACK
========================================================= */

[data-aos] {
    transition-property: transform, opacity;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 35px, var(--container));
    }

    .navbar {
        gap: 2px;
    }

    .nav-link {
        padding-inline: 10px;

        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:nth-child(2)::after {
        display: none;
    }

    .process-card:nth-child(1)::after {
        display: block;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 900px) {

    .header {
        padding: 13px 0;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(340px, 85%);

        height: 100vh;

        padding: 100px 30px 30px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        background: var(--navy);

        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);

        transition: right 0.4s ease;
    }

    .navbar.active {
        right: 0;
    }

    .nav-link {
        padding: 15px 5px;

        color: var(--white) !important;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);

        font-size: 14px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-contact {
        margin: 15px 0 0;

        text-align: center;

        border: 0;
    }

    .hero {
        min-height: 730px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--light-grey);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-visual {
        max-width: 650px;

        margin-inline: auto;

        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .logo-image{
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 7px;

        letter-spacing: 1.1px;
    }

    .hero {
        min-height: 750px;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero h1 {
        margin-top: 20px;

        font-size: clamp(38px, 12vw, 58px);

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;

        margin-top: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 16px;

        margin-top: 35px;
    }

    .trust-item {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .stats-section {
        margin-top: -35px;
    }

    .stats-grid {
        grid-template-columns: 1fr;

        border-radius: 18px;
    }

    .stat-card {
        border-right: 0;

        border-bottom: 1px solid var(--light-grey);

        padding: 20px;
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 31px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 40px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card p {
        min-height: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .feature-card {
        min-height: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .process-card {
        padding: 15px 10px 25px;
    }

    .process-card::after {
        display: none !important;
    }

    .cta-section {
        padding: 20px 0 80px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 25px;

        border-radius: 24px;
    }

    .cta-box h2 {
        font-size: 29px;
    }

    .cta-box .btn {
        width: 100%;
    }

    .contact-grid {
        margin-top: 40px;
    }

    .contact-form-wrapper {
        padding: 22px 18px;
    }

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

    .contact-form .btn {
        width: 100%;
    }

    .about-image {
        min-height: 400px;
    }

    .image-content > i {
        font-size: 75px;
    }

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

    .experience-card {
        left: 15px;
        bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 60px 0;
    }

    .footer-bottom .container {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 20px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 37px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-badge {
        padding: 7px 10px;

        font-size: 8px;
    }

    .about-image {
        min-height: 350px;
    }

    .experience-card {
        max-width: 230px;

        padding: 14px;
    }

    .contact-item {
        padding: 16px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}