@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Archivo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
section,
label,
ul,
li,
form {
    padding: 0px;
    margin: 0px;
}

html body {
    background: rgb(247 247 247);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

:root {
    --primary-color: #03316C;
    --secondary-color: #067AAE;
    --black-color: #1A1A1A;
    --white-color: #FFFFFF;
    --text-color-1: #818181;
    --border-color: #CCCCCC;
}

/* Topbar */
.topbar {
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 48.7px 0px;
    padding: 12px 0px;
}

.topbar .content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.topbar .content ul li a {
    color: var(--text-color-1);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.topbar .content ul li.wa a {
    color: var(--black-color);
    font-weight: 500;
}

.topbar .content ul li.wa a span {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 23px;
    padding: 4px 9px 2px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
}

.topbar .content ul li.wa a img {
    height: 19px;
    width: 19px;
    min-width: 19px;
    object-fit: contain;
}

/* Header */
header {
    padding: 24px 0px;
}

header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    max-width: 158px;
    width: 100%;
}

.logo a {
    width: 100%;
    display: block;
}

.logo a img {
    width: 100%;
}

.navbars nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbars nav ul li a {
    font-size: 17px;
    color: var(--primary-color);
}

.navbars nav ul li:hover a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

header .content a.button-head {
    font-size: 17px;
    color: var(--primary-color);
    padding: 15px;
    line-height: 1;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
}

header .content a.button-head i {
    color: var(--secondary-color);
}

header .content a.button-head:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* Hero */
.hero-section .content {
    padding: 80px 0 24px;
    border-radius: 24px;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.hero-section .content .image-left {
    aspect-ratio: .761905;
    width: 25%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: var(auto, 394px);
}

.hero-section .content .image-right {
    aspect-ratio: 1.14;
    width: 40%;
    position: absolute;
    bottom: 0;
    right: 0;
    height: var(auto, 421px);
}

.hero-section .content .image-left img,
.hero-section .content .image-right img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}

.hero-section .content .image-left img {
    object-position: center right;
}

.hero-section .content .box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
    position: relative;
    z-index: 1;
}

.hero-section .content .box-content .box-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}

.hero-section .content .box-content .sub-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
    opacity: 0.5;
    text-transform: uppercase;
}

.hero-section .content .box-content .title {
    text-align: center;
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.2;
}

.hero-section .content .box-content .title span {
    font-size: 80px;
}

.hero-section .content .box-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.hero-section .content .box-bottom .line {
    opacity: 0.3;
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 2.5px;
}

.hero-section .content .box-bottom .process-btn {
    background-color: var(--white-color);
    border-radius: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 11.5px #0000001f;
    font-size: 18px;
    color: var(--primary-color);
}

/* learn more */
.learn-more {
    padding-top: 80px;
}

.learn-more .content p {
    font-size: 22px;
    color: var(--black-color);
    margin-bottom: 21px;
}

.learn-more .content a.contact-btn,
.more_projects {
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 20px;
    color: var(--white-color);
    border: 3px solid var(--primary-color);
    background-color: var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.learn-more .content a.contact-btn:hover,
.more_projects:hover {
    background-color: transparent;
    color: var(--primary-color);
}

section.client-stories {
    background-color: var(--white-color);
    padding: 80px 0px;
}

section.client-stories h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

section.client-stories .content {
    overflow-x: scroll;
    width: 100%;
    display: flex;
    gap: 24px;
    padding-bottom: 12px;
}

section.client-stories .content::-webkit-scrollbar {
    height: 8px;
}

section.client-stories .content::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

section.client-stories .content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

section.client-stories .content .box {
    flex: 1 0 0;
    width: 1px;
    min-width: 312px;
    height: auto;
    position: relative;
}

section.client-stories .content .box video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
}

section.client-stories .content .box .video {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

section.client-stories .content .box .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    background-color: #03316C80;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

section.client-stories .content .box h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

section.client-stories .content .box p {
    font-size: 18px;
    color: var(--text-color-1);
    margin-top: 4px;
}




.construction-section {
    overflow: hidden;
    padding: 80px 0px;
    background-color: var(--white-color);
}

.construction-section.construction-service {
    background-color: transparent;
}

.construction-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 950px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.auto-scroll {
    position: relative;
    display: flex;
    gap: 25px;
    width: max-content;
    animation: autoScroll 25s linear infinite;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.construction-section .content {
    position: relative;
    overflow: hidden;
}

.construction-section .content::before,
.construction-section .content::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.construction-section .content::before {
    left: 0;
    background: linear-gradient(to right,
            var(--white-color) 0%,
            rgba(255, 255, 255, 0.85) 35%,
            rgba(255, 255, 255, 0) 100%);
}

.construction-section .content::after {
    right: 0;
    background: linear-gradient(to left,
            var(--white-color) 0%,
            rgba(255, 255, 255, 0.85) 35%,
            rgba(255, 255, 255, 0) 100%);
}

.construction-section.construction-service .content::before {
    left: 0;
    background: linear-gradient(to right,
            rgba(247, 247, 247, 1) 0%,
            rgba(247, 247, 247, 0.85) 35%,
            rgba(247, 247, 247, 0) 100%);
}

.construction-section.construction-service .content::after {
    right: 0;
    background: linear-gradient(to left,
            rgba(247, 247, 247, 1) 0%,
            rgba(247, 247, 247, 0.85) 35%,
            rgba(247, 247, 247, 0) 100%);
}

.auto-scroll .box {
    flex: 0 0 350px;
    padding: 16px;
    border-radius: 16px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
}

.construction-section .box .image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.construction-section .box .image a {
    position: absolute;
    z-index: 1;
    white-space: nowrap;
    left: 24px;
    bottom: 24px;
    color: var(--white-color);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.construction-section .box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    /* filter: brightness(0.75); */
}

.construction-section .box .icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 58px;
    min-width: 58px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.construction-section .box h3 {
    font-size: 24px;
    font-weight: 600;
    max-width: 68%;
    margin-bottom: 24px;
}

.accomplishments-section {
    background: var(--white-color);
    padding: 70px 0px;
    text-align: center;
}

.accomplishments-title {
    margin-bottom: 40px;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.accomplishments-row {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}

.accomplishment-item {
    width: 100%;
    text-align: center;
}

.counter {
    color: var(--black-color);
    font-size: 76px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2px;
}

.counter-number {
    display: inline-block;
}

.counter sup {
    position: relative;
    top: -25px;
    margin-left: 3px;
    letter-spacing: 0;
}

.accomplishment-item p {
    margin: 14px 0 0;
    color: var(--text-color-1);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 400;
}

.counter-divider {
    width: 1px;
    height: 74px;
    background: var(--border-color);
    flex-shrink: 0;
}

@media (max-width: 767px) {

    .accomplishments-section {
        padding: 50px 15px;
    }

    .accomplishments-title {
        font-size: 27px;
        margin-bottom: 35px;
    }

    .accomplishments-row {
        flex-wrap: wrap;
        gap: 25px 0;
    }

    .accomplishment-item {
        width: 33.333%;
    }

    .counter-divider {
        height: 55px;
    }

    .counter {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .counter sup {
        top: -14px;
    }

    .accomplishment-item p {
        font-size: 14px;
        margin-top: 10px;
    }
}


@media (max-width: 500px) {

    .accomplishments-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .accomplishment-item {
        width: 100%;
    }

    .counter-divider {
        display: none;
    }

    .counter {
        font-size: 50px;
    }
}

/* =========================================
   LATEST PROJECTS
========================================= */

.latest-projects {
    padding: 80px 0;
}

.projects-header h2 {
    margin: 0 0 28px;
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
}

.project-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.filter-btn {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    color: var(--black-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.filter-btn.active:hover {
    color: var(--white-color);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.project-item {
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.project-item.hide {
    display: none;
}

.project-card {
    position: relative;
    height: 405px;
    overflow: hidden;
    border-radius: 12px;
}

.project-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0));
    pointer-events: none;
}

.project-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.project-info h3 {
    margin: 0 0 3px;
    color: var(--white-color);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
}

.project-info p {
    margin: 0;
    color: var(--white-color);
    opacity: 0.75;
    font-size: 12px;
    line-height: 1.3;
}


/* Image hover */

.project-card:hover img {
    transform: scale(1.04);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .latest-projects {
        padding: 55px 0 65px;
    }

    .projects-header h2 {
        font-size: 32px;
    }

    .project-card {
        height: 350px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .latest-projects {
        padding: 45px 0 55px;
    }

    .projects-header h2 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .project-filters {
        gap: 8px;
        margin-bottom: 30px;

        overflow-x: auto;
        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .project-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
    }

    .project-card {
        height: 330px;
        border-radius: 10px;
    }
}


/* Small mobile */

@media (max-width: 480px) {

    .project-card {
        height: 300px;
    }

    .project-info {
        left: 15px;
        bottom: 14px;
    }

    .project-info h3 {
        font-size: 16px;
    }
}


.why-section {
    padding: 80px 0px;
    background-color: var(--primary-color);
}

.why-section .title {
    font-size: 24px;
    color: var(--white-color);
    opacity: .75;
    margin-bottom: 24px;
    padding-bottom: 24px;
    position: relative;
    display: inline-block;
}

.why-section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.why-section h2 {
    color: var(--white-color);
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 580px;
}

.why-section h2 span {
    color: var(--secondary-color);
}

.why-section a {
    font-style: italic;
    font-size: 20px;
    color: var(--white-color);
    font-weight: 300;
}


/* =========================
   EXPENSE & PROGRESS
========================= */

.expense-progress-section {
    background: var(--primary-color);
    padding: 80px 0;
    overflow: hidden;
}

.expense-progress-heading {
    margin-bottom: 42px;
}

.expense-progress-heading h2 {
    color: var(--white-color);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 10px;
}

.expense-progress-heading p {
    color: var(--border-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}


/* Cards */

.expense-progress-card {
    height: 410px;
    background: var(--white-color);
    border-radius: 7px;
    position: relative;
    overflow: hidden;
}

.expense-progress-card h3 {
    position: absolute;
    top: 24px;
    left: 25px;
    z-index: 2;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.32;
    font-weight: 700;
    margin: 0;
}

.expense-phone {
    position: absolute;
    z-index: 1;
}

.expense-phone img {
    width: 100%;
    height: auto;
    display: block;
}

.expense-phone-left {
    width: 330px;
    left: 155px;
    top: 88px;
    transform: rotate(13deg);
}

.expense-phone-right {
    width: 330px;
    left: 145px;
    top: 102px;
    transform: rotate(-2deg);
}


@media (max-width: 1199px) {
    .expense-phone-left {
        left: 130px;
        width: 310px;
    }

    .expense-phone-right {
        left: 125px;
        width: 310px;
    }
}

@media (max-width: 991px) {
    .expense-progress-card {
        height: 430px;
    }

    .expense-phone-left,
    .expense-phone-right {
        width: 330px;
        left: 50%;
    }

    .expense-phone-left {
        transform: translateX(-50%) rotate(10deg);
        top: 115px;
    }

    .expense-phone-right {
        transform: translateX(-50%) rotate(-3deg);
        top: 115px;
    }
}

@media (max-width: 575px) {
    .expense-progress-heading h2 {
        font-size: 23px;
    }

    .expense-progress-heading p {
        font-size: 13px;
    }

    .expense-progress-card {
        height: 380px;
    }

    .expense-progress-card h3 {
        top: 20px;
        left: 20px;
        font-size: 21px;
    }

    .expense-phone-left,
    .expense-phone-right {
        width: 290px;
        top: 110px;
    }
}



/* =========================
   TRANSPARENCY SECTION
========================= */

.transparency-section {
    background: var(--primary-color);
    padding: 15px 0 30px;
    overflow: hidden;
}

.transparency-title {
    text-align: center;
    margin-bottom: 42px;
}

.transparency-title h2 {
    color: var(--white-color);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.transparency-row {
    display: flex;
    gap: 15px;
    padding: 0 10px;
}

.transparency-card {
    flex: 1;
    height: 288px;
    position: relative;
    overflow: hidden;
    background: #ffffff20;
    border-radius: 7px;
}

.transparency-content {
    position: absolute;
    left: 22px;
    top: 63px;
    width: 48%;
    z-index: 3;
}

.transparency-content h3 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 15px;
}

.transparency-content p {
    color: var(--border-color);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: 270px;
}

.manager-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
}

.manager-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.progress-card .transparency-content {
    left: 22px;
    top: 63px;
    width: 53%;
}

.progress-card .transparency-content h3 {
    margin-bottom: 15px;
}

.progress-card .transparency-content p {
    color: var(--border-color);
}


/* Camera */

.camera-icon {
    margin-top: 30px;
    width: 90px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-icon img {
    width: 70px;
    height: auto;
}


.monitor-image {
    position: absolute;
    right: -5px;
    top: 0;
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.monitor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {

    .transparency-row {
        flex-direction: column;
    }

    .transparency-card {
        width: 100%;
        height: 320px;
    }

    .transparency-content {
        top: 55px;
    }
}


@media (max-width: 575px) {

    .transparency-section {
        padding: 10px 0 25px;
    }

    .transparency-title {
        margin-bottom: 25px;
    }

    .transparency-title h2 {
        font-size: 24px;
    }

    .transparency-card {
        height: 350px;
    }

    .transparency-content {
        left: 18px;
        top: 35px;
        width: 55%;
    }

    .transparency-content h3 {
        font-size: 20px;
    }

    .transparency-content p {
        font-size: 13px;
    }

    .manager-image,
    .monitor-image {
        width: 43%;
    }
}


.brokerage-section {
    background: var(--primary-color);
    padding: 80px 0;
    overflow: hidden;
}

.brokerage-heading {
    margin-bottom: 60px;
}

.brokerage-heading h2 {
    color: var(--white-color);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}


/* Main Box */

.brokerage-box {
    min-height: 210px;
    background: #ffffff20;
    border-radius: 10px;
    overflow: hidden;
}


/* Content */

.brokerage-content {
    padding-left: 40px;
}

.brokerage-content h3 {
    color: var(--white-color);
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
}


/* Button */

.brokerage-btn {
    width: 184px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white-color);
    color: var(--primary-color);

    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;

    transition: 0.3s ease;
}

.brokerage-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* Invoice Image */

.brokerage-image {
    height: 210px;
    overflow: hidden;
    border-radius: 10px;
}

.brokerage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Responsive */

@media (max-width: 991px) {

    .brokerage-heading {
        margin-bottom: 35px;
    }

    .brokerage-content {
        padding: 40px 25px;
    }

    .brokerage-content h3 {
        font-size: 21px;
    }

    .brokerage-image {
        height: 240px;
    }
}

@media (max-width: 575px) {

    .brokerage-heading h2 {
        font-size: 24px;
    }

    .brokerage-content {
        padding: 30px 20px;
    }

    .brokerage-content h3 {
        font-size: 19px;
    }

    .brokerage-image {
        height: 200px;
    }
}



.trusted-brands-section {
    padding: 80px 0;
    overflow: hidden;
}

.trusted-brands-title {
    text-align: center;
    margin-bottom: 50px;
}

.trusted-brands-title h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
}


/* Slider */

.trusted-brands-slider {
    width: 100%;
    overflow: hidden;
}

.trusted-brands-track {
    display: flex;
    align-items: center;
    width: max-content;

    animation: brandScroll 18s linear infinite;
}

.trusted-brand {
    width: 190px;
    height: 75px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 35px;
}

.trusted-brand img {
    width: 100%;
    max-width: 155px;
    height: 65px;

    object-fit: contain;
    display: block;
}


/* Continuous Auto Scroll */

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 17.5px));
    }
}


/* Mobile */

@media (max-width: 575px) {

    .trusted-brands-section {
        padding: 30px 0 35px;
    }

    .trusted-brands-title {
        margin-bottom: 30px;
    }

    .trusted-brands-title h2 {
        font-size: 23px;
    }

    .trusted-brand {
        width: 150px;
        height: 65px;
        margin-right: 20px;
    }

    .trusted-brand img {
        max-width: 125px;
        height: 55px;
    }

    .trusted-brands-track {
        animation-duration: 14s;
    }
}



.extra-benefits-section {
    background: var(--primary-color);
    padding: 80px 0;
    overflow: hidden;
}

.extra-benefits-title {
    text-align: center;
    margin-bottom: 45px;
}

.extra-benefits-title h2 {
    color: var(--white-color);
    font-size: 38px;
    font-weight: 700;
}


/* Card */

.benefit-card {
    height: 253px;
    background: #ffffff20;
    border: 1px solid #ffffff20;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow: hidden;

    padding-top: 38px;
}


/* Heading */

.benefit-card h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;

    margin: 0;
    position: relative;
    z-index: 2;
}


/* Icon */

.benefit-icon {
    position: absolute;
    left: 50%;
    bottom: 32px;

    width: 135px;
    height: 115px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Tablet */

@media (max-width: 991px) {

    .extra-benefits-section {
        padding: 40px 0 55px;
    }

    .extra-benefits-title {
        margin-bottom: 35px;
    }

    .extra-benefits-title h2 {
        font-size: 27px;
    }

    .benefit-card {
        height: 250px;
    }
}


/* Mobile */

@media (max-width: 575px) {

    .extra-benefits-section {
        padding: 35px 0 45px;
    }

    .extra-benefits-title {
        margin-bottom: 30px;
    }

    .extra-benefits-title h2 {
        font-size: 24px;
    }

    .benefit-card {
        height: 240px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-icon {
        width: 125px;
        height: 105px;
        bottom: 28px;
    }
}


.consultation-section {
    padding: 80px 0;
}

.consultation-form-box {
    background: var(--primary-color);
    border-radius: 7px;
    padding: 28px 29px;
    min-height: 574px;
}

.consultation-form-box h2 {
    color: var(--white-color);
    font-size: 30px;
    line-height: 1.18;
    font-weight: 600;
    margin: 0;
}

.form-subtitle {
    color: var(--white-color);
    font-size: 16px;
    margin: 10px 0 45px;
}


/* Inputs */

.consultation-form-box .form-control {
    height: 49px;
    border: 0;
    border-radius: 10px;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 16px;
    padding: 0 12px;
    margin-bottom: 11px;
    box-shadow: none;
}

.consultation-form-box .form-control::placeholder {
    color: var(--text-color-1);
}

.consultation-form-box textarea.form-control {
    height: 128px;
    resize: vertical;
    padding: 12px;
}

.submit-btn {
    width: 100%;
    height: 49px;
    border: 0;
    border-radius: 9px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: 1px;
}

.submit-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.consultation-info-box {
    background: var(--border-color);
    border-radius: 7px;
    overflow: hidden;
    min-height: 574px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.consultation-info-content {
    height: 194px;
    padding: 31px 29px 20px;
}

.consultation-info-content h2 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.18;
    font-weight: 500;
    margin: 0 0 10px;
}

.consultation-info-content p {
    color: var(--black-color);
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}


/* Image */

.consultation-image {
    height: 373px;
    position: relative;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Yellow CTA */

.estimation-btn {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 318px;
    height: 57px;

    background: var(--white-color);
    border-radius: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;
}


@media (max-width: 991px) {

    .consultation-form-box,
    .consultation-info-box {
        min-height: auto;
    }

    .consultation-info-content {
        height: auto;
        padding: 28px;
    }

    .consultation-image {
        height: 350px;
    }
}


@media (max-width: 575px) {

    .consultation-form-box {
        padding: 24px 20px;
    }

    .consultation-form-box h2,
    .consultation-info-content h2 {
        font-size: 24px;
    }

    .form-subtitle {
        margin-bottom: 30px;
    }

    .consultation-image {
        height: 280px;
    }

    .estimation-btn {
        width: 85%;
        height: 52px;
        font-size: 14px;
    }
}




.faq-section {
    padding: 80px 0;
    background: var(--white-color);
}

.faq-section .faq-title {
    margin-bottom: 45px;
}

.faq-section .faq-title h2 {
    color: var(--primary-color);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}


/* Main FAQ Box */

.faq-section .faq-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 53px 21px 0;
    overflow: hidden;
}


/* =========================
   TABS
========================= */

.faq-section .faq-tab {
    width: 100%;
    height: 62px;

    border: 1px solid var(--border-color);
    border-radius: 6px;

    background: var(--white-color);
    color: var(--text-color-1);

    font-size: 16px;
    font-weight: 400;

    transition: all 0.25s ease;
}

.faq-section .faq-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.faq-section .faq-tab:hover {
    border-color: var(--primary-color);
}

.faq-section .faq-content {
    display: none;
    margin-top: 35px;
}

.faq-section .faq-content.active {
    display: block;
}

.faq-section .faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-section .faq-item:last-child {
    border-bottom: none;
}

.faq-section .faq-question {
    width: 100%;
    min-height: 85px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 21px;
    text-align: left;
    color: var(--black-color);
    font-size: 17px;
    font-weight: 500;
    padding: 15px 0;
    cursor: pointer;
}

.faq-section .faq-plus {
    width: 15px;
    flex-shrink: 0;
    color: var(--text-color-1);
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-section .faq-answer p {
    color: var(--text-color-1);
    font-size: 15px;
    line-height: 1.6;
    margin: -5px 30px 20px 36px;
}

.faq-section .faq-item.open .faq-plus {
    transform: rotate(45deg);
    color: var(--black-color);
}

.faq-section .faq-item.open .faq-answer {
    max-height: 200px;
}

@media (max-width: 767px) {

    .faq-section {
        padding: 20px 0 40px;
    }

    .faq-section .faq-title {
        margin-bottom: 30px;
    }

    .faq-section .faq-title h2 {
        font-size: 24px;
    }

    .faq-section .faq-wrapper {
        padding: 25px 15px 0;
        border-radius: 12px;
    }

    .faq-section .faq-tab {
        height: 55px;
    }

    .faq-section .faq-content {
        margin-top: 25px;
    }

    .faq-section .faq-question {
        min-height: 70px;
        font-size: 15px;
        gap: 15px;
    }
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 60px 0;
    color: var(--black-color);
}

.footer-company {
    padding-right: 50px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 17px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s ease;
    color: var(--white-color);
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links>a {
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    margin-bottom: 11px;
    transition: 0.2s ease;
}

.footer-links>a:hover {
    color: var(--primary-color);
}

.footer-links>a.portfolio-btn {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
}

.footer-appointment {
    display: flex !important;
    align-items: flex-start;
    gap: 6px;
    margin-top: 3px;
    font-weight: 600;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 18px;
    line-height: 18px;
}

.footer-appointment b {
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--white-color);
    padding: 2px 7px;
    font-size: 12px;
    font-weight: 600;
}

.footer-appointment .arrow {
    font-size: 14px;
    line-height: 15px;
    margin-left: 0;
}

.payment-link {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.payment-link i {
    font-size: 16px;
}

.portfolio-btn {
    font-size: 17px;
    color: var(--primary-color);
    padding: 15px;
    line-height: 1;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {

    .site-footer {
        padding: 45px 0;
    }

    .footer-company {
        margin-bottom: 35px;
        padding-right: 20px;
    }

    .footer-links {
        margin-bottom: 25px;
    }
}


@media (max-width: 575px) {

    .site-footer {
        padding: 40px 0;
    }

    .footer-company {
        padding-right: 10px;
    }

    .footer-logo span {
        font-size: 26px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-links>a {
        font-size: 13px;
    }

    .footer-social {
        gap: 9px;
    }

    .footer-social a {
        width: 33px;
        height: 33px;
    }
}

/* =========================================
   MOBILE SIDE MENU
========================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: var(--primary-color);
    color: var(--white-color);

    border-radius: 6px;

    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;
}


/* Overlay */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Side Menu */

.mobile-side-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: 320px;
    max-width: 85%;

    height: 100vh;

    background: var(--white-color);

    z-index: 9999;

    padding: 25px;

    transform: translateX(100%);

    transition: transform 0.35s ease;

    overflow-y: auto;

    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
}

.mobile-side-menu.active {
    transform: translateX(0);
}


/* Menu Header */

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-logo {
    width: 145px;
}

.mobile-menu-logo img {
    width: 100%;
    display: block;
}


/* Close Button */

.mobile-menu-close {
    width: 40px;
    height: 40px;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    background: var(--white-color);
    color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;

    cursor: pointer;
}


/* Mobile Navigation */

.mobile-nav {
    margin-top: 25px;
}

.mobile-nav ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;

    min-height: 55px;

    color: var(--primary-color);

    font-size: 17px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.25s ease;
}

.mobile-nav ul li a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}


/* Portfolio */

.mobile-portfolio-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    height: 50px;

    margin-top: 30px;

    border: 1px solid var(--border-color);
    border-radius: 6px;

    background: var(--white-color);

    color: var(--primary-color);

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.3s ease;
}

.mobile-portfolio-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/* =========================================
   TABLET + MOBILE
========================================= */

@media (max-width: 991px) {

    header {
        padding: 18px 0;
    }

    header .content {
        gap: 15px;
    }

    .navbars {
        display: none;
    }

    header .content a.button-head {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .mobile-side-menu {
        width: 290px;
        padding: 20px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .logo {
        max-width: 140px;
    }

}


/* =========================================================
   COMPLETE RESPONSIVE CSS
   Paste this at the VERY BOTTOM of your CSS file
========================================================= */


/* =========================================================
   GLOBAL RESPONSIVE
========================================================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

.container {
    width: 100%;
}


/* =========================================================
   HEADER + MOBILE SIDE MENU
========================================================= */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 7px;
    background: var(--primary-color);
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--white-color);
    z-index: 9999;
    padding: 25px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.18);
}

.mobile-side-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-logo {
    width: 145px;
    display: block;
}

.mobile-menu-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
}

.mobile-nav {
    margin-top: 20px;
}

.mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a {
    min-height: 55px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s ease;
}

.mobile-nav ul li a:hover {
    color: var(--secondary-color);
    padding-left: 7px;
}

.mobile-portfolio-btn {
    width: 100%;
    height: 50px;
    margin-top: 28px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .hero-section .content .box-content .title {
        font-size: 45px;
    }

    .hero-section .content .box-content .title span {
        font-size: 70px;
    }

    .expense-phone-left {
        left: 120px;
    }

    .expense-phone-right {
        left: 115px;
    }

    .transparency-content h3 {
        font-size: 21px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    /* ---------- Header ---------- */

    header {
        padding: 18px 0;
    }

    header .content {
        gap: 15px;
    }

    .navbars {
        display: none !important;
    }

    header .content a.button-head {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }


    /* ---------- Topbar ---------- */

    .topbar {
        padding: 9px 0;
    }

    .topbar .content ul {
        gap: 12px;
        flex-wrap: wrap;
    }

    .topbar .content ul li a {
        font-size: 13px;
    }


    /* ---------- Hero ---------- */

    .hero-section .content {
        padding: 55px 25px 25px;
        border-radius: 18px;
    }

    .hero-section .content .image-left {
        width: 27%;
    }

    .hero-section .content .image-right {
        width: 42%;
    }

    .hero-section .content .box-content {
        gap: 35px;
    }

    .hero-section .content .box-content .sub-title {
        font-size: 20px;
    }

    .hero-section .content .box-content .title {
        font-size: 38px;
    }

    .hero-section .content .box-content .title span {
        font-size: 58px;
    }


    /* ---------- Learn More ---------- */

    .learn-more {
        padding-top: 55px;
    }

    .learn-more .content p {
        font-size: 19px;
    }

    .learn-more .content a.contact-btn,
    .more_projects {
        font-size: 17px;
        padding: 14px 30px;
    }


    /* ---------- Client Stories ---------- */

    section.client-stories {
        padding: 55px 0;
    }

    section.client-stories h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    section.client-stories .content {
        gap: 18px;
    }

    section.client-stories .content .box {
        min-width: 290px;
    }


    /* ---------- Construction ---------- */

    .construction-section {
        padding: 55px 0;
    }

    .construction-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .auto-scroll {
        gap: 18px;
    }

    .auto-scroll .box {
        flex: 0 0 300px;
    }


    /* ---------- Accomplishments ---------- */

    .accomplishments-section {
        padding: 55px 0;
    }

    .accomplishments-title {
        font-size: 32px;
    }

    .counter {
        font-size: 60px;
    }

    .accomplishment-item p {
        font-size: 17px;
    }


    /* ---------- Latest Projects ---------- */

    .latest-projects {
        padding: 55px 0 60px;
    }

    .projects-header h2 {
        font-size: 32px;
    }

    .project-card {
        height: 350px;
    }


    /* ---------- Why Section ---------- */

    .why-section {
        padding: 55px 0;
    }

    .why-section h2 {
        font-size: 45px;
    }

    .why-section a {
        font-size: 18px;
    }


    /* ---------- Expense ---------- */

    .expense-progress-section {
        padding: 55px 0;
    }

    .expense-progress-heading h2 {
        font-size: 28px;
    }

    .expense-progress-card {
        height: 420px;
    }


    /* ---------- Transparency ---------- */

    .transparency-section {
        padding: 40px 0;
    }

    .transparency-title h2 {
        font-size: 32px;
    }

    .transparency-row {
        flex-direction: column;
        padding: 0;
    }

    .transparency-card {
        width: 100%;
        height: 320px;
    }

    .transparency-content {
        top: 55px;
    }


    /* ---------- Brokerage ---------- */

    .brokerage-section {
        padding: 55px 0;
    }

    .brokerage-heading {
        margin-bottom: 35px;
    }

    .brokerage-heading h2 {
        font-size: 32px;
    }

    .brokerage-content {
        padding: 35px 25px;
    }

    .brokerage-content h3 {
        font-size: 21px;
    }

    .brokerage-image {
        height: 240px;
    }


    /* ---------- Trusted Brands ---------- */

    .trusted-brands-section {
        padding: 55px 0;
    }

    .trusted-brands-title h2 {
        font-size: 32px;
    }


    /* ---------- Extra Benefits ---------- */

    .extra-benefits-section {
        padding: 55px 0;
    }

    .extra-benefits-title h2 {
        font-size: 32px;
    }

    .benefit-card {
        height: 250px;
    }


    /* ---------- Consultation ---------- */

    .consultation-section {
        padding: 55px 0;
    }

    .consultation-form-box,
    .consultation-info-box {
        min-height: auto;
    }

    .consultation-info-content {
        height: auto;
    }

    .consultation-image {
        height: 350px;
    }


    /* ---------- FAQ ---------- */

    .faq-section {
        padding: 55px 0;
    }

    .faq-section .faq-title h2 {
        font-size: 32px;
    }

    .faq-section .faq-wrapper {
        padding: 40px 20px 0;
    }


    /* ---------- Footer ---------- */

    .site-footer {
        padding: 50px 0;
    }

    .footer-company {
        margin-bottom: 35px;
        padding-right: 20px;
    }

    .footer-links {
        margin-bottom: 25px;
    }

    .hero-section .content .box-bottom {
        flex-direction: column;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* ---------- Container ---------- */

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* ---------- Topbar ---------- */

    .topbar .content ul {
        gap: 8px 14px;
    }

    .topbar .content ul li a {
        font-size: 12px;
    }


    /* ---------- Header ---------- */

    header {
        padding: 15px 0;
    }

    .logo {
        max-width: 145px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }


    /* ---------- Hero ---------- */

    .hero-section .content {
        min-height: 540px;
        padding: 40px 15px 20px;
        border-radius: 14px;
    }

    .hero-section .content .image-left {
        width: 38%;
    }

    .hero-section .content .image-right {
        width: 55%;
    }

    .hero-section .content .box-content {
        gap: 28px;
    }

    .hero-section .content .box-content .sub-title {
        font-size: 16px;
    }

    .hero-section .content .box-content .title {
        font-size: 30px;
    }

    .hero-section .content .box-content .title span {
        font-size: 44px;
    }

    .hero-section .content .box-bottom {
        gap: 8px;
        padding: 8px;
    }

    .hero-section .content .box-bottom .line {
        font-size: 17px;
    }

    .hero-section .content .box-bottom .process-btn {
        font-size: 14px;
        padding: 9px 15px;
    }


    /* ---------- Learn More ---------- */

    .learn-more {
        padding-top: 40px;
    }

    .learn-more .content p {
        font-size: 17px;
        line-height: 1.5;
    }

    .learn-more .content a.contact-btn,
    .more_projects {
        font-size: 15px;
        padding: 13px 25px;
    }


    /* ---------- Client Stories ---------- */

    section.client-stories {
        padding: 45px 0;
    }

    section.client-stories h2 {
        font-size: 27px;
        margin-bottom: 25px;
    }

    section.client-stories .content {
        gap: 15px;
        padding-bottom: 5px;
    }

    section.client-stories .content .box {
        min-width: 260px;
    }

    section.client-stories .content .box h3 {
        font-size: 19px;
    }

    section.client-stories .content .box p {
        font-size: 15px;
    }

    section.client-stories .content .box .play-icon {
        width: 60px;
        height: 60px;
    }


    /* ---------- Construction ---------- */

    .construction-section {
        padding: 45px 0;
    }

    .construction-section h2 {
        font-size: 27px;
        margin-bottom: 25px;
    }

    .auto-scroll {
        gap: 14px;
    }

    .auto-scroll .box {
        flex: 0 0 260px;
        padding: 12px;
    }

    .construction-section .box h3 {
        font-size: 19px;
    }


    /* ---------- Accomplishments ---------- */

    .accomplishments-section {
        padding: 45px 15px;
    }

    .accomplishments-title {
        font-size: 27px;
        margin-bottom: 30px;
    }

    .accomplishments-row {
        flex-wrap: wrap;
        gap: 25px 0;
    }

    .accomplishment-item {
        width: 33.333%;
    }

    .counter {
        font-size: 44px;
    }

    .counter sup {
        top: -14px;
    }

    .accomplishment-item p {
        font-size: 14px;
        margin-top: 8px;
    }

    .counter-divider {
        height: 50px;
    }


    /* ---------- Latest Projects ---------- */

    .latest-projects {
        padding: 45px 0 50px;
    }

    .projects-header h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .project-filters {
        gap: 7px;
        margin-bottom: 25px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .project-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 13px;
    }

    .project-card {
        height: 330px;
        border-radius: 10px;
    }


    /* ---------- Why ---------- */

    .why-section {
        padding: 45px 0;
    }

    .why-section .title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .why-section h2 {
        font-size: 35px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .why-section a {
        font-size: 16px;
    }


    /* ---------- Expense ---------- */

    .expense-progress-section {
        padding: 45px 0;
    }

    .expense-progress-heading {
        margin-bottom: 28px;
    }

    .expense-progress-heading h2 {
        font-size: 24px;
    }

    .expense-progress-heading p {
        font-size: 13px;
    }

    .expense-progress-card {
        height: 380px;
    }

    .expense-progress-card h3 {
        top: 20px;
        left: 20px;
        font-size: 20px;
    }

    .expense-phone-left,
    .expense-phone-right {
        width: 285px;
        left: 50%;
    }

    .expense-phone-left {
        top: 105px;
        transform: translateX(-50%) rotate(9deg);
    }

    .expense-phone-right {
        top: 105px;
        transform: translateX(-50%) rotate(-3deg);
    }


    /* ---------- Transparency ---------- */

    .transparency-section {
        padding: 35px 0;
    }

    .transparency-title {
        margin-bottom: 25px;
    }

    .transparency-title h2 {
        font-size: 27px;
    }

    .transparency-card {
        height: 330px;
    }

    .transparency-content {
        left: 18px;
        top: 35px;
        width: 54%;
    }

    .transparency-content h3 {
        font-size: 20px;
    }

    .transparency-content p {
        font-size: 13px;
    }

    .manager-image,
    .monitor-image {
        width: 44%;
    }

    .camera-icon {
        margin-top: 20px;
        width: 75px;
        height: 31px;
    }

    .camera-icon img {
        width: 60px;
    }


    /* ---------- Brokerage ---------- */

    .brokerage-section {
        padding: 45px 0;
    }

    .brokerage-heading {
        margin-bottom: 30px;
    }

    .brokerage-heading h2 {
        font-size: 27px;
    }

    .brokerage-content {
        padding: 28px 20px;
    }

    .brokerage-content h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .brokerage-btn {
        width: 170px;
        height: 52px;
        font-size: 15px;
    }

    .brokerage-image {
        height: 210px;
    }


    /* ---------- Brands ---------- */

    .trusted-brands-section {
        padding: 45px 0;
    }

    .trusted-brands-title {
        margin-bottom: 30px;
    }

    .trusted-brands-title h2 {
        font-size: 27px;
    }

    .trusted-brand {
        width: 150px;
        height: 65px;
        margin-right: 20px;
    }

    .trusted-brand img {
        max-width: 125px;
        height: 55px;
    }

    .trusted-brands-track {
        animation-duration: 14s;
    }


    /* ---------- Benefits ---------- */

    .extra-benefits-section {
        padding: 45px 0;
    }

    .extra-benefits-title {
        margin-bottom: 30px;
    }

    .extra-benefits-title h2 {
        font-size: 27px;
    }

    .benefit-card {
        height: 235px;
    }

    .benefit-card h3 {
        font-size: 17px;
    }

    .benefit-icon {
        width: 120px;
        height: 100px;
        bottom: 25px;
    }


    /* ---------- Consultation ---------- */

    .consultation-section {
        padding: 45px 0;
    }

    .consultation-form-box {
        padding: 25px 20px;
    }

    .consultation-form-box h2,
    .consultation-info-content h2 {
        font-size: 25px;
    }

    .form-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .consultation-form-box .form-control {
        font-size: 14px;
    }

    .consultation-image {
        height: 290px;
    }

    .estimation-btn {
        width: 85%;
        height: 50px;
        font-size: 13px;
    }


    /* ---------- FAQ ---------- */

    .faq-section {
        padding: 45px 0;
    }

    .faq-section .faq-title {
        margin-bottom: 28px;
    }

    .faq-section .faq-title h2 {
        font-size: 27px;
    }

    .faq-section .faq-wrapper {
        padding: 25px 15px 0;
        border-radius: 12px;
    }

    .faq-section .faq-tab {
        height: 54px;
        font-size: 15px;
    }

    .faq-section .faq-content {
        margin-top: 20px;
    }

    .faq-section .faq-question {
        min-height: 68px;
        font-size: 15px;
        gap: 13px;
    }

    .faq-section .faq-plus {
        font-size: 22px;
    }

    .faq-section .faq-answer p {
        font-size: 14px;
        margin-left: 30px;
    }


    /* ---------- Footer ---------- */

    .site-footer {
        padding: 45px 0;
    }

    .footer-company {
        margin-bottom: 30px;
        padding-right: 10px;
    }

    .footer-links {
        margin-bottom: 25px;
    }

    .footer-links>a {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    /* ---------- Header ---------- */

    .topbar .content ul {
        gap: 6px 10px;
    }

    .topbar .content ul li a {
        font-size: 11px;
    }

    .logo {
        max-width: 135px;
    }

    .mobile-side-menu {
        width: 290px;
        padding: 20px;
    }


    /* ---------- Hero ---------- */

    .hero-section .content {
        min-height: 500px;
        padding: 35px 10px 15px;
    }

    .hero-section .content .image-left {
        width: 40%;
    }

    .hero-section .content .image-right {
        width: 58%;
    }

    .hero-section .content .box-content .sub-title {
        font-size: 14px;
    }

    .hero-section .content .box-content .title {
        font-size: 25px;
    }

    .hero-section .content .box-content .title span {
        font-size: 36px;
    }


    /* ---------- Accomplishments ---------- */

    .accomplishments-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .accomplishment-item {
        width: 100%;
    }

    .counter-divider {
        display: none;
    }

    .counter {
        font-size: 48px;
    }


    /* ---------- Expense ---------- */

    .expense-progress-card {
        height: 365px;
    }

    .expense-phone-left,
    .expense-phone-right {
        width: 275px;
    }


    /* ---------- Transparency ---------- */

    .transparency-card {
        height: 350px;
    }

    .transparency-content {
        width: 55%;
    }

    .transparency-content h3 {
        font-size: 19px;
    }


    /* ---------- Benefits ---------- */

    .benefit-card {
        height: 235px;
    }


    /* ---------- Consultation ---------- */

    .consultation-form-box {
        padding: 22px 17px;
    }

    .consultation-form-box h2,
    .consultation-info-content h2 {
        font-size: 23px;
    }

    .consultation-image {
        height: 260px;
    }

    .estimation-btn {
        width: 88%;
        font-size: 12px;
    }


    /* ---------- FAQ ---------- */

    .faq-section .faq-title h2 {
        font-size: 23px;
    }

    .faq-section .faq-wrapper {
        padding: 20px 12px 0;
    }

    .faq-section .faq-tab {
        height: 50px;
        font-size: 14px;
    }

    .faq-section .faq-question {
        min-height: 65px;
        font-size: 14px;
    }


    /* ---------- Footer ---------- */

    .footer-company {
        padding-right: 0;
    }

    .footer-logo span {
        font-size: 25px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-links>a {
        font-size: 13px;
    }

    .footer-social {
        gap: 9px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-section .content {
        min-height: 460px;
    }

    .hero-section .content .box-content .title {
        font-size: 22px;
    }

    .hero-section .content .box-content .title span {
        font-size: 31px;
    }

    .construction-section h2,
    .projects-header h2,
    .trusted-brands-title h2,
    .extra-benefits-title h2 {
        font-size: 24px;
    }

    .project-card {
        height: 300px;
    }

    .expense-progress-card {
        height: 350px;
    }

    .expense-phone-left,
    .expense-phone-right {
        width: 250px;
    }

    .transparency-card {
        height: 340px;
    }

    .benefit-card {
        height: 225px;
    }

    .faq-section .faq-question {
        font-size: 13px;
    }

    .mobile-side-menu {
        width: 275px;
    }

}






/* Inner Pages */
.inner_hero {
    background-color: #e3efff;
    padding-top: 80px;
}

.inner_hero .content {
    max-width: 940px;
    width: 100%;
    margin: auto auto 40px;
    text-align: center;
}

.inner_hero .content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.inner_hero .content p {
    font-size: 18px;
    color: var(--text-color-1);
    margin-bottom: 24px;
}

.inner_hero .content span {
    font-size: 20px;
    text-transform: uppercase;
    font-style: italic;
    color: var(--secondary-color);
    opacity: 0.75;
}

.inner_hero .section_image img,
.inner-hero-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.inner-hero-2 {
    position: relative;
}

.inner-hero-2::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 100%);
}

.our-team-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--primary-color);
}

.our-team-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(6, 122, 174, 0.06);
    top: -180px;
    right: -120px;
}

.our-team-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(3, 49, 108, 0.04);
    bottom: -150px;
    left: -120px;
}

.our-team-section .container {
    position: relative;
    z-index: 2;
}

.team-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-tag::before,
.section-tag::after {
    content: "";
    width: 25px;
    height: 1px;
    background: var(--white-color);
}

.team-heading h2 {
    margin: 0 0 15px;
    color: var(--white-color);
    font-size: 38px;
    font-weight: 700;
}

.team-heading h2 span {
    color: var(--secondary-color);
}

.team-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--white-color);
    opacity: 0.75;
    font-size: 16px;
    line-height: 1.7;
}

.team_leaders {
    border-radius: 24px 24px 0px 0px;
    position: relative;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 80px;
    overflow: hidden;
}

.team_leaders::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF00 20%, var(--primary-color) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
}

.team-card:nth-child(1),
.team-card:nth-child(2),
.team-card:nth-child(3) {
    grid-column: span 4;
}

.team-card:nth-child(n + 4) {
    grid-column: span 3;
}

.team-card {
    background: var(--white-color);
    border: 1px solid rgba(204, 204, 204, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 122, 174, 0.3);
    box-shadow: 0 20px 45px rgba(3, 49, 108, 0.12);
}

.team-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.07);
}

.team-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(3, 49, 108, 0.65),
            transparent 45%);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-social {
    position: absolute;
    z-index: 3;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(60px);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateX(0);
    opacity: 1;
}

.team-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.team-content {
    padding: 23px 22px 25px;
}

.team-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.team-content h3 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.team-content p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1199px) {

    .our-team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-card {
        grid-column: span 1 !important;
    }

    .team-image {
        height: 360px;
    }

    .team-heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .our-team-section {
        padding: 65px 0;
    }

    .team-heading {
        margin-bottom: 35px;
    }

    .team-heading h2 {
        font-size: 32px;
    }

    .team-heading p {
        font-size: 14px;
        padding: 0 10px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        grid-column: span 1 !important;
    }

    .team-image {
        height: 380px;
    }

    .team-content {
        padding: 20px;
    }

    .team-content h3 {
        font-size: 21px;
    }

    /* Always show social icons slightly on mobile */
    .team-social {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {

    .our-team-section {
        padding: 55px 0;
    }

    .team-heading h2 {
        font-size: 28px;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .team-image {
        height: 330px;
    }
}


/* =========================================
   MAIN SECTION
========================================= */

.contact-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--white-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: stretch;
}

.contact-info {
    padding: 20px 0px;
}

.contact-heading {
    max-width: 520px;
    margin-bottom: 30px;
}

.contact-heading h2 {
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
}

.contact-heading p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 18px;
    line-height: 1.55;
}

.contact-item {
    display: flex;
    align-items: center;
    min-height: 110px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 17px;
    background: var(--border-color);
    border-radius: 7px;
    color: var(--black-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.contact-details h4 {
    margin: 0 0 8px;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
}

.contact-details p {
    margin: 3px 0;
    color: var(--black-color);
    font-size: 16px;
    line-height: 1.5;
}

.contact-form-box {
    position: relative;
    padding: 28px;
    background: var(--primary-color);
    border-radius: 7px;
    overflow: hidden;
}

.form-heading {
    padding: 0 0 25px;
}

.form-heading h2 {
    margin: 0px 0 10px;
    color: var(--white-color);
    font-size: 32px;
    font-weight: 600;
}

.form-heading p {
    margin: 0;
    color: var(--white-color);
    font-size: 16px;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    outline: none;
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input {
    height: 49px;
    padding: 0 12px;
}

.form-group textarea {
    height: 128px;
    padding: 14px 12px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color-1);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(6, 122, 174, 0.10);
}

.contact-submit {
    width: 100%;
    height: 49px;
    margin-top: 0;
    border: none;
    border-radius: 9px;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white-color);
}

.contact-submit:active {
    transform: translateY(0);
}

@media (max-width: 991px) {

    .contact-section {
        padding: 70px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-heading {
        max-width: 700px;
    }

    .contact-form-box {
        padding: 35px 25px 25px;
        border-radius: 8px;
    }

    .form-heading h2 {
        margin: 0 0 10px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 55px 15px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-heading h2 {
        font-size: 28px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-item {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;

        margin-right: 14px;

        font-size: 20px;
    }

    .contact-details h4 {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .contact-form-box {
        padding: 30px 18px 20px;
    }

    .form-heading h2 {
        font-size: 26px;
    }

    .form-heading p {
        font-size: 14px;
    }

    .form-group input {
        height: 48px;
    }

    .form-group textarea {
        height: 120px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contact-heading h2 {
        font-size: 25px;
    }

    .contact-item {
        flex-direction: row;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
    }

    .contact-details h4 {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .contact-details p {
        font-size: 12.5px;
    }

    .form-heading h2 {
        font-size: 23px;
    }
}


/* =========================================
   VISIT OUR OFFICE
========================================= */

.office-section {
    width: 100%;
    padding: 70px 0px;
    background: var(--white-color);
    border-top: 1px solid var(--border-color);
}

.office-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.office-top h2 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
}

.office-top p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 16px;
}

.office-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 4px;
}

.copy-address {
    height: 42px;
    padding: 0 22px;
    border: none;
    border-radius: 25px;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-address:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.open-map {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.open-map span {
    font-size: 16px;
}

.open-map:hover {
    color: var(--secondary-color);
}

.office-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 10px;
    min-height: 450px;
}

.office-hours {
    padding: 36px 38px;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 7px 7px 7px 7px;
    display: flex;
    flex-direction: column;
}

.office-hours h3 {
    margin: 0 0 30px;
    text-align: center;
    color: var(--white-color);
    font-size: 21px;
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--white-color);
    font-size: 16px;
}

.hours-row span {
    font-weight: 500;
}

.hours-row strong {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.appointment-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appointment-btn i {
    font-size: 18px;
}

.appointment-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.office-map {
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 7px;
    background: var(--border-color);
}

.office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    border: 0;
}

@media (max-width: 991px) {

    .office-section {
        padding: 60px 20px;
    }

    .office-top {
        margin-bottom: 30px;
    }

    .office-content {
        grid-template-columns: 320px 1fr;
    }

    .office-hours {
        padding: 30px 25px;
    }

    .hours-row {
        font-size: 13px;
    }

    .hours-row strong {
        font-size: 13px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .office-section {
        padding: 50px 15px;
    }

    .office-top {
        flex-direction: column;
        gap: 20px;
    }

    .office-top h2 {
        font-size: 28px;
    }

    .office-top p {
        font-size: 14px;
    }

    .office-actions {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }

    .copy-address {
        height: 40px;
        padding: 0 18px;
        font-size: 13px;
    }

    .open-map {
        font-size: 13px;
    }

    .office-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .office-hours {
        min-height: auto;
        padding: 30px 22px;
    }

    .office-hours h3 {
        margin-bottom: 25px;
    }

    .office-map {
        min-height: 350px;
        border-radius: 7px;
    }

    .office-map iframe {
        min-height: 350px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .office-top h2 {
        font-size: 25px;
    }

    .office-actions {
        align-items: center;
    }

    .copy-address {
        padding: 0 15px;
    }

    .office-hours {
        padding: 28px 18px;
    }

    .hours-row {
        gap: 10px;
        font-size: 12.5px;
    }

    .hours-row strong {
        font-size: 12px;
    }

    .appointment-btn {
        min-height: 55px;
        font-size: 14px;
    }

    .office-map,
    .office-map iframe {
        min-height: 300px;
    }
}



.privacy-policy-section {
    width: 100%;
    padding: 80px 20px 100px;
    background: var(--white-color);
}

.privacy-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.privacy-header {
    position: relative;
    margin-bottom: 45px;
    padding: 50px 45px;
    background: var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
}

.privacy-header::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -140px;
    border-radius: 50%;
    background: rgba(6, 122, 174, 0.35);
}

.privacy-header span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 12px;
    color: #7ed8f2;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.privacy-header h1 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--white-color);
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
}

.privacy-header p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.privacy-content {
    padding: 50px;
    background: rgb(247 247 247);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(3, 49, 108, 0.05);
}

.privacy-content>p:first-child {
    margin-top: 0;
    color: var(--text-color-1);
    font-size: 16px;
    line-height: 1.8;
}


.privacy-block {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.privacy-block:last-of-type {
    border-bottom: none;
}

.privacy-block h2 {
    margin: 0 0 16px;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.privacy-block h3 {
    margin: 22px 0 10px;
    color: var(--black-color);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.privacy-block p {
    margin: 0 0 14px;
    color: var(--text-color-1);
    font-size: 16px;
    line-height: 1.8;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block ul {
    margin: 12px 0 0;
    padding-left: 22px;
    list-style: disc;
}

.privacy-block li {
    margin-bottom: 10px;
    color: var(--text-color-1);
    font-size: 16px;
    line-height: 1.7;
}

.privacy-block li::marker {
    color: var(--secondary-color);
}

.privacy-content a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.grievance-box {
    margin: 20px 0;
    padding: 20px 25px;
    background: #f5f9fc;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.grievance-box p {
    margin: 5px 0;
    color: var(--black-color);
}

.grievance-box strong {
    color: var(--primary-color);
}


.privacy-note {
    margin-top: 35px;
    padding: 25px 28px;
    background: rgba(6, 122, 174, 0.07);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.privacy-note p {
    margin: 0 0 10px;
    color: var(--black-color);
    font-size: 15px;
    line-height: 1.7;
}

.privacy-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .privacy-policy-section {
        padding: 60px 20px 80px;
    }

    .privacy-header {
        padding: 40px 35px;
    }

    .privacy-header h1 {
        font-size: 40px;
    }

    .privacy-content {
        padding: 40px;
    }
}

@media (max-width: 767px) {

    .privacy-policy-section {
        padding: 45px 15px 60px;
    }

    .privacy-header {
        margin-bottom: 25px;
        padding: 35px 25px;

        border-radius: 12px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-header span {
        font-size: 10px;
    }

    .privacy-content {
        padding: 25px 20px;

        border-radius: 12px;
    }

    .privacy-content>p:first-child {
        font-size: 14px;
        line-height: 1.7;
    }

    .privacy-block {
        padding: 25px 0;
    }

    .privacy-block h2 {
        font-size: 20px;
    }

    .privacy-block h3 {
        font-size: 16px;
    }

    .privacy-block p,
    .privacy-block li {
        font-size: 14px;
    }

    .grievance-box {
        padding: 16px 18px;
    }

    .privacy-note {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .privacy-header {
        padding: 30px 20px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-content {
        padding: 22px 17px;
    }

    .privacy-block h2 {
        font-size: 19px;
    }

    .privacy-block ul {
        padding-left: 19px;
    }
}





/* =========================================
   MISSION & STORY SECTION
========================================= */

.mission-story-section {
    width: 100%;
    padding: 80px 0;
    padding-top: 0px;
    background-color: var(--white-color);
}

.mission-story-card {
    width: 100%;
    max-width: 960px;
    min-height: 315px;
    margin: 0 auto 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 9px;
    overflow: hidden;
}

/* Content */
.mission-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    background: var(--white-color);
}

.mission-story-content h2 {
    margin: 0 0 18px;
    color: var(--black-color);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.mission-story-content p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    max-width: 360px;
}

/* Image */
.mission-story-image {
    width: 100%;
    height: 100%;
    min-height: 315px;
    overflow: hidden;
}

.mission-story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .mission-story-card {
        max-width: 94%;
    }

    .mission-story-content {
        padding: 40px 45px;
    }

    .mission-story-content h2 {
        font-size: 25px;
    }

    .mission-story-content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {

    .mission-story-card {
        max-width: 94%;
        grid-template-columns: 1fr;
        margin-bottom: 15px;
    }

    /* Mobile par image upar */
    .mission-story-card:nth-child(1) .mission-story-image {
        order: -1;
    }

    .mission-story-card:nth-child(2) .mission-story-image {
        order: -1;
    }

    .mission-story-image {
        height: 280px;
        min-height: 280px;
    }

    .mission-story-content {
        padding: 35px 28px;
    }

    .mission-story-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mission-story-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .mission-story-card {
        max-width: 92%;
        border-radius: 7px;
    }

    .mission-story-image {
        height: 230px;
        min-height: 230px;
    }

    .mission-story-content {
        padding: 30px 22px;
    }

    .mission-story-content h2 {
        font-size: 22px;
    }

    .mission-story-content p {
        font-size: 13px;
        line-height: 1.65;
    }
}




.values-section {
    padding: 80px 0px;
    background: var(--white-color);
}

/* Heading */

.values-heading {
    margin-bottom: 28px;
}

.values-heading h2 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 700;
}

.values-heading p {
    margin: 0;
    color: var(--black-color);
    font-size: 16px;
}


/* Card */

.value-card {
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.value-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.value-card:hover .value-card-inner {
    transform: rotateY(180deg);
}


/* Front + Back */

.value-card-front,
.value-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* Front */

.value-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 42px;
    padding-bottom: 42px;
    background: var(--primary-color);
    border: 1px solid var(--border-color);
}

.value-card-front h3 {
    margin: 0 0 24px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}


/* Icon */

.value-icon {
    width: 118px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-color);
}

.value-icon i {
    color: var(--primary-color);
    font-size: 50px;
}


/* Back */

.value-card-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.back-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
}

.back-icon i {
    color: var(--white-color);
    font-size: 24px;
}

.value-card-back p {
    max-width: 140px;
    margin: 0;
    color: var(--border-color);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

@media (max-width: 991px) {

    .value-card {
        height: 200px;
    }

    .value-icon {
        width: 105px;
        height: 105px;
    }

    .value-icon i {
        font-size: 44px;
    }
}


@media (max-width: 767px) {

    .values-section {
        padding: 10px 0 35px;
    }

    .values-heading h2 {
        font-size: 24px;
    }

    .values-heading p {
        font-size: 12px;
    }

    .value-card {
        height: 190px;
    }

    .value-card-front {
        padding-top: 32px;
    }

    .value-card-front h3 {
        font-size: 9px;
    }

    .value-icon {
        width: 95px;
        height: 95px;
    }

    .value-icon i {
        font-size: 40px;
    }
}


@media (max-width: 480px) {

    .value-card {
        height: 180px;
    }

    .value-icon {
        width: 85px;
        height: 85px;
    }

    .value-icon i {
        font-size: 35px;
    }

    .value-card-back {
        padding: 15px;
    }

    .value-card-back p {
        font-size: 11px;
    }
}


/* ========================================= SAFETY COMPLIANCE SECTION ========================================= */
.safety-section {
    padding: 80px 0;
    overflow: hidden;
    background: var(--white-color);
}

/* Top Content */
.safety-top {
    padding: 0 25px;
    margin-bottom: 95px;
}

.safety-title h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--black-color);
}

.safety-title h2 span {
    font-weight: 700;
}

.safety-content {
    max-width: 500px;
}

.safety-content p {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-color);
}

.safety-content .safety-last-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.55;
}

/* ========================================= SLIDER ========================================= */
.safety-slider {
    width: 100%;
    overflow: hidden;
}

.safety-track {
    display: flex;
    width: max-content;
    gap: 13px;
    animation: safetyAutoScroll 28s linear infinite;
}

.safety-slider:hover .safety-track {
    animation-play-state: paused;
}

/* ========================================= CARD ========================================= */
.safety-card {
    width: 250px;
    min-width: 174px;
    height: 278px;
    position: relative;
    padding: 27px 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: var(--primary-color);
    border: 2px solid var(--white-color);
    border-radius: 6px;
    overflow: hidden;
}

/* Inner Border */
.safety-card::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid var(--white-color);
    border-radius: 2px;
    pointer-events: none;
}

/* Yellow Bottom Pattern */
.safety-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 22px;
    background: repeating-linear-gradient(135deg, rgba(220, 205, 0, .22) 0px, rgba(220, 205, 0, .22) 12px, transparent 12px, transparent 24px);
}

/* Card Heading */
.safety-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--white-color);
}

/* ========================================= ICON ========================================= */
.safety-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-card-icon i {
    font-size: 64px;
    color: var(--white-color);
}

/* ========================================= AUTO SCROLL ========================================= */
@keyframes safetyAutoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 6.5px));
    }
}

/* ========================================= RESPONSIVE ========================================= */
@media (max-width: 991px) {
    .safety-section {
        padding: 70px 0;
    }

    .safety-top {
        margin-bottom: 60px;
    }

    .safety-content {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .safety-section {
        padding: 60px 0;
    }

    .safety-top {
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .safety-title h2 {
        font-size: 23px;
    }

    .safety-content {
        max-width: 100%;
    }

    .safety-card {
        width: 165px;
        min-width: 165px;
        height: 220px;
    }
}

@media (max-width: 575px) {
    .safety-section {
        padding: 50px 0;
    }

    .safety-top {
        margin-bottom: 45px;
    }

    .safety-title h2 {
        font-size: 22px;
    }
}





























/* ==========================================
   COST CALCULATOR
========================================== */

.cost-calculator {
    width: 100%;
    min-height: 100vh;
    background: var(--white-color);
    padding-bottom: 85px;
    overflow: hidden;
}


/* ==========================================
   CATEGORY NAVIGATION
========================================== */

.calculator-categories {
    position: relative;
    width: 100%;
    padding: 15px 20px;

    display: flex;
    align-items: center;

    background: var(--white-color);
}

.category-track {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 0 35px;
}

.category-track::-webkit-scrollbar {
    display: none;
}


/* ==========================================
   CATEGORY ITEM
========================================== */

.category-item {
    flex: 0 0 96px;
    height: 96px;

    border: 1px solid var(--border-color);
    border-radius: 14px;

    background: var(--white-color);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    cursor: pointer;

    transition: .25s ease;

    color: var(--black-color);

    flex-shrink: 0;
}

.category-item:hover {
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.category-item.active {
    border: 2px solid var(--black-color);
    background: var(--white-color);
    color: var(--primary-color);
}

.category-item.selected {
    border-color: var(--primary-color);
}


/* ==========================================
   CATEGORY ICON
========================================== */

.category-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    filter: grayscale(1);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-item.active .category-icon,
.category-item.selected .category-icon {
    filter: grayscale(0);
}

.category-item span {
    font-size: 12px;
    white-space: nowrap;
}


/* ==========================================
   CATEGORY ARROWS
========================================== */

.category-arrow {
    position: absolute;
    z-index: 5;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: var(--white-color);

    box-shadow: 0 2px 8px rgba(0, 0, 0, .10);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: var(--black-color);
}

.category-prev {
    left: 5px;
}

.category-next {
    right: 5px;
}

.category-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}


/* ==========================================
   CALCULATOR CONTENT
========================================== */

.calculator-content {
    margin: 15px 22px 0;
    padding: 27px 25px 45px;

    background: var(--white-color);
    border-radius: 10px;
}


/* ==========================================
   HEADING
========================================== */

.calculator-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.heading-small {
    display: block;

    margin-bottom: 5px;

    color: var(--text-color-1);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
}

.calculator-content h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 500;

    color: var(--primary-color);
}


/* ==========================================
   BRAND GRID
========================================== */

.brand-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    transition: opacity .2s ease;
}


/* ==========================================
   ELECTRICAL SECTION
========================================== */

.electrical-section {
    grid-column: 1 / -1;

    margin-bottom: 10px;
}

.electrical-section-title {
    margin: 5px 0 14px;

    color: var(--primary-color);

    font-size: 17px;
    font-weight: 600;
}

.electrical-section-subtitle {
    margin: -8px 0 15px;

    color: var(--text-color-1);

    font-size: 12px;
}


/* ==========================================
   BRAND CARD
========================================== */

.brand-card {
    position: relative;

    min-height: 175px;

    padding: 25px 20px 20px;

    border: 2px solid var(--border-color);
    border-radius: 10px;

    background: var(--white-color);

    box-shadow: 0 2px 5px rgba(0, 0, 0, .04);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: .25s ease;

    animation: brandCardIn .25s ease;
}

.brand-card:hover {
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.brand-card:has(input:checked) {
    border-color: var(--primary-color);

    box-shadow:
        0 5px 15px rgba(3, 49, 108, .13);
}

.brand-card input {
    display: none;
}


/* ==========================================
   RADIO
========================================== */

.brand-radio {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 20px;
    height: 20px;

    border: 2px solid var(--border-color);
    border-radius: 50%;

    background: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card:has(input:checked) .brand-radio {
    border-color: var(--primary-color);
}

.brand-card:has(input:checked) .brand-radio::after {
    content: "";

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--primary-color);
}

/* ==========================================
   DOUBLE IMAGE BRAND CARD
========================================== */

.double-brand-logo {
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 12px;
}


/* LEFT / RIGHT BRAND */

.double-brand-item {
    width: 90px;
    height: 68px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


/* LOGO */

.double-brand-item img {
    width: 70px;
    height: 42px;

    object-fit: contain;

    display: block;
}


/* BRAND NAME */

.double-brand-item span {
    margin-top: 3px;

    color: var(--primary-color);

    font-size: 9px;
    font-weight: 600;

    line-height: 1.1;

    text-align: center;

    white-space: nowrap;
}


/* OR */

.double-brand-or {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--white-color);

    color: var(--text-color-1);

    font-size: 9px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* PRICE */

.double-brand-logo+.brand-name {
    margin-top: 0;
}


/* ==========================================
   SINGLE BRAND LOGO
========================================== */

.brand-logo {
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}

.brand-logo img {
    max-width: 150px;
    max-height: 60px;

    object-fit: contain;
}


/* ==========================================
   BRAND NAME
========================================== */

.brand-name {
    font-size: 14px;
    font-weight: 500;

    color: var(--primary-color);

    text-align: center;

    margin-bottom: 10px;
}


/* ==========================================
   PRICE
========================================== */

.brand-price {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 3px;

    padding: 6px 11px;

    border-radius: 20px;

    background: var(--white-color);

    color: var(--text-color-1);

    font-size: 11px;
}

.brand-price strong {
    color: var(--primary-color);
    font-size: 13px;
}

.brand-unit {
    color: var(--text-color-1);
    font-size: 11px;
}


/* ==========================================
   BOTTOM BAR
========================================== */

.calculator-bottom {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 64px;

    z-index: 100;

    padding: 0 15px;

    background: var(--black-color);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-status {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--white-color);

    font-size: 14px;
}

.cart-status i {
    font-size: 17px;
}

.calculator-next {
    height: 44px;

    padding: 0 18px;

    border: 0;
    border-radius: 8px;

    background: var(--text-color-1);

    color: var(--white-color);

    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 10px;

    cursor: pointer;

    transition: .2s ease;
}

.calculator-next:hover {
    background: var(--primary-color);
}


/* ==========================================
   RESULT
========================================== */

.calculator-result {
    display: none;

    margin: 15px 22px 100px;

    padding: 55px 25px;

    min-height: 500px;

    background: var(--white-color);

    border-radius: 10px;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.calculator-result.show {
    display: flex;
}

.result-inner {
    width: 100%;
    max-width: 850px;
}

.result-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: var(--primary-color);

    color: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.result-label {
    display: block;

    margin-bottom: 8px;

    color: var(--text-color-1);

    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.result-inner h2 {
    margin: 0 0 10px;

    color: var(--primary-color);

    font-size: 28px;
    font-weight: 600;
}

.result-description {
    margin: 0 0 25px;

    color: var(--text-color-1);

    font-size: 14px;
}


/* ==========================================
   RESULT SUMMARY
========================================== */

.result-summary {
    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

    max-width: 300px;

    margin: 0 auto 30px;
}

.summary-box {
    padding: 14px;

    background: var(--white-color);

    border: 1px solid var(--border-color);

    border-radius: 8px;
}

.summary-box span {
    display: block;

    margin-bottom: 5px;

    color: var(--text-color-1);

    font-size: 11px;
}

.summary-box strong {
    color: var(--primary-color);
    font-size: 15px;
}


/* ==========================================
   SELECTED MATERIALS
========================================== */

.selected-materials-heading {
    text-align: left;
    margin-bottom: 10px;
}

.selected-materials-heading h3 {
    margin: 0;

    color: var(--primary-color);

    font-size: 17px;
}

.selected-materials {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 30px;
}

.selected-material {
    padding: 14px;

    background: var(--white-color);

    border: 1px solid var(--border-color);

    border-radius: 7px;

    text-align: left;
}

.selected-material-top {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 8px;
}

.selected-material small {
    display: block;

    color: var(--text-color-1);

    font-size: 11px;

    margin-bottom: 4px;
}

.selected-material strong {
    display: block;

    color: var(--primary-color);

    font-size: 13px;
}

.material-rate {
    color: var(--text-color-1);
    font-size: 12px;
    margin-top: 5px;
}


/* ==========================================
   RESULT ACTIONS
========================================== */

.result-actions {
    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}

.back-calculator,
.download-pdf {
    border: 0;

    padding: 12px 22px;

    border-radius: 6px;

    font-size: 14px;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: .2s ease;
}

.back-calculator {
    border: 1px solid var(--primary-color);

    background: var(--primary-color);

    color: var(--white-color);
}

.back-calculator:hover {
    background: var(--primary-color);
}

.cost-pdf-download {
    background: var(--secondary-color);

    color: var(--white-color);
}

.cost-pdf-download:hover {
    background: var(--primary-color);
}


/* ==========================================
   ANIMATION
========================================== */

@keyframes brandCardIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .calculator-categories {
        padding: 10px;
    }

    .category-track {
        padding: 0 20px;
    }

    .category-item {
        flex-basis: 90px;
        height: 90px;
    }

    .calculator-content {
        margin: 10px;
        padding: 22px 15px 35px;
    }

    .calculator-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: 155px;
    }

    .calculator-result {
        margin: 10px 10px 90px;
        padding: 45px 15px;
    }

}

@media (max-width: 575px) {

    .category-item {
        flex-basis: 82px;
        height: 82px;
    }

    .category-icon {
        width: 32px;
        height: 32px;
    }

    .category-item span {
        font-size: 11px;
    }

    .calculator-content h3 {
        font-size: 18px;
    }

    .selected-materials {
        grid-template-columns: 1fr;
    }

    .calculator-bottom {
        height: 60px;
    }

    .cart-status {
        font-size: 12px;
    }

    .calculator-next {
        height: 40px;
        padding: 0 14px;
    }

    .double-brand-logo {
        gap: 6px;
    }

    .double-brand-item img {
        width: 60px;
        height: 42px;
    }

}




/* =========================================
   DREAM SECTION
========================================= */
.processSwiper {
    width: 100%;
    height: 520px;
}
.processSwiper .swiper-wrapper {
    align-items: stretch;
}
.processSwiper .swiper-slide {
    height: auto;
}

.dream-reality-section{
    padding: 80px 0px;
}
.dream-reality-section .dream-title{
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
}
.dream-reality-section .process-item{
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    position: relative;
}
.dream-reality-section .process-item::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 23px;
    bottom: 0px;
    width: 3px;
    height: calc(100% + 16px);
    border-left: 3px dashed var(--primary-color);
    z-index: -1;
}
.dream-reality-section .process-item .process-number{
    font-size: 18px;
    height: 48px;
    width: 48px;
    min-width: 48px;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dream-reality-section .process-item .process-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
}
.dream-reality-section .process-item img{
    aspect-ratio: 180/70;
    object-fit: cover;
    border-radius: 100px;
    height: 70px;
    min-width: 180px;
    width: 100%;
}
.dream-reality-section .process-item h3{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}
.dream-reality-section .process-item p{
    font-size: 18px;
    color: var(--text-color-1);
}
.dream-reality-section .phase-box{
    border-radius: 6px;
    padding: 12px;
    border: 1px solid var(--border-color);
}
.dream-reality-section .phase-box img,
.dream-reality-section .phase-box video{
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
}
.dream-reality-section .phase-box h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 12px;
    text-align: center;
}