@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Archivo", sans-serif;
    color: var(--discription-color);
    background: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   ROOT
========================================================= */

:root {
    /* Colors */
    --primary-color: #FD4002;
    --secondary-color: #000000;
    --border-color: #DDDDDD;
    --hedding-color: #000000;
    --discription-color: #666666;
    --bg-color: #F8F8F8;
    --white-color: #FFFFFF;
    /* Font Size */
    --hedding-1: 48px;
    --hedding-2: 40px;
    --hedding-3: 32px;
    --hedding-4: 26px;
    --hedding-5: 22px;
    --hedding-6: 18px;
    --pragraph: 16px;
    --button: 15px;
    /* Shadow */
    --shadow-1: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-2: 0 8px 30px rgba(0, 0, 0, 0.12);
    /* Border Radius */
    --radius-1: 6px;
    --radius-2: 12px;
    /* Spacing */
    --spacing-90: 90px;
}

@media (max-width: 991px) {
    :root {
        --hedding-1: 40px;
        --hedding-2: 34px;
        --hedding-3: 28px;
        --hedding-4: 24px;
        --hedding-5: 20px;
        --hedding-6: 17px;
        --pragraph: 15px;
        --button: 14px;
        --spacing-90: 70px;
    }
}

@media (max-width: 767px) {
    :root {
        --hedding-1: 34px;
        --hedding-2: 30px;
        --hedding-3: 25px;
        --hedding-4: 22px;
        --hedding-5: 19px;
        --hedding-6: 16px;
        --pragraph: 14px;
        --button: 14px;
        --spacing-90: 50px;
    }
}

@media (max-width: 480px) {
    :root {
        --hedding-1: 30px;
        --hedding-2: 26px;
        --hedding-3: 23px;
        --hedding-4: 20px;
        --hedding-5: 18px;
        --hedding-6: 16px;
        --pragraph: 14px;
        --button: 13px;
        --spacing-90: 40px;
    }
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 22px;
    position: relative;
    box-shadow: var(--shadow-2);
}

.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    flex-shrink: 0;
}
.topbar marquee{
    font-size: calc(var(--pragraph) - 0px);
}
.topbar-left a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: calc(var(--pragraph) - 0px);
    line-height: 1.3;
    white-space: nowrap;
}

.topbar-left i {
    font-size: var(--pragraph);
    color: var(--white-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    width: 100%;
    padding: 24px;
    background: var(--bg-color);
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.main-header .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 170px;
    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list>li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-list>li>a {
    height: 100%;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hedding-color);
    font-size: var(--pragraph);
    white-space: nowrap;
    transition: 0.3s ease;
}

.nav-list>li>a:hover,
.nav-list>li.active>a {
    color: var(--primary-color);
}

.nav-list>li>a i {
    font-size: var(--pragraph);
}

@media (min-width: 992px) {
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0%;
        width: 280px;
        margin: 0;
        padding: 0;
        display: block !important;
        background: var(--white-color);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
        z-index: 9999;
    }

    .services-menu:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu>li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu>li:last-child {
        border-bottom: 0;
    }

    .dropdown-menu>li>a {
        width: 100%;
        min-height: 60px;
        padding: 12px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--hedding-color);
        background: var(--white-color);
        font-size: var(--pragraph);
        font-weight: 400;
        line-height: 1.3;
        transition: 0.3s ease;
    }

    .dropdown-menu>li>a:hover {
        color: var(--primary-color);
        background: var(--bg-color);
    }

    .has-submenu {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: -1px;
        left: 100%;
        width: 250px;
        margin: 0;
        padding: 0;
        display: block !important;
        background: var(--white-color);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-1);
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
        z-index: 10000;
    }

    .has-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .submenu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .submenu li:last-child {
        border-bottom: 0;
    }

    .submenu li a {
        width: 100%;
        min-height: 60px;
        padding: 0 35px;
        display: flex;
        align-items: center;
        color: var(--hedding-color);
        background: var(--white-color);
        font-size: var(--pragraph);
        font-weight: 400;
        transition: 0.3s ease;
    }

    .submenu li a:hover {
        color: var(--primary-color);
        background: var(--bg-color);
    }
}

#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-1);
    cursor: pointer;
    background: var(--white-color);
}

.menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--hedding-color);
    transition: 0.3s ease;
}

.menu-overlay {
    display: none;
}

.mobile-menu-head {
    display: none;
}

@media (max-width: 1100px) {
    .main-header {
        padding: 12px 20px;
    }

    .header-logo {
        width: 150px;
    }

    .nav-list>li>a {
        padding: 0 10px;
    }

    .topbar-left {
        gap: 10px 15px;
    }

    .topbar-left span {
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    .topbar-left span {
        font-size: 12px;
    }

    .topbar-left .timing {
        flex-basis: 100%;
    }

    .social-links {
        position: absolute;
        top: 13px;
        right: 15px;
        gap: 5px;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .main-header {
        min-height: 80px;
        padding: 12px 15px;
    }

    .header-logo {
        width: 145px;
    }

    .menu-btn {
        display: flex;
        order: 1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -310px;
        width: 300px;
        height: 100vh;
        display: block;
        overflow-y: auto;
        background: var(--white-color);
        box-shadow: var(--shadow-2);
        transition: right 0.35s ease;
        z-index: 9999;
    }

    #menu-toggle:checked~.main-nav {
        right: 0;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
        z-index: 9998;
    }

    #menu-toggle:checked~.menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-head {
        width: 100%;
        height: 80px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--white-color);
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-head img {
        width: 135px;
    }

    .close-menu {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: var(--radius-1);
        cursor: pointer;
    }

    .nav-list {
        width: 100%;
        height: auto;
        display: block;
    }

    .nav-list>li {
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list>li>a {
        width: 100%;
        min-height: 52px;
        height: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: var(--bg-color);
        border: 0 !important;
        box-shadow: none !important;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    .services-menu:hover>.dropdown-menu {
        display: none !important;
    }

    .services-menu:hover>.dropdown-menu.show {
        display: block !important;
    }

    .dropdown-menu>li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu>li:last-child {
        border-bottom: 0;
    }

    .dropdown-menu>li>a {
        width: 100%;
        min-height: 50px;
        padding: 10px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--hedding-color);
        background: var(--bg-color);
        font-size: var(--pragraph);
    }

    .submenu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f1f1f1;
        border: 0 !important;
        box-shadow: none !important;
    }

    .submenu.show {
        display: block !important;
    }

    .has-submenu:hover>.submenu {
        display: none !important;
    }

    .has-submenu:hover>.submenu.show {
        display: block !important;
    }

    .submenu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .submenu li:last-child {
        border-bottom: 0;
    }

    .submenu li a {
        width: 100%;
        min-height: 46px;
        padding: 0 45px;
        display: flex;
        align-items: center;
        color: var(--hedding-color);
        background: #f1f1f1;
        font-size: 14px;
    }

    .submenu li a:hover {
        color: var(--primary-color);
    }
}

@media (max-width: 575px) {
    .topbar {
        min-height: auto;
        padding: 10px 15px;
        display: block;
    }
    .topbar-left {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {

    .topbar-left span {
        font-size: 11px;
    }

    .topbar-left span:nth-child(2),
    .topbar-left span:nth-child(3) {
        display: none;
    }

    .social-links {
        position: static;
        margin-top: 8px;
    }

    .main-header {
        min-height: 75px;
    }

    .header-logo {
        width: 130px;
    }

    .main-nav {
        width: 285px;
    }
}

@media (max-width: 360px) {
    .main-nav {
        width: 270px;
    }
    .header-logo {
        width: 120px;
    }
    .topbar-left span {
        font-size: 10px;
    }
}



.quick-links {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.quick-links a {
    font-size: var(--pragraph);
    color: var(--secondary-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;
}
.quick-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}




/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .quick-links {
        margin-left: 12px;
    }

    .quick-links a {
        padding: 10px 13px;
        font-size: 13px;
    }

    .quick-links a i {
        font-size: 18px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .quick-links {
        margin-left: auto;
        margin-right: 15px;
    }

    .quick-links a {
        padding: 9px 12px;
        border-radius: 6px;
        font-size: 0;
        justify-content: center;
        gap: 0px;
        background-color: #1ebe5d;
        color: var(--white-color);
    }
    .quick-links a span{
        display: none;
    }

    .quick-links a i {
        font-size: 21px;
    }

}

@media (max-width: 575px) {

    .quick-links {
        margin-right: 10px;
    }

    .quick-links a {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .quick-links a i {
        font-size: 20px;
    }

}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    width: 100%;
    padding-bottom: 25px;
    background: var(--bg-color);
}

.mainheroswip {
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    border-radius: var(--radius-2);
}

.mainheroswip .swiper-wrapper {
    display: flex;
}

.mainheroswip .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.mainheroswip .image {
    width: 100%;
    aspect-ratio: 116 / 49;
    overflow: hidden;
    border-radius: var(--radius-2);
}

.mainheroswip .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 1100px) {
    .hero-section {
        padding-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .hero-section {
        padding-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .mainheroswip .image {
        border-radius: var(--radius-1);
    }
}

/* =========================================================
   WHY CHOOSE SECTION
========================================================= */

.why-choose {
    width: 100%;
    padding: var(--spacing-90) 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: var(--hedding-6);
    font-weight: 600;
    position: relative;
}

.section-title .subtitle::before {
    content: "";
    width: 35px;
    height: 2px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;

    background: var(--primary-color);
}

.section-title h1 {
    margin: 0;
    color: var(--hedding-color);
    font-size: var(--hedding-1);
    font-weight: 700;
    line-height: 1.15;
}

.section-title h1 span {
    color: var(--primary-color);
}

.why-choose .content > ul li {
    position: relative;
    margin-bottom: 15px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    font-weight: 400;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-choose .content > ul li i{
    height: 32px;
    width: 32px;
    padding-top: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    line-height: 1;
    border-radius: 50px;
}

.why-choose .content > ul li:last-child {
    margin-bottom: 0;
}

.why-choose .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.why-choose .social-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    font-size: var(--hedding-6);
    transition: 0.3s ease;
}

.why-choose .social-icon .facebook {
    background: #4267B2;
}

.why-choose .social-icon .instagram {
    background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
}

.why-choose .social-icon a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-1);
}

.why-choose .contact-form {
    padding: 24px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
}

.why-choose .contact-form h2 {
    margin: 0 0 7px;
    color: var(--hedding-color);
    font-size: var(--hedding-3);
    font-weight: 700;
    line-height: 1.2;
}

.why-choose .contact-form > p {
    margin: 0 0 25px;
    color: var(--discription-color);
    font-size: var(--button);
    line-height: 1.5;
}

.why-choose .contact-form form {
    margin: 0;
}

.why-choose .contact-form form > p {
    margin: 0 0 17px;
}

.why-choose .contact-form form > p:last-child {
    margin-top: 5px;
    margin-bottom: 0;
}

.why-choose .contact-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--hedding-color);
    font-size: var(--button);
    font-weight: 500;
}

.why-choose .contact-form input,
.why-choose .contact-form select {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-1);
    outline: none;
    background: var(--white-color);
    color: var(--hedding-color);
    font-family: inherit;
    font-size: var(--pragraph);
    transition: 0.3s ease;
}

.why-choose .contact-form input::placeholder {
    color: var(--hedding-color);
}

.why-choose .contact-form input:focus,
.why-choose .contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2);
}

.why-choose .contact-form select {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
        linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 20px,
        calc(100% - 12px) 20px;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.button-nb {
    padding: 14px 24px;
    border: 0;
    border-radius: var(--radius-1);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: var(--hedding-6);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.button-nb:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-1);
    transform: translateY(-2px);
}

@media (max-width: 991px) {

    .section-title {
        margin-bottom: 25px;
    }

}

@media (max-width: 767px) {

    .why-choose .content > ul li {
        margin-bottom: 12px;
    }

}

@media (max-width: 480px) {
    .why-choose .contact-form input,
    .why-choose .contact-form select,
    .why-choose .contact-form button {
        height: 46px;
    }
}


.contact-banner{
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-color);
}
.contact-banner .content{
    padding: 24px;
}

@media (max-width: 991px) {
    .contact-banner{
        grid-template-columns: 1fr  ;
    }
}

/* =========================================================
   FEATURED SERVICES
========================================================= */

.featured-services {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
}

.featured-services .section-title p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.6;
}

.featured-services .title-bottom-line {
    width: 55px;
    height: 3px;
    margin: 25px auto 0;
    background: var(--primary-color);
    border-radius: 10px;
}

.service-card {
    height: 100%;
    overflow: hidden;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-1);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
}

.service-image {
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 0.94;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.service-icon {
    width: 95px;
    height: 95px;
    position: absolute;
    left: 50%;
    bottom: -47px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    color: var(--primary-color);
    border: 7px solid var(--white-color);
    border-radius: 50%;
    box-shadow: var(--shadow-1);
    font-size: 32px;
    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateX(-50%) rotate(5deg);
}

.service-content {
    padding: 65px 30px 35px;
    text-align: center;
}

.service-content h3 {
    margin: 0;
    color: var(--hedding-color);
    font-size: var(--hedding-4);
    font-weight: 700;
}

.small-line {
    width: 50px;
    height: 3px;
    display: block;
    margin: 15px auto;
    background: var(--primary-color);
    border-radius: 10px;
}

.service-content p {
    margin: 0 auto 25px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.6;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.service-btn i {
    transition: 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .featured-services .section-title {
        margin-bottom: 40px;
    }

    .featured-services .section-title h2 {
        font-size: var(--hedding-3);
    }
}

@media (max-width: 767px) {

    .featured-services {
        padding: var(--spacing-90) 0;
    }

    .featured-services .title-line {
        width: 35px;
        margin: 0 8px;
    }

    .featured-services .section-title h2 {
        font-size: var(--hedding-4);
    }

    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .service-content {
        padding: 60px 20px 30px;
    }
}

@media (max-width: 480px) {

    .featured-services .title-line {
        width: 25px;
        margin: 0 5px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        bottom: -40px;
        font-size: 27px;
        border-width: 6px;
    }

    .service-content {
        padding: 55px 18px 25px;
    }

    .service-btn {
        width: 100%;
        justify-content: space-between;
    }
}


.advantages{
    padding: var(--spacing-90) 0px;
    background-color: var(--bg-color);
}
.advantages .content {
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    padding: 24px 16px;
    box-shadow: var(--shadow-2);
    border-radius: var(--radius-2);
    transition: 0.4s;
}
.advantages .content:hover{
    transform: translateY(-6px);
}

.advantages .content .icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 100px;
    outline: 1px solid var(--primary-color);
    outline-offset: 4px;
}

.advantages .content .icon i {
    font-size: 28px;
    color: var(--white-color);
}

.advantages .content h3 {
    margin: 0 0 15px;
    font-size: var(--hedding-5);
    line-height: 1.4;
    font-weight: 700;
    color: var(--hedding-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.advantages .content p {
    font-size: var(--pragraph);
    line-height: 1.65;
    font-weight: 400;
    color: var(--discription-color);
}

.projects-section {
    width: 100%;
    padding: var(--spacing-90) 0;
    background: var(--white-color);
    overflow: hidden;
}

.projectsSwiper {
    width: 100%;
    padding-bottom: 40px;
}

.projectsSwiper .swiper-wrapper {
    align-items: flex-start;
}

.project-card {
    width: 100%;
    text-align: center;
}

.project-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-2);
}

.project-card h3 {
    margin: 8px 0 0;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    line-height: 1.4;
    font-weight: 700;
}

.projectsSwiper .swiper-pagination {
    bottom: 0;
}

.projectsSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: var(--primary-color);
    border-radius: var(--radius-2);
    transition: all 0.3s ease-in-out;
}

.projectsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 32px;
}


/* Desktop */
@media (min-width: 1200px) {
    .projectsSwiper .swiper-slide {
        width: 25%;
    }
}


/* Tablet */
@media (max-width: 1199px) {
    .projects-section .container {
        padding: 0 30px;
    }

    .projects-heading {
        margin-bottom: 60px;
    }

    .projects-heading span {
        width: 100px;
    }

    .projects-heading h2 {
        font-size: var(--hedding-3);
    }

    .project-image {
        height: 150px;
    }

    .project-image img {
        height: 150px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-section .container {
        padding: 0 20px;
    }

    .projects-heading {
        gap: 8px;
        margin-bottom: 45px;
    }

    .projects-heading span {
        width: 35px;
    }

    .projects-heading h2 {
        font-size: var(--hedding-5);
    }

    .project-image {
        height: 150px;
    }

    .project-image img {
        height: 150px;
    }

    .project-card h3 {
        font-size: var(--hedding-6);
    }

    .projectsSwiper {
        padding-bottom: 55px;
    }
}


.support-section {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
}

.support-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 0 20px;
}

.support-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 18px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}
.support-card:hover{
    box-shadow: var(--shadow-1);
    transform: translateY(-4px);
}

.support-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.support-icon > i {
    font-size: 52px;
}

.support-card h3 {
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .support-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {

    .support-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}



.latest-news {
    padding: var(--spacing-90) 0;
    background: var(--bg-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.news-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-1);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
}

.news-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}

.news-date {
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-date strong {
    font-size: var(--hedding-5);
    line-height: 1;
    font-weight: 700;
}

.news-date span {
    margin-top: 3px;
    font-size: var(--pragraph);
    line-height: 1;
}

.news-content {
    padding: 25px 28px 28px;
}

.news-content h3 {
    margin: 0;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    line-height: 1.55;
    font-weight: 700;
    min-height: 110px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-color);
    font-size: var(--button);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-read-more i {
    font-size: 13px;
}

.news-read-more:hover {
    gap: 12px;
}


/* Tablet */
@media (max-width: 991px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-image {
        height: 220px;
    }
}


/* Mobile */
@media (max-width: 575px) {

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-image {
        height: 220px;
    }

    .news-content {
        padding: 22px;
    }

    .news-content h3 {
        min-height: auto;
    }
}


.recent-projects {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
    overflow: hidden;
}

.project-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    margin-bottom: 25px;
}

.project-tab {
    position: relative;
    border: 0;
    outline: none;
    background: transparent;
    padding: 5px 0 10px;
    color: var(--secondary-color);
    font-size: var(--hedding-6);
    font-weight: 700;
    cursor: pointer;
}

.project-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.project-tab.active {
    color: var(--primary-color);
}

.project-tab.active::after {
    width: 100%;
}

.project-tab-content {
    display: none;
}

.project-tab-content.active {
    display: block;
}

.project-tab-content .swiper {
    width: 100%;
    padding: 0 0 5px;
}

.project-tab-content .swiper-slide {
    height: auto;
}

.recent-project-card {
    width: 100%;
    min-height: 310px;
    padding: 18px;
    box-sizing: border-box;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-1);
    background: var(--white-color);
}

.recent-project-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: var(--radius-1);
}

.recent-project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.recent-project-info {
    padding-top: 5px;
}

.recent-project-info p {
    margin-top: 10px;
    margin-bottom: 0px;
    color: var(--secondary-color);
    font-size: var(--pragraph);
    line-height: 1.35;
}

.recent-project-info p strong {
    color: var(--hedding-color);
    font-weight: 700;
}

.project-tab-content .swiper-button-prev,
.project-tab-content .swiper-button-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
}

.project-tab-content .swiper-button-prev::after,
.project-tab-content .swiper-button-next::after {
    color: var(--white-color);
    font-size: var(--button);
    font-weight: 700;
}

.project-tab-content .swiper-button-prev {
    left: 5px;
}

.project-tab-content .swiper-button-next {
    right: 5px;
}


@media (max-width: 991px) {

    .project-tabs {
        gap: 35px;
    }

    .recent-project-card {
        min-height: 300px;
    }

    .recent-project-image {
        height: 160px;
    }
}

@media (max-width: 575px) {

    .project-tabs {
        gap: 25px;
        margin-bottom: 25px;
    }

    .project-tab {
        font-size: var(--pragraph);
    }

    .recent-project-card {
        min-height: 305px;
    }

    .recent-project-image {
        height: 180px;
    }

    .recent-project-info p {
        font-size: var(--pragraph);
    }
}



.reviews-section {
    width: 100%;
    padding: var(--spacing-90) 0;
    background: var(--bg-color);
    overflow: hidden;
}

.reviews-summary {
    text-align: center;
}

.reviews-summary h2 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: var(--hedding-4);
    font-weight: 700;
}

.summary-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 3px;
}

.summary-stars span {
    color: #FFB400;
    font-size: var(--hedding-4);
    line-height: 1;
}

.summary-stars .half-star {
    position: relative;
    color: var(--border-color);
}

.summary-stars .half-star::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FFB400;
}

.reviews-summary p {
    margin: 0;
    color: var(--hedding-color);
    font-size: var(--pragraph);
}

.reviews-summary p strong {
    font-weight: 700;
}

.google-logo {
    margin-top: 8px;
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
}
.google-blue {
    color: #4285F4;
}

.google-red {
    color: #EA4335;
}

.google-yellow {
    color: #FBBC05;
}

.google-green {
    color: #34A853;
}

.reviews-slider-wrap {
    position: relative;
    width: 100%;
    padding: 0 0;
}

.reviewsSwiper {
    width: 100%;
    overflow: hidden;
}

.reviewsSwiper .swiper-wrapper {
    align-items: stretch;
}

.reviewsSwiper .swiper-slide {
    height: auto;
}

.review-card {
    height: 292px;
    padding: 25px 24px;
    box-sizing: border-box;
    background: var(--white-color);
    border-radius: var(--radius-2);
    border: 1px solid var(--border-color);
}


/* Header */
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.review-user {
    display: flex;
    align-items: center;
    min-width: 0;
}

.user-avatar {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: var(--hedding-5);
    background-color: var(--primary-color);
    color: var(--white-color);
}

.user-details {
    margin-left: 12px;
    min-width: 0;
}

.user-details h3 {
    margin: 0;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-details p {
    margin: 4px 0 0;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.2;
}

.google-small {
    font-size: var(--hedding-4);
    font-weight: 700;
    color: var(--primary-color);
}


/* Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
}

.review-rating > span {
    color: #FFB400;
    font-size: var(--hedding-4);
    letter-spacing: 1px;
    line-height: 1;
}

.review-rating .four-stars i {
    color: var(--border-color);
    font-style: normal;
}

.review-rating b {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 1px 0px 0px;
    font-size: 12px;
}


/* Review Text */
.review-text {
    margin: 15px 0 0;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    line-height: 1.45;
    font-size: var(--button);
}
.review-text br{
    display: none;
}

.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--hedding-4);
    line-height: 1;
}

.review-prev {
    left: -22px;
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--shadow-1);
}

.review-next {
    right: -22px;
    box-shadow: var(--shadow-1);
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 991px) {

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-summary {
        margin-bottom: 35px;
    }

    .review-card {
        height: 280px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 575px) {

    .reviews-summary h2 {
        font-size: var(--hedding-5);
    }

    .summary-stars span {
        font-size: 35px;
    }

    .google-logo {
        font-size: 36px;
    }

    .review-card {
        height: 280px;
        padding: 22px 20px;
    }

    .review-prev {
        left: -10px;
    }

    .review-next {
        right: -10px;
    }
}


.logo-section {
    width: 100%;
    padding: var(--spacing-90) 0;
    background: var(--bg-color);
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

.logo-item {
    width: 180px;
    height: 90px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {

    .logo-item {
        width: 150px;
        height: 80px;
        margin: 0 20px;
    }

    .logo-item img {
        max-width: 125px;
        max-height: 60px;
    }

    .logo-track {
        animation-duration: 22s;
    }
}


@media (max-width: 575px) {

    .logo-item {
        width: 120px;
        height: 70px;
        margin: 0 15px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 50px;
    }

    .logo-track {
        animation-duration: 18s;
    }
}


.extra-dicription{
    padding: var(--spacing-90) 0px;
}
.extra-dicription h1{
    font-size: var(--hedding-2);
    color: var(--hedding-color);
}
.extra-dicription h1 span{
    color: var(--primary-color);
}
.extra-dicription h2{
    font-size: var(--hedding-5);
    margin-top: 16px;
    color: var(--hedding-color);
}
.extra-dicription p{
    font-size: var(--pragraph);
    color: var(--discription-color);
    margin-top: 8px;
}



.faq-section {
    width: 100%;
    padding: var(--spacing-90) 0;
    background: var(--bg-color);
}

.faq-list {
    width: 100%;
}

.faq-item {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--radius-2);
    background: var(--white-color);
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 16px 38px;
    border: 0;
    outline: none;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary-color);
    font-size: var(--pragraph);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--white-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white-color);
}

.faq-answer {
    display: none;
    padding: 16px 38px;
    background: var(--white-color);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--discription-color);
    font-size: var(--hedding-6);
    line-height: 1.65;
}

.faq-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


@media (max-width: 767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .container {
        padding: 0 15px;
    }

    .faq-heading {
        height: 65px;
        margin-bottom: 25px;
    }

    .faq-heading h2 {
        font-size: var(--hedding-5);
        padding-top: 8px;
    }

    .faq-bg-text {
        top: -5px;
        font-size: 55px;
    }

    .faq-question {
        min-height: 70px;
        padding: 0 20px;
        font-size: var(--hedding-6);
    }

    .faq-answer {
        padding: 20px 22px;
    }

    .faq-answer p {
        font-size: var(--pragraph);
    }
}





.main-footer {
    width: 100%;
    background: var(--hedding-color);
    color: var(--white-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding: var(--spacing-90) 0px;
}

.footer-top h3 {
    margin: 0;
    color: var(--white-color);
    font-size: var(--hedding-6);
    font-weight: 700;
}

.footer-line {
    width: 70px;
    height: 1px;
    margin: 8px 0 28px;
    background: var(--primary-color);
}

.footer-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius-1);
    margin-bottom: 25px;
}

.footer-about p {
    max-width: 500px;
    margin: 0;
    color: var(--white-color);
    opacity: 0.7;
    font-size: var(--pragraph);
    line-height: 1.7;
}

.footer-about h4 {
    margin: 35px 0 10px;
    color: var(--white-color);
    font-size: var(--hedding-6);
    font-weight: 700;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: var(--pragraph);
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #333333;
    border-radius: var(--radius-1);
    background: #181818;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
}

.contact-box span {
    display: block;
    margin-bottom: 4px;
    color: var(--white-color);
    opacity: 0.7;
    font-size: var(--button);
}

.contact-box a,
.contact-box p {
    margin: 0;
    color: var(--white-color);
    text-decoration: none;
    font-size: var(--button);
}

.contact-box a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--hedding-color);
    border-top: 1px solid #333333;
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: var(--white-color);
    font-size: var(--button);
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: var(--button);
}

.footer-bottom ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-contact {
        grid-column: span 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }
}

@media (max-width: 767px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-contact {
        grid-column: auto;
        display: flex;
    }

    .footer-bottom-inner {
        align-items: flex-start;
    }

    .footer-bottom ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }
}





/* ================================
   Inner Hero
================================ */

.inner-hero {
    width: 100%;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero .content {
    min-height: 420px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
}

.inner-hero .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hedding-color);
    opacity: 0.65;
    z-index: 0;
}

.inner-hero .content h1,
.inner-hero .breadcumbs {
    position: relative;
    z-index: 1;
}

.inner-hero .content h1 {
    margin: 0 0 18px;
    color: var(--white-color);
    font-size: var(--hedding-1);
    font-weight: 700;
    line-height: 1.2;
}

.inner-hero .breadcumbs ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.inner-hero .breadcumbs ul li {
    position: relative;
    color: var(--white-color);
    font-size: var(--pragraph);
    line-height: 1.5;
}

.inner-hero .breadcumbs ul li:not(:last-child) {
    padding-right: 18px;
}

.inner-hero .breadcumbs ul li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.inner-hero .breadcumbs ul li a {
    color: var(--white-color);
    font-size: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-hero .breadcumbs ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .inner-hero .content {
        min-height: 380px;
    }

    .inner-hero .content h1 {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {

    .inner-hero .content {
        min-height: 280px;
        border-radius: var(--radius-1);
    }

    .inner-hero .content h1 {
        margin-bottom: 12px;
    }

    .inner-hero .breadcumbs ul {
        gap: 8px;
    }

    .inner-hero .breadcumbs ul li:not(:last-child) {
        padding-right: 15px;
    }
}


.who_we_are{
    padding: var(--spacing-90) 0px;
}
.who_we_are img{
    border-radius: var(--radius-2);
}
.who_we_are h2{
    font-size: var(--hedding-2);
    color: var(--hedding-color);
}
.who_we_are p{
    font-size: var(--pragraph);
    color: var(--hedding-color);
    opacity: 0.7;
    margin-bottom: 0pc;
}
.box-section {
    padding-bottom: 24px;
}
.box-section .content{
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: var(--radius-2);
    border: 1px solid var(--border-color);
}
.box-section h3{
    font-size: var(--hedding-3);
    color: var(--primary-color);
}
.box-section p{
    font-size: var(--pragraph);
    color: var(--hedding-color);
    opacity: 0.7;
    margin-bottom: 0px;
}

.achievements {
    position: relative;
    padding: var(--spacing-90) 0;
    background: var(--hedding-color);
    overflow: hidden;
    margin-top: var(--spacing-90);
}

.achievements::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -180px;
    top: -180px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
}

.achievements::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -220px;
    bottom: -220px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
}

.achievements .section-title h1{
    color: var(--white-color);
}
.achievements .section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--white-color);
    font-size: var(--pragraph);
    line-height: 1.7;
}

.achievement-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.achievement-item {
    position: relative;
    padding: 45px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.achievement-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: var(--border-color);
}

.achievement-item:hover {
    background: var(--bg-color);
}

.achievement-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: var(--hedding-6);
    transition: all 0.4s ease;
}

.achievement-item:hover .achievement-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.counter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.counter-wrap h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: var(--hedding-2);
    font-weight: 700;
    line-height: 1;
}

.counter-wrap span {
    margin-left: 5px;
    color: var(--primary-color);
    font-size: var(--hedding-4);
    font-weight: 700;
}

.achievement-item > p {
    margin: 0;
    color: var(--white-color);
    font-size: var(--pragraph);
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.achievement-item:hover > p {
    color: var(--hedding-color);
}

@media (max-width: 991px) {

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-item:nth-child(2)::after {
        display: none;
    }

    .achievement-item:nth-child(1),
    .achievement-item:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }
}


@media (max-width: 767px) {

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .achievement-item {
        padding: 35px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .achievement-item:not(:last-child)::after {
        display: none;
    }

    .achievement-item:last-child {
        border-bottom: 0;
    }
}


@media (max-width: 480px) {
    .achievement-item {
        padding: 30px 15px;
    }
}


.media-logo-section {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
    overflow: hidden;
}

.media-logo-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.media-logo {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.media-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 75px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.media-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .media-logo-section {
        padding: 40px 0;
    }

    .media-logo-slider {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .media-logo {
        flex: 0 0 calc(33.333% - 30px);
        height: 90px;
    }

    .media-logo img {
        height: 65px;
    }
}

@media (max-width: 767px) {

    .media-logo-section {
        padding: 35px 0;
    }

    .media-logo-slider {
        gap: 20px;
    }

    .media-logo {
        flex: 0 0 calc(50% - 20px);
        height: 80px;
    }

    .media-logo img {
        height: 55px;
    }
}

@media (max-width: 480px) {

    .media-logo-slider {
        gap: 15px;
    }

    .media-logo {
        flex: 0 0 calc(50% - 15px);
        height: 70px;
    }

    .media-logo img {
        max-width: 90%;
        height: 48px;
    }
}

.box-spacing{
    padding: var(--spacing-90) 0px;
}

.career-section {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
}

.career-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.career-form {
    padding: 0 15px;
}

.career-form h2 {
    margin: 0 0 25px;
    color: var(--hedding-color);
    font-size: var(--hedding-3);
    font-weight: 700;
    line-height: 1.2;
}

.form-note {
    margin: 0 0 22px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.5;
}

.form-note span,
.career-field label span {
    color: var(--primary-color);
}

.career-field {
    margin-bottom: 27px;
}

.career-field label {
    display: block;
    margin: 0 0 9px;
    color: var(--hedding-color);
    font-size: var(--button);
    font-weight: 600;
}

.career-field input,
.career-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    outline: none;
    background: var(--white-color);
    color: var(--hedding-color);
    font-family: inherit;
    font-size: var(--pragraph);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.career-field input {
    height: 50px;
}

.career-field textarea {
    min-height: 200px;
    resize: vertical;
    display: block;
}

.career-field input::placeholder,
.career-field textarea::placeholder {
    color: var(--discription-color);
}

.career-field input:focus,
.career-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.career-submit {
    margin-top: 5px;
}

.career-submit .button-nb {
    border: 0;
}


.career-content {
    padding: 0 15px;
}

.career-intro {
    margin: 0 0 15px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.8;
}

.career-content h3 {
    margin: 0 0 20px;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    font-weight: 700;
    line-height: 1.4;
}

.career-opening {
    margin-bottom: 20px;
}

.career-opening:last-child {
    margin-bottom: 0;
}

.career-opening h4 {
    margin: 0 0 12px;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    font-weight: 700;
    line-height: 1.4;
}

.career-opening p {
    margin: 0 0 12px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.7;
}

.career-opening p:last-child {
    margin-bottom: 0;
}

.career-opening strong {
    color: var(--hedding-color);
    font-weight: 600;
}

@media (max-width: 991px) {

    .career-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .career-form,
    .career-content {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {

    .career-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .career-form,
    .career-content {
        padding: 0;
    }

    .career-form h2 {
        margin-bottom: 20px;
    }

    .career-field {
        margin-bottom: 22px;
    }

    .career-field textarea {
        min-height: 170px;
    }
}

@media (max-width: 480px) {

    .career-field input {
        height: 48px;
    }

    .career-field textarea {
        min-height: 150px;
    }
}


/* ========================================
   CONTACT PAGE
======================================== */

.contact-page-section {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}


.contact-form-intro {
    margin: 0 0 40px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.7;
}

.contact-page-form form {
    margin: 0;
}

.contact-field {
    margin-bottom: 16px;
}

.contact-field label {
    display: block;
    margin: 0 0 8px;
    color: var(--hedding-color);
    font-size: var(--button);
    font-weight: 600;
}

.contact-field label span {
    color: var(--primary-color);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    outline: none;
    background: var(--white-color);
    color: var(--hedding-color);
    font-size: var(--pragraph);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-field input {
    height: 50px;
}

.contact-field textarea {
    height: 200px;
    resize: vertical;
    display: block;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--discription-color);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.contact-page-form .button-nb {
    margin-top: 8px;
}

.contact-page-info {
    padding-left: 0;
}

.contact-info-intro {
    margin-bottom: 60px;
}

.contact-info-intro h3 {
    margin: 0 0 15px;
    color: var(--hedding-color);
    font-size: var(--hedding-6);
    font-weight: 700;
    line-height: 1.5;
}

.contact-info-intro p {
    margin: 0 0 15px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.7;
}

.contact-info-intro p:last-child {
    margin-bottom: 0;
}

.contact-info-block {
    margin-bottom: 55px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h4 {
    margin: 0 0 10px;
    color: var(--hedding-color);
    font-size: var(--button);
    font-weight: 700;
    line-height: 1.5;
}

.contact-info-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-block ul li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: var(--discription-color);
    font-size: var(--pragraph);
    line-height: 1.5;
}

.contact-info-block ul li:last-child {
    margin-bottom: 0;
}

.contact-info-block ul li i {
    width: 13px;
    color: var(--primary-color);
    text-align: center;
}

.contact-info-block ul li a {
    color: var(--discription-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {

    .contact-page-grid {
        gap: 25px;
    }

    .contact-info-intro {
        margin-bottom: 45px;
    }

    .contact-info-block {
        margin-bottom: 40px;
    }
}


@media (max-width: 767px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-intro {
        margin-bottom: 30px;
    }

    .contact-info-intro {
        margin-bottom: 40px;
    }

    .contact-info-block {
        margin-bottom: 35px;
    }
}


@media (max-width: 480px) {

    .contact-field input {
        height: 48px;
    }

    .contact-field textarea {
        height: 170px;
    }
}




/* ==========================================
   HOUSE MAP SERVICE
========================================== */

.house-map-service {
    padding: var(--spacing-90) 0;
    background: var(--white-color);
}

.house-map-service__content {
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    background: var(--white-color);
    box-shadow: var(--shadow-1);
}

.house-map-service__content h1 {
    margin-bottom: 25px;
    font-size: var(--hedding-3);
    color: var(--primary-color);
    line-height: 1.2;
}

.house-map-service__content p {
    margin-bottom: 15px;
    font-size: var(--pragraph);
    color: var(--discription-color);
}

.house-map-service__highlight {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: var(--radius-1);
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: var(--button);
}

.house-map-service__visual {
    overflow: hidden;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
}

.house-map-service__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.house-map-service__plan {
    overflow: hidden;
    border-radius: var(--radius-2);
    background: var(--white-color);
    box-shadow: var(--shadow-1);
}

.house-map-service__plan img {
    width: 100%;
    height: calc(100% - 45px);
    object-fit: cover;
}

.house-map-service__plan h3 {
    height: 45px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--hedding-6);
    color: var(--primary-color);
}

.house-map-service__intro-content h2 {
    margin-bottom: 25px;
    font-size: var(--hedding-2);
    color: var(--hedding-color);
    line-height: 1.2;
}

.house-map-service__intro-content p {
    margin-bottom: 18px;
    font-size: var(--pragraph);
    color: var(--discription-color);
}

.house-map-service__intro-image {
    overflow: hidden;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-2);
}

.house-map-service__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.house-map-service__description h2 {
    margin-bottom: 25px;
    font-size: var(--hedding-2);
    color: var(--hedding-color);
}

.house-map-service__description h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: var(--hedding-4);
    color: var(--hedding-color);
}

.house-map-service__description h4 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: var(--hedding-5);
    color: var(--hedding-color);
}

.house-map-service__description p {
    margin-bottom: 22px;
    font-size: var(--pragraph);
    color: var(--discription-color);
}

.house-map-service__description ul{
    list-style: disc;
    padding-left: 20px;
}

.house-map-service__design-title {
    margin-bottom: 30px;
}

.house-map-service__design-title h2 {
    font-size: var(--hedding-3);
    color: var(--hedding-color);
}

.house-map-service__design-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2);
    background: var(--white-color);
    box-shadow: var(--shadow-1);
}

.house-map-service__design-card img {
    width: 100%;
    height: 360px;
    padding: 20px;
    object-fit: contain;
    background: var(--bg-color);
}
 .front-elevation .house-map-service__design-card img {
    padding: 0px;
    object-fit: cover;
}

.house-map-service__design-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px;
    text-align: center;
}

.house-map-service__design-info strong,
.house-map-service__design-info span {
    font-size: var(--button);
    color: var(--secondary-color);
}

.house-map-service__design-info strong {
    color: var(--hedding-color);
}

@media (max-width: 768px) {

    .house-map-service__content h1 {
        font-size: var(--hedding-3);
    }

    .house-map-service__intro-content h2 {
        font-size: var(--hedding-3);
    }

    .house-map-service__description h2 {
        font-size: var(--hedding-3);
    }

    .house-map-service__design-card img {
        height: auto;
    }
}


.house-map-service__description .service_gallery .image{
    border-radius: 10px;
    overflow: hidden;
}
.house-map-service__description .service_gallery img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    transition: 0.3s;
}
.house-map-service__description .service_gallery .image:hover img{
    transform: scale(1.04);
}

.floor-designs {
    width: 100%;
}

.floor-design-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.floor-plan-img {
    width: 52%;
}

.floor-plan-img img {
    width: 100%;
    height: auto;
    display: block;
}

.floor-plan-info {
    width: 48%;
    padding: 0 0 0 25px;
}

.floor-plan-info .design-label {
    display: block;
    font-size: var(--pragraph);
    color: var(--discription-color);
    margin-bottom: 5px;
}

.floor-plan-info h3 {
    font-size: var(--hedding-4);
    color: var(--hedding-color);
    margin: 0 0 18px;
}

.floor-plan-info p {
    font-size: var(--pragraph);
    color: var(--secondary-color);
    margin: 0 0 25px;
}

.direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--pragraph);
    color: var(--secondary-color);
}

.direction i {
    font-size: var(--hedding-4);
    color: var(--discription-color);
}

@media (max-width: 767px) {

    .floor-design-item {
        display: block;
    }

    .floor-plan-img,
    .floor-plan-info {
        width: 100%;
    }

    .floor-plan-info {
        padding: 15px 0 0;
    }

}



.page-not-found {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    padding: var(--spacing-90) 0;
}

.error-number {
    font-size: 150px;
    line-height: 1;
    font-weight: 800;
    color: var(--discription-color);
    letter-spacing: 5px;
}

.page-not-found h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--hedding-color);
    margin-top: -25px;
    margin-bottom: 15px;
}

.page-not-found p {
    color: var(--discription-color);
    font-size: 16px;
    margin-bottom: 30px;
}

.page-not-found .btn {
    padding: 12px 25px;
    border-radius: 4px;
}

.page-not-found .btn i {
    margin-right: 7px;
}

@media (max-width: 767px) {
    .error-number {
        font-size: 100px;
    }

    .page-not-found h1 {
        font-size: 28px;
        margin-top: -15px;
    }
}

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn,
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white-color);
    font-size: 27px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: var(--white-color);
    transform: translateY(-4px);
}

.back-to-top {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

@media (max-width: 576px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .whatsapp-btn,
    .back-to-top {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn {
        font-size: 24px;
    }
}