/* ==============================
   Construction Navbar
================================ */

.custom-navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 3px solid #e85d04;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    z-index: 999;
}

/* Brand */

.brand-box {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    padding: 3px 0;
}

.brand-top {
    color: #c62828;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.brand-name {
    color: #171717;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-sub {
    color: #006bb6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 5px;
}


/* Menu */

.custom-navbar .navbar-nav {
    gap: 5px;
}

.custom-navbar .nav-link {
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #e85d04;
}


/* Dropdown */

.custom-navbar .dropdown-menu {
    border: none;
    border-top: 3px solid #e85d04;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.custom-navbar .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.custom-navbar .dropdown-item:hover {
    background: #fff1e6;
    color: #e85d04;
}


/* Call Button */

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e85d04;
    color: #fff !important;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #c62828;
    color: #fff !important;
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 991px) {

    .custom-navbar {
        padding: 10px 15px;
    }

    .brand-name {
        font-size: 17px;
    }

    .custom-navbar .navbar-collapse {
        margin-top: 15px;
        padding: 10px 0;
        border-top: 1px solid #eeeeee;
    }

    .custom-navbar .nav-link {
        padding: 10px 5px !important;
    }

    .call-btn {
        margin-top: 8px;
        display: inline-flex;
    }

    .custom-navbar .dropdown-menu {
        box-shadow: none;
        border-top: 1px solid #e85d04;
    }
}/* =========================================
   CONSTRUCTION HERO SECTION
========================================= */

.construction-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(120deg, #111111 0%, #1d1d1d 55%, #252525 100%);
    padding: 80px 0;
}

/* Orange Background Shape */

.construction-hero::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: #e85d04;
    border-radius: 50%;
    right: -260px;
    top: -180px;
    opacity: 0.12;
}

.construction-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #c62828;
    border-radius: 50%;
    left: -250px;
    bottom: -250px;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.35),
            transparent 70%
        );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background: rgba(232, 93, 4, 0.15);
    border-left: 4px solid #e85d04;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.hero-tag i {
    color: #ff7b22;
}


/* Heading */

.hero-content h1 {
    margin: 0;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    color: #e85d04;
    font-size: 27px;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.hero-content h1 {
    color: #ffffff;
}


/* Blue Construction Text */

.hero-content h2 {
    display: inline-block;
    color: #1597dc;
    font-size: 27px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 18px 0;
    letter-spacing: 1px;
}


/* Description */

.hero-description {
    max-width: 650px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* =========================================
   SERVICES
========================================= */

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 30px;
    margin-bottom: 30px;
}

.hero-services div {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.hero-services i {
    color: #e85d04;
    margin-right: 7px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 23px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #e85d04;
    color: #ffffff;
    border: 2px solid #e85d04;
}

.primary-btn:hover {
    background: #c62828;
    border-color: #c62828;
    color: #ffffff;
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #222222;
    transform: translateY(-3px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-orange-shape {
    position: absolute;
    width: 390px;
    height: 440px;
    background: #e85d04;
    transform: rotate(7deg);
    border-radius: 15px;
    right: 25px;
    top: 25px;
}

.hero-image-card {
    position: relative;
    width: 390px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    transform: rotate(-2deg);
}

.hero-image-card img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* Image Badge */

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #111111;
    color: #ffffff;
    padding: 12px 18px;
    border-left: 4px solid #e85d04;
    display: flex;
    flex-direction: column;
}

.image-badge strong {
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
}

.image-badge span {
    color: #bbbbbb;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================
   FLOATING CARD
========================================= */

.experience-card {
    position: absolute;
    right: -15px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 14px 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    min-width: 210px;
}

.experience-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85d04;
    color: #ffffff;
    font-size: 20px;
}

.experience-card strong {
    display: block;
    color: #222222;
    font-size: 14px;
}

.experience-card span {
    display: block;
    color: #777777;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .construction-hero {
        padding: 70px 0;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content h1 span {
        font-size: 23px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-services {
        justify-content: center;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 60px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .construction-hero {
        padding: 55px 15px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h1 span {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .hero-content h2 {
        font-size: 19px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-services {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 410px;
        margin-top: 45px;
    }

    .hero-image-card {
        width: 290px;
    }

    .hero-image-card img {
        height: 320px;
    }

    .image-orange-shape {
        width: 290px;
        height: 340px;
    }

    .experience-card {
        right: 0;
        bottom: 0;
        min-width: 190px;
    }
}/* =========================================
   ABOUT CONSTRUCTION
========================================= */

.about-construction {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-construction::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 60px solid #fff3eb;
    border-radius: 50%;
    right: -120px;
    top: -100px;
}


/* =========================================
   IMAGE
========================================= */

.about-image-box {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-orange-shape {
    position: absolute;
    width: 390px;
    height: 440px;
    background: #e85d04;
    border-radius: 12px;
    transform: rotate(-7deg);
    left: 20px;
    top: 25px;
}

.about-main-image {
    position: relative;
    z-index: 2;
    width: 390px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    transform: rotate(2deg);
}

.about-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}


/* =========================================
   FLOATING CARD
========================================= */

.about-experience {
    position: absolute;
    z-index: 4;
    right: 5px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #111111;
    color: #ffffff;
    padding: 14px 20px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.about-hammer {
    width: 45px;
    height: 45px;
    background: #e85d04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.about-experience strong {
    display: block;
    font-size: 14px;
}

.about-experience span {
    display: block;
    color: #bbbbbb;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    position: relative;
    z-index: 2;
}

.section-label {
    position: relative;
    display: inline-block;
    color: #e85d04;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    padding-left: 45px;
    margin-bottom: 15px;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 3px;
    background: #e85d04;
    transform: translateY(-50%);
}


/* Heading */

.about-content h2 {
    color: #171717;
    font-size: 43px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #1597dc;
    display: block;
}


/* Text */

.about-content p {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-intro {
    font-size: 16px !important;
    color: #444444 !important;
}

.about-intro strong {
    color: #e85d04;
}


/* =========================================
   FEATURES
========================================= */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fff1e7;
    color: #e85d04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.about-feature h4 {
    color: #222222;
    font-size: 16px;
    font-weight: 800;
    margin: 2px 0 5px;
}

.about-feature p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}


/* =========================================
   BUTTON
========================================= */

.about-button {
    margin-top: 30px;
}

.about-button a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e85d04;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 23px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.about-button a:hover {
    background: #c62828;
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-construction {
        padding: 75px 0;
    }

    .about-image-box {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .about-content {
        text-align: center;
    }

    .section-label {
        padding-left: 0;
    }

    .section-label::before {
        display: none;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-features {
        text-align: left;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .about-construction {
        padding: 60px 15px;
    }

    .about-image-box {
        min-height: 380px;
    }

    .about-orange-shape {
        width: 285px;
        height: 335px;
        left: 20px;
    }

    .about-main-image {
        width: 285px;
    }

    .about-main-image img {
        height: 315px;
    }

    .about-experience {
        right: 0;
        bottom: 0;
        padding: 10px 13px;
    }

    .about-hammer {
        width: 40px;
        height: 40px;
    }

    .about-content h2 {
        font-size: 31px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-button a {
        width: 100%;
        justify-content: center;
    }
}/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-section {
    position: relative;
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 70px solid #fff0e7;
    border-radius: 50%;
    left: -180px;
    top: -150px;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: #e85d04;
    border-radius: 50%;
    right: -170px;
    bottom: -150px;
    opacity: 0.07;
}


/* =========================================
   HEADING
========================================= */

.why-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.why-label {
    display: inline-block;
    color: #e85d04;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.why-heading h2 {
    color: #171717;
    font-size: 43px;
    font-weight: 900;
    margin: 0 0 15px;
}

.why-heading h2 span {
    color: #1597dc;
}

.why-heading p {
    color: #707070;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 23px 20px;
    margin-bottom: 25px;
    border-left: 4px solid #e85d04;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0e7;
    color: #e85d04;
    font-size: 21px;
}

.why-card h4 {
    color: #222222;
    font-size: 17px;
    font-weight: 800;
    margin: 2px 0 7px;
}

.why-card p {
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   CENTER IMAGE
========================================= */

.why-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 330px;
    margin: auto;
}

.why-image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e85d04;
    top: 15px;
    left: 15px;
}

.why-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}


/* Center Badge */

.why-center-badge {
    position: absolute;
    z-index: 4;
    left: -25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #111111;
    color: #ffffff;
    padding: 13px 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.why-center-badge i {
    width: 42px;
    height: 42px;
    background: #e85d04;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.why-center-badge strong {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
}


/* =========================================
   RIGHT CARDS
========================================= */

.right-card {
    border-left: none;
    border-right: 4px solid #1597dc;
}

.right-card .why-icon {
    color: #1597dc;
    background: #eaf7ff;
}


/* =========================================
   BOTTOM STATS
========================================= */

.why-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    background: #111111;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-stat {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 22px 20px;
    border-right: 1px solid #333333;
}

.why-stat:last-child {
    border-right: none;
}

.why-stat > i {
    color: #e85d04;
    font-size: 25px;
}

.why-stat strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.why-stat span {
    display: block;
    color: #999999;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 75px 0;
    }

    .why-heading h2 {
        font-size: 38px;
    }

    .why-image {
        margin: 40px auto;
    }

    .right-card {
        border-right: none;
        border-left: 4px solid #1597dc;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-stat:nth-child(2) {
        border-right: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .why-choose-section {
        padding: 60px 15px;
    }

    .why-heading h2 {
        font-size: 31px;
    }

    .why-heading p {
        font-size: 14px;
    }

    .why-image img {
        height: 330px;
    }

    .why-center-badge {
        left: 0;
        bottom: 15px;
    }

    .why-stats {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .why-stat {
        border-right: none;
        border-bottom: 1px solid #333333;
    }

    .why-stat:last-child {
        border-bottom: none;
    }
}/* ==========================================
   PREMIUM SERVICES SECTION
========================================== */

.premium-services {
    position: relative;
    padding: 110px 0;
    background: #101214;
    overflow: hidden;
}


/* Background Shapes */

.premium-services::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border: 90px solid rgba(232, 93, 4, 0.04);
    border-radius: 50%;
    top: -280px;
    right: -200px;
}

.premium-services::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 70px solid rgba(21, 151, 220, 0.04);
    border-radius: 50%;
    bottom: -250px;
    left: -220px;
}


/* ==========================================
   TOP HEADING
========================================== */

.services-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.services-kicker {
    display: inline-block;
    position: relative;
    color: #e85d04;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    padding-left: 42px;
    margin-bottom: 14px;
}

.services-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 3px;
    background: #e85d04;
    transform: translateY(-50%);
}

.services-top h2 {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
}

.services-top h2 span {
    color: #1597dc;
}

.services-top > p {
    max-width: 480px;
    margin: 0;
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   SERVICES GRID
========================================== */

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ==========================================
   SERVICE CARD
========================================== */

.premium-service-card {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #292d31;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}


/* ==========================================
   CARD TOP
========================================== */

.service-card-top {
    position: relative;
    height: 205px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}


/* Image-like backgrounds */

.roofing-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.75)),
        linear-gradient(135deg, #68717a, #171a1d);
}

.ceiling-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.2), rgba(0,0,0,.75)),
        linear-gradient(135deg, #2d607c, #111b22);
}

.warehouse-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,.8)),
        linear-gradient(135deg, #b65c20, #20150f);
}

.interlock-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.2), rgba(0,0,0,.8)),
        linear-gradient(135deg, #555d63, #181a1c);
}

.canopy-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,.8)),
        linear-gradient(135deg, #d96a20, #241710);
}

.construction-bg {
    background:
        linear-gradient(135deg, rgba(0,0,0,.2), rgba(0,0,0,.8)),
        linear-gradient(135deg, #277ba5, #111b20);
}


/* Number */

.service-card-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(255,255,255,0.18);
    font-size: 55px;
    font-weight: 900;
    line-height: 1;
}


/* Big Icon */

.service-big-icon {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85d04;
    color: #ffffff;
    font-size: 21px;
    transition: 0.4s ease;
}

.premium-service-card:hover .service-big-icon {
    background: #1597dc;
    transform: rotate(-5deg) scale(1.08);
}


/* Small Label */

.service-card-top > span {
    color: rgba(255,255,255,0.75);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* ==========================================
   CARD BODY
========================================== */

.service-card-body {
    position: relative;
    padding: 27px 28px 30px;
    min-height: 210px;
}

.service-card-body::before {
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    background: #e85d04;
    left: 28px;
    top: 0;
}

.service-card-body h3 {
    color: #181818;
    font-size: 21px;
    font-weight: 900;
    margin: 0 0 12px;
}

.service-card-body p {
    color: #777777;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #181818;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: .3s ease;
}

.service-card-body a i {
    color: #e85d04;
    transition: .3s ease;
}

.service-card-body a:hover {
    color: #e85d04;
}

.service-card-body a:hover i {
    transform: translateX(6px);
}


/* ==========================================
   FEATURED CARD
========================================== */

.featured-service {
    border: 2px solid #e85d04;
    transform: translateY(-12px);
}

.featured-service:hover {
    transform: translateY(-20px);
}

.featured-ribbon {
    position: absolute;
    z-index: 5;
    right: -39px;
    top: 18px;
    width: 145px;
    padding: 7px 0;
    background: #e85d04;
    color: #ffffff;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    transform: rotate(45deg);
}


/* ==========================================
   CTA
========================================== */

.services-cta {
    position: relative;
    z-index: 3;
    margin-top: 60px;
    padding: 25px 30px;
    background: #191c1f;
    border: 1px solid #292d31;
    border-left: 5px solid #e85d04;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85d04;
    color: #ffffff;
    font-size: 22px;
}

.cta-left span {
    color: #e85d04;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-left h3 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 23px;
    background: #e85d04;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: .3s ease;
}

.cta-button:hover {
    background: #1597dc;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .premium-services {
        padding: 80px 0;
    }

    .services-top {
        display: block;
        text-align: center;
    }

    .services-kicker {
        padding-left: 0;
    }

    .services-kicker::before {
        display: none;
    }

    .services-top h2 {
        font-size: 40px;
    }

    .services-top > p {
        margin: 20px auto 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-service {
        transform: none;
    }

    .featured-service:hover {
        transform: translateY(-10px);
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .premium-services {
        padding: 65px 15px;
    }

    .services-top h2 {
        font-size: 32px;
    }

    .services-top > p {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-top {
        height: 190px;
    }

    .service-card-body {
        min-height: auto;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .cta-left h3 {
        font-size: 17px;
    }
}/* ==========================================
   MISSION & VISION
========================================== */

.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: #f5f6f7;
    overflow: hidden;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 80px solid #e85d0410;
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 65px solid #1597dc0d;
    border-radius: 50%;
    right: -180px;
    bottom: -200px;
}


/* ==========================================
   HEADING
========================================== */

.mv-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.mv-heading > span {
    display: inline-block;
    color: #e85d04;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.mv-heading h2 {
    color: #171717;
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 15px;
}

.mv-heading h2 strong {
    color: #1597dc;
}

.mv-heading p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   MAIN CARDS
========================================== */

.mv-card {
    position: relative;
    z-index: 2;
    min-height: 350px;
    background: #ffffff;
    padding: 40px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.11);
}


/* Mission Border */

.mission-card {
    border-top: 5px solid #e85d04;
}


/* Vision Border */

.vision-card {
    border-top: 5px solid #1597dc;
}


/* ==========================================
   BIG NUMBER
========================================== */

.mv-number {
    position: absolute;
    right: 25px;
    top: 18px;
    color: #f1f1f1;
    font-size: 75px;
    font-weight: 900;
    line-height: 1;
}


/* ==========================================
   ICON
========================================== */

.mv-icon {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0e6;
    color: #e85d04;
    font-size: 28px;
    margin-bottom: 25px;
}

.vision-card .mv-icon {
    background: #eaf7ff;
    color: #1597dc;
}


/* ==========================================
   CONTENT
========================================== */

.mv-content {
    position: relative;
    z-index: 2;
}

.mv-content > span {
    display: block;
    color: #e85d04;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.vision-card .mv-content > span {
    color: #1597dc;
}

.mv-content h3 {
    color: #1b1b1b;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 17px;
}

.mv-content p {
    color: #707070;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}


/* ==========================================
   BOTTOM LINE
========================================== */

.mv-line {
    position: absolute;
    width: 80px;
    height: 4px;
    background: #e85d04;
    bottom: 25px;
    left: 40px;
}

.vision-card .mv-line {
    background: #1597dc;
}


/* ==========================================
   BOTTOM BRAND BAR
========================================== */

.mv-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
    padding: 25px 30px;
    background: #111315;
    border-left: 5px solid #e85d04;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mv-bottom-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85d04;
    color: #fff;
    font-size: 23px;
}

.mv-bottom > div:nth-child(2) {
    flex: 1;
}

.mv-bottom span {
    color: #e85d04;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.mv-bottom h3 {
    color: #fff;
    font-size: 19px;
    margin: 5px 0 0;
    font-weight: 800;
}


/* ==========================================
   BOTTOM POINTS
========================================== */

.mv-bottom-text {
    display: flex;
    align-items: center;
    gap: 22px;
}

.mv-bottom-text p {
    color: #aaa;
    font-size: 11px;
    margin: 0;
    white-space: nowrap;
}

.mv-bottom-text i {
    color: #e85d04;
    margin-right: 5px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 80px 0;
    }

    .mv-heading h2 {
        font-size: 38px;
    }

    .mv-card {
        min-height: 370px;
    }

    .mv-bottom {
        flex-wrap: wrap;
    }

    .mv-bottom-text {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .mission-vision-section {
        padding: 65px 15px;
    }

    .mv-heading h2 {
        font-size: 31px;
    }

    .mv-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .mv-content h3 {
        font-size: 21px;
    }

    .mv-bottom {
        padding: 22px;
        align-items: flex-start;
    }

    .mv-bottom h3 {
        font-size: 16px;
    }

    .mv-bottom-text {
        display: block;
        margin-left: 78px;
    }

    .mv-bottom-text p {
        margin-bottom: 8px;
    }
}/* ==========================================
   WORK PROCESS
========================================== */

.work-process-section {
    position: relative;
    padding: 100px 0;
    background: #101214;
    overflow: hidden;
}


/* Background */

.work-process-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(232, 93, 4, 0.04);
    border-radius: 50%;
    left: -250px;
    top: -220px;
}

.work-process-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 60px solid rgba(21, 151, 220, 0.04);
    border-radius: 50%;
    right: -180px;
    bottom: -180px;
}


/* ==========================================
   HEADING
========================================== */

.process-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.process-heading span {
    display: inline-block;
    color: #e85d04;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.process-heading h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 15px;
}

.process-heading h2 strong {
    color: #1597dc;
}

.process-heading p {
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   PROCESS WRAPPER
========================================== */

.process-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
}


/* Connecting Line */

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 39px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #e85d04,
        #1597dc,
        #e85d04
    );
    opacity: .6;
}


/* ==========================================
   PROCESS ITEM
========================================== */

.process-item {
    position: relative;
    padding: 0 20px;
    text-align: center;
}


/* ==========================================
   ICON
========================================== */

.process-icon {
    position: relative;
    z-index: 3;

    width: 80px;
    height: 80px;
    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #191c1f;
    border: 2px solid #e85d04;

    color: #ffffff;
    font-size: 25px;

    box-shadow:
        0 0 0 8px #101214,
        0 0 0 10px rgba(232, 93, 4, .18);

    transition: .4s ease;
}

.process-item:nth-child(even) .process-icon {
    border-color: #1597dc;
    box-shadow:
        0 0 0 8px #101214,
        0 0 0 10px rgba(21, 151, 220, .18);
}

.process-item:hover .process-icon {
    transform: translateY(-8px) rotate(-5deg);
    background: #e85d04;
}

.process-item:nth-child(even):hover .process-icon {
    background: #1597dc;
}


/* Number */

.process-icon span {
    position: absolute;
    right: -13px;
    top: -13px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e85d04;
    color: #ffffff;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 900;
}

.process-item:nth-child(even) .process-icon span {
    background: #1597dc;
}


/* ==========================================
   CONTENT
========================================== */

.process-content small {
    color: #e85d04;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.process-item:nth-child(even) .process-content small {
    color: #1597dc;
}

.process-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 8px 0 10px;
}

.process-content p {
    color: #888888;
    font-size: 12px;
    line-height: 1.7;
    max-width: 230px;
    margin: auto;
}


/* ==========================================
   BOTTOM CTA
========================================== */

.process-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 70px;
    padding: 23px 28px;

    background: #191c1f;
    border: 1px solid #292d31;
    border-left: 5px solid #e85d04;
}

.process-bottom-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e85d04;
    color: #ffffff;

    font-size: 22px;
}

.process-bottom > div:nth-child(2) {
    flex: 1;
}

.process-bottom span {
    color: #e85d04;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.process-bottom h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 5px 0 0;
}

.process-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    background: #e85d04;
    color: #ffffff;
    text-decoration: none;

    padding: 13px 22px;

    font-size: 12px;
    font-weight: 800;

    transition: .3s ease;
}

.process-bottom a:hover {
    background: #1597dc;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .work-process-section {
        padding: 80px 0;
    }

    .process-heading h2 {
        font-size: 38px;
    }

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 10px;
    }

    .process-wrapper::before {
        display: none;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .work-process-section {
        padding: 65px 15px;
    }

    .process-heading h2 {
        font-size: 31px;
    }

    .process-heading p {
        font-size: 13px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 50px;
    }

    .process-item {
        padding: 0 10px;
    }

    .process-bottom {
        flex-wrap: wrap;
        padding: 20px;
    }

    .process-bottom h3 {
        font-size: 15px;
    }

    .process-bottom a {
        width: 100%;
        justify-content: center;
    }

}/* ==========================================
   CLEAN GALLERY SECTION
========================================== */

.clean-gallery {
    position: relative;
    padding: 95px 0;
    background: #ffffff;
    overflow: hidden;
}

.clean-gallery::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 45px solid #f5f8fa;
    border-radius: 50%;
    top: -130px;
    right: -80px;
}


/* ==========================================
   HEADING
========================================== */

.clean-gallery-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 45px;
}

.clean-gallery-heading > div {
    position: relative;
}

.clean-gallery-heading span {
    display: block;
    color: #e85d04;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.clean-gallery-heading h2 {
    color: #202326;
    font-size: 43px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0;
}

.clean-gallery-heading h2 strong {
    color: #1597dc;
}

.clean-gallery-heading p {
    max-width: 470px;
    color: #74787c;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   GALLERY GRID
========================================== */

.clean-gallery-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* ==========================================
   GALLERY ITEM
========================================== */

.clean-gallery-item {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #f2f3f4;
    border-radius: 3px;
}

.clean-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .55s ease;
}

.clean-gallery-item:hover img {
    transform: scale(1.06);
}


/* ==========================================
   OVERLAY
========================================== */

.clean-gallery-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 17px 18px;

    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    transform: translateY(10px);
    opacity: .95;

    transition: .35s ease;
}

.clean-gallery-item:hover .clean-gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.clean-gallery-overlay span {
    display: block;
    color: #e85d04;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.clean-gallery-overlay h3 {
    color: #202326;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}


/* Arrow */

.clean-gallery-overlay a {
    width: 40px;
    height: 40px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1597dc;
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    transition: .3s ease;
}

.clean-gallery-overlay a:hover {
    background: #e85d04;
    transform: rotate(5deg);
}


/* ==========================================
   BOTTOM BAR
========================================== */

.clean-gallery-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;
    padding: 22px 25px;

    background: #f7f8f9;
    border: 1px solid #e9ecef;
}


/* Brand */

.gallery-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-brand-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e8;
    color: #e85d04;

    font-size: 20px;
}

.gallery-brand span {
    display: block;
    color: #e85d04;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 4px;
}

.gallery-brand h3 {
    color: #202326;
    font-size: 17px;
    font-weight: 800;
    margin: 0;
}


/* Button */

.gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 21px;

    background: #e85d04;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}

.gallery-button:hover {
    background: #1597dc;
    color: #ffffff;
    transform: translateY(-2px);
}

.gallery-button i {
    transition: .3s ease;
}

.gallery-button:hover i {
    transform: translateX(4px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .clean-gallery {
        padding: 75px 0;
    }

    .clean-gallery-heading {
        display: block;
        text-align: center;
    }

    .clean-gallery-heading p {
        margin: 18px auto 0;
    }

    .clean-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .clean-gallery {
        padding: 60px 15px;
    }

    .clean-gallery-heading h2 {
        font-size: 32px;
    }

    .clean-gallery-heading p {
        font-size: 13px;
    }

    .clean-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clean-gallery-item {
        height: 240px;
    }

    .clean-gallery-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .clean-gallery-bottom {
        display: block;
    }

    .gallery-button {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
    }

}/* ==========================================
   ALL INDIA BRANCHES
========================================== */

.all-india-branches {
    position: relative;
    padding: 95px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.all-india-branches::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 65px solid #e85d0408;
    border-radius: 50%;
    left: -190px;
    top: -180px;
}

.all-india-branches::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 50px solid #1597dc08;
    border-radius: 50%;
    right: -150px;
    bottom: -150px;
}


/* ==========================================
   HEADING
========================================== */

.branch-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;
    margin-bottom: 45px;
}

.branch-heading span {
    display: block;
    color: #e85d04;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.branch-heading h2 {
    color: #202326;
    font-size: 43px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0;
}

.branch-heading h2 strong {
    color: #1597dc;
}

.branch-heading p {
    max-width: 450px;
    color: #74787c;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   BRANCH GRID
========================================== */

.branch-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* ==========================================
   BRANCH CARD
========================================== */

.branch-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 105px;
    padding: 18px;

    background: #ffffff;
    border: 1px solid #e7e9eb;

    transition: all .35s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: #e85d04;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}


/* ==========================================
   ICON
========================================== */

.branch-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e8;
    color: #e85d04;

    font-size: 17px;

    margin-right: 14px;

    transition: .3s ease;
}

.branch-card:hover .branch-icon {
    background: #e85d04;
    color: #ffffff;
}


/* ==========================================
   CONTENT
========================================== */

.branch-content {
    min-width: 0;
}

.branch-content span {
    display: block;
    color: #1597dc;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.branch-content h3 {
    color: #202326;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 4px;
}

.branch-content p {
    color: #92969a;
    font-size: 10px;
    line-height: 1.4;
    margin: 0;
}


/* ==========================================
   ARROW
========================================== */

.branch-arrow {
    position: absolute;
    right: 16px;
    bottom: 15px;

    color: #d4d7d9;
    font-size: 11px;

    transition: .3s ease;
}

.branch-card:hover .branch-arrow {
    color: #e85d04;
    transform: translateX(4px);
}


/* ==========================================
   BOTTOM
========================================== */

.branch-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;
    padding: 22px 25px;

    background: #ffffff;
    border: 1px solid #e6e8ea;
    border-left: 5px solid #e85d04;

    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.branch-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.branch-bottom-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ff;
    color: #1597dc;

    font-size: 20px;
}

.branch-bottom span {
    display: block;
    color: #e85d04;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 4px;
}

.branch-bottom h3 {
    color: #202326;
    font-size: 17px;
    font-weight: 800;
    margin: 0;
}

.branch-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    background: #e85d04;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition: .3s ease;
}

.branch-bottom > a:hover {
    background: #1597dc;
    color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .all-india-branches {
        padding: 75px 0;
    }

    .branch-heading {
        display: block;
        text-align: center;
    }

    .branch-heading p {
        margin: 18px auto 0;
    }

    .branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .all-india-branches {
        padding: 60px 15px;
    }

    .branch-heading h2 {
        font-size: 32px;
    }

    .branch-heading p {
        font-size: 13px;
    }

    .branch-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .branch-card {
        min-height: 95px;
    }

    .branch-bottom {
        display: block;
        padding: 20px;
    }

    .branch-bottom > a {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
    }

}/* ==========================================
   GOOGLE RATING SECTION
========================================== */

.google-rating-section {
    padding: 70px 0;
    background: #f7f9fa;
}

.google-rating-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 45px 50px;

    background: #ffffff;
    border: 1px solid #e8ebed;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

    position: relative;
    overflow: hidden;
}


/* Orange top line */

.google-rating-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #e85d04,
        #1597dc
    );
}


/* ==========================================
   LEFT
========================================== */

.google-rating-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.google-logo {
    width: 80px;
    height: 80px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e7e9;
    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.google-logo span {
    font-size: 42px;
    font-weight: 900;

    background: linear-gradient(
        135deg,
        #4285f4,
        #34a853,
        #fbbc05,
        #ea4335
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.rating-label {
    display: block;

    color: #e85d04;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.google-rating-info h2 {
    color: #202326;

    font-size: 27px;
    font-weight: 900;

    margin: 0 0 8px;
}

.google-rating-info p {
    color: #777d82;

    font-size: 13px;
    line-height: 1.7;

    max-width: 500px;

    margin: 0 0 18px;
}


/* ==========================================
   GOOGLE BUTTON
========================================== */

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    background: #ffffff;

    border: 1px solid #dfe3e6;

    color: #303438;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}

.google-review-btn i:first-child {
    color: #4285f4;
    font-size: 15px;
}

.google-review-btn i:last-child {
    color: #e85d04;

    transition: .3s ease;
}

.google-review-btn:hover {
    border-color: #e85d04;

    color: #e85d04;

    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(0,0,0,.07);
}

.google-review-btn:hover i:last-child {
    transform: translateX(4px);
}


/* ==========================================
   RIGHT RATING
========================================== */

.google-rating-right {
    min-width: 250px;

    padding-left: 45px;

    border-left: 1px solid #e5e7e9;

    text-align: center;
}

.rating-number {
    color: #202326;

    font-size: 48px;
    line-height: 1;

    font-weight: 900;
}

.rating-number small {
    color: #999;

    font-size: 17px;

    font-weight: 600;
}


/* Stars */

.rating-stars {
    display: flex;
    justify-content: center;

    gap: 5px;

    margin: 12px 0 8px;
}

.rating-stars i {
    color: #fbbc04;

    font-size: 17px;
}


/* Reviews */

.rating-review-count {
    color: #7c8185;

    font-size: 11px;
}

.rating-review-count strong {
    color: #202326;
}


/* Google */

.rating-google-text {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 12px;

    color: #777;

    font-size: 10px;
    font-weight: 700;
}

.rating-google-text i {
    color: #4285f4;
    font-size: 14px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .google-rating-box {
        padding: 40px 35px;
    }

    .google-rating-left {
        gap: 18px;
    }

    .google-rating-info h2 {
        font-size: 23px;
    }

    .google-rating-right {
        min-width: 210px;
        padding-left: 30px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .google-rating-section {
        padding: 55px 15px;
    }

    .google-rating-box {
        display: block;
        padding: 35px 25px;
        text-align: center;
    }

    .google-rating-left {
        display: block;
    }

    .google-logo {
        margin: 0 auto 20px;
    }

    .google-rating-info h2 {
        font-size: 22px;
    }

    .google-rating-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .google-review-btn {
        justify-content: center;
    }

    .google-rating-right {
        min-width: 0;

        margin-top: 30px;
        padding: 25px 0 0;

        border-left: 0;
        border-top: 1px solid #e5e7e9;
    }

    .rating-number {
        font-size: 42px;
    }
}/* ==========================================
   FAQ SECTION
========================================== */

.faq-section {
    position: relative;
    padding: 95px 0;
    background: #ffffff;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 50px solid #f5f8fa;
    border-radius: 50%;
    left: -150px;
    top: -120px;
}


/* ==========================================
   HEADING
========================================== */

.faq-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 45px;
}

.faq-heading span {
    display: block;
    color: #e85d04;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.faq-heading h2 {
    color: #202326;
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 12px;
}

.faq-heading h2 strong {
    color: #1597dc;
}

.faq-heading p {
    color: #777d82;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* ==========================================
   FAQ WRAPPER
========================================== */

.faq-wrapper {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;
}


/* ==========================================
   FAQ ITEM
========================================== */

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e8ea;
    margin-bottom: 12px;

    transition: .3s ease;
}

.faq-item:hover {
    border-color: #d6dadd;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}


/* ==========================================
   QUESTION
========================================== */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 23px;

    border: 0;
    background: transparent;

    color: #202326;

    font-size: 14px;
    font-weight: 800;

    text-align: left;
    cursor: pointer;
}

.faq-question i {
    width: 32px;
    height: 32px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e8;
    color: #e85d04;

    font-size: 11px;

    transition: .3s ease;
}


/* Active */

.faq-item.active {
    border-color: #e85d04;
}

.faq-item.active .faq-question {
    color: #e85d04;
}

.faq-item.active .faq-question i {
    background: #e85d04;
    color: #ffffff;

    transform: rotate(45deg);
}


/* ==========================================
   ANSWER
========================================== */

.faq-answer {
    display: none;
    padding: 0 23px 21px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #777d82;

    font-size: 13px;
    line-height: 1.8;

    margin: 0;

    padding-right: 50px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .faq-section {
        padding: 65px 15px;
    }

    .faq-heading h2 {
        font-size: 31px;
    }

    .faq-heading p {
        font-size: 13px;
    }

    .faq-question {
        padding: 17px;
        font-size: 13px;
    }

    .faq-question i {
        width: 29px;
        height: 29px;
    }

    .faq-answer {
        padding: 0 17px 18px;
    }

    .faq-answer p {
        padding-right: 0;
        font-size: 12px;
    }
}/* ==========================================
   NEED CONSTRUCTION WORK
========================================== */

.need-construction-section {
    padding: 70px 0;
    background: #f7f9fa;
}


/* Main Box */

.need-construction-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 38px 42px;

    background: #ffffff;

    border: 1px solid #e5e8ea;

    border-left: 5px solid #e85d04;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);

    overflow: hidden;
}


/* Decorative Circle */

.need-construction-box::after {
    content: "";
    position: absolute;

    width: 230px;
    height: 230px;

    border: 35px solid #eaf7ff;

    border-radius: 50%;

    right: -110px;
    top: -100px;

    pointer-events: none;
}


/* ==========================================
   CONTENT
========================================== */

.need-construction-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 20px;

    max-width: 700px;
}

.need-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1e8;

    color: #e85d04;

    font-size: 25px;

    border-radius: 3px;
}


.need-construction-content span {
    display: block;

    color: #e85d04;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


.need-construction-content h2 {
    color: #202326;

    font-size: 30px;
    font-weight: 900;

    margin: 0 0 8px;
}


.need-construction-content h2 strong {
    color: #1597dc;
}


.need-construction-content p {
    color: #777d82;

    font-size: 13px;
    line-height: 1.7;

    margin: 0;

    max-width: 600px;
}


/* ==========================================
   ACTION
========================================== */

.need-construction-action {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* Call */

.need-call-btn {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px 15px;

    background: #f7f9fa;

    border: 1px solid #e3e6e8;

    text-decoration: none;

    transition: .3s ease;
}


.need-call-btn > i {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ff;

    color: #1597dc;

    font-size: 13px;
}


.need-call-btn small {
    display: block;

    color: #999;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 2px;
}


.need-call-btn strong {
    display: block;

    color: #202326;

    font-size: 14px;
}


.need-call-btn:hover {
    border-color: #1597dc;

    transform: translateY(-2px);
}


/* Contact */

.need-contact-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    background: #e85d04;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}


.need-contact-btn:hover {
    background: #1597dc;

    color: #ffffff;

    transform: translateY(-2px);
}


.need-contact-btn i {
    transition: .3s ease;
}


.need-contact-btn:hover i {
    transform: translateX(4px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .need-construction-box {
        padding: 32px;
    }

    .need-construction-content h2 {
        font-size: 25px;
    }

    .need-construction-action {
        flex-direction: column;
        align-items: stretch;
    }

    .need-call-btn,
    .need-contact-btn {
        justify-content: center;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .need-construction-section {
        padding: 55px 15px;
    }

    .need-construction-box {
        display: block;

        padding: 28px 22px;
    }

    .need-construction-content {
        display: block;

        text-align: center;
    }

    .need-icon {
        margin: 0 auto 18px;
    }

    .need-construction-content h2 {
        font-size: 25px;
    }

    .need-construction-content p {
        font-size: 12px;
    }

    .need-construction-action {
        margin-top: 25px;

        display: flex;

        width: 100%;
    }

    .need-call-btn,
    .need-contact-btn {
        width: 100%;
        justify-content: center;
    }

}/* ==========================================
   CONSTRUCTION FOOTER
========================================== */

.construction-footer {
    background: #ffffff;
}


/* ==========================================
   MAIN FOOTER
========================================== */

.footer-main {
    position: relative;
    padding: 75px 0 65px;

    background: #202326;

    overflow: hidden;
}


/* Decorative Elements */

.footer-main::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border: 55px solid rgba(255,255,255,.025);

    border-radius: 50%;

    right: -170px;
    top: -180px;
}

.footer-main::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 40px solid rgba(232,93,4,.04);

    border-radius: 50%;

    left: -130px;
    bottom: -130px;
}


/* ==========================================
   GRID
========================================== */

.footer-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.1fr
        1.3fr;

    gap: 45px;
}


/* ==========================================
   COMPANY
========================================== */

.footer-logo {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}


.footer-logo-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e85d04;

    color: #ffffff;

    font-size: 22px;
}


.footer-logo h2 {
    color: #ffffff;

    font-size: 21px;
    font-weight: 900;

    margin: 0;

    letter-spacing: .5px;
}


.footer-logo span {
    display: block;

    color: #1597dc;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-top: 3px;
}


.footer-company > p {
    color: #aeb2b5;

    font-size: 13px;
    line-height: 1.8;

    max-width: 330px;

    margin: 0 0 22px;
}


/* Quote Button */

.footer-quote-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    background: #e85d04;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}


.footer-quote-btn:hover {
    background: #1597dc;

    color: #ffffff;

    transform: translateY(-2px);
}


.footer-quote-btn i {
    transition: .3s ease;
}


.footer-quote-btn:hover i {
    transform: translateX(4px);
}


/* ==========================================
   COLUMNS
========================================== */

.footer-column h3 {
    position: relative;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    margin: 0 0 25px;

    padding-bottom: 12px;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: #e85d04;
}


.footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.footer-column ul li {
    margin-bottom: 12px;
}


.footer-column ul li a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #aeb2b5;

    text-decoration: none;

    font-size: 12px;

    transition: .3s ease;
}


.footer-column ul li a i {
    color: #e85d04;

    font-size: 8px;

    transition: .3s ease;
}


.footer-column ul li a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-column ul li a:hover i {
    color: #1597dc;
}


/* ==========================================
   CONTACT
========================================== */

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
}


.footer-contact-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(232,93,4,.12);

    color: #e85d04;

    font-size: 12px;
}


.footer-contact-item span {
    display: block;

    color: #777d82;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 4px;
}


.footer-contact-item p {
    color: #c3c6c8;

    font-size: 11px;
    line-height: 1.6;

    margin: 0;
}


.footer-contact-item a {
    color: #c3c6c8;

    text-decoration: none;

    font-size: 12px;

    transition: .3s ease;
}


.footer-contact-item a:hover {
    color: #e85d04;
}


/* ==========================================
   BOTTOM
========================================== */

.footer-bottom {
    background: #17191b;

    border-top: 1px solid #303337;
}


.footer-bottom-inner {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    color: #777d82;

    font-size: 10px;

    margin: 0;
}


.footer-bottom p strong {
    color: #c5c8ca;
}


/* ==========================================
   SOCIAL
========================================== */

.footer-social {
    display: flex;

    gap: 7px;
}


.footer-social a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #24272a;

    color: #999da0;

    text-decoration: none;

    font-size: 11px;

    transition: .3s ease;
}


.footer-social a:hover {
    background: #e85d04;

    color: #ffffff;

    transform: translateY(-3px);
}


/* ==========================================
   POLICY
========================================== */

.footer-policy {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-policy a {
    color: #777d82;

    text-decoration: none;

    font-size: 9px;

    transition: .3s ease;
}


.footer-policy a:hover {
    color: #e85d04;
}


.footer-policy span {
    color: #44484b;

    font-size: 10px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;

        padding: 18px 0;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .footer-main {
        padding: 55px 15px 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-company > p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 0 15px;
    }

    .footer-bottom-inner {
        display: block;

        text-align: center;

        padding: 20px 0;
    }

    .footer-social {
        justify-content: center;

        margin: 15px 0;
    }

    .footer-policy {
        justify-content: center;

        flex-wrap: wrap;
    }

}/* ==========================================
   LIGHT & CLEAN TOP BAR
========================================== */

.light-topbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.light-topbar-inner {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* LEFT */

.light-topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.light-topbar-left a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #70757a;

    text-decoration: none;

    font-size: 11px;

    transition: .3s ease;
}

.light-topbar-left a i {
    color: #e85d04;
    font-size: 11px;
}

.light-topbar-left a:hover {
    color: #e85d04;
}


/* Divider */

.topbar-line {
    width: 1px;
    height: 17px;

    background: #e5e5e5;
}


/* RIGHT */

.light-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* Phone */

.topbar-call {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #55595d;

    text-decoration: none;

    font-size: 11px;
}

.topbar-call i {
    color: #1597dc;
    font-size: 11px;
}

.topbar-call span {
    color: #92979b;
}

.topbar-call strong {
    color: #25282b;
    font-weight: 800;
}

.topbar-call:hover strong {
    color: #e85d04;
}


/* Social */

.light-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.light-social a {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f8f9;

    border: 1px solid #eeeeee;

    color: #777c80;

    text-decoration: none;

    font-size: 9px;

    transition: .3s ease;
}

.light-social a:hover {
    background: #e85d04;
    border-color: #e85d04;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 767px) {

    .light-topbar-left {
        gap: 10px;
    }

    .light-topbar-left a {
        font-size: 10px;
    }

    .light-topbar-left a:first-child {
        display: block;
    }

    .topbar-line {
        display: block;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .light-topbar {
        display: none;
    }

}/* ==========================================
   PREMIUM CONSTRUCTION MARQUEE BACKGROUND
========================================== */

.construction-marquee {
    width: 100%;
    position: relative;
    overflow: hidden;

    padding: 3px 0;

    background:
        linear-gradient(
            135deg,
            rgba(232, 93, 4, 0.12) 0%,
            transparent 35%,
            rgba(21, 151, 220, 0.08) 70%,
            transparent 100%
        ),
        #151719;

    border-top: 2px solid #e85d04;
    border-bottom: 1px solid #303438;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .12);

}


/* ==========================================
   DIAGONAL BACKGROUND PATTERN
========================================== */

.construction-marquee::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 22px,
            rgba(255,255,255,.025) 23px,
            rgba(255,255,255,.025) 24px
        );

    pointer-events: none;
}


/* ==========================================
   ORANGE GLOW
========================================== */

.construction-marquee::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: 25%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: rgba(232, 93, 4, .07);

    border-radius: 50%;

    filter: blur(45px);

    pointer-events: none;
}


/* ==========================================
   MARQUEE
========================================== */

.construction-marquee marquee {
    position: relative;

    z-index: 3;

    width: 100%;

    display: block;
}


/* ==========================================
   BRAND
========================================== */

.marquee-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 17px;

    margin-right: 25px;

    background:
        linear-gradient(
            135deg,
            #f06a0a,
            #d94e00
        );

    color: #ffffff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    vertical-align: middle;

    box-shadow:
        0 5px 15px rgba(232,93,4,.25);

}


/* Brand Icon */

.marquee-brand i {
    font-size: 13px;
}


/* ==========================================
   ITEMS
========================================== */

.marquee-item {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin: 0 18px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    white-space: nowrap;

    vertical-align: middle;
}


/* Icons */

.marquee-item i {
    color: #f59e0b;

    font-size: 13px;

    filter:
        drop-shadow(0 0 5px rgba(245,158,11,.25));
}


/* ==========================================
   SEPARATOR
========================================== */

.marquee-separator {
    color: #e85d04;

    font-size: 17px;

    font-weight: 900;

    vertical-align: middle;

    text-shadow:
        0 0 8px rgba(232,93,4,.35);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .construction-marquee {
        padding: 12px 0;
    }

    .marquee-brand {
        padding: 7px 12px;

        margin-right: 12px;

        font-size: 8px;
    }

    .marquee-brand i {
        font-size: 11px;
    }

    .marquee-item {
        margin: 0 10px;

        font-size: 9px;
    }

    .marquee-item i {
        font-size: 11px;
    }

    .marquee-separator {
        font-size: 13px;
    }

}/* ==========================================
   CEO / FOUNDER SECTION
========================================== */

.founder-section {
    padding: 90px 0;

    background: #f7f8f9;

    overflow: hidden;
}


/* ==========================================
   MAIN WRAPPER
========================================== */

.founder-wrapper {
    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    background: #ffffff;

    border: 1px solid #e5e7e9;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .06);
}


/* ==========================================
   IMAGE AREA
========================================== */

.founder-image-area {
    position: relative;

    height: 100%;

    min-height: 500px;

    background:
        linear-gradient(
            145deg,
            #202326,
            #111315
        );

    overflow: hidden;
}


/* Orange design */

.founder-image-area::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 45px solid rgba(232, 93, 4, .12);

    border-radius: 50%;

    top: -100px;
    left: -100px;
}


/* Blue design */

.founder-image-area::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 30px solid rgba(21, 151, 220, .10);

    border-radius: 50%;

    right: -80px;
    bottom: -70px;
}


/* ==========================================
   IMAGE
========================================== */

.founder-image {
    position: absolute;

    inset: 35px;

    z-index: 2;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);
}


.founder-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .5s ease;
}


.founder-wrapper:hover .founder-image img {
    transform: scale(1.04);
}


/* ==========================================
   EXPERIENCE BADGE
========================================== */

.founder-experience {
    position: absolute;

    z-index: 4;

    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    background: #e85d04;

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.2);
}


.founder-experience strong {
    font-size: 28px;

    line-height: 1;

    font-weight: 900;
}


.founder-experience span {
    font-size: 9px;

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}


/* ==========================================
   CONTENT
========================================== */

.founder-content {
    padding: 60px 65px;
}


/* Label */

.founder-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e85d04;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;

    margin-bottom: 13px;
}


.founder-label i {
    font-size: 12px;
}


/* Heading */

.founder-heading h2 {
    color: #202326;

    font-size: 35px;

    line-height: 1.2;

    font-weight: 900;

    margin: 0 0 22px;

    max-width: 520px;
}


.founder-heading h2 strong {
    display: block;

    color: #1597dc;
}


/* Paragraph */

.founder-intro {
    color: #454a4e;

    font-size: 14px;

    line-height: 1.8;

    font-weight: 600;

    margin-bottom: 12px;

    max-width: 650px;
}


.founder-description {
    color: #858a8e;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;

    max-width: 650px;
}


/* ==========================================
   QUOTE
========================================== */

.founder-quote {
    position: relative;

    display: flex;

    gap: 15px;

    padding: 18px 20px;

    margin-bottom: 28px;

    background: #f7f9fa;

    border-left: 3px solid #e85d04;
}


.founder-quote > i {
    color: #e85d04;

    font-size: 18px;

    padding-top: 3px;
}


.founder-quote p {
    color: #555a5e;

    font-size: 12px;

    line-height: 1.7;

    font-style: italic;

    margin: 0;
}


/* ==========================================
   FOUNDER BOTTOM
========================================== */

.founder-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid #eeeeee;
}


/* Name */

.founder-name h3 {
    color: #202326;

    font-size: 18px;

    font-weight: 900;

    margin: 0;
}


.founder-name h3 span {
    display: block;

    color: #1597dc;

    font-size: 10px;

    letter-spacing: 1.5px;

    margin-top: 3px;
}


.founder-name p {
    color: #999;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin: 6px 0 0;
}


/* Signature */

.founder-sign span {
    color: #555;

    font-family: cursive;

    font-size: 24px;

    font-style: italic;

    transform: rotate(-5deg);

    display: block;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .founder-wrapper {
        grid-template-columns: 1fr;
    }

    .founder-image-area {
        min-height: 450px;
    }

    .founder-content {
        padding: 45px 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .founder-section {
        padding: 55px 15px;
    }

    .founder-image-area {
        min-height: 360px;
    }

    .founder-image {
        inset: 20px;
    }

    .founder-experience {
        left: 10px;
        bottom: 10px;

        padding: 9px 12px;
    }

    .founder-experience strong {
        font-size: 23px;
    }

    .founder-experience span {
        font-size: 8px;
    }

    .founder-content {
        padding: 35px 22px;
    }

    .founder-heading h2 {
        font-size: 27px;
    }

    .founder-intro {
        font-size: 13px;
    }

    .founder-description {
        font-size: 11px;
    }

    .founder-bottom {
        align-items: center;
    }

    .founder-sign span {
        font-size: 19px;
    }

}/* ==========================================
   CONSTRUCTION HIGHLIGHT MARQUEE
========================================== */

.construction-highlight {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 58px;

    overflow: hidden;

    background: #24272a;

    border-top: 1px solid #33373a;
    border-bottom: 3px solid #e85d04;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}


/* ==========================================
   LEFT LABEL
========================================== */

.highlight-label {
    position: relative;
    z-index: 5;

    height: 100%;

    min-width: 185px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #f59e0b;

    color: #17191b;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;

    flex-shrink: 0;
}


/* Diagonal Edge */

.highlight-label::after {
    content: "";

    position: absolute;

    right: -22px;
    top: 0;

    width: 40px;
    height: 100%;

    background: #f59e0b;

    transform: skewX(-25deg);

    z-index: -1;
}


.highlight-label i {
    font-size: 13px;
}


/* ==========================================
   MARQUEE
========================================== */

.construction-highlight marquee {
    flex: 1;

    height: 100%;

    display: flex;
    align-items: center;

    color: #ffffff;
}


/* ==========================================
   CONTENT
========================================== */

.highlight-content {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin: 0 25px;

    color: #e8eaeb;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .5px;

    white-space: nowrap;

    vertical-align: middle;
}


.highlight-content strong {
    color: #f59e0b;

    font-weight: 900;
}


.highlight-content i {
    color: #e85d04;

    font-size: 13px;
}


/* ==========================================
   SEPARATOR
========================================== */

.highlight-separator {
    display: inline-block;

    color: #555b60;

    font-size: 9px;

    vertical-align: middle;
}


/* ==========================================
   SUBTLE BACKGROUND PATTERN
========================================== */

.construction-highlight::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 28px,
            rgba(255,255,255,.018) 29px,
            rgba(255,255,255,.018) 30px
        );

    pointer-events: none;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .construction-highlight {
        height: 48px;
    }

    .highlight-label {
        min-width: 115px;

        padding: 0 10px;

        font-size: 7px;

        letter-spacing: 1px;

        gap: 5px;
    }

    .highlight-label::after {
        right: -16px;

        width: 28px;
    }

    .highlight-label i {
        font-size: 10px;
    }

    .highlight-content {
        margin: 0 14px;

        font-size: 9px;

        gap: 6px;
    }

    .highlight-content i {
        font-size: 10px;
    }

    .highlight-separator {
        font-size: 7px;
    }

}/* ==========================================
   BEFORE & AFTER SECTION
========================================== */

.before-after-section {
    padding: 90px 0;

    background: #17191b;

    position: relative;

    overflow: hidden;
}


/* Background Design */

.before-after-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 80px solid rgba(232, 93, 4, .04);

    border-radius: 50%;

    left: -250px;
    top: -250px;
}

.before-after-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 55px solid rgba(21, 151, 220, .04);

    border-radius: 50%;

    right: -180px;
    bottom: -180px;
}


/* ==========================================
   HEADING
========================================== */

.before-after-heading {
    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 45px;
}

.section-mini-title {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e85d04;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.section-mini-title i {
    font-size: 11px;
}

.before-after-heading h2 {
    color: #ffffff;

    font-size: 38px;

    font-weight: 900;

    margin: 0 0 12px;
}

.before-after-heading h2 span {
    color: #e85d04;
}

.before-after-heading p {
    color: #8f9599;

    font-size: 12px;

    line-height: 1.8;

    max-width: 600px;

    margin: auto;
}


/* ==========================================
   MAIN CARD
========================================== */

.before-after-card {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 70px 1fr;

    gap: 0;

    background: #222527;

    border: 1px solid #303437;

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}


/* ==========================================
   IMAGE
========================================== */

.ba-image-box {
    position: relative;

    height: 380px;

    overflow: hidden;
}

.ba-image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .6s ease;
}

.ba-image-box:hover img {
    transform: scale(1.06);
}


/* Dark Overlay */

.ba-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 45%
    );
}


/* Labels */

.ba-label {
    position: absolute;

    z-index: 3;

    left: 20px;
    top: 20px;

    padding: 7px 13px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.before-label {
    background: #555b60;
}

.after-label {
    background: #e85d04;
}


/* ==========================================
   CENTER ARROW
========================================== */

.ba-middle {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #222527;

    z-index: 5;
}

.ba-arrow {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e85d04;

    color: #ffffff;

    border: 5px solid #222527;

    border-radius: 50%;

    box-shadow:
        0 0 0 1px #e85d04;

    font-size: 14px;
}


/* ==========================================
   PROJECT INFO
========================================== */

.ba-project-info {
    grid-column: 1 / 4;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 25px;

    background: #1d2022;

    border-top: 1px solid #303437;
}

.ba-project-info span {
    display: block;

    color: #777d82;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.ba-project-info h3 {
    color: #ffffff;

    font-size: 15px;

    margin: 5px 0 0;

    font-weight: 800;
}

.ba-location {
    display: flex;

    align-items: center;

    gap: 8px;
}

.ba-location i {
    color: #1597dc;

    font-size: 13px;
}

.ba-location span {
    color: #c2c6c8;

    font-size: 11px;
}


/* ==========================================
   FEATURES
========================================== */

.ba-features {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 25px;

    background: #222527;

    border: 1px solid #303437;
}

.ba-feature {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px;

    border-right: 1px solid #303437;
}

.ba-feature:last-child {
    border-right: 0;
}

.ba-feature-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(232,93,4,.10);

    color: #e85d04;

    font-size: 13px;
}

.ba-feature strong {
    display: block;

    color: #ffffff;

    font-size: 11px;

    margin-bottom: 3px;
}

.ba-feature span {
    display: block;

    color: #777d82;

    font-size: 9px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .before-after-section {
        padding: 70px 20px;
    }

    .before-after-card {
        grid-template-columns: 1fr 55px 1fr;
    }

    .ba-image-box {
        height: 300px;
    }

    .ba-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-feature:nth-child(2) {
        border-right: 0;
    }

    .ba-feature:nth-child(-n+2) {
        border-bottom: 1px solid #303437;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .before-after-section {
        padding: 55px 15px;
    }

    .before-after-heading h2 {
        font-size: 28px;
    }

    .before-after-heading p {
        font-size: 11px;
    }

    .before-after-card {
        display: block;
    }

    .ba-image-box {
        height: 240px;
    }

    .ba-middle {
        height: 55px;
    }

    .ba-arrow {
        width: 40px;
        height: 40px;

        transform: rotate(90deg);
    }

    .ba-project-info {
        display: block;

        padding: 18px;
    }

    .ba-location {
        margin-top: 12px;
    }

    .ba-features {
        grid-template-columns: 1fr;
    }

    .ba-feature {
        border-right: 0;

        border-bottom: 1px solid #303437;
    }

    .ba-feature:last-child {
        border-bottom: 0;
    }

}/* ==========================================
   REGISTRATION SECTION
========================================== */

.registration-section {
    padding: 65px 0;

    background: #17191b;

    position: relative;

    overflow: hidden;
}


/* Background Pattern */

.registration-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 70px solid rgba(232, 93, 4, .04);

    border-radius: 50%;

    left: -230px;
    top: -220px;
}

.registration-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 50px solid rgba(21, 151, 220, .035);

    border-radius: 50%;

    right: -150px;
    bottom: -150px;
}


/* ==========================================
   MAIN BOX
========================================== */

.registration-box {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 35px 40px;

    background:
        linear-gradient(
            135deg,
            #24272a,
            #1c1f21
        );

    border: 1px solid #34383b;

    box-shadow:
        0 20px 50px rgba(0,0,0,.22);

    overflow: hidden;
}


/* Top Orange Line */

.registration-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #e85d04,
            #f59e0b,
            #1597dc
        );
}


/* ==========================================
   MAIN ICON
========================================== */

.registration-icon {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(232,93,4,.10);

    border: 1px solid rgba(232,93,4,.25);

    color: #e85d04;

    font-size: 25px;
}


/* ==========================================
   CONTENT
========================================== */

.registration-content {
    flex: 1;
}


.registration-label {
    display: block;

    color: #e85d04;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


.registration-content h2 {
    color: #ffffff;

    font-size: 25px;

    font-weight: 900;

    margin: 0 0 7px;
}


.registration-content h2 strong {
    color: #1597dc;
}


.registration-content > p {
    color: #858b8f;

    font-size: 11px;

    line-height: 1.6;

    margin: 0 0 20px;

    max-width: 550px;
}


/* ==========================================
   DETAILS
========================================== */

.registration-details {
    display: grid;

    grid-template-columns: repeat(2, minmax(220px, 1fr));

    gap: 12px;

    max-width: 700px;
}


/* Card */

.registration-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    background: #191b1d;

    border: 1px solid #303437;

    transition: .3s ease;
}


.registration-card:hover {
    border-color: #e85d04;

    transform: translateY(-2px);
}


/* Card Icon */

.registration-card-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(232,93,4,.10);

    color: #e85d04;

    font-size: 13px;
}


.registration-card-icon.gst-icon {
    color: #1597dc;

    background: rgba(21,151,220,.10);
}


.registration-card span {
    display: block;

    color: #777e82;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.registration-card h3 {
    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .3px;

    margin: 0;
}


/* ==========================================
   VERIFIED BADGE
========================================== */

.registration-badge {
    width: 95px;
    height: 95px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 6px;

    border-radius: 50%;

    background: #e85d04;

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(232,93,4,.22);
}


.registration-badge i {
    font-size: 20px;
}


.registration-badge span {
    font-size: 7px;

    font-weight: 900;

    line-height: 1.4;

    letter-spacing: 1px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .registration-box {
        padding: 30px;
    }

    .registration-badge {
        width: 80px;
        height: 80px;
    }

    .registration-details {
        grid-template-columns: 1fr;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .registration-section {
        padding: 45px 15px;
    }

    .registration-box {
        display: block;

        padding: 25px 20px;

        text-align: center;
    }

    .registration-icon {
        margin: 0 auto 18px;

        width: 60px;
        height: 60px;

        font-size: 21px;
    }

    .registration-content h2 {
        font-size: 21px;
    }

    .registration-content > p {
        font-size: 10px;
    }

    .registration-details {
        display: block;
    }

    .registration-card {
        text-align: left;

        margin-bottom: 10px;
    }

    .registration-card:last-child {
        margin-bottom: 0;
    }

    .registration-badge {
        margin: 20px auto 0;

        width: 75px;
        height: 75px;
    }

}/* ==========================================
   CLIENT REVIEW SECTION
========================================== */

.client-review-section {
    padding: 90px 0;

    background: #f6f7f8;

    position: relative;

    overflow: hidden;
}


/* Background Decoration */

.client-review-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 70px solid rgba(232, 93, 4, .035);

    border-radius: 50%;

    top: -220px;
    right: -200px;
}


.client-review-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 45px solid rgba(21, 151, 220, .035);

    border-radius: 50%;

    bottom: -160px;
    left: -140px;
}


/* ==========================================
   HEADING
========================================== */

.review-heading {
    position: relative;

    z-index: 2;

    text-align: center;

    margin-bottom: 50px;
}


.review-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e85d04;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.review-label i {
    font-size: 11px;
}


.review-heading h2 {
    color: #202326;

    font-size: 38px;

    font-weight: 900;

    margin: 0 0 12px;
}


.review-heading h2 strong {
    color: #1597dc;
}


.review-heading p {
    color: #777d81;

    max-width: 620px;

    margin: auto;

    font-size: 12px;

    line-height: 1.8;
}


/* ==========================================
   REVIEW LAYOUT
========================================== */

.review-layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 25px;

    align-items: start;
}


/* ==========================================
   OVERALL RATING
========================================== */

.overall-rating {
    background: #202326;

    padding: 32px 25px;

    text-align: center;

    border-top: 4px solid #e85d04;

    box-shadow:
        0 15px 40px rgba(0,0,0,.10);
}


.rating-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    background: rgba(232,93,4,.12);

    color: #f59e0b;

    font-size: 18px;

    border-radius: 50%;
}


.overall-rating h3 {
    color: #ffffff;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;

    margin: 0 0 10px;
}


.rating-stars {
    color: #f59e0b;

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.overall-rating > span {
    color: #d2d5d7;

    font-size: 10px;

    font-weight: 700;
}


.rating-line {
    height: 1px;

    background: #383d40;

    margin: 20px 0;
}


.overall-rating p {
    color: #858b8f;

    font-size: 10px;

    line-height: 1.7;

    margin: 0;
}


/* ==========================================
   REVIEWS GRID
========================================== */

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ==========================================
   REVIEW CARD
========================================== */

.review-card {
    padding: 23px;

    background: #ffffff;

    border: 1px solid #e5e7e9;

    box-shadow:
        0 10px 30px rgba(0,0,0,.045);

    transition: .35s ease;
}


.review-card:hover {
    transform: translateY(-5px);

    border-color: #e85d04;

    box-shadow:
        0 18px 40px rgba(0,0,0,.09);
}


/* ==========================================
   TOP
========================================== */

.review-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 15px;
}


.client-profile {
    display: flex;

    align-items: center;

    gap: 10px;
}


.client-avatar {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f2f3;

    color: #555b60;

    font-size: 14px;
}


.avatar-blue {
    background: #eaf5fb;

    color: #1597dc;
}


.avatar-orange {
    background: #fff1e9;

    color: #e85d04;
}


.avatar-dark {
    background: #eceeef;

    color: #202326;
}


.client-profile h3 {
    color: #202326;

    font-size: 12px;

    font-weight: 900;

    margin: 0 0 3px;
}


.client-profile span {
    color: #92979b;

    font-size: 9px;
}


/* Verified */

.verified-review {
    display: flex;

    align-items: center;

    gap: 4px;

    color: #1597dc;

    font-size: 8px;

    font-weight: 700;
}


.verified-review i {
    font-size: 10px;
}


/* ==========================================
   STARS
========================================== */

.review-stars {
    color: #f59e0b;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


/* ==========================================
   TEXT
========================================== */

.review-text {
    color: #666c70;

    font-size: 11px;

    line-height: 1.8;

    margin: 0 0 18px;
}


/* ==========================================
   PROJECT
========================================== */

.review-project {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding-top: 10px;

    border-top: 1px solid #eeeeee;

    color: #999ea2;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.review-project i {
    color: #e85d04;

    font-size: 10px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .client-review-section {
        padding: 70px 20px;
    }

    .review-layout {
        grid-template-columns: 1fr;
    }

    .overall-rating {
        max-width: 400px;

        width: 100%;

        margin: auto;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 576px) {

    .client-review-section {
        padding: 55px 15px;
    }

    .review-heading {
        margin-bottom: 35px;
    }

    .review-heading h2 {
        font-size: 28px;
    }

    .review-heading p {
        font-size: 10px;
    }

    .overall-rating {
        padding: 25px 20px;
    }

    .overall-rating h3 {
        font-size: 36px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }

    .review-top {
        align-items: flex-start;
    }

}/* =====================================================
   PREMIUM CONSTRUCTION MARQUEE
===================================================== */

.construction-marquee {
    position: relative;

    width: 100%;
    height: 54px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #111315 0%,
            #1b1e20 50%,
            #101214 100%
        );

    border-top: 1px solid #303438;
    border-bottom: 1px solid #303438;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,.25);

    z-index: 10;
}


/* =====================================================
   DIAGONAL BACKGROUND PATTERN
===================================================== */

.construction-marquee::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 24px,
            rgba(255,255,255,.025) 25px,
            rgba(255,255,255,.025) 26px
        );

    pointer-events: none;
}


/* =====================================================
   TOP ORANGE LINE
===================================================== */

.construction-marquee::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #e85d04,
            #f59e0b,
            #ffd166,
            #f59e0b,
            #e85d04
        );

    box-shadow:
        0 0 15px rgba(245,158,11,.35);
}


/* =====================================================
   LEFT SIDE BADGE
===================================================== */

.cm-side {
    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    background: #e85d04;

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;

    white-space: nowrap;
}


/* LEFT */

.cm-left {
    width: 210px;

    justify-content: center;

    gap: 9px;

    padding-right: 25px;
}


/* Angled Right Edge */

.cm-left::after {
    content: "";

    position: absolute;

    right: -25px;
    top: 0;

    width: 45px;
    height: 100%;

    background: #e85d04;

    transform: skewX(-25deg);

    z-index: -1;
}


/* =====================================================
   PULSE DOT
===================================================== */

.cm-pulse {
    position: relative;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 0 0 rgba(255,255,255,.7);

    animation: cmPulse 1.6s infinite;
}


@keyframes cmPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(255,255,255,.7);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(255,255,255,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255,255,255,0);
    }

}


/* =====================================================
   MOVING AREA
===================================================== */

.cm-moving {
    position: relative;

    flex: 1;

    min-width: 0;

    height: 100%;

    display: flex;
    align-items: center;
}


/* =====================================================
   MARQUEE
===================================================== */

.cm-moving marquee {
    width: 100%;

    height: 100%;

    display: flex;
    align-items: center;

    color: #ffffff;
}


/* =====================================================
   ITEMS
===================================================== */

.cm-item {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin: 0 25px;

    color: #d9dddf;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .8px;

    white-space: nowrap;

    vertical-align: middle;

    transition: .3s ease;
}


.cm-item i {
    color: #f59e0b;

    font-size: 14px;
}


/* BRAND */

.cm-brand {
    color: #ffffff;

    font-size: 12px;

    font-weight: 950;

    letter-spacing: 1.2px;
}


.cm-brand i {
    color: #e85d04;

    font-size: 17px;
}


/* =====================================================
   DIVIDER
===================================================== */

.cm-divider {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    margin: 0 3px;

    color: #e85d04;

    border: 1px solid rgba(232,93,4,.4);

    border-radius: 50%;

    font-size: 7px;

    vertical-align: middle;

    transform: rotate(45deg);
}


.cm-divider i {
    transform: rotate(-45deg);
}


/* =====================================================
   RIGHT BADGE
===================================================== */

.cm-right {
    width: 150px;

    justify-content: center;

    gap: 10px;

    background: #f59e0b;

    color: #151719;

    padding-left: 20px;
}


/* Angled Left Edge */

.cm-right::before {
    content: "";

    position: absolute;

    left: -25px;
    top: 0;

    width: 45px;
    height: 100%;

    background: #f59e0b;

    transform: skewX(-25deg);

    z-index: -1;
}


.cm-right i {
    font-size: 12px;

    animation: cmArrow 1.2s infinite;
}


@keyframes cmArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .construction-marquee {
        height: 55px;
    }

    .cm-left {
        width: 105px;

        padding-right: 12px;

        gap: 5px;

        font-size: 6px;

        letter-spacing: .7px;
    }

    .cm-left::after {
        right: -16px;

        width: 28px;
    }

    .cm-pulse {
        width: 6px;
        height: 6px;
    }

    .cm-right {
        width: 75px;

        padding-left: 10px;

        gap: 5px;

        font-size: 6px;
    }

    .cm-right::before {
        left: -16px;

        width: 28px;
    }

    .cm-right i {
        font-size: 8px;
    }

    .cm-item {
        margin: 0 14px;

        gap: 6px;

        font-size: 8px;

        letter-spacing: .4px;
    }

    .cm-item i {
        font-size: 10px;
    }

    .cm-brand {
        font-size: 9px;
    }

    .cm-brand i {
        font-size: 12px;
    }

    .cm-divider {
        width: 17px;
        height: 17px;

        font-size: 5px;
    }

}