:root {
    /* Sans Serif Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    /* Elegant Serif */
    --font-serif: 'Cormorant Garamond', serif;

    /* Signature Fonts */
    --font-allison: 'Allison', cursive;
    --font-love: 'Love Light', cursive;
    --font-corinthia: 'Corinthia', cursive;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-secondary);
    background: #fff;
    overflow-x: hidden;
}


/* =========================================
                NAVBAR
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 48px;
}


/* Main Navbar */

.navbar {
    width: 100%;
    max-width: 1680px;
    height: 85px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08);
}


/* =========================================
                LOGO
========================================= */

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}


.navbar-logo img {
    width: 115px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================
            NAVIGATION LINKS
========================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.nav-links li {
    list-style: none;
}


.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: 0.3s ease;
}


/* Hover Color */

.nav-links a:hover {
    color: #ffffff;
}


/* Animated Underline */

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}


.nav-links a:hover::after {
    width: 100%;
}


/* =========================================
              SOCIAL ICONS
========================================= */

.nav-social {
    display: flex;
    align-items: center;
    gap: 28px;
}


.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 30px;
    transition: 0.3s ease;
}


.nav-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


/* Icons8 Icon Size */

.nav-social i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* =========================================
            MOBILE MENU BUTTON
========================================= */

.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* =========================================
            MOBILE SIDE MENU
========================================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    z-index: 2000;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2001;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}


/* =========================================
            ACTIVE MENU
========================================= */

.mobile-menu.active {
    transform: translateX(0);
}


.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Prevent Background Scroll */

body.menu-open {
    overflow: hidden;
}


/* =========================================
                CLOSE BUTTON
========================================= */

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mobile-menu-close span {
    position: absolute;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 10px;
}


.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}


.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}


/* =========================================
                MOBILE LOGO
========================================= */

.mobile-menu-logo {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 80px;
}


.mobile-menu-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}


/* =========================================
            MOBILE NAVIGATION
========================================= */

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}


.mobile-nav-links li {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Animate links when menu opens */

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}


/* Stagger Animation */

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.22s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.29s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.36s;
}


/* Links */

.mobile-nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 400;
    transition: color 0.3s ease;
}


.mobile-nav-links a:hover {
    color: #ffffff;
}


/* =========================================
            MOBILE SOCIAL MEDIA
========================================= */

.mobile-social {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}


.mobile-social a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 21px;
    text-decoration: none;
    transition: 0.3s ease;
}


.mobile-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .site-header {
        padding: 20px 25px;
    }


    .navbar {
        height: 80px;

        padding: 0 30px;
    }


    /* Hide Desktop Navigation */

    .nav-links,
    .nav-social {
        display: none;
    }


    /* Show Mobile Button */

    .mobile-menu-btn {
        display: flex;
    }

}


/* =========================================
                MOBILE
========================================= */

@media (max-width: 576px) {

    .site-header {
        padding: 15px;
    }


    .navbar {
        height: 72px;

        padding: 0 22px;

        border-radius: 14px;
    }


    .navbar-logo img {
        width: 105px;
    }


    .mobile-menu {
        width: 60%;

        padding: 30px 25px;
    }


    .mobile-menu-logo {
        margin-bottom: 70px;
    }


    .mobile-menu-logo img {
        width: 125px;
    }

    .mobile-nav-links a {
        font-size: 26px;
    }

}




/* =========================================
                HERO SECTION
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================
            BACKGROUND IMAGE
========================================= */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}


/* =========================================
                DARK OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: -2;
}


/* =========================================
                HERO CONTENT
========================================= */

.hero-content {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 180px 40px 100px;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}


/* =========================================
                EYEBROW
========================================= */

.hero-eyebrow {
    margin: 0 0 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}


/* =========================================
                MAIN HEADING
========================================= */

.hero-content h1 {
    max-width: 1450px;

    margin: 0 auto;

    font-family: "Inter", sans-serif;

    font-size: 70px;
    font-weight: lighter;

    line-height: 1.08;

    letter-spacing: -2px;

    color: #ffffff;
}


/* Optional span line */

.hero-content h1 span {
    display: block;
}


/* =========================================
                DESCRIPTION
========================================= */

.hero-description {
    max-width: 850px;

    margin: 32px auto 0;

    font-family: "Inter", sans-serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================================
                BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 36px;
}


/* Common Button */

.hero-btn {
    min-width: 180px;
    padding: 15px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease;
    cursor: pointer;
}


/* Primary Button */

.primary-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #ffffff;
}


.primary-btn:hover {
    transform: translateY(-4px);
    background: transparent;
    color: #ffffff;
}


/* Secondary Button */

.secondary-btn {
    background: rgba(0, 0, 0, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}


.secondary-btn:hover {
    transform: translateY(-4px);
    background: #ffffff;
    color: #1a1a1a;
}


/* =========================================
            HERO TEXT ANIMATION
========================================= */

.hero-eyebrow,
.hero-content h1,
.hero-description,
.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
}


/* Eyebrow */

.hero-eyebrow {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}


/* Main Heading */

.hero-content h1 {
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.4s;
}


/* Description */

.hero-description {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.7s;
}


/* Buttons */

.hero-buttons {
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.9s;
}


/* Animation */

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
                TABLET
========================================= */

@media (max-width: 900px) {

    .hero-section {
        min-height: 100svh;
    }

    .hero-content {
        max-width: 850px;
        padding: 150px 35px 80px;
    }

    .hero-eyebrow {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        max-width: 850px;
        font-size: 48px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 650px;
        margin-top: 28px;
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-buttons {
        margin-top: 32px;
    }

    .hero-btn {
        min-width: 165px;
        padding: 14px 10px;
        font-size: 15px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 576px) {

    .hero-section {
        min-height: 100svh;
    }

    .hero-background {
        object-position: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.52);
    }

    .hero-content {
        width: 100%;
        padding: 135px 20px 70px;
    }

    .hero-eyebrow {
        max-width: 300px;
        margin: 0 auto 18px;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.7px;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size:  40px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 100%;
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.2;
    }

    /* Remove manual line break effect */

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 15px 20px;
        font-size: 15px;
    }

}

/* =========================================
                ABOUT SECTION
========================================= */

.about-section {
    position: relative;

    padding: 60px;

    background: #f5f3ee;

    overflow: hidden;
}


/* =========================================
                CONTAINER
========================================= */

.about-container {
    position: relative;

    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 80px;
}


/* =========================================
                LEFT VISUAL
========================================= */

.about-visual {
    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;
}


/* =========================================
            BIG BACKGROUND LETTER
========================================= */

.about-big-letter {
    position: absolute;

    top: -90px;
    left: 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 400px;

    font-weight: 600;

    line-height: 1;

    color: rgba(255, 255, 255, 0.65);

    z-index: 0;

    pointer-events: none;
}


/* =========================================
            VERTICAL HI-TECH TEXT
========================================= */

.about-vertical-text {
    position: absolute;

    left: -50px;

    top: 40%;

    transform: translateY(-50%) rotate(-90deg);

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 12px;

    color: #189DF3;

    z-index: 5;

    white-space: nowrap;
}


/* =========================================
                MAIN IMAGE
========================================= */

.about-main-image {
    position: relative;

    width: 88%;
    bottom: 60px;

    margin-left: 35px;

    border-radius: 24px;

    overflow: hidden;

    z-index: 2;
}


.about-main-image img {
    display: block;

    width: 100%;

    height: 450px;

    object-fit: cover;

    object-position: center;
}


/* =========================================
                SMALL IMAGE
========================================= */

.about-small-image {
    position: absolute;

    right: -35px;

    bottom: 60px;

    width: 260px;

    border-radius: 24px;

    overflow: hidden;
    z-index: 3;
}


.about-small-image img {
    display: block;

    width: 100%;

    height: 200px;

    object-fit: cover;

    object-position: center;
}


/* =========================================
                ABOUT CONTENT
========================================= */

.about-content {
    position: relative;

    z-index: 2;

    padding-top: 10px;
}


/* =========================================
                SECTION LABEL
========================================= */

.section-label {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.section-label span {
    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 7px;

    color: #189DF3;
}


.section-label::after {
    content: "";

    width: 55px;

    height: 1px;

    background: #189DF3;
}


/* =========================================
                MAIN HEADING
========================================= */

.about-content h2 {
    margin: 0;

    max-width: 780px;

    font-family: "Cormorant Garamond", serif;

    font-size: 68px;

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1px;

    color: #141414;
}


.about-content h2 span {
    display: block;
}


/* =========================================
                DESCRIPTION
========================================= */

.about-description {
    margin-top: 20px;

    max-width: 780px;
}


.about-description p {
    margin: 0 0 12px;

    font-family: "Inter", sans-serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.2px;

    color: #343434;
}


/* =========================================
                QUOTE
========================================= */

.about-quote {
    margin-top: 45px;

    padding-left: 28px;

    border-left: 2px solid #4a9bd0;
}


.about-quote p {
    margin: 0;
    font-family: var(--font-allison);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 1px;
    color: #287fb8;
}


/* =========================================
                ABOUT STATISTICS
========================================= */

.about-stats {
    position: relative;
    max-width: 1500px;
    display: grid;
    grid-template-columns:
        .7fr
        1px
        .7fr
        1px
        .7fr
        1px
        .7fr;
    align-items: center;
    gap: 20px;
}


/* =========================================
                STAT ITEM
========================================= */

.about-stat {
    display: flex;

    align-items: center;

    gap: 10px;
}


.stat-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2f94d3;

    flex-shrink: 0;
}


.stat-icon i {
    font-size: 38px;
}


/* =========================================
                STAT CONTENT
========================================= */

.stat-content h3 {
    margin: 0 0 4px;

    font-family: "Montserrat", sans-serif;

    font-size: 27px;

    font-weight: 600;

    color: #1c1c1c;
}


.stat-content p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    color: #3e3e3e;
}


/* =========================================
                DIVIDER
========================================= */

.stat-divider {
    width: 1px;

    height: 52px;

    background: #2f94d3;
}

/* =========================================
            ABOUT IMAGE ANIMATION
========================================= */

.about-main-image {
    transition:
        transform 1s ease,
        opacity 1s ease;
}


.about-small-image {
    opacity: 0;

    transform: translate(50px, 30px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

    transition-delay: 0.4s;
}


/* When Visible */

.about-section.show .about-main-image {
    animation: mainImageReveal 1s ease forwards;
}


.about-section.show .about-small-image {
    opacity: 1;

    transform: translate(0, 0);
}


/* Main Image Animation */

@keyframes mainImageReveal {

    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* =========================================
            STAT STAGGER ANIMATION
========================================= */

.about-stat {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}


.about-section.show .about-stat {
    opacity: 1;

    transform: translateY(0);
}


/* Individual Delay */

.about-section.show .about-stat:nth-child(1) {
    transition-delay: 0.2s;
}


.about-section.show .about-stat:nth-child(3) {
    transition-delay: 0.35s;
}


.about-section.show .about-stat:nth-child(5) {
    transition-delay: 0.5s;
}


.about-section.show .about-stat:nth-child(7) {
    transition-delay: 0.65s;
}


/* =========================================
        ABOUT SECTION RESPONSIVE - 900px
========================================= */

@media (max-width: 900px) {

    .about-section {
        padding: 70px 40px;
    }


    /* Main Layout */

    .about-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }


    /* =====================================
                LEFT VISUAL
    ===================================== */

    .about-visual {
        min-height: 600px;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }


    /* Big Background Text */

    .about-big-letter {
        top: -70px;
        left: 20px;

        font-size: 340px;
    }


    /* Vertical Text */

    .about-vertical-text {
        left: -30px;
        top: 42%;

        font-size: 12px;
        letter-spacing: 10px;
    }


    /* Main Image */

    .about-main-image {
        width: 85%;
        bottom: 50px;

        margin-left: 30px;
    }


    .about-main-image img {
        height: 460px;
    }


    /* Small Image */

    .about-small-image {
        right: 0;
        bottom: 50px;

        width: 250px;
    }


    .about-small-image img {
        height: 190px;
    }


    /* =====================================
                ABOUT CONTENT
    ===================================== */

    .about-content {
        padding-top: 0;
        max-width: 750px;
        margin: 0 auto;
    }


    /* Heading */

    .about-content h2 {
        font-size: 62px;
    }


    /* Description */

    .about-description {
        max-width: 100%;
    }


    .about-description p {
        font-size: 17px;
    }


    /* Quote */

    .about-quote {
        margin-top: 35px;
    }


    /* =====================================
                STATISTICS
    ===================================== */

    .about-stats {
        max-width: 700px;
        margin: 70px auto 0;

        grid-template-columns: 1fr 1fr;

        gap: 40px 50px;
    }


    /* Hide Dividers */

    .stat-divider {
        display: none;
    }


    .about-stat {
        gap: 15px;
    }


    .stat-icon {
        width: 50px;
        height: 50px;
    }


    .stat-icon i {
        font-size: 34px;
    }

}

/* =========================================
        ABOUT SECTION RESPONSIVE - 576px
========================================= */

@media (max-width: 576px) {

    .about-section {
        padding: 65px 20px 55px;
    }


    /* =====================================
                MAIN CONTAINER
    ===================================== */

    .about-container {
        gap: 55px;
    }


    /* =====================================
                LEFT IMAGE AREA
    ===================================== */

    .about-visual {
        min-height: 410px;
        width: 100%;
    }


    /* =====================================
                BIG BACKGROUND LETTER
    ===================================== */

    .about-big-letter {
        top: -50px;
        left: 0;

        font-size: 220px;

        opacity: 0.8;
    }


    /* =====================================
                VERTICAL HI-TECH
    ===================================== */

    .about-vertical-text {
        left: -43px;
        top: 42%;

        font-size: 9px;

        letter-spacing: 7px;
    }


    /* =====================================
                MAIN IMAGE
    ===================================== */

    .about-main-image {
        width: calc(100% - 15px);

        bottom: 25px;

        margin-left: 15px;

        border-radius: 18px;
    }


    .about-main-image img {
        height: 310px;

        object-position: center;
    }


    /* =====================================
                SMALL IMAGE
    ===================================== */

    .about-small-image {
        right: -5px;

        bottom: 0;

        width: 150px;

        border-radius: 16px;
    }


    .about-small-image img {
        height: 115px;
    }


    /* =====================================
                ABOUT CONTENT
    ===================================== */

    .about-content {
        width: 100%;
    }


    /* Section Label */

    .section-label {
        gap: 10px;
        margin-bottom: 18px;
    }


    .section-label span {
        font-size: 10px;

        letter-spacing: 4px;
    }


    .section-label::after {
        width: 35px;
    }


    /* =====================================
                MAIN HEADING
    ===================================== */

    .about-content h2 {
        font-size: 48px;

        line-height: 1.05;

        letter-spacing: -0.5px;
    }


    /* =====================================
                DESCRIPTION
    ===================================== */

    .about-description {
        margin-top: 18px;
    }


    .about-description p {
        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 15px;
    }


    /* =====================================
                QUOTE
    ===================================== */

    .about-quote {
        margin-top: 30px;

        padding-left: 18px;
    }


    .about-quote p {
        font-size: 23px;

        line-height: 1.35;

        letter-spacing: 0.5px;
    }


    /* =====================================
                STATISTICS
    ===================================== */

    .about-stats {
        width: 100%;

        margin-top: 55px;

        grid-template-columns: 1fr 1fr;

        gap: 35px 15px;
    }


    .about-stat {
        align-items: center;

        gap: 10px;
    }


    .stat-icon {
        width: 40px;
        height: 40px;
    }


    .stat-icon i {
        font-size: 28px;
    }


    .stat-content h3 {
        font-size: 20px;

        margin-bottom: 3px;
    }


    .stat-content p {
        font-size: 11px;

        line-height: 1.4;
    }

}


/* =========================================
                FOOTER
========================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    min-height: 850px;
    color: #ffffff;
}


/* =========================================
        BACKGROUND CONTAINER
========================================= */

.footer-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* =========================================
        BIG HI-TECH TEXT
========================================= */

.footer-big-text {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    font-size: 300px;
    font-weight: 700;
    letter-spacing: 10px;
    white-space: nowrap;

    color: transparent;
    -webkit-text-stroke: 2px rgba(24, 157, 243, 0.25);

    font-family: var(--font-serif);

    pointer-events: none;
}


/* =========================================
        HOUSE BACKGROUND IMAGE
        IMAGE IS FROM HTML
========================================= */

.footer-house-image {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 80%;

    object-fit: cover;
    object-position: center;

    z-index: 2;
}


/* =========================================
        DARK OVERLAY
========================================= */

.footer-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.75) 35%,
            rgba(0, 0, 0, 0.88) 100%
        );

    z-index: 3;
}


/* =========================================
        FOOTER CONTENT
========================================= */

.footer-content {
    position: relative;
    z-index: 5;

    max-width: 1550px;
    margin: 0 auto;

    padding: 390px 60px 0;
}


/* =========================================
        MAIN GRID
========================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.3fr
        0.8fr
        1.2fr
        1.3fr;

    gap: 70px;
}


/* =========================================
        COMPANY SECTION
========================================= */

.footer-company h2 {
    margin: 0 0 35px;

    font-size: 48px;
    font-weight: 600;

    letter-spacing: 2px;
}


.footer-company p {
    max-width: 400px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
        SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    gap: 18px;

    margin-top: 40px;
}


.footer-social a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-social a:hover {
    background: #189DF3;
    border-color: #189DF3;

    transform: translateY(-4px);
}


/* =========================================
        FOOTER HEADINGS
========================================= */

.footer-column h3,
.footer-contact h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 600;

    letter-spacing: 3px;
}


.footer-line {
    display: block;

    width: 45px;
    height: 2px;

    background: #189DF3;

    margin: 18px 0 28px;
}


/* =========================================
        FOOTER LINKS
========================================= */

.footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 20px;
}


.footer-column a {
    display: flex;
    align-items: center;

    gap: 15px;

    color: rgba(255, 255, 255, 0.85);

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s ease;
}


.footer-column a i {
    color: #189DF3;

    font-size: 11px;
}


.footer-column a:hover {
    color: #189DF3;

    transform: translateX(5px);
}


/* =========================================
        CONTACT SECTION
========================================= */

.contact-item {
    display: flex;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.contact-icon {
    min-width: 40px;

    display: flex;
    justify-content: center;

    color: #189DF3;

    font-size: 27px;

    padding-top: 3px;
}


.contact-item div:last-child {
    display: flex;
    flex-direction: column;
}


.contact-item span {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
}


.contact-item a,
.contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 16px;

    line-height: 1.5;

    text-decoration: none;
}


.contact-item a:hover {
    color: #189DF3;
}


/* =========================================
        FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 45px;
    padding: 30px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
}


.footer-bottom a {
    color: #189DF3;

    text-decoration: none;
}
/* =========================================
        FOOTER TEXT ANIMATION
========================================= */

/* Initial Animation State */

.footer-company,
.footer-column,
.footer-contact,
.footer-bottom {
    transform: translateY(50px);
}


/* Company Section */

.footer-company.footer-show {
    animation: footerFadeUp 0.8s ease forwards;
}


/* Quick Links */

.footer-column.footer-show {
    animation: footerFadeUp 0.8s ease forwards;
}


/* Contact */

.footer-contact.footer-show {
    animation: footerFadeUp 0.8s ease forwards;
}


/* Footer Bottom */

.footer-bottom.footer-show {
    animation: footerFadeUp 0.8s ease forwards;
}


/* Animation */

@keyframes footerFadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
                TABLET
========================================= */

@media (max-width: 900px) {

    .site-footer {
        min-height: auto;
    }


    .footer-big-text {
        top: 20px;

        font-size: clamp(100px, 20vw, 170px);

        letter-spacing: 4px;

        -webkit-text-stroke:
            1px rgba(24, 157, 243, 0.25);
    }


    .footer-house-image {
        height: 82%;

        object-position: center;
    }


    .footer-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.20) 0%,
                rgba(0, 0, 0, 0.78) 30%,
                rgba(0, 0, 0, 0.92) 100%
            );
    }


    .footer-content {
        padding:
            280px
            35px
            0;
    }


    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            55px
            40px;
    }


    .footer-company h2 {
        font-size: 38px;
    }


    .footer-social {
        margin-top: 30px;
    }


    .footer-social a {
        width: 48px;
        height: 48px;
    }

}


/* =========================================
                MOBILE
========================================= */

@media (max-width: 576px) {

    .site-footer {
        min-height: auto;
    }


    /* Big Background Text */

    .footer-big-text {
        top: 15px;

        font-size: clamp(72px, 22vw, 120px);

        letter-spacing: 2px;

        -webkit-text-stroke:
            1px rgba(24, 157, 243, 0.25);
    }


    /* Background House */

    .footer-house-image {
        height: 90%;

        object-position: center;

        opacity: 0.9;
    }


    /* Dark Overlay */

    .footer-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.35) 0%,
                rgba(0, 0, 0, 0.85) 22%,
                rgba(0, 0, 0, 0.96) 100%
            );
    }


    /* Content */

    .footer-content {
        padding:
            210px
            22px
            0;
    }


    /* Single Column */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* Company */

    .footer-company h2 {
        margin-bottom: 25px;

        font-size: 38px;

        letter-spacing: 1px;
    }


    .footer-company p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.65;
    }


    /* Social */

    .footer-social {
        margin-top: 30px;

        gap: 14px;
    }


    .footer-social a {
        width: 46px;
        height: 46px;
    }


    /* Footer Headings */

    .footer-column h3,
    .footer-contact h3 {
        font-size: 15px;

        letter-spacing: 2px;
    }


    .footer-line {
        margin:
            15px
            0
            22px;
    }


    /* Links */

    .footer-column li {
        margin-bottom: 17px;
    }


    .footer-column a {
        gap: 12px;

        font-size: 15px;
    }


    /* Contact */

    .contact-item {
        gap: 15px;

        padding:
            13px
            0;
    }


    .contact-icon {
        min-width: 32px;

        font-size: 22px;
    }


    .contact-item span {
        font-size: 13px;
    }


    .contact-item a,
    .contact-item p {
        font-size: 14px;
    }


    /* Footer Bottom */

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: 40px;

        padding:
            25px
            0;
    }


    .footer-bottom p {
        font-size: 13px;

        line-height: 1.5;
    }

}




/* =========================================
                SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    padding: 60px;
    background: #f5f3ee;
    overflow: hidden;
}


/* =========================================
                SECTION HEADING
========================================= */

.services-heading {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
}


.services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-bottom: 20px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 8px;

    color: #287fb8;
}


.services-label span {
    width: 70px;
    height: 1px;

    background: #287fb8;
}


.services-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1.05;

    color: #171717;
}


.services-heading h2 span {
    color: #2f94d3;
}


.services-heading p {
    max-width: 950px;
    margin: 20px auto 0;
    font-family: "Inter", sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: #353535;
}


/* =========================================
                SERVICE CARD
========================================= */

.service-card {
    position: relative;
    max-width: 1500px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
    gap: 70px;
}


/* Reverse Layout */

.service-card.service-reverse {
    grid-template-columns: 0.85fr 1.25fr;
}


.service-card.service-reverse
.before-after-container {
    order: 2;
}


.service-card.service-reverse
.service-content {
    order: 1;
}


/* =========================================
            BEFORE AFTER CONTAINER
========================================= */

.before-after-container {
    position: relative;

    width: 100%;
    height: 580px;

    overflow: hidden;

    border-radius: 24px;

    --position: 50%;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}


/* =========================================
                IMAGE CONTAINER
========================================= */

.image-container {
    position: relative;

    width: 100%;
    height: 100%;
}


/* =========================================
                SLIDER IMAGE
========================================= */

.slider-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* AFTER IMAGE */

.image-after {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


/* BEFORE IMAGE */

.image-before {
    position: absolute;

    inset: 0;

    width: var(--position);

    height: 100%;

    object-fit: cover;
    object-position: left;

    z-index: 2;
}


/* =========================================
                RANGE SLIDER
========================================= */

.before-after-slider {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: ew-resize;

    z-index: 10;
}


/* =========================================
                SLIDER LINE
========================================= */

.slider-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: var(--position);

    width: 2px;

    background: #ffffff;

    transform: translateX(-50%);

    z-index: 5;

    pointer-events: none;

    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.3);
}


/* =========================================
                SLIDER BUTTON
========================================= */

.slider-button {
    position: absolute;

    top: 50%;
    left: var(--position);

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    z-index: 6;

    pointer-events: none;

    color: #2f94d3;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.25);
}


.slider-button svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: currentColor;

    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-width: 18;
}


/* =========================================
                BEFORE / AFTER LABEL
========================================= */

.image-label {
    position: absolute;

    top: 20px;

    padding: 12px 25px;

    border-radius: 10px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #ffffff;

    z-index: 7;

    pointer-events: none;
}


.before-label {
    left: 20px;

    background: rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(10px);
}


.after-label {
    right: 20px;

    background: #2f94d3;
}


/* =========================================
                DRAG TEXT
========================================= */

.drag-text {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    padding: 10px 20px;

    border-radius: 30px;

    background: rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(10px);

    font-family: "Inter", sans-serif;
    font-size: 14px;

    color: #ffffff;

    z-index: 7;

    pointer-events: none;
}


/* =========================================
                SERVICE CONTENT
========================================= */

.service-content {
    position: relative;
}


.service-number {
    position: absolute;

    top: -70px;
    right: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 230px;
    font-weight: 500;

    line-height: 1;

    color: rgba(255, 255, 255, 0.65);

    pointer-events: none;

    z-index: 0;
}


.service-tag {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 7px;

    color: #287fb8;

    z-index: 2;
}


.service-tag i {
    font-size: 25px;
}


.service-content h3 {
    position: relative;

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;
    font-weight: 500;

    line-height: 1.05;

    color: #181818;

    z-index: 2;
}


.service-content h3 span {
    display: block;

    color: #2f94d3;
}


/* =========================================
                CONTENT LINE
========================================= */

.service-line {
    position: relative;

    width: 70px;
    height: 2px;

    margin: 25px 0;

    background: #2f94d3;

    z-index: 2;
}


/* =========================================
                DESCRIPTION
========================================= */

.service-content > p {
    position: relative;

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 18px;

    line-height: 1.6;

    color: #353535;

    z-index: 2;
}


/* =========================================
                FEATURES
========================================= */

.service-features {
    position: relative;

    margin: 30px 0 0;
    padding: 0;

    list-style: none;

    z-index: 2;
}


.service-features li {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 18px;

    font-family: "Inter", sans-serif;

    font-size: 17px;

    color: #303030;
}


.service-features span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f94d3;

    color: #ffffff;

    font-size: 13px;

    flex-shrink: 0;
}


/* =========================================
                SCROLL ANIMATION
========================================= */

.service-card {
    opacity: 0;

    transform: translateY(80px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.service-card.show {
    opacity: 1;

    transform: translateY(0);
}


/* Image Animation */

.before-after-container {
    transition:
        transform 0.8s ease,
        box-shadow 0.4s ease;
}


.service-card:hover .before-after-container {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.18);
}


/* Content Animation */

.service-content {
    opacity: 0;

    transform: translateX(60px);

    transition:
        opacity 0.8s ease 0.2s,
        transform 0.8s ease 0.2s;
}


.service-card.show .service-content {
    opacity: 1;

    transform: translateX(0);
}


/* Reverse Content Animation */

.service-card.service-reverse .service-content {
    transform: translateX(-60px);
}


.service-card.service-reverse.show .service-content {
    transform: translateX(0);
}

/* =========================================
            SERVICES RESPONSIVE
========================================= */


/* =========================================
            TABLET - 900px
========================================= */

@media (max-width: 900px) {

    /* Section */

    .services-section {
        padding: 70px 35px;
    }


    /* Heading */

    .services-heading {
        margin-bottom: 50px;
    }


    .services-heading h2 {
        font-size: 58px;
    }


    .services-heading p {
        font-size: 17px;
        max-width: 750px;
    }


    /* =====================================
            SERVICE CARD
    ===================================== */

    .service-card,
    .service-card.service-reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 100px;
    }


    /* Reset reverse order */

    .service-card.service-reverse
    .before-after-container {
        order: 0;
    }


    .service-card.service-reverse
    .service-content {
        order: 0;
    }


    /* Before / After Image */

    .before-after-container {
        height: 520px;
        max-width: 850px;
        margin: 0 auto;
    }


    /* Service Content */

    .service-content {
        max-width: 850px;
        margin: 0 auto;
        width: 100%;
    }


    /* Remove side animation position issue */

    .service-card.service-reverse .service-content {
        transform: translateY(50px);
    }


    .service-card.show .service-content,
    .service-card.service-reverse.show .service-content {
        transform: translateY(0);
    }


    /* Service Number */

    .service-number {
        top: -60px;
        right: 10px;

        font-size: 180px;
    }


    /* Tag */

    .service-tag {
        margin-bottom: 20px;
        font-size: 13px;
        letter-spacing: 6px;
    }


    /* Title */

    .service-content h3 {
        font-size: 52px;
        max-width: 650px;
    }


    /* Description */

    .service-content > p {
        font-size: 17px;
        max-width: 750px;
    }


    /* Features */

    .service-features li {
        font-size: 16px;
    }


    /* Labels */

    .image-label {
        top: 18px;
        padding: 10px 22px;
        font-size: 13px;
    }


    .before-label {
        left: 18px;
    }


    .after-label {
        right: 18px;
    }

}



/* =========================================
            MOBILE - 576px
========================================= */

@media (max-width: 576px) {

    /* Section */

    .services-section {
        padding: 60px 20px;
    }


    /* =====================================
            SECTION HEADING
    ===================================== */

    .services-heading {
        margin-bottom: 45px;
    }


    .services-label {
        gap: 10px;

        font-size: 10px;
        letter-spacing: 4px;

        margin-bottom: 16px;
    }


    .services-label span {
        width: 35px;
    }


    .services-heading h2 {
        font-size: 42px;
        line-height: 1.1;
    }


    .services-heading h2 span {
        display: block;
    }


    .services-heading p {
        margin-top: 18px;

        font-size: 16px;
        line-height: 1.55;
    }


    /* =====================================
            SERVICE CARD
    ===================================== */

    .service-card,
    .service-card.service-reverse {
        display: flex;
        flex-direction: column;

        gap: 40px;

        margin-bottom: 80px;
    }


    /* =====================================
            BEFORE AFTER IMAGE
    ===================================== */

    .before-after-container {
        position: relative;

        width: 100%;
        height: 380px;

        overflow: hidden;
        border-radius: 18px;

        --position: 50%;
    }

    .image-container {
        position: relative;

        width: 100%;
        height: 100%;
    }



    .slider-image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

     /* AFTER IMAGE - Full Image */

    .image-after {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 1;
    }


    /* BEFORE IMAGE - Slider Width */

    .image-before {
        position: absolute;

        top: 0;
        left: 0;
        bottom: 0;

        width: var(--position);
        height: 100%;

        max-width: none;

        object-fit: cover;

        /*
        IMPORTANT:
        This keeps the image aligned
        like desktop/tablet
        */
        object-position: left;

        z-index: 2;
    }


    /* =========================================
                RANGE INPUT
    ========================================= */

    .before-after-slider {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        margin: 0;

        opacity: 0;

        cursor: ew-resize;

        z-index: 10;

        -webkit-appearance: none;
        appearance: none;
    }


    /* =========================================
                SLIDER LINE
    ========================================= */

    .slider-line {
        position: absolute;

        top: 0;
        bottom: 0;

        left: var(--position);

        width: 2px;
        height: 100%;

        background: #ffffff;

        transform: translateX(-50%);

        z-index: 5;

        pointer-events: none;
    }


    /* =========================================
                SLIDER BUTTON
    ========================================= */

    .slider-button {
        position: absolute;

        top: 50%;
        left: var(--position);

        width: 50px;
        height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #ffffff;

        border-radius: 50%;

        transform: translate(-50%, -50%);

        z-index: 6;

        pointer-events: none;

        color: #2f94d3;

        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.25);
    }


    .slider-button svg {
        width: 25px;
        height: 25px;
    }


    /* Labels */

    .image-label {
        top: 12px;

        padding: 8px 15px;

        border-radius: 8px;

        font-size: 11px;
    }


    .before-label {
        left: 12px;
    }


    .after-label {
        right: 12px;
    }



    /* Drag Text */

    .drag-text {
         left: 50%;
        bottom: 15px;

        transform: translateX(-50%);

        padding: 8px 16px;

        font-size: 12px;

        white-space: nowrap;
    }


    /* =====================================
            SERVICE CONTENT
    ===================================== */

    .service-content {
        width: 100%;
    }


    /* Big Background Number */

    .service-number {
        top: -35px;
        right: 0;

        font-size: 110px;

        opacity: 0.8;
    }


    /* Service Tag */

    .service-tag {
        gap: 10px;

        margin-bottom: 18px;

        font-size: 10px;
        letter-spacing: 4px;
    }


    .service-tag i {
        font-size: 20px;
    }


    /* Service Title */

    .service-content h3 {
        max-width: 100%;

        font-size: 40px;

        line-height: 1.08;
    }


    /* Line */

    .service-line {
        width: 50px;

        margin: 20px 0;
    }


    /* Description */

    .service-content > p {
        font-size: 16px;

        line-height: 1.6;
    }


    /* Features */

    .service-features {
        margin-top: 25px;
    }


    .service-features li {
        align-items: flex-start;

        gap: 10px;

        margin-bottom: 15px;

        font-size: 15px;

        line-height: 1.5;
    }


    .service-features span {
        width: 22px;
        height: 22px;

        font-size: 11px;

        margin-top: 1px;
    }


    /* =====================================
            MOBILE ANIMATION
    ===================================== */

    .service-card {
        transform: translateY(50px);
    }


    .service-content,
    .service-card.service-reverse .service-content {
        transform: translateY(35px);

        transition:
            opacity 0.7s ease 0.15s,
            transform 0.7s ease 0.15s;
    }


    .service-card.show .service-content,
    .service-card.service-reverse.show .service-content {
        transform: translateY(0);
    }

}




/* =========================================
                CONTACT SECTION
========================================= */

.contact-section {
    position: relative;
    padding: 0px 100px 60px;
    background: #f5f3ee;
}


.contact-container {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;
}


/* =========================================
                CONTACT INFO
========================================= */

.contact-info {
    max-width: 450px;
}


/* LABEL */

.contact-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;

    color: #287fb8;
}


.contact-label span {
    width: 35px;
    height: 1px;

    background: #287fb8;
}


/* HEADING */

.contact-info h2 {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 600;

    line-height: 1.1;

    color: #202020;
}


/* INTRO */

.contact-intro {
    margin: 18px 0 35px;

    font-family: "Inter", sans-serif;
    font-size: 15px;

    line-height: 1.6;

    color: #404040;
}


/* =========================================
                CONTACT DETAILS
========================================= */

.contact-detail {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 22px;
}


.contact-detail-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(47, 148, 211, 0.15);

    color: #2f94d3;

    font-size: 19px;

    flex-shrink: 0;
}


.contact-detail h4 {
    margin: 0 0 4px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;

    color: #222222;
}


.contact-detail a,
.contact-detail p {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;

    color: #3e3e3e;

    text-decoration: none;
}


.contact-detail a:hover {
    color: #2f94d3;
}


/* =========================================
                FORM WRAPPER
========================================= */

.contact-form-wrapper {
    width: 100%;

    max-width: 620px;

    margin-left: auto;

    padding: 35px;

    border-radius: 16px;

    border: 1px solid rgba(47, 148, 211, 0.4);

    box-shadow:
        0 10px 30px rgba(47, 148, 211, 0.08);
}


/* FORM TITLE */

.contact-form-wrapper h3 {
    margin: 0;

    text-align: center;

    font-family: "Inter", sans-serif;

    font-size: 24px;
    font-weight: 600;

    color: #222222;
}


.contact-form-wrapper > p {
    margin: 8px 0 25px;

    text-align: center;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    color: #555555;
}


/* =========================================
                FORM GROUP
========================================= */

.form-group {
    margin-bottom: 15px;
}


.form-group label {
    display: block;

    margin-bottom: 6px;

    font-family: "Inter", sans-serif;

    font-size: 11px;

    color: #333333;
}


/* =========================================
                INPUT BOX
========================================= */

.input-box {
    position: relative;

    display: flex;
    align-items: center;

    border: 1px solid rgba(47, 148, 211, 0.55);

    border-radius: 7px;

    transition: 0.3s ease;
}


.input-box:focus-within {
    border-color: #2f94d3;

    box-shadow:
        0 0 0 3px rgba(47, 148, 211, 0.1);
}


/* ICON */

.input-box i {
    position: absolute;

    left: 14px;

    color: #555555;

    font-size: 13px;
}


/* INPUT */

.input-box input,
.input-box textarea {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    color: #222222;
}


.input-box input {
    height: 46px;

    padding: 0 15px 0 42px;
}


.input-box textarea {
    min-height: 110px;

    padding: 15px 15px 15px 42px;

    resize: vertical;
}


/* TEXTAREA ICON */

.textarea-box i {
    top: 16px;
}


/* =========================================
                SUBMIT BUTTON
========================================= */

.contact-submit-btn {
    width: 100%;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 6px;

    background: #2f94d3;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    cursor: pointer;

    transition: 0.3s ease;
}


.contact-submit-btn:hover {
    transform: translateY(-3px);

    background: #247eb6;

    box-shadow:
        0 8px 20px rgba(47, 148, 211, 0.3);
}


/* =========================================
                STATUS MESSAGE
========================================= */

.form-status {
    text-align: center;

    margin-top: 15px;
}


.success-message {
    color: #28a745;

    font-family: "Inter", sans-serif;

    font-size: 14px;
}


.error-message {
    color: #dc3545;

    font-family: "Inter", sans-serif;

    font-size: 14px;
}


/* =========================================
                TABLET
========================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 0px 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-info {
        max-width: 600px;
    }

    .contact-form-wrapper {
        margin: 0;

        max-width: 100%;
    }

}


/* =========================================
                MOBILE
========================================= */

@media (max-width: 576px) {

    .contact-section {
        padding: 0px 20px;
    }

    .contact-container {
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-intro {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px 18px;

        border-radius: 12px;
    }

    .contact-form-wrapper h3 {
        font-size: 21px;
    }

    .contact-detail {
        gap: 14px;
    }

    .contact-detail-icon {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .input-box input {
        height: 45px;
    }

    .contact-submit-btn {
        height: 48px;
    }

}