/* ============================================
   Global Responsive Base Styles
   ============================================ */
html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* ============================================
   CSS Variables (Custom Properties)
   ============================================ */
:root {
    /* Colors */
    --color-primary: #22356c;
    --color-primary-dark: #2d3a66;
    --color-primary-light: #364c8b;
    --color-primary-alpha: #22356cdb;
    --color-accent: #f6883e;
    --color-accent-hover: #e5792d;
    --color-accent-yellow: #f9b641;
    --color-accent-star: #ffb800;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-primary: #111111;
    --color-text-secondary: #515151;
    --color-text-light: #999999;
    --color-text-muted: #d1d1d1;
    --color-border: #cccccc;
    --color-border-light: #dedddd;
    --color-bg-light: #f9f9f9;
    --color-bg-gray: #d9d9d9;
    --color-bg-light-gray: #edecea;
    --color-bg-section: #fafafa;
    --color-bg-blue: #93aec9;
    --color-bg-dark: #3a3a3a;
    --color-bg-dark-hover: #4a4a4a;
    --color-bg-play-icon: #cfcfcf;
    --color-gradient-end: #442534;
    --color-overlay: rgba(0, 0, 0, 0.3);
    --color-overlay-dark: rgba(0, 0, 0, 0.1);
    --color-overlay-video: rgba(0, 0, 0, 0.63);
    --color-white-transparent: rgba(255, 255, 255, 0.8);
    --color-white-transparent-light: rgba(255, 255, 255, 0.7);
    --color-white-transparent-medium: rgba(255, 255, 255, 0.5);
    --color-white-alpha: #ffffff99;
    --color-social-facebook: #1877f2;
    --color-social-twitter: #000000;
    --color-social-linkedin: #0a66c2;
    --color-social-instagram: linear-gradient(
        45deg,
        #f56040,
        #e4405f,
        #c13584,
        #833ab4,
        #5851db,
        #405de6
    );
    --color-social-youtube: #ff0000;

    /* Font Families */
    --font-lato:
        "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --font-inter:
        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --font-open-sans:
        "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --font-fallback:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;

    /* Font Sizes */
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 15px;
    --font-size-lg: 16px;
    --font-size-xl: 17px;
    --font-size-2xl: 18px;
    --font-size-3xl: 20px;
    --font-size-4xl: 24px;
    --font-size-5xl: 28px;
    --font-size-6xl: 36px;
    --font-size-7xl: 48px;
    --font-size-8xl: 52px;
    --font-size-9xl: 56px;
    --font-size-footer-tagline: 38px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 5px;
    --spacing-md: 8px;
    --spacing-base: 10px;
    --spacing-lg: 12px;
    --spacing-xl: 15px;
    --spacing-2xl: 16px;
    --spacing-3xl: 20px;
    --spacing-4xl: 24px;
    --spacing-5xl: 26px;
    --spacing-6xl: 27px;
    --spacing-7xl: 28px;
    --spacing-8xl: 29px;
    --spacing-9xl: 30px;
    --spacing-10xl: 33px;
    --spacing-11xl: 36px;
    --spacing-12xl: 40px;
    --spacing-13xl: 50px;
    --spacing-14xl: 56px;
    --spacing-15xl: 58px;
    --spacing-16xl: 60px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 30px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Box Shadows */
    --shadow-sm: 0px 4px 4px 0px rgba(31, 31, 31, 0.25);
    --shadow-md: 0px 4px 16px 0px rgba(66, 66, 66, 0.1);
    --shadow-lg: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    --shadow-card: 0px 4px 16px 0px #0000001a;
    --shadow-focus: 0 0 0 3px rgba(246, 136, 62, 0.1);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-search: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-social: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-social-hover: 0 4px 16px rgba(0, 0, 0, 0.25);

    /* Z-Index */
    --z-base: 0;
    --z-1: 1;
    --z-2: 2;
    --z-3: 3;
    --z-5: 5;
    --z-100: 100;
    --z-1000: 1000;

    /* Layout Dimensions */
    --container-width: 1440px;
    --container-content-width: 1270px;
    --container-content-width-alt: 1269px;
    --container-content-width-small: 1264px;
    --container-footer-width: 1276px;
}

/* ============================================
   Smooth Scroll (Lenis will handle this)
   ============================================ */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

/* ============================================
   Base Font Styles
   ============================================ */
* {
    font-family: var(--font-inter);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-lato);
}

p,
span,
div,
a,
li,
td,
th,
label,
input,
textarea,
select {
    font-family: var(--font-inter);
}

button,
.button,
input[type="button"],
input[type="submit"],
.btn {
    font-family: var(--font-open-sans);
}

/* ============================================
   Home Page - Paragraphs: Inter, Headings: Lato
   ============================================ */
.new-home-page p,
.new-home-page .paragraph,
.new-home-page span,
.new-home-page li,
.new-home-page td,
.new-home-page th,
.new-home-page label,
.new-home-page div {
    font-family: var(--font-inter) !important;
}

.new-home-page h1,
.new-home-page h2,
.new-home-page h3,
.new-home-page h4,
.new-home-page h5,
.new-home-page h6,
.new-home-page .h1,
.new-home-page .h2,
.new-home-page .h3,
.new-home-page .h4,
.new-home-page .h5,
.new-home-page .h6,
.new-home-page [class*="heading"] {
    font-family: var(--font-lato) !important;
}

/* ============================================
   Main Content Container - Max Width 1500px
   ============================================ */
.main-content-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* 1500px se badi screen par bhi sab header ke sath align - same max-width, centered */
@media (min-width: 1501px) {
    .new-header-container,
    .main-content-container,
    .about-founder-container {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
}

/* 993px se choti screen: layout responsive, header align */
@media (max-width: 993px) {
    /* .main-content-container {
        padding: 0 24px;
        box-sizing: border-box;
    } */
    .about-appreciation-inner {
        padding: 0 24px;
    }

    .about-appreciation-section {
        padding: 50px 0 60px;
    }

    .about-appreciation-logo-wrap {
        width: 100%;
        margin-bottom: 32px;
    }

    .about-appreciation-logo {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 420px;
        object-fit: cover;
    }

    .about-appreciation-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-appreciation-banks {
        gap: 40px;
    }

    .about-founder-container {
        padding: 0 24px;
    }
}

/* Ensure hero slider can remain full-width if needed */
.hero-slider-container {
    width: 100%;
    max-width: 100%;
}

/* ============================================
   Hero Slider Section
   ============================================ */
.saya-button {
    /* width: 172px;
  height: 38px;
  gap: var(--spacing-3xl);
  border-radius: var(--radius-full);
  
  box-shadow: var(--shadow-md);
  color: var(--color-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: var(--font-open-sans); */
    position: relative;
    background: var(--color-primary);
    display: inline-block;
    padding: 18px 75px 18px 36px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    border-radius: 40px;
    line-height: 1;
    border: none;
}

.saya-button::before {
    content: "";
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--color-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: scale(0.3);
    transform-origin: center;
    transition: 0.5s;
    overflow: hidden !important;
}

.saya-button::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../images/new_theme/icons/button_hover_icon.svg);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s;
    transform: rotate(225deg) translateY(18px);
    rotate: 138deg;
    overflow: hidden !important;
}

.saya-button:hover::after,
.saya-button:hover::after {
    transform: rotate(225deg) translate(0);
}

.saya-button:hover::before,
.saya-button:hover::before {
    transform: scale(1);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* About Us first section - single hero image */
.hero-about-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: auto;
    overflow: hidden;
}

.hero-about-section .hero-about-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-about-section .hero-about-image-desktop {
    display: block;
}

.hero-about-section .hero-about-image-mobile {
    display: none;
}

.hero-about-section .hero-about-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;

    color: #fff;
    text-align: center;

    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

@media (max-width: 769px) {
    .hero-about-section .hero-about-title {
        font-size: 24px;
    }

    .about-founder-image-wrap {
        margin-top: 0px !important;
    }
}

/* Meet Our Founder section (about ?about=1) - bdi screen: 56px 50px */
.about-founder-section {
    background: #fff;
    padding: 56px 0 0px;
}

.about-founder-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px 56px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.about-founder-content {
    flex: 1;
    min-width: 280px;
}

.about-founder-heading {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 30px 0;
    color: #000;
}

.about-founder-subheading {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: #f6883e;
    display: block;
    margin: 24px 0 12px 0;
}

.about-founder-subheading:first-of-type {
    margin-top: 0;
}

.about-founder-content p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #515151;
    margin: 0 0 10px 0;
    /* max-width: 800px; */
}

.about-founder-image-wrap {
    flex: 0 0 40%;
    width: 40%;
    min-width: 0;
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-founder-image {
    width: 530px;
    height: 530px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-founder-name {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0 4px 0;
    color: #000;
    text-align: center;
}

.about-founder-title {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin: 0;
    color: #333;
    text-align: center;
}

@media (max-width: 1464px) {
    .section-2-content-about {
        padding: 0px !important;
    }
}

/* 1264px se kam (about): image upar centre, niche content centre */
@media (max-width: 1264px) {
    .about-founder-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-founder-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-founder-heading {
        text-align: center;
    }

    .about-founder-subheading {
        text-align: center;
    }

    .about-founder-content p {
        text-align: center;
    }

    .about-founder-image-wrap {
        order: -1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    .about-founder-image {
        margin-left: auto;
        margin-right: auto;
    }

    .about-founder-name,
    .about-founder-title {
        text-align: center;
        margin: 10px 0px 0px;
    }
}

/* 768px se kam: 50px 30px */
@media (max-width: 768px) {
    .about-founder-section {
        padding: 50px 0 50px;
    }

    .about-founder-container {
        padding: 0 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-founder-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-founder-heading {
        font-size: 24px;
        text-align: center;
        margin-top: 10px;
    }

    .about-founder-subheading {
        text-align: center;
    }

    .about-founder-content p {
        font-size: 14px;
        text-align: center;
        margin: 0px 0px 5px 0px;
    }

    .about-founder-image-wrap {
        order: -1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .about-founder-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
        display: block;
    }

    .about-founder-name,
    .about-founder-title {
        text-align: center;
    }
}

/* 518px se kam: 30px 10px */
@media (max-width: 518px) {
    .about-founder-section {
        padding: 30px 0 0;
    }

    .about-founder-container {
        padding: 0 10px 30px;
    }
}

/* About page - Our Vision section (image screen ke left se touch) */
.about-vision-section {
    position: relative;
    background: #fff;
    padding: 56px 0 56px;
    width: 100vw;
    max-width: 100vw;
    margin-left: min(0px, calc(-50vw + 750px));
    box-sizing: border-box;
}

.about-vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/new_theme/section4bgimage.png") no-repeat right
        top;
    background-size: 60% 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.about-vision-container {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0;
    padding: 0 50px 0 0;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* 769px se 1439px: left image screen se touch; 768px se kam = pehle jaisa (column, center) */
@media (min-width: 769px) and (max-width: 1439px) {
    .about-vision-section {
        margin-left: min(0px, calc(-50vw + 750px));
        width: 100vw;
    }

    .about-vision-container {
        margin: 0;
        padding: 0 50px 0 0;
    }
}

@media (max-width: 518px) {
    .about-vision-section {
        padding: 30px 0 !important;
    }
}

/* 1440px se badi screen: section center me align */
@media (min-width: 1550px) {
    .about-vision-section {
        margin-left: 0;
        width: 100%;
    }

    .about-vision-container {
        margin: 0 auto;
        padding: 0 50px;
    }
}

.about-vision-image-wrap {
    flex: 0 0 auto;
    width: 50%;
    max-width: 700px;
    margin-left: 0;
}

.about-vision-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    vertical-align: bottom;
}

.about-vision-content {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 769px) {
    .about-vision-section {
        padding: 50px 0;
    }
}

.about-vision-label {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% approx */
    text-transform: capitalize;
    color: #f6883e;
    margin: 0 0 20px 0;
}

.about-vision-text-slider {
    flex: 1;
    min-width: 0;
}

.about-vision-text-viewport {
    overflow: hidden;
    width: 100%;
}

.about-vision-text-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.about-vision-slide {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
}

.about-vision-title {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 0 20px 0;
}

@media (min-width: 769px) and (max-width: 1240px) {
    .about-vision-content {
        padding-top: 0px;
        padding-bottom: 12px;
    }
}

@media (max-width: 769px) {
    .about-vision-content {
        padding-top: 0px;
        padding-bottom: 20px;
    }
}

.about-vision-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 24px 0;
    text-align: left;
}

.about-vision-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 2px;
    left: 0;
}

.about-vision-nav-btn {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.about-vision-nav-btn:hover {
    opacity: 0.8;
}

.about-vision-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.about-vision-nav-btn.swiper-button-disabled:hover {
    opacity: 0.35;
}

.about-vision-nav-btn img {
    width: 39px;
    height: 15px;
    display: block;
}

@media (max-width: 769px) {
    .about-vision-container {
        flex-direction: column;
        padding: 0 30px;
    }

    .about-vision-image-wrap {
        width: 100%;
        max-width: 100%;
    }

    .about-vision-content {
        text-align: center;
    }

    .about-vision-text-track,
    .about-vision-slide {
        text-align: center;
    }

    .about-vision-label,
    .about-vision-title,
    .about-vision-text {
        text-align: center;
    }

    .about-vision-nav {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-vision-title {
        font-size: 24px;
        line-height: normal;
    }
}

@media (max-width: 518px) {
    .about-vision-container {
        padding: 0 10px;
    }
}

/* Customer Relationship section - about page only (image template - dark blue) */
.about-customer-relationship-section {
    background: #22356cdb;
    padding: 56px 0 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 2;
}

.about-customer-relationship-header {
    width: 100%;
    padding: 0 50px 24px;
    box-sizing: border-box;
}

.about-customer-relationship-header-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-customer-relationship-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-customer-relationship-image-wrap {
    flex: 0 0 auto;
    width: 58%;
    max-width: 720px;
    position: relative;
    overflow: visible;
    height: 400px;
    z-index: 1;
}

.about-customer-relationship-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 70px);
    display: block;
    object-fit: cover;
    object-position: top center;
}

.about-customer-relationship-play-icon {
    width: 32px !important;
    height: 32px !important;
    filter: brightness(0) invert(1);
}

.about-customer-relationship-content {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.about-customer-relationship-label {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #ffffff;
    /* Correct white color */
}

.about-customer-relationship-nav {
    display: flex;
    gap: 12px;
}

.about-customer-relationship-nav-btn {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.about-customer-relationship-nav-btn:hover {
    opacity: 0.8;
}

.about-customer-relationship-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.about-customer-relationship-nav-btn.swiper-button-disabled:hover {
    opacity: 0.35;
}

.about-customer-relationship-nav-btn img {
    width: 39px;
    height: 15px;
    display: block;
    filter: brightness(0) invert(1);
}

.about-customer-relationship-text-slider {
    flex: 1;
    min-width: 0;
}

.about-customer-relationship-text-viewport {
    overflow: hidden;
    width: 100%;
}

.about-customer-relationship-text-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.about-customer-relationship-slide {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    /* margin-top: 40px; */
}

.about-customer-relationship-icon-outer {
    width: 143px;
    height: 143px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.about-customer-relationship-icon-wrap {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-customer-relationship-icon-wrap img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(52%) saturate(2843%)
        hue-rotate(359deg) brightness(102%) contrast(95%);
}

.about-customer-relationship-icon-wrap img[src*="Booking-Entry"] {
    filter: none;
}

.about-customer-relationship-icon-wrap img[src*="Builder-Buyer-Agreement"] {
    width: 88px;
    height: 88px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(52%) saturate(2843%)
        hue-rotate(359deg) brightness(102%) contrast(95%);
}

.about-customer-relationship-icon-wrap img[src*="hand1"] {
    width: 64px;
    height: 64px;
    filter: none;
}

.about-customer-relationship-icon-wrap
    img[src*="Co-ordination-for-registration1"] {
    filter: none;
}

.about-customer-relationship-icon-wrap img[src*="Builder-Buyer-Agreement2"] {
    width: 64px;
    height: 64px;
    filter: none;
}

.about-customer-relationship-icon-wrap img[src*="Offer-of-possession"] {
    width: 64px;
    height: 64px;
    filter: none;
}

.about-customer-relationship-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 16px 0;
}

.about-customer-relationship-text {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Customer Relationship: 769px se upar = desktop layout; sirf 769px tak stacked/mobile */
@media (max-width: 769px) {
    .about-partnerships-logos-row2 {
        margin-bottom: 0px;
    }

    /* Customer Relationship: label pehle, phir image, phir slider, phir arrows niche */
    .about-customer-relationship-section {
        display: flex;
        flex-direction: column;
        padding: 40px 0 32px;
        width: 100%;
    }

    .about-customer-relationship-header {
        display: contents;
    }

    .about-customer-relationship-header-inner {
        display: contents;
    }

    .about-customer-relationship-label {
        order: 1;
        text-align: center;
        width: 100%;
        font-size: 28px;
        line-height: 1.25;
        padding: 0 20px 16px;
    }

    .about-customer-relationship-container {
        order: 2;
        flex-direction: column;
        max-width: none;
        width: 100%;
        padding: 0 20px;
        gap: 24px;
    }

    .about-customer-relationship-image-wrap {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 220px;
        order: 1;
    }

    .about-customer-relationship-image {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 220px;
        object-fit: cover;
        object-position: top center;
    }

    .about-customer-relationship-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-customer-relationship-text-slider {
        width: 100%;
        min-width: 0;
    }

    .about-customer-relationship-text-viewport {
        width: 100%;
        margin: 0 auto;
        min-height: 260px;
    }

    .about-customer-relationship-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-customer-relationship-label,
    .about-customer-relationship-title,
    .about-customer-relationship-text {
        text-align: center;
    }

    .about-customer-relationship-icon-outer {
        margin-left: auto;
        margin-right: auto;
    }

    .about-customer-relationship-title {
        font-size: 20px;
    }

    .about-customer-relationship-text {
        font-size: 14px;
    }

    .about-customer-relationship-nav {
        order: 3;
        justify-content: center;
        margin-top: 20px;
        padding: 0 20px;
    }
}

/* 786px ke baad: slider text / content full width */
@media (min-width: 786px) {
    .about-customer-relationship-content,
    .about-customer-relationship-text-slider,
    .about-customer-relationship-text-viewport {
        width: 100%;
        max-width: 100%;
    }

    .about-customer-relationship-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .about-customer-relationship-section {
        padding: 32px 0 24px;
    }

    .about-customer-relationship-header {
        padding: 0 16px 16px;
    }

    .about-customer-relationship-container {
        padding: 0 16px;
        gap: 24px;
    }

    .about-customer-relationship-label {
        font-size: 22px;
    }

    .about-customer-relationship-title {
        font-size: 18px;
    }

    .about-customer-relationship-text {
        font-size: 14px;
        line-height: 21px;
    }

    .about-customer-relationship-icon-outer {
        width: 110px;
        height: 110px;
    }

    .about-customer-relationship-icon-wrap {
        width: 96px;
        height: 96px;
    }

    .about-customer-relationship-image-wrap {
        min-height: 200px;
    }

    .about-customer-relationship-text-viewport {
        min-height: 240px;
    }
}

/* Partnerships - Finance section (below Customer Relationship) */
.about-partnerships-section {
    position: relative;
    width: 100%;
    padding: 64px 0 72px;
    overflow: visible;
    z-index: 1;
}

.about-partnerships-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.about-partnerships-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 65px 50px;
    text-align: center;
    box-sizing: border-box;
}

.about-partnerships-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: #2c2c2c;
    margin: 0 0 25px;
}

.about-partnerships-subtitle {
    font-family: "Lato", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #f6883e;
    margin: 0 0 10px;
}

.about-partnerships-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: #515151;
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px;
    box-sizing: border-box;
    padding: 0 23px;
}

.about-partnerships-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 34px;
    margin-bottom: 16px;
    width: 100%;
}

.about-partnerships-logos-extra {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease;
}

.about-partnerships-logos-extra.is-visible {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
    margin-bottom: 32px;
}

.about-partnerships-logos-extra-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 34px;
    margin-bottom: 8px;
}

.about-partnerships-logos-row2 {
    gap: 8px 45px;
    margin-bottom: 32px;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about-partnerships-logo-item {
    flex: 0 0 auto;
    max-width: 200px;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.about-partnerships-logo-img {
    width: 100%;
    height: auto;
    max-height: 96px;
    object-fit: contain;
    display: block;
}

.about-partnerships-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* Regular ke liye alag font-style nahi hota */
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% ko approx em me convert kiya */
    text-transform: capitalize;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s;
}

.about-partnerships-viewall:hover {
    color: #f6883e;
}

.about-partnerships-viewall-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c2c2c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.about-partnerships-viewall:hover .about-partnerships-viewall-icon {
    background: #f6883e;
}

.about-partnerships-viewall-icon svg,
.about-partnerships-viewall-icon img,
.about-partnerships-viewall-arrow {
    width: 15px;
    height: 15px;
    display: block;
    object-fit: contain;
}

.about-partnerships-media-wrap {
    /* margin-top: 48px; */
    padding-top: 40px;
    /* border-top: 1px solid rgba(44, 44, 44, 0.15);? */
}

.about-partnerships-media-title {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #f6883e;
    margin: 0 0 16px;
}

.about-partnerships-media-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: #515151;
    margin: 0 0 35px;
    padding: 0 35px;
}

.about-partnerships-logos-media {
    margin-bottom: 0;
    gap: 0;
    padding: 10px;
}

.about-partnerships-logos-media .about-partnerships-logo-item {
    position: relative;
    max-width: 210px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-partnerships-logos-media .about-partnerships-logo-img,
.about-partnerships-logos-media .about-partnerships-logo-img-media-large {
    max-height: 66px;
    width: auto;
    object-fit: contain;
}

.about-partnerships-logos-media .about-partnerships-logo-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 130px;
    background: rgb(106 104 104 / 18%);
}

.about-partnerships-logos-media
    .about-partnerships-logo-item:last-child::after {
    display: none;
}

.about-partnerships-logos-media .about-partnerships-logo-item:first-child {
    padding-left: 0;
}

/* .about-partnerships-logos-media .about-partnerships-logo-img {
    max-height: 56px;
} */
@media (max-width: 769px) {
    .about-partnerships-title {
        font-size: 24px;
    }

    .about-partnerships-text {
        font-size: 14px;
    }

    .about-partnerships-subtitle {
        margin: 0 0 5px;
    }
}

@media (max-width: 992px) {
    .about-partnerships-inner {
        padding: 0 30px;
    }

    .about-partnerships-logos {
        gap: 8px 10px;
    }

    .about-partnerships-logos-row2 {
        gap: 8px 10px;
        max-width: 100%;
    }

    .about-partnerships-section {
        padding: 48px 0 20px;
    }

    .about-partnerships-media-wrap {
        padding-top: 32px;
    }

    .about-partnerships-logos-media {
        gap: 12px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .about-partnerships-inner {
        padding: 0 10px;
    }

    .about-partnerships-text {
        font-size: 14px;
        line-height: 24px;
    }

    .about-partnerships-logos {
        gap: 6px 8px;
        margin-bottom: 12px;
    }

    .about-partnerships-logos-row2 {
        gap: 6px 8px;
        margin-bottom: 24px;
    }

    .about-partnerships-logo-item {
        max-width: 120px;
    }

    .about-partnerships-logo-img {
        max-height: 44px;
    }

    .about-partnerships-section {
        padding: 30px 0 30px;
    }

    .about-partnerships-media-wrap {
        /* margin-top: 32px; */
        padding-top: 28px;
    }

    .about-partnerships-logos-media {
        gap: 10px;
        padding: 10px;
    }

    .about-partnerships-logos-media .about-partnerships-logo-item {
        max-width: 210px;
    }

    .about-partnerships-logos-media .about-partnerships-logo-img,
    .about-partnerships-logos-media .about-partnerships-logo-img-media-large {
        max-height: 54px;
    }

    .about-partnerships-media-title {
        font-size: 16px;
    }
}

@media (max-width: 769px) {
    .about-partnerships-media-text {
        font-size: 14px;
        line-height: 24px;
    }

    .about-partnerships-logos-media .about-partnerships-logo-item::after {
        background: none;
    }
}

@media (max-width: 518px) {
    .about-appreciation-bank-name {
        margin: 0 0 20px !important;
    }

    .about-appreciation-title {
        margin-bottom: 10px !important;
    }

    .about-partnerships-logos-media {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .about-partnerships-logos-media .about-partnerships-logo-item {
        max-width: 200px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .about-partnerships-logos-media .about-partnerships-logo-img,
    .about-partnerships-logos-media .about-partnerships-logo-img-media-large {
        max-height: 52px;
        width: 100%;
    }

    .about-partnerships-logos-media .about-partnerships-logo-item::after {
        display: none;
    }
}

/* Appreciation Letters Section */
.about-appreciation-section {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
    background-color: #22356cdb;
}

.about-appreciation-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: left;
    padding: 0 50px;
    width: 100%;
}

.about-appreciation-logo-wrap {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.about-appreciation-logo {
    width: 100%;
    height: 542px;
    object-fit: cover;
    display: block;
}

.about-appreciation-title {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 65px;
}

.about-appreciation-banks {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.about-appreciation-bank-item {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.about-appreciation-bank-name {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 35px;
}

.about-appreciation-bank-doc {
    border: 1px solid #fff;
    padding: 10px;
    overflow: hidden;
}

.about-appreciation-bank-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .about-appreciation-section {
        padding: 56px 50px;
    }

    .about-appreciation-inner {
        max-width: 100%;
        padding: 0 0px;
    }

    .about-appreciation-logo-wrap,
    .about-appreciation-banks {
        width: 100%;
    }

    .about-appreciation-banks {
        gap: 50px;
    }
}

@media (max-width: 879px) {
    .about-appreciation-bank-item {
        text-align: center;
    }

    .about-appreciation-bank-name {
        text-align: center;
    }
}

@media (max-width: 518px) {
    .about-appreciation-inner {
        padding: 0 20px !important;
    }

    .about-appreciation-section {
        padding: 30px 0px !important;
    }
}

@media (max-width: 1050px) {
    .about-appreciation-logo {
        height: auto;
    }
}

/* 768px: 2 cards per row, 3rd below */
@media (max-width: 768px) {
    .about-appreciation-section {
        padding: 50px 0;
    }

    .about-appreciation-inner {
        padding: 0 30px;
    }

    .about-appreciation-logo-wrap {
        padding: 0;
    }

    .about-appreciation-banks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .about-appreciation-bank-item {
        min-width: 0;
    }

    .about-appreciation-logo {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about-appreciation-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 28px;
    }

    .about-appreciation-bank-name {
        font-size: 14px;
    }
}

/* 518px and below: 3 cards vertically, centered */
@media (max-width: 518px) {
    .about-appreciation-banks {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-appreciation-bank-item {
        max-width: 100%;
        width: 100%;
    }
    .media-two-page .media-article-section.media-template-section {
        padding: 20px 0 0 !important;
    }
    .media-two-page .news-media-sort-row {
        margin-bottom: 0 !important;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: var(--z-1);
}

.slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(
        ellipse at center,
        transparent 0%,
        var(--color-overlay) 100%
    ); */
    z-index: var(--z-2);
}

/* First slide mobile-only image (hidden on desktop) */
.slide-image-mobile-first {
    display: none;
}

/* Slides 2-5 mobile-only images (hidden on desktop) */
.slide-image-mobile {
    display: none;
}

/* Desktop: hide mobile images for slides 2-5 (desktop image has no extra class, so it shows) */
.slide-image-desktop {
    display: block;
}

/* Mobile hero: 490px and below - sayaphonebanner1-5, height 100vh */
/* Use data-project-name so it works with Swiper loop (cloned slides) */
@media (max-width: 490px) {
    .hero-slider-container {
        height: 100vh !important;
        min-height: 100vh !important;
    }

    .hero-about-section .hero-about-image-desktop {
        display: none !important;
    }

    .hero-about-section .hero-about-image-mobile {
        display: block !important;
    }

    .hero-slider
        .swiper-slide[data-project-name="Saya Gold Avenue"]
        .slide-image-desktop-first {
        display: none !important;
    }

    .hero-slider
        .swiper-slide[data-project-name="Saya Gold Avenue"]
        .slide-image-mobile-first {
        display: block !important;
    }

    .hero-slider .swiper-slide .slide-image-desktop {
        display: none !important;
    }

    .hero-slider .swiper-slide .slide-image-mobile {
        display: block !important;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: var(--z-3);
    width: 100%;
    padding: 0 var(--spacing-3xl);
}

.slide-tagline {
    font-family: var(--font-inter);
    font-size: var(--font-size-base);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: var(--spacing-3xl);
    opacity: 0.95;
}

.slide-title {
    font-family: var(--font-lato);
    font-size: clamp(48px, 12vw, 180px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.title-letter {
    display: inline-block;
    color: var(--color-white);
    position: relative;
}

.title-letter.outline {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--color-white);
    background-clip: text;
    -webkit-background-clip: text;
    mix-blend-mode: normal;
    opacity: 1;
}

.slide-footer {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-3);
    max-width: 1500px;
    padding: 0px 50px;
    width: 100%;
    margin: 0 auto;
}

.slide-project-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-icon {
    width: 43px;
    height: 43px;
    border-radius: var(--radius-circle);
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    background: var(--color-white);
}

.project-icon svg {
    width: 24px;
    height: 24px;
}

.project-name {
    font-family: var(--font-inter);
    font-weight: 500;
    font-style: Medium;
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

.separator-line {
    width: 80%;
    height: 1px;
    background: var(--color-white-alpha);
}

.slide-pagination {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-circle);
    background: var(--color-white-alpha);
    transition: all var(--transition-base);
    cursor: pointer;
}

.pagination-dot.active {
    width: 60px;
    height: 8px;
    background: var(--color-white-alpha);
    border-radius: var(--radius-sm) !important;
}

.pagination-dash {
    width: 30px;
    height: 1px;
    background: var(--color-white-transparent-medium);
    margin: 0 var(--spacing-xs);
}

.slider-page-container {
    position: absolute;
    bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
}

/* ============================================
   Section 2
   ============================================ */
.section-2 {
    width: 100%;
    min-height: 838px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 56px 50px 35px 50px;
    margin: 0 auto;
    overflow: hidden;
}

/* About page: section-2 background #FCFCFC (home par nahi) */
.section-2:has(.section-2-content-about) {
    background-color: #fcfcfc !important;
}

.section-2-content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    align-self: center;
    width: 100%;
    max-width: 100%;
    /* padding: 0 50px; */
}

/* About Saya Group - centered block (orange label, large title, 3 paras) - image template */
.section-2-content-about {
    display: flex !important;
    justify-content: center;
    width: 100%;
    /* padding: 24px 0 32px 0; */
    background-color: #fcfcfc !important;
}

.section-2-content .section-2-about-block,
.section-2-content-about .section-2-about-block {
    display: block;
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    text-align: center;
    /* padding: 0 20px; */
}

@media (max-width: 769px) {
    .section-2-about-title {
        font-size: 24px !important;
    }

    .section-2-about-block p {
        font-size: 14px;
    }
}

.section-2-about-label {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% approx */
    text-align: center;
    text-transform: capitalize;
    color: #f6883e;
    margin: 0 auto 10px;
}

.section-2-about-title {
    font-family: "Lato", sans-serif;
    text-transform: capitalize;

    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    /* Center align block */
}

.section-2-about-block p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Semi Bold */
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;

    color: #515151;
    margin: 0px 0px 10px 0px;
}

.section-2-about-block p:last-child {
    margin-bottom: 0;
}

.section-2-about-block p b {
    font-weight: 700;
}

/* Section 2 - 769px se kam: padding 50px 30px, text full width */
@media (max-width: 768px) {
    .section-2 {
        padding: 50px 30px 0 30px !important;
    }

    .section-2-content .section-2-about-block,
    .section-2-content-about .section-2-about-block {
        max-width: 100%;
        width: 100%;
    }
}

/* Section 2 - 518px se kam: padding 30px 10px, text full width */
@media (max-width: 517px) {
    .section-2 {
        padding: 30px 10px 0 10px !important;
    }

    .section-2-content .section-2-about-block,
    .section-2-content-about .section-2-about-block {
        max-width: 100%;
        width: 100%;
        padding: 0 0;
    }
}

.section-2-content-left {
    width: 50%;
}

.section-2-content-left-inner {
    width: 100%;
    max-width: 538px;
    /* min-height: 156px; */
    height: auto;
    gap: var(--spacing-md);
}

.section-2-content-right {
    width: 50%;
}

.section-2-content-right-inner > p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    /* text-transform: capitalize; */
    color: #515151;
}

.section-2-content-left-inner h2 {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    /* line-height: 100%; */
    letter-spacing: 0.1em;
    /* 10% = 0.1em */
    text-transform: capitalize;
    color: #f6883e;
}

.section-2-content-left-inner h1 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.section-2-content-left-inner p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #111111;
}

.section-2-image-inner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    gap: var(--spacing-3xl);
    /* padding: 0 50px; */
}

.section-2-image-inner-image {
    width: 100%;
    max-width: 835px;
    height: auto;
    border-radius: var(--radius-2xl);
    /* background: var(--color-bg-gray); */
    overflow: hidden;
}

.section-2-image-inner-label {
    width: 85px;
    height: 523px;
    padding: var(--spacing-base);
    position: relative;
    overflow: hidden;
}

.section-2-image-inner-label-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.section-2-image-inner-label-inner p {
    font-family: var(--font-lato);
    font-weight: 300;
    font-style: Light;
    font-size: var(--font-size-8xl);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    white-space: nowrap;
    color: var(--color-text-muted);
}

.section-2-image-inner-metadata {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    gap: 24px 32px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.section-2-image-inner-metadata-counter-1 {
    width: 291px;
    height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    position: relative;
}

.section-2-image-inner-metadata-counter-1-inner {
    width: 291px;
    height: 99px;
    gap: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: var(--spacing-3xl);
    text-align: center;
}

.section-2-image-inner-metadata-counter-1-inner p {
    font-family: var(--font-lato);
    font-weight: 500;
    font-style: SemiBold;
    font-size: var(--font-size-7xl);
    text-align: center;
    text-transform: capitalize;
    margin: 0px;
    padding: 0px;
    line-height: 1.2;
}

.section-2-image-inner-metadata-counter-1-inner span {
    font-family: var(--font-inter);
    font-weight: 400;
    font-style: Regular;
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--color-text-secondary);
    line-height: 1.4;
    display: block;
}

.section-2-image-inner-metadata-counter-1-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 251px;
    height: 2px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    background: var(--color-accent);
}

/* ============================================
   Section 3
   ============================================ */
.section-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-3-content {
    width: 100%;
    max-width: 100%;
    /* padding-bottom: 20px; */
    margin: 0 auto;
}

.section-3-content-inner {
    width: 100%;
    height: auto;
    gap: 26px;
    display: flex;
    flex-direction: column;
    padding: 0px 50px 0px 50px;
}

/* Section 3: 418px se kam screen – side padding 25px */
@media (max-width: 418px) {
    .section-3-content-inner {
        padding: 0px 25px 0px 25px !important;
    }
}

@media (max-width: 480px) {
    /* .section-3-content-inner {
        padding: 0px 20px !important;
    } */

    /* Section 6 Slider - Extra Small Mobile */
    .section-6-slider-container {
        padding: 0 35px;
    }

    .section-6-slider-track .section-6-content-inner-div {
        flex: 0 0 100%;
    }

    .section-6-content-inner-div-image {
        height: 220px;
    }

    .section-6-content-inner-div-image img {
        height: 200px;
    }

    .section-6-slider-btn {
        width: 35px;
        height: 35px;
    }

    .section-6-slider-btn-prev {
        left: 0;
    }

    .section-6-slider-btn-next {
        right: 0;
    }

    .section-6-slider-btn svg {
        width: 18px;
        height: 18px;
    }

    /* .section-6-content-inner-div-inner p {
        font-size: var(--font-size-xl);
    } */

    /* .section-6-content-inner-div-inner span {
        font-size: var(--font-size-lg);
    } */
}

.section-3-content-top {
    width: 100%;
    /* max-width: var(--container-content-width-alt); */
    min-height: 119px;
    height: auto;
    gap: 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 518px) {
    .btn1212 {
        padding: 0px 12px !important;
        height: 35px !important;
    }
}

.section-3-content-top-left-buttons {
    width: 100%;
    max-width: 294px;
    min-height: 37px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: var(--spacing-2xl);
}

.section-3-content-top-left-buttons button {
    width: 139px;
    height: 37px;
    gap: var(--spacing-base);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-base);
    border-width: 1px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-lato);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
}

.section-3-content-top-left h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    /* Bold weight ke liye style normal hota hai */
    font-size: 36px;
    line-height: 35px;
    letter-spacing: 0;
    text-transform: capitalize;
}

@media (max-width: 465px) {
    .section-3-content-top-left h2 {
        line-height: auto;
    }

    .btn1212 {
        margin-top: -10px;
    }
}

.section-3-content-top-left p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* Regular */
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    /* text-transform: capitalize; */
    margin-top: 15px;
    color: #515151;
}

/* 768px se badi screen pr paragraph width 90% */
@media (min-width: 769px) {
    .section-3-content-top-left p {
        width: 90%;
    }
}

@media (max-width: 470px) {
    .section-3-content-top-left p {
        line-height: 20px;
        font-size: 14px;
        margin-top: 12px;
    }
}

.section-3-content-top-left-buttons button:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.section-3-content-top-left-buttons button.active {
    background: #f6883e;
    color: #fff;
    border: none;
    align-items: center;
}

.section-3-project-sliders {
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* padding-bottom: 50px; */
}

@media (min-width: 481px) and (max-width: 767px) {
    /* .section-3-project-sliders {
        padding: var(--spacing-2xl) 0;
    } */
}

/* Legacy classes - keeping for backward compatibility but not used in new structure */
.section-3-project-sliders-right {
    width: 100%;
    max-width: 883px;
    min-height: auto;
    height: auto;
    gap: var(--spacing-4xl);
}

.section-3-project-sliders-left {
    width: 100%;
    max-width: 323px;
    min-height: auto;
    height: auto;
    gap: var(--spacing-2xl);
}

.section-3-project-sliders-left .heading {
    font-family: var(--font-lato);
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-size-4xl);
    padding: 0px;
    margin: 0px;
}

.section-3-project-sliders-left .description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: var(--font-size-lg);
    line-height: 24px;
    margin-top: var(--spacing-lg);
    color: var(--color-text-secondary);
}

.section-3-project-sliders-left span {
    border-bottom: 1px solid var(--color-text-secondary);
}

/* ============================================
   Project Slider Grid (New Structure)
   ============================================ */
.project-slider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    width: 100%;
    align-items: start;
    margin-top: var(--spacing-8xl);
    padding: 0 var(--spacing-base);
}

/* Override inline styles for responsive layout */
.section-3-project-sliders > div {
    display: flex !important;
    flex-direction: column !important;
    /* gap: 20px !important; */
    width: 100% !important;
    justify-content: flex-start !important;
}

.section-3-project-sliders > div > div[style*="row-reverse"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
}

.der-project-slileft {
    order: 1 !important;
    width: 100% !important;
}

.project-slider-image-wrapper {
    order: 2 !important;
    width: 100% !important;
}

.project-slider-nav {
    order: 3 !important;
    width: 100% !important;
    margin-top: 30px !important;
}

@media (max-width: 769px) {
    .section-7-client-section {
        gap: 10px !important;
    }
}

@media (min-width: 640px) {
    .project-slider-grid {
        gap: var(--spacing-11xl);
        margin-top: var(--spacing-13xl);
    }
}

@media (min-width: 768px) {
    .project-slider-grid {
        grid-template-columns: 1fr 2fr;
        gap: var(--spacing-11xl);
        margin-top: var(--spacing-14xl);
    }

    .section-3-project-sliders > div > div[style*="row-reverse"] {
        flex-direction: row-reverse !important;
        width: 100% !important;
    }

    .der-project-slileft {
        order: 2 !important;
        width: auto !important;
        flex: 0 0 40% !important;
        justify-content: start !important;
    }

    .project-slider-image-wrapper {
        order: 1 !important;
        flex: 1 1 auto !important;
    }
}

@media (min-width: 1024px) {
    .project-slider-grid {
        grid-template-columns: 1fr 2.2fr auto;
        gap: var(--spacing-11xl);
        align-items: center;
        margin-top: var(--spacing-14xl);
    }

    /* Override inline styles for desktop */
    .section-3-project-sliders > div {
        flex-direction: row !important;
        /* gap: 40px !important; */
        justify-content: space-between !important;
    }

    .section-3-project-sliders > div > div[style*="row-reverse"] {
        flex-direction: row-reverse !important;
        width: auto !important;
        flex: 1 1 auto !important;
        /* gap: 100px !important; */
    }

    .der-project-slileft {
        order: 2 !important;
        width: auto !important;
        flex: 0 0 auto !important;
        /* width: 220px !important; */
    }

    .project-slider-image-wrapper {
        order: 1 !important;
        flex: 1 1 auto !important;
    }

    .project-slider-nav {
        order: 3 !important;
        width: auto !important;
        margin-top: 0 !important;
    }
}

/* Large desktop screens */
@media (min-width: 1440px) {
    .project-slider-grid {
        gap: var(--spacing-12xl);
        margin-top: var(--spacing-15xl);
    }
}

@media (min-width: 1920px) {
    .project-slider-grid {
        gap: var(--spacing-13xl);
        margin-top: var(--spacing-16xl);
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Left Content */
.project-slider-left {
    width: 100%;
    order: 2;
}

@media (min-width: 768px) {
    .project-slider-left {
        order: 1;
    }
}

.project-slider-left-content {
    display: flex;
    flex-direction: column;
    padding: 0 var(--spacing-xs);
}

.project-slider-icon-wrapper {
    margin-bottom: var(--spacing-2xl);
}

.project-slider-icon {
    width: 20px;
    height: 20px;
    display: block;
    transition: all var(--transition-base);
}

@media (min-width: 375px) {
    .project-slider-icon {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 640px) {
    .project-slider-icon {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 768px) {
    .project-slider-icon {
        width: 32px;
        height: 32px;
    }
}

.project-slider-title {
    font-family: var(--font-lato);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    transition: all var(--transition-base);
    line-height: 1.2;
}

@media (min-width: 320px) {
    .project-slider-title {
        font-size: var(--font-size-3xl);
    }
}

@media (min-width: 640px) {
    .project-slider-title {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 768px) {
    .project-slider-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1440px) {
    .project-slider-title {
        font-size: var(--font-size-6xl);
    }
}

.project-slider-location {
    font-family: var(--font-inter);
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    margin: 0 0 var(--spacing-base) 0;
    /* Reset margin to default or adjust as needed */
    transition: all var(--transition-base);
    width: fit-content;
    position: relative;
    /* Ensure it's a positioning context if needed, though not strictly necessary for block after */
}

/* Pseudo-element underline */
.underline-location::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    /* background: var(--color-black); */
    margin-top: 5px;
    /* Adjust spacing between text and line */
    background-color: #515151;
}

@media (max-width: 768px) {
    .project-slider-location {
        margin: 0 auto var(--spacing-base) auto;
    }
}

@media (min-width: 640px) {
    .project-slider-location {
        font-size: var(--font-size-sm);
    }
}

.project-slider-line {
    height: 1px;
    background: var(--color-black);
    margin: var(--spacing-xs) 0 var(--spacing-8xl) 0;
    transition: all var(--transition-base);
    transform-origin: left;
}

.project-slider-description {
    font-family: var(--font-inter);
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 100%;
    margin: 0;
    transition: all var(--transition-base);
}

@media (min-width: 320px) {
    .project-slider-description {
        font-size: var(--font-size-sm);
    }
}

@media (min-width: 1440px) {
    .project-slider-description {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }
}

@media (min-width: 640px) {
    .project-slider-description {
        font-size: var(--font-size-base);
    }
}

@media (min-width: 768px) {
    .project-slider-description {
        font-size: var(--font-size-lg);
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .project-slider-description {
        max-width: 400px;
        margin-top: 20px;
    }
}

/* Image Wrapper */
.project-slider-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    order: 1;
}

@media (min-width: 768px) {
    .project-slider-image-wrapper {
        order: 2;
    }
}

.project-slider-image-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #1a1a1a;
}

@media (min-width: 640px) {
    .project-slider-image-container {
        border-radius: 24px;
    }
}

@media (min-width: 768px) {
    .project-slider-image-container {
        border-radius: 28px;
    }
}

.project-slider-curve img {
    width: 100%;
    height: auto;
    display: block;
}

.project-slider-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 320px) {
    .project-slider-image {
        height: 200px;
    }
}

@media (min-width: 375px) {
    .project-slider-image {
        height: 240px;
    }
}

@media (min-width: 640px) {
    .project-slider-image {
        height: 280px;
    }
}

@media (min-width: 768px) {
    .project-slider-image {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .project-slider-image {
        height: 380px;
    }
}

@media (min-width: 1280px) {
    .project-slider-image {
        height: 420px;
    }
}

@media (min-width: 1440px) {
    .project-slider-image {
        height: 470px;
    }
}

@media (min-width: 1920px) {
    .project-slider-image {
        height: 470px;
    }
}

.project-slider-curve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* @media (min-width: 320px) {
    .project-slider-curve {
        width: 120px;
    }
} */

@media (max-width: 1441px) {
    .project-slider-curve {
        width: 221px;
        height: 141px;
    }
}

@media (max-width: 426px) {
    .project-slider-curve {
        width: 224px !important;
        height: 142px;
    }
}
/* @media (min-width: 768px) and (max-width: 991px) {
    .section-3-content-inner {
        padding: 20px 24px 50px !important;
    }
} */

@media (max-width: 1024px) {
    .project-slider-label {
        transform: translate(-44%, -50%) !important;
    }

    /* Project slider – responsive at 1024px */
    .section-3-content-inner {
        padding: 10px 24px 50px !important;
    }

    .section-3-project-sliders > div {
        gap: 12px !important;
        min-width: 0;
    }

    .section-3-project-sliders > div > div.project-slider-layout-inner {
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .section-3-project-sliders .der-project-slileft {
        min-width: 0;
        flex: 0 1 38% !important;
        max-width: 42%;
    }

    .section-3-project-sliders .project-slider-left-content {
        min-width: 0;
        max-width: 100%;
    }

    .section-3-project-sliders .project-slider-image-wrapper {
        min-width: 0;
        flex: 1 1 auto !important;
    }

    .section-3-project-sliders .project-slider-image-container,
    .section-3-project-sliders .project-slider-image {
        min-width: 0;
        max-width: 100%;
    }

    .section-3-project-sliders .project-slider-nav {
        flex-shrink: 0;
        min-width: 0;
    }

    .section-3-project-sliders .project-slider-nav-vertical {
        height: 100%;
    }

    .section-3-project-sliders .project-slider-nav-item-vertical {
        width: 56px;
    }
}

/* @media (max-width: 1024px) {
    .project-slider-label {
        transform: translate(-44%, -50%) !important;
    }
} */

/* @media (min-width: 1024px) {
    .project-slider-curve {
        width: 220px;
    }
} */

/* @media (max-width: 1440px) {
    .project-slider-curve {
        width: 220px;
    }
} */
/* @media (max-width: 1023px) {
    .project-slider-label {
        transform: translate(-70%, -50%);
    }
} */
/* @media (min-width: 1920px) {
    .project-slider-curve {
        width: 250px;
    }
} */

.project-slider-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

/* @media (max-width: 1921px) {
    .project-slider-curve {
        width: 230px;
    }
    .project-slider-label {
        transform: translate(-45%, -50%) !important;
    }
} */

.project-slider-label {
    position: absolute;
    /* bottom: 0px; */
    /* right: 30px; */
    z-index: 20;
    pointer-events: none;
    background: var(--color-white);
    /* padding: var(--spacing-sm) var(--spacing-md); */
    border-radius: var(--radius-md);
    transform: translate(-50%, -50%) !important;
    left: 50%;
    top: 70%;
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .project-slider-label {
        right: -3px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .project-slider-label {
        right: 22px;
    }
}

@media (max-width: 768px) {
    .project-slider-label {
        right: 15px;
    }
}

.project-slider-label-id {
    font-family: var(--font-lato);
    font-size: var(--font-size-4xl);
    font-weight: 500;
    line-height: 1;
    color: var(--color-black);
    margin: 0 0 var(--spacing-xs) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

@media (min-width: 320px) {
    .project-slider-label-id {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 640px) {
    .project-slider-label-id {
        font-size: var(--font-size-6xl);
    }
}

@media (min-width: 769px) {
    .project-slider-label-id {
        font-size: var(--font-size-7xl);
    }
}

@media (min-width: 1024px) {
    .project-slider-label-id {
        font-size: 40px;
    }
}

@media (min-width: 1440px) {
    .project-slider-label-id {
        font-size: 52px;
    }
}

@media (min-width: 1920px) {
    .project-slider-label-id {
        font-size: 60px;
    }
}

.project-slider-label-title {
    font-family: var(--font-inter);
    font-size: 9px;
    color: var(--color-black);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    line-height: 1.2;
}

@media (min-width: 320px) {
    .project-slider-label-title {
        font-size: 10px;
    }
}

@media (min-width: 640px) {
    .project-slider-label-title {
        font-size: var(--font-size-xs);
    }
}

@media (min-width: 768px) {
    .project-slider-label-title {
        font-size: 12px;
        width: 139px;
    }
}

@media (min-width: 1024px) {
    .project-slider-label-title {
        font-size: 16px;
    }
}

/* Navigation */
.project-slider-nav {
    width: 100%;
    order: 3;
    margin-top: var(--spacing-8xl);
}

@media (min-width: 1024px) {
    .project-slider-nav {
        grid-column: auto;
        width: auto;
        margin-top: 0;
    }
}

/* Horizontal Navigation (Mobile/Tablet) */
.project-slider-nav-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 320px) {
    .project-slider-nav-horizontal {
        gap: var(--spacing-3xl);
    }
}

@media (min-width: 640px) {
    .project-slider-nav-horizontal {
        gap: var(--spacing-11xl);
    }
}

@media (min-width: 768px) {
    .project-slider-nav-horizontal {
        gap: var(--spacing-13xl);
    }
}

@media (min-width: 1024px) {
    .project-slider-nav-horizontal {
        display: none;
    }
}

.project-slider-nav-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-base);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.project-slider-nav-item:hover .project-slider-nav-id,
.project-slider-nav-item:hover .project-slider-nav-title {
    color: var(--color-text-secondary);
}

.project-slider-nav-id {
    font-family: var(--font-lato);
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--color-black);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .project-slider-nav-id {
        font-size: var(--font-size-3xl);
    }
}

.project-slider-nav-line {
    width: 48px;
    height: 1px;
    background: var(--color-black);
    margin: var(--spacing-base) 0;
}

@media (min-width: 640px) {
    .project-slider-nav-line {
        width: 64px;
    }
}

.project-slider-nav-title {
    font-family: var(--font-inter);
    font-size: var(--font-size-xs);
    color: var(--color-black);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .project-slider-nav-title {
        font-size: var(--font-size-sm);
    }
}

/* Vertical Navigation (Desktop) */
.project-slider-nav-vertical {
    display: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 0px;
    margin-top: 0;
}

@media (min-width: 1024px) {
    .project-slider-nav-vertical {
        display: flex;
        height: 100%;
    }
}

.project-slider-nav-item-vertical {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-base);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    gap: 13px;
    border-right: 2px solid #51515199;
    justify-content: space-between;
    width: 68px;
    height: 100%;
    text-align: center;
    overflow: visible;
}

.project-slider-nav-item-vertical div {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 120px;
}

.project-slider-nav-item-vertical:hover .project-slider-nav-id-vertical,
.project-slider-nav-item-vertical:hover .project-slider-nav-title-vertical {
    color: #61515199;
}

.project-slider-nav-arrow {
    font-family: var(--font-lato);
    font-size: var(--font-size-2xl);
    color: #51515199;
    margin-bottom: var(--spacing-4xl);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.project-slider-nav-arrow img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.project-slider-nav-line-vertical {
    display: none;
    width: 1px;
    height: 192px;
    background: var(--color-black);
    margin-bottom: var(--spacing-11xl);
    display: block;
    min-height: 192px;
}

@media (min-width: 1280px) {
    .project-slider-nav-line-vertical {
        display: none;
        height: 256px;
        min-height: 256px;
    }
}

@media (min-width: 1440px) {
    .project-slider-nav-line-vertical {
        height: 300px;
        min-height: 300px;
    }
}

@media (min-width: 1920px) {
    .project-slider-nav-line-vertical {
        height: 260px;
    }
}

.project-slider-nav-title-vertical {
    font-family: var(--font-inter);
    font-size: 18px;
    color: #51515199;
    letter-spacing: 1px;
    white-space: nowrap;
    transform-origin: center;
    transition: all var(--transition-base);
    display: inline-block;
    width: max-content;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.project-slider-nav-id-vertical {
    font-family: var(--font-inter);
    font-weight: 500;
    font-style: Medium;
    font-size: 46px;
    color: #51515199;
    transform: rotate(-90deg);
}

/* Animation Classes */
.project-slider-fade-in {
    animation: fadeInSlide 0.5s ease-in-out;
}

.project-slider-fade-out {
    animation: fadeOutSlide 0.5s ease-in-out;
}

.project-slider-slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slider-slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutSlide {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* New Slider Animation Classes */
.slide-enter {
    opacity: 0;
    transform: translateX(50px);
}

.slide-enter-active {
    opacity: 1;
    /* transform: translateX(0) !important; */
    transition: opacity 0.3s ease-in-out;
}

.slide-exit {
    opacity: 1;
    transform: translateX(0);
}

.slide-exit-active {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}

.image-enter {
    opacity: 0;
    transform: translateX(150px);
}

.image-enter-active {
    opacity: 1;
    transform: translateX(0) !important;
    transition: opacity 0.4s ease-in-out;
}

.image-exit {
    opacity: 1;
    transform: translateX(0);
}

.image-exit-active {
    opacity: 0;
    transform: translateX(-150px);
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-enter {
    opacity: 0;
    transform: scaleX(0);
}

.line-enter-active {
    opacity: 1;
    transform: scaleX(1) !important;
    transition: opacity 0.3s ease-in-out;
}

.line-exit {
    opacity: 1;
    transform: scaleX(1);
}

.line-exit-active {
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Order adjustments for responsive - already handled inline */

/* ============================================
   Section 4
   ============================================ */
.section-4 {
    width: 100%;
    /* min-height: 100vh;
    height: 100vh; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-4-bg-video {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: var(--z-1);
    cursor: pointer;
}

/* .section-4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-video);
    z-index: var(--z-2);
} */

.section-4-play-icon {
    width: 99px;
    height: 99px;
    gap: var(--spacing-base);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: playIconPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-4-play-icon:hover {
    transform: scale(1.1);
    animation: playIconPulseHover 1s ease-in-out infinite;
}

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

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

@keyframes playIconPulseHover {
    0%,
    100% {
        transform: scale(1.1);
    }

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

.section-4-video-player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.section-4-video-player p {
    font-family: var(--font-lato);
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-size-6xl);
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
    margin: 0;
}

.section-4-play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 87px;
    height: 87px;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid #cfcfcf;
    z-index: 1;
    animation: playIconRing 2s ease-in-out infinite;
}

@media (max-width: 518px) {
    .section-4-play-icon::after {
        border: 0;
    }
}

@keyframes playIconRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.section-4-play-icon img {
    z-index: var(--z-3);
    position: relative;
    transition: transform 0.3s ease;
}

.section-4-play-icon:hover img {
    transform: scale(1.1);
}

.section-4-pause-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.section-4-pause-icon::after {
    animation: none;
}

.section-4-video-control-icon,
.section-4-video-control-icon:hover {
    animation: none !important;
}

.section-4-video-control-icon::after {
    animation: none !important;
}

/* Video Modal Styles */
.section-4-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.section-4-video-modal.active {
    display: flex;
}

.section-4-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.section-4-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
    animation: videoModalFadeIn 0.3s ease-out;
}

@keyframes videoModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-4-video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.section-4-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    z-index: 10002;
}

.section-4-video-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

/* ============================================
   Section 5
   ============================================ */
.section-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    /* min-height: 100vh; */
}

.section-5-content {
    width: 100%;
    max-width: 100%;
    /* max-height: 100vh; */
    min-height: 0;
    gap: 15px;
    padding-top: 36px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.section-5-heading-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.section-5-content h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    width: 100%;
}

/* Enquiry button – top par scroll-to-hero ki jagah (right: 24px); jab scroll-to-hero visible ho to left shift (body.scroll-hero-visible) */
.section-5-enquire-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    /* scroll-to-hero ki jagah jab vo hide ho */
    top: auto;
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    background: #22356c;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition:
        background-color 0.3s ease,
        transform 0.2s ease,
        right 0.35s ease;
    cursor: pointer;
    z-index: 9999;
}

/* Jab scroll-to-hero visible ho: enquiry apni jagah (uske left) par shift */
body.scroll-hero-visible .section-5-enquire-btn {
    right: 84px;
    /* 24 + 48 (scroll btn) + 12 gap */
}

.section-5-enquire-btn:hover {
    background: #1a2a55;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    z-index: 99999;
}
@media (min-width: 768px) and (max-width: 890px) {
    .scroll-to-hero-btn {
        display: none !important;
    }
}
/* Tablet: scroll-to-hero 44px, right: 20px – default enquiry usi jagah; visible par left shift */
@media (max-width: 1024px) {
    .section-5-enquire-btn {
        bottom: 20px;
        right: 20px;
    }

    body.scroll-hero-visible .section-5-enquire-btn {
        right: 74px;
    }
}

.section-5-content-inner {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    padding: 20px 50px;
    gap: 18px;
}

.section-5-content-inner-div-1 {
    /* width: 33.33%; */
    height: 650px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
    max-width: none;
    gap: var(--spacing-base);
    background-image: url("../images/new_theme/skybg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    /* border: 1px solid rgba(63, 63, 63, 0.231); */
}

.section-5-content-inner-div-1 p {
    background: linear-gradient(180deg, #364c8b 0%, #272c39 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-lato);
    font-weight: 700;
    font-size: var(--font-size-6xl);
    line-height: 48px;
    text-transform: capitalize;
    width: 100%;
    max-width: 311px;
    /* min-height: 360px; */
    height: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
}

.section-5-content-inner-div-2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    max-width: none;
    min-height: 0;
    height: auto;
    gap: 18px;
}

/* @media (min-width: 486px) and (max-width: 946px) {
    .section-5-content-inner-div-2-inner-bottom {
        margin-top: 30px;
    }
} */

.section-5-content-inner-div-3 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    max-width: none;
    min-height: 0;
    height: auto;
    gap: 18px;
}

.section-5-content-inner-div-2-inner-top {
    width: 100%;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.section-5-content-inner-div-2-inner-top img {
    width: 100%;
    /* height: min(292px, 28vh); */
    min-height: 180px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.section-5-content-inner-div-2-inner-bottom {
    width: 100%;
    flex: 1;
    /* min-height: 280px; */
    gap: var(--spacing-base);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-5-content-inner-div-2-inner-bottom div {
    padding: 20px;
}

.section-5-content-inner-div-2-inner-bottom p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* SemiBold */
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff !important;
}

.section-5-content-inner-div-2-inner-bottom span {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

.section-5-content-inner-top-3-inner {
    width: 100%;
    flex: 1;
    min-height: 200px;
    border-radius: var(--radius-xl);
    background: var(--color-bg-blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.section-5-content-inner-top-3-inner div {
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    padding: 20px;
    /* height: 380px !important; */
}

.section-5-content-inner-top-3-inner p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* SemiBold */
    font-style: normal;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff !important;
}

.section-5-content-inner-top-3-inner span {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

.section-5-content-inner-bottom-3-inner {
    width: 100%;
    flex: 0 1 auto;
    border-radius: var(--radius-xl);
    background-color: #f6883e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-base);
}

.section-5-content-inner-bottom-3-inner p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* SemiBold */
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin: 0px;
}

.section-5-content-inner-bottom-3-inner span {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

.section-5-content-inner-bottom-3-inner .section-5-legacy-intro {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 8px 0;
}

.section-5-content-inner-bottom-3-inner .section-5-legacy-points {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.section-5-content-inner-bottom-3-inner .section-5-legacy-points li {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 9px;
}

.section-5-content-inner-bottom-3-inner .section-5-legacy-points li:last-child {
    margin-bottom: 0;
}

/* ============================================
   Section 6
   ============================================ */
.section-6 {
    width: 100%;
    /* min-height: 730px; */
    height: auto;
    position: relative;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-base);
    margin: 0 auto;
    padding: 50px 50px 30px 50px;
    overflow: hidden;
}

@media (max-width: 769px) {
    .section-6 {
        padding: 30px 30px 0 30px;
    }
}

@media (max-width: 600px) {
    .section-4 {
        width: 100%;
        /* min-height: 160px !important;
        height: 160px !important; */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .section-4-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-4-video-player {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }

    .section-4-video-player p {
        font-size: 18px;
    }

    .section-4-play-icon {
        width: 50px;
        height: 50px;
    }

    .section-4-play-icon::after {
        width: 28px;
        height: 30px;
    }

    .section-4-play-icon img {
        max-width: 8px;
        max-height: 24px;
    }
}

.section-6 p {
    font-weight: 400;
    font-size: var(--font-size-lg);
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--color-white);
    margin: 0;
}

.section-6 h2 {
    font-weight: 700;
    font-size: var(--font-size-6xl);
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
    margin-bottom: 30px;
}

.section-6-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* Section 6 Slider Styles */
.section-6-slider-container {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    /* Prevent any content from spilling outside */
}

.section-6-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Ensure no content spills outside */
    clip-path: inset(0);
}

.section-6-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: var(--spacing-3xl);
    will-change: transform;
}

.section-6-slider-track .section-6-content-inner-div {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
}

.section-6-content-inner-div {
    width: 100%;
    max-width: 100%;
}

.section-6-slider-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    background: var(--color-accent);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.section-6-slider-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-50%) scale(1.1);
}

.section-6-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.section-6-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.section-6-slider-btn-prev {
    left: 20px;
}

.section-6-slider-btn-next {
    right: 20px;
}

.section-6-slider-btn svg {
    width: 24px;
    height: 24px;
}

.section-6-content-inner-div-image {
    padding: var(--spacing-base);
    border: 4px solid #1a0f0a;
    box-shadow: inset 0 0 0 2px var(--color-accent-yellow);
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.section-6-content-inner-div-image img {
    width: 100%;
    height: 354px;
    display: block;
    object-fit: cover;
}

.section-6-content-inner-div-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-base) 0;
}

.section-6-content-inner-div-inner p {
    font-size: 18px;
    font-weight: 600;
    /* font-size: var(--font-size-2xl); */
    text-align: center;
    vertical-align: middle;
    margin: 0;
    color: var(--color-white);
}

@media (max-width: 769px) {
    .section-6-content-inner-div-inner span {
        font-size: 14px !important;
    }

    .section-6-content-inner-div-inner p {
        font-size: 15px !important;
    }

    .section-6-content-inner-div-inner h6 {
        font-size: 13px !important;
    }
}

.section-6-content-inner-div-inner span {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    margin: 0;
    color: var(--color-white);
}

.section-6-content-inner-div-inner h6 {
    font-weight: 400;
    font-size: var(--font-size-lg);
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    color: var(--color-accent-yellow);
}

/* ============================================
   Section 7
   ============================================ */
.section-7 {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-7-top {
    width: 100%;
    min-height: 539px;
    height: auto;
    padding-top: var(--spacing-14xl);
    padding-bottom: var(--spacing-14xl);
    gap: 50px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 56px 50px;
}

.section-7-top-heading-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Section 7 - 769px se chhoti screen: text aur button center, beech me gap */
@media (max-width: 769px) {
    .section-7-top-heading-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0px;
    }

    .section-7-top-heading-section > div:first-child {
        text-align: center;
    }

    .section-7-top-heading-section p,
    .section-7-top-heading-section h2 {
        text-align: center !important;
    }

    .section-7-top-heading-section .btn1212 {
        margin-top: 4px;
    }
}

/* Section 7 Responsive - Button below text on small screens */
@media (max-width: 550px) {
    .section-7-top-heading-section {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        text-align: center;
    }

    .section-7-top-heading-section > div:first-child {
        text-align: center;
    }

    .section-7-top-heading-section p,
    .section-7-top-heading-section h2 {
        text-align: center !important;
    }

    /* .section-7-top-heading-section > div:last-child {
        width: 100%;
    } */

    .section-7-top-heading-section .btn1212 {
        width: 100%;
        max-width: 150px;
        margin-top: 4px;
    }

    .section-7-top {
        padding: 38px 10px;
    }
}

.section-7-client-section {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.section-7-clent-section-inner {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: none;
    min-height: 368px;
    height: auto;
    gap: var(--spacing-base);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-card);
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-7-clent-section-inner-content b {
    color: var(--color-accent);
    font-weight: 600;
}

.section-7-clent-section-inner-image img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/* Desktop - Section 7 boxes full width */
@media (min-width: 992px) {
    .section-7-client-section {
        justify-content: space-between;
    }

    .section-7-clent-section-inner {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 300px;
        max-width: none;
    }
}

/* ============================================
   Section 8
   ============================================ */
.section-8 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-section);
    /* padding-top: 50px; */
    /* padding-right: 20px; */
    /* padding-bottom: 50px; */
    /* padding-left: 20px; */
    gap: var(--spacing-base);
}

.section-8-content {
    width: 100%;
    min-height: 490px;
    height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    color: var(--color-text-secondary);
    padding: 50px 50px;
    gap: 20px;
}

/* .section-8-content-inner p {
  font-weight: 700;
  font-size: var(--font-size-6xl);
  text-transform: capitalize;
  color: var(--color-text-primary);
  margin: 0;
} */

.section-8-content-inner-left h2 {
    font-weight: 400;
    font-size: var(--font-size-lg);
    vertical-align: middle;
    text-transform: capitalize;
    margin: 0;
}

.section-8-content-inner-left > span {
    color: var(--color-text-secondary);
    font-weight: 400;
    font-size: var(--font-size-lg);
    line-height: 24px;
    vertical-align: middle;
    /* text-transform: capitalize; */
}

.section-8-content-inner-left {
    width: 100%;
    max-width: 410px;
    flex-shrink: 0;
    min-height: 248px;
    height: auto;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.section-8-content-inner-middle,
.section-8-content-inner-right {
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.section-8-blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-bg-section);
}

.section-8-blog-card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-8-blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 260px;
}

/* Text inside image - bottom overlay */
.section-8-blog-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* padding: 24px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    ); */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-8-blog-date-overlay,
.section-8-blog-desc-overlay {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.section-8-blog-desc-overlay {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-8-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.2s ease;
}

.section-8-read-more:hover {
    opacity: 0.9;
}

/* .section-8-read-more span:first-child {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
} */

.section-8-read-more-icon {
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.section-8-read-more-icon::after {
    content: ">";
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Text below image */
.section-8-blog-card-text {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-8-blog-date {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.section-8-blog-card-text p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: var(--color-text-primary);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-8-btn-wrap .btn1212 p,
.section-8-btn-wrap .btn1212 {
    font-family: "inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: white !important;
}

.section-8-btn-wrap .btn1212 .btn1212-text {
    position: relative;
    z-index: 1;
    color: white !important;
}

.section-8-btn-wrap .btn1212:hover,
.section-8-btn-wrap .btn1212:hover .btn1212-text {
    color: white !important;
}

/* ============================================
   Section 9
   ============================================ */
.section-9 {
    width: 100%;

    height: auto;
    padding: 56px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: var(--color-primary-alpha);
}

.section-9-content {
    width: 100%;
    min-height: 559px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: var(--spacing-12xl);
    padding: 0 50px;
}

.section-9-content-top {
    text-align: start;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.section-9-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    /* width: 100%; */
}

.section-9-content-inner-left {
    /* width: 100%; */
    /* max-width: 530px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-9-content-inner-left img {
    width: 95%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.section-9-content-inner-right {
    width: 100%;
    max-width: 716px;
    min-height: 387px;
    height: auto;
    gap: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
}

.section-9-content-inner-right-rating-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 100%;
}

.section-9-content-inner-right-rating-section-inner {
    display: flex;
    gap: var(--spacing-base);
}

.section-9-content-inner-right-rating-section-inner .rating-number {
    font-weight: 600;
    font-size: var(--font-size-9xl);
    vertical-align: middle;
    color: var(--color-white);
}

.section-9-content-inner-right-rating-section-inner-rating-stars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-9-content-inner-right-rating-section-inner-rating-stars div {
    background: var(--color-accent);
    width: max-content;
    padding: 5px 10px;
    /* height: var(--spacing-7xl); */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    border-radius: var(--radius-full);
    /* padding: var(--spacing-base); */
    flex-shrink: 0;
}

.section-9-content-inner-right-rating-section-inner-rating-stars div img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.section-9-content-inner-right-rating-section-inner-rating-stars p {
    font-weight: 500;
    font-style: Medium;
    font-size: var(--font-size-xl);
    color: var(--color-white);
}

.section-9-content-inner-right-rating-section .rating-description {
    font-weight: 400;
    font-style: Medium;
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    line-height: normal;
    /* text-align: center; */
    width: 100%;
    max-width: 100%;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    width: 100%;
}

.section-9-content-inner-right-rating-section-inner-bottom {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    /* align-items: center; */
}

.section-9-content-inner-right-rating-section-inner-bottom div {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: var(--spacing-base);
    flex-wrap: wrap;
}

.section-9-content-inner-right-rating-section-inner-bottom span {
    font-weight: 500;
    font-size: var(--font-size-md);
    color: #fff;
    white-space: nowrap;
}

.section-9-content-inner-right-rating-section-inner-bottom
    .testimonial-owner-label {
    color: #ffffff99;
}

.section-9-content-inner-right-rating-section-inner-slider-buttons {
    width: 100%;
}

.section-9-content-inner-right-rating-section-inner-slider-buttons-inner {
    margin-top: 20px;
    display: flex;
    gap: var(--spacing-base);
}

/* Testimonial Slider Styles - Swiper */
.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 319px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

/* Swiper structure for testimonial */
.testimonial-swiper.swiper {
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.testimonial-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonial-swiper .testimonial-slide.swiper-slide {
    gap: 10px;
    height: auto;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-9-content-inner-right-rating-section-inner-slider-buttons .left-button,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button {
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    padding: var(--spacing-base);
    border-radius: var(--radius-circle);
}

.section-9-content-inner-right-rating-section-inner-slider-buttons
    .left-button:hover,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.section-9-content-inner-right-rating-section-inner-slider-buttons
    .left-button:active,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button:active {
    transform: scale(0.95);
}

.section-9-content-inner-right-rating-section-inner-slider-buttons
    .left-button.active,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button.active {
    opacity: 1;
    transform: scale(1);
}

.section-9-content-inner-right-rating-section-inner-slider-buttons
    .left-button.testimonial-nav-inactive,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button.testimonial-nav-inactive {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .left-button.testimonial-nav-inactive:hover,
.section-9-content-inner-right-rating-section-inner-slider-buttons
    .right-button.testimonial-nav-inactive:hover {
    opacity: 0.4;
    transform: none;
}

/* ============================================
   Get To Know Banner - padding outside image
   ============================================ */
.get-to-know-banner-wrap {
    width: 100%;
    max-width: 1500px;
    padding: 56px 50px;
    box-sizing: border-box;
    margin: 0 auto;
}

.get-to-know-banner {
    position: relative;
    width: 100%;
    min-height: 330px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 70px 24px;
}

@media (max-width: 518px) {
    .get-to-know-banner {
        padding: 30px 16px;
    }
}

@media (max-width: 769px) {
    .get-to-know-banner {
        min-height: 0px;
    }
}

.get-to-know-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.get-to-know-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.get-to-know-banner-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}

.get-to-know-banner-inner .btn1212 {
    color: white;
}

.get-to-know-banner-inner .btn1212 .btn1212-text {
    position: relative;
    z-index: 1;
    color: white;
}

.get-to-know-banner-inner .btn1212:hover,
.get-to-know-banner-inner .btn1212:hover .btn1212-text {
    color: white;
}

@media (max-width: 768px) {
    .get-to-know-banner-wrap {
        padding: 50px 30px;
    }
}

@media (max-width: 769px) {
    .get-to-know-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 518px) {
    .get-to-know-banner-title {
        font-size: 18px;
        font-weight: 400;
    }
}

@media (max-width: 518px) {
    .get-to-know-banner-wrap {
        padding: 30px 10px;
    }
}

/* ============================================
   Section 10 (Contact Form)
   ============================================ */
.section-10 {
    width: 100%;
    padding: 0 50px;
    gap: var(--spacing-base);
    display: flex;
    position: relative;
    background: var(--color-white) url("../images/new_theme/formbgimage.png")
        no-repeat center center;
    background-size: cover;
    overflow: hidden;
    justify-content: center;
}

.section-10::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url("../images/new_theme/contact-us-left.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 0.3;
    z-index: var(--z-base);
    pointer-events: none;
}

.section-10::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("../images/new_theme/contact-us-right.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.3;
    z-index: var(--z-base);
    pointer-events: none;
}

.section-10-content {
    width: 100%;
    max-width: 620px;
    min-height: 116px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 7px;
}

.section-10-content b {
    font-family: var(--font-lato);
    font-weight: 700;
    font-style: Bold;
    font-size: var(--font-size-6xl);
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: var(--color-accent) !important;
}

.section-10-contact-us {
    width: 100%;
    max-width: 824px;
    min-height: 481px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4xl);
    position: relative;
    z-index: var(--z-1);
    padding: 56px 0px;
}

.section-10-contact-us-form {
    width: 100%;
    max-width: 824px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
}

.callback-form {
    width: 100%;
    max-width: 824px;
    height: auto;
    border-radius: var(--radius-xl);
    border-width: 1px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 40px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    align-items: center;
    justify-content: center;
}

.callback-form-title {
    position: absolute;
    font-weight: 600;
    font-size: var(--font-size-4xl);
    line-height: 50px;
    color: var(--color-black);
    top: -30px;
    left: var(--spacing-12xl);
    padding: 0 var(--spacing-base);
    background: var(--color-white);
}

.callback-form-row {
    display: flex;
    gap: var(--spacing-2xl);
    width: 100%;
}

.callback-form-row:first-of-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.callback-form input {
    width: 100%;
    height: 60px;
    padding-top: var(--spacing-sm);
    padding-right: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
    padding-left: var(--spacing-xl);
    gap: var(--spacing-base);
    border-radius: var(--radius-md);
    background: var(--color-bg-light);
    outline: none;
    border: none;
}

.callback-form textarea {
    width: 100%;
    padding-top: var(--spacing-sm);
    padding-right: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
    padding-left: var(--spacing-xl);
    gap: var(--spacing-base);
    border-radius: var(--radius-md);
    background: var(--color-bg-light);
    outline: none;
    border: none;
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
    color: var(--color-text-light);
    font-weight: 400;
}

.callback-form input:focus,
.callback-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-focus);
}

.callback-form textarea {
    resize: vertical;

    font-family: inherit;
    box-sizing: border-box;
}

.new-home-page .section-10 .callback-form textarea {
    height: 60px !important;
}

.callback-form-submit {
    width: 100%;
    padding: 14px var(--spacing-4xl);
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    /* font-family: var(--font-open-sans); */
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 25px;
    /* font-weight: 700; */
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    transition:
        background-color var(--transition-base),
        transform var(--transition-fast);

    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

.callback-form-submit:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.callback-form-submit:active {
    transform: translateY(0);
}

.project-section-16-form textarea {
    min-height: 60px !important;
}

/* ============================================
   Header Styles
   ============================================ */
.new-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
    transition: all var(--transition-base);
    box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.2);
    background: var(--color-white);
}

.new-header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-12xl);
    padding: 16px 50px;
}

.new-header-left {
    display: flex;
    align-items: center;
}

.new-header-logo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.new-header-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.new-header-logo-link:hover {
    opacity: 0.8;
}

.new-header-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.new-header-tagline {
    font-family: var(--font-inter);
    font-size: var(--font-size-xs);
    font-weight: 400;
    color: var(--color-text-secondary);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.new-header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
}

.new-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.new-header-nav-link {
    font-family: var(--font-inter);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-base);
    position: relative;
    width: fit-content;
}

.new-header-nav-link:hover {
    color: var(--color-text-secondary);
}

.new-header-nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.new-header-nav-link:hover::after {
    width: 100%;
}

.new-header-nav-link.header-our-projects-trigger:active,
.new-header-nav-link.header-our-projects-trigger:focus {
    color: var(--color-text-secondary);
}

.new-header-contact-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.new-header-contact-icon {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-circle);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    background: var(--color-white);
}

.new-header-contact-icon svg {
    width: 18px;
    height: 18px;
}

.new-header-contact-icon svg path {
    fill: #515151;
}

.new-header-contact-icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}

.new-header-contact-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-text-secondary);
    background: rgba(246, 136, 62, 0.05);
    transform: translateY(-2px);
}

.new-header-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-md);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: end;
    transition: all var(--transition-base);
}

.new-header-menu-line {
    height: 2px;
    background: var(--color-text-secondary);
    transition: all var(--transition-base);
    display: block;
}

.new-header-menu-line:nth-child(1) {
    width: 18px;
}

.new-header-menu-line:nth-child(2) {
    width: 24px;
}

.new-header-menu-line:nth-child(3) {
    width: 12px;
}

.new-header-menu-toggle:hover .new-header-menu-line {
    background: var(--color-primary);
}

.new-header-menu-toggle.active .new-header-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 7px);
    width: 24px;
}

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

.new-header-menu-toggle.active .new-header-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -7px);
    width: 24px;
}

.new-header.scrolled .new-header-logo-img {
    height: 35px;
}

.new-header.scrolled .new-header-tagline {
    font-size: 11px;
}

.hover-header-container {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/new_theme/header-bg-image.png") no-repeat center
        center;
    background-size: cover;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.header-links .header-nav-item-main {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 50px;
    /* increased */
    letter-spacing: 0;
    text-transform: uppercase;
    color: #515151;
}

.header-links-text p {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #515151;
}

.header-links-text .header-nav-item-main {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #515151;
}

@media (min-width: 768px) and (max-width: 1062px) {
    .header-expertise-images {
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 850px) {
    .header-expertise-image-item img {
        width: 219px !important;
        height: 115px !important;
    }

    .header-expertise-images {
        gap: 0px !important;
    }
}

@media (min-width: 768px) and (max-width: 1300px) {
    .header-expertise-images {
        padding-left: 50px !important;
    }
}

@media (max-width: 768px) {
    .header-expertise-image-item {
        display: none;
    }
}

.hover-header-container.active {
    display: flex;
    visibility: visible;
    height: 702px;
}

/* Large screens - Full width and 100vh */
@media (min-width: 992px) {
    .hover-header-container.active {
        width: 100%;
        height: 100vh;
    }
}

/* Initial states for GSAP animation - Only text content animates */
.header-nav-item-main,
.header-nav-item-secondary {
    opacity: 0;
}

/* Projects popup items should not have transform - they stay in place */
.hover-project-header-container .header-nav-item-main,
.hover-project-header-container .header-nav-item-secondary {
    transform: none !important;
}

/* Projects popup items should be visible - Override inline styles from GSAP */
.hover-project-header-container .header-nav-item-main,
.hover-project-header-container .header-nav-item-secondary {
    opacity: 1 !important;
}

.hover-project-header-container p {
    opacity: 1 !important;
}

/* Responsive initial states - Only text items */
@media (max-width: 991px) {
    .header-nav-item-main,
    .header-nav-item-secondary {
        transform: translateX(40px);
    }

    /* Projects popup items should not move - stay in place */
    .hover-project-header-container .header-nav-item-main,
    .hover-project-header-container .header-nav-item-secondary {
        transform: none !important;
    }
}

/* GSAP will handle animations, these are just initial states */

/* Prevent body scroll when overlay is active */
body.menu-open {
    overflow: hidden;
}

/* Header Overlay Responsive Styles */
@media (max-width: 991px) {
    .hover-header-content {
        flex-direction: column;
        padding: var(--spacing-11xl) var(--spacing-3xl);
        min-height: auto;
        height: 100%;
        justify-content: flex-start;
    }

    .hover-header-content-left {
        width: 100%;
        padding: var(--spacing-11xl) 0 var(--spacing-3xl) 0;
        /* margin-top: var(--spacing-11xl); */
    }

    /* Only apply column layout for mobile, not tablet */
    @media (max-width: 480px) {
        .header-nav-wrapper {
            flex-direction: column;
            gap: var(--spacing-11xl);
            margin-top: 0;
            width: 100%;
        }
    }

    /* Tablet: Keep side by side */
    @media (min-width: 481px) and (max-width: 991px) {
        .header-nav-wrapper {
            flex-direction: row;
            gap: 50px;
            margin-top: var(--spacing-8xl);
            width: 100%;
            align-items: flex-start;
        }

        .header-links {
            width: auto;
            flex: 0 0 auto;
        }

        .header-links-text {
            width: auto;
            flex: 0 0 auto;
            flex-direction: column;
        }
    }

    .header-nav-item-main {
        font-size: var(--font-size-3xl);
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-xl);
    }

    .header-close-button {
        top: var(--spacing-3xl);
        right: var(--spacing-3xl);
    }

    .hover-header-content-right {
        display: none;
    }

    .header-social-links {
        position: relative;
        width: 100%;
        padding: var(--spacing-3xl);
        flex-direction: column;
        gap: var(--spacing-11xl);
        align-items: flex-start;
    }

    .header-social-link-left,
    .header-social-link-right {
        width: 100%;
        justify-content: center;
    }
}

/* z-index > ENQUIRE NOW (999999) so Projects dropdown stays on top on project page */
.hover-project-header-container {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

/* Background image layer - animates top to bottom (2s) */
.hover-project-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/new_theme/header-bg-image.png") no-repeat center
        center;
    background-size: cover;
    z-index: 0;
    will-change: transform;
}

.hover-project-header-container.active {
    display: flex;
    visibility: visible;
    opacity: 1;
    height: 702px;
}

/* Large screens - Full width and 100vh */
@media (min-width: 992px) {
    .hover-project-header-container.active {
        width: 100%;
        height: auto;
    }
}

/* Projects dropdown: content hamesha visible, background ke upar */
.hover-project-header-container .hover-header-content {
    will-change: transform;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    position: relative;
}

.hover-project-header-container.active .hover-header-content,
.hover-project-header-container.active .hover-header-content * {
    opacity: 1 !important;
    visibility: visible !important;
}

.hover-header-content {
    width: 100%;
    /* max-width: var(--container-width); */
    min-height: 702px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: var(--z-100);
    margin: 0 auto;
    will-change: transform, opacity;
}

.hover-header-content-left {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px var(--spacing-3xl);
    z-index: var(--z-2);
    background: transparent;
}

@media (min-width: 1440px) {
    .hover-header-content-left {
        padding: 0px 80px;
    }
}

.hover-header-content-left::after {
    display: none;
}

.hover-header-content-left::before {
    display: none;
}

.header-close-button {
    position: absolute;
    top: 35px;
    right: 80px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: 2px solid var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: all var(--transition-base);
    z-index: var(--z-100);
    background: transparent;
}

.header-close-button:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: rotate(90deg);
}

.header-close-button svg {
    width: 15px;
    height: 15px;
}

.hover-header-content-right {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-2);
}

.header-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image-container img {
    width: 100%;
    height: 100%;
}

.header-nav-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: 100px;
    position: relative;
    z-index: var(--z-2);
    background: transparent;
    /* padding: var(--spacing-base) 50px; */
}

.header-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    background: transparent;
    position: relative;
    z-index: var(--z-100);
}

/* Hamburger: RESIDENTIAL / COMMERCIAL inline dropdown (below trigger) */
.header-nav-dropdown-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
}

.header-nav-dropdown {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.25s ease;
    width: 100%;
}

.header-nav-dropdown.open {
    grid-template-rows: 1fr;
}

.header-nav-dropdown-inner {
    margin-top: 12px;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: var(--spacing-lg);
    /* padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-xs); */
}

.header-nav-dropdown-item {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: gray;
    /* color: var(--color-text-secondary); */
    text-decoration: none;
    transition: color var(--transition-base);
}

.header-nav-dropdown-item:hover {
    color: var(--color-accent);
}

.hover-header-container .header-nav-projects-trigger.active {
    color: var(--color-accent);
}

/* Reset color when dropdown is closed (not active) */
.hover-header-container .header-nav-projects-trigger:not(.active) {
    color: #515151 !important;
    margin-top: -5px;
    margin-bottom: -10px;
}

/* Ensure hover doesn't override inactive state color */
.hover-header-container .header-nav-projects-trigger:not(.active):hover {
    color: #515151 !important;
}

/* Toggle Icons (+ and -) for RESIDENTIAL/COMMERCIAL */
.header-nav-mobile-projects .header-nav-projects-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-base);
    width: 100%;
}

.header-nav-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.header-nav-toggle-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition:
        opacity var(--transition-base),
        transform var(--transition-base);
    color: currentColor;
}

.header-nav-toggle-icon .icon-plus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.header-nav-toggle-icon .icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.header-nav-projects-trigger.active .header-nav-toggle-icon .icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header-nav-projects-trigger.active .header-nav-toggle-icon .icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Underline toggle for RESIDENTIAL/COMMERCIAL - show on active, hide on inactive */
.header-nav-mobile-projects .header-nav-projects-trigger {
    position: relative;
}

/* Disable default hover underline for mobile projects */
.header-nav-mobile-projects .header-nav-projects-trigger:hover::after {
    width: 0 !important;
}

/* Custom underline that shows only on active state - text width only */
.header-nav-mobile-projects .header-nav-projects-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav-text {
    font-family: "Lato", sans-serif;
    position: relative;
    display: inline-block;
}

/* Underline on text span only, not on entire link */
.header-nav-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.header-nav-mobile-projects
    .header-nav-projects-trigger.active
    .header-nav-text::after {
    width: 100%;
}

/* Remove underline from link itself */
.header-nav-mobile-projects .header-nav-projects-trigger::after {
    display: none;
}

.header-nav-mobile-projects .header-nav-projects-trigger:not(.active)::after {
    width: 0;
}

/* OUR PROJECTS vs RESIDENTIAL/COMMERCIAL by breakpoint */
/* ≥481px: OUR STORY + OUR PROJECTS in header → show OUR PROJECTS, hide RESIDENTIAL/COMMERCIAL */
.header-nav-mobile-projects {
    display: none !important;
}

/* <481px: RESIDENTIAL/COMMERCIAL with dropdown; OUR PROJECTS hidden; hamburger scroll */
@media (max-width: 480px) {
    .header-nav-our-projects-link {
        display: none !important;
    }

    .header-nav-mobile-projects {
        display: flex !important;
    }

    .new-header-right {
        gap: 5px !important;
    }

    /* Hamburger overlay: show there, dropdown below, full-screen scroll */
    .hover-header-container.active {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        height: 100vh !important;
    }

    .hover-header-container.active .hover-header-content {
        min-height: auto !important;
        height: auto !important;
        flex: 0 0 auto !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding-bottom: var(--spacing-6xl) !important;
        overflow-y: auto;
    }

    .hover-header-container.active .hover-header-content-left {
        overflow: visible !important;
    }

    .header-nav-dropdown-wrap {
        overflow: visible !important;
    }

    /* Ensure toggle icons are visible and properly sized on mobile */
    .header-nav-mobile-projects .header-nav-toggle-icon {
        width: 24px;
        height: 24px;
    }

    .header-nav-mobile-projects .header-nav-toggle-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Projects popup: Reduce gap between p and nav items */
.hover-project-header-container .header-links {
    gap: var(--spacing-lg);
}

.hover-project-header-container .header-links p {
    margin-bottom: var(--spacing-md);
}

/* Remove hover-based display - using JavaScript toggle instead */

.header-nav-item-main {
    font-family: var(--font-lato);
    color: #515151;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    /* line-height: 1.2; */
    gap: 45px;
    position: relative;
    display: inline-block;
    width: fit-content;
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    will-change: transform, opacity;
}

.header-nav-item-main:hover {
    color: #515151;
    transform: translateX(10px);
}

.header-nav-item-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.header-nav-item-main:hover::after {
    width: 100%;
}

@media (min-width: 769px) and (max-width: 993px) {
    .header-close-button {
        top: 0;
        right: 14px;
    }
}

/* Responsive close button positioning */
@media (min-width: 994px) and (max-width: 1439px) {
    .header-close-button {
        right: 50px !important;
    }
}

@media (min-width: 1440px) {
    .header-close-button {
        right: 80px !important;
    }
}

@media (min-width: 851px) and (max-width: 993px) {
    .header-close-button {
        right: 20px !important;
    }
}

.header-links-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    background: transparent;
    position: relative;
    z-index: var(--z-100);
    margin-top: 8px;
}

.header-nav-item-secondary {
    font-family: var(--font-lato);
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    /* line-height: 100%; */
    letter-spacing: 0%;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    text-transform: capitalize;
    will-change: transform, opacity;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.header-nav-item-secondary::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e57a35;
    transition: width var(--transition-base);
}

.header-nav-item-secondary:hover {
    /* color: #e57a35; */
    transform: translateX(5px);
    font-weight: 500;
}

.header-nav-item-secondary:hover::after {
    width: 100%;
}

.header-social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-base) 88px;
    background: var(--color-white);
    z-index: var(--z-100);
}

@media (max-width: 1250px) and (min-width: 993px) {
    .header-social-links {
        margin-bottom: 28px;
    }
}

@media (min-width: 767px) and (max-width: 1439px) {
    .header-nav-wrapper {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    .header-nav-wrapper {
        padding-left: 20px;
    }
}

@media (max-width: 993px) and (min-width: 768px) {
    .header-social-links {
        margin-bottom: 60px;
        /* value apni need ke hisaab se change kar sakte ho */
    }
}

.header-social-link-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    will-change: transform, opacity;
}

.header-call-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-circle);
    border: 1.5px solid var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d0d0d0;
    flex-shrink: 0;
    background: transparent;
}

.header-call-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.header-call-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.header-call-text {
    font-family: var(--font-inter);
    font-weight: 600;
    font-style: Semi Bold;
    font-size: var(--font-size-sm);
    text-transform: capitalize;
    color: var(--color-text-secondary);
}

.header-call-number {
    font-family: var(--font-lato);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    line-height: 1.2;
    font-weight: 800;
    font-size: var(--font-size-4xl);
}

.header-call-number:hover {
    color: var(--color-accent);
}

.header-social-link-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header-social-icon-bottom {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-social);
    position: relative;
    will-change: transform, opacity;
    visibility: visible;
    opacity: 1;
}

/* Ensure icons are visible in project header container */
.hover-project-header-container.active .header-social-icon-bottom {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    transform: none !important;
}

@media (max-width: 360px) {
    .header-expertise-images {
        display: none !important;
    }

    .header-social-links {
        height: 110px;
        /* padding: 5px !important; */
    }
}

@media (max-width: 768px) {
    .header-links-text {
        margin-top: 2px;
    }
}

@media (max-width: 768px) {
    .section-2-content-right-inner > p {
        margin-top: -22px;
    }

    .section-2-content-right-inner > p {
        line-height: 29px;
        font-size: 14px;
    }
}

@media (max-width: 428px) {
    .btn1212 {
        width: 140px !important;
    }
}

/* @media (max-width: 470px) { .section-2-content-right-inner > p { margin-top: -22px; } } */
/* Call us now - opacity hata diya, hamesha visible */
.header-social-link-left {
    opacity: 1 !important;
}

.hover-project-header-container.active .header-social-link-left {
    transform: none !important;
}

.header-social-icon-bottom:first-child {
    background: var(--color-social-facebook);
}

.header-social-icon-bottom:nth-child(2) {
    background: var(--color-social-twitter);
}

.header-social-icon-bottom:nth-child(3) {
    background: var(--color-social-linkedin);
}

.header-social-icon-bottom:nth-child(4) {
    background: var(--color-social-instagram);
}

.header-social-icon-bottom:last-child {
    background: var(--color-social-youtube);
}

.header-social-icon-bottom svg {
    width: 18px;
    height: 18px;
}

.header-social-icon-bottom:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-social-hover);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-social-icon-bottom:active {
    transform: translateY(-2px) scale(1.05);
}

.header-social-icon-bottom:active {
    transform: translateY(-2px) scale(1.05);
}

.hover-project-header-container .search-container {
    position: relative;
    width: 415px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background: var(--color-white);
    padding: 0 var(--spacing-3xl) 0 var(--spacing-4xl);
    box-shadow: var(--shadow-search);
    justify-content: space-between !important;
}

.search-input {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.section-5-content-inner-div-1 p {
    background: linear-gradient(180deg, #364c8b 0%, #272c39 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    /* Bold */
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.section-5-content-inner-div-2-inner-bottom p .section-5 h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    /* Bold weight */
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}

.section-3-content-inner
    .hover-project-header-container
    .search-container
    .search-input {
    flex: 1;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    background: transparent;
    font-family: var(--font-inter);
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    padding: 0;
    padding-right: var(--spacing-lg);
}

.hover-project-header-container .search-container .search-input::placeholder {
    color: var(--color-text-light);
    font-weight: 400;
}

.hover-project-header-container .search-container .search-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    pointer-events: none;
}

/* Expertise Images Section */
.header-expertise-images {
    display: flex;
    gap: var(--spacing-lg);
    width: 100%;
    padding: var(--spacing-2xl) 0;
    margin-top: var(--spacing-3xl);
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.header-expertise-image-item {
    flex: 0 0 250px;
    width: 250px;
    min-width: 230px;
    max-width: 230px;
    height: auto;
    overflow: hidden;
    border-radius: 0;
}

.header-expertise-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .header-expertise-image-item img {
        display: none !important;
    }
}

.hover-project-header-container .header-nav-item-main {
    font-family: var(--font-lato);
    font-weight: 500;
    font-style: Medium;
    font-size: var(--font-size-2xl);
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.hover-project-header-container p {
    font-family: var(--font-lato);
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin: 0px;
    margin-bottom: var(--spacing-lg);
}

/* Ensure text items start right below Residential/Commercial headings */
.hover-project-header-container .header-links .header-nav-item-main,
.hover-project-header-container .header-links-text .header-nav-item-main {
    margin-top: 0;
    padding-top: 0;
}

/* Projects popup layout: RESIDENTIAL | COMMERCIAL side-by-side + Search (image style) */
.projects-popup-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px 64px;
}

.projects-popup-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.projects-popup-heading {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 100%;
    color: #515151;
    margin: 0 0 var(--spacing-sm) 0;
}

.hover-project-header-container .projects-popup-heading {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 100%;
    color: #515151;
}

.projects-popup-expertise {
    display: none;
}

/* 769px–1040px: Projects popup – search side-by-side (upar hi), not below */
@media (min-width: 769px) and (max-width: 1040px) {
    .hover-project-header-container .header-nav-wrapper.projects-popup-layout {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
    }

    .hover-project-header-container .header-nav-wrapper .search-container {
        order: 0 !important;
        flex-basis: auto !important;
        width: 380px !important;
        max-width: 380px !important;
        margin-bottom: 0 !important;
    }

    .hover-project-header-container .projects-popup-col:first-of-type,
    .hover-project-header-container .projects-popup-col:last-of-type {
        order: 0 !important;
        width: auto !important;
    }
}

/* ============================================
   Footer Styles
   ============================================ */
.new-footer {
    width: 100%;
    background: var(--color-primary-dark);
    color: var(--color-white);
    /* padding: var(--spacing-16xl) 0 var(--spacing-9xl); */
    padding: 30px 0px;
    margin-top: 0;
}

.new-footer-container {
    width: 100%;
    min-height: 504px;
    height: auto;
    gap: 33px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    padding: 0 50px;
    max-width: 1500px;
}

.new-footer-top {
    min-height: 101px;
    height: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-primary-light);
    padding-bottom: var(--spacing-9xl);
    flex-wrap: wrap;
    gap: 20px;
}

.new-footer-top-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.new-footer-logo-text {
    font-family: var(--font-fallback);
    font-size: var(--font-size-7xl);
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.new-footer-tagline {
    font-family: var(--font-fallback);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.new-footer-top-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-footer-main-tagline {
    font-family: var(--font-lato);
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 34px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--color-white);
}

.new-footer-top-right {
    width: 100%;
    max-width: 319px;
    /* min-height: 101px; */
    height: auto;
    gap: 18px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.new-footer-schedule-btn {
    width: 200px;
    height: 46px;
    /* min-height: 46px; */
    border-radius: 50px;
    background: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-family: var(--font-lato);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-footer-schedule-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.new-footer-schedule-btn:hover::before {
    left: 0;
}

.new-footer-schedule-btn:hover {
    background: var(--color-accent);
    animation: newFooterSchedulePulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-white);
}

.new-footer-schedule-btn:hover p {
    color: var(--color-white);
}

@keyframes newFooterSchedulePulse {
    0% {
        background-color: var(--color-white);
    }

    50% {
        background-color: var(--color-accent);
        box-shadow: 0 6px 25px rgba(246, 136, 62, 0.5);
    }

    100% {
        background-color: var(--color-accent);
        box-shadow: 0 4px 15px rgba(246, 136, 62, 0.3);
    }
}

.new-footer-schedule-btn p {
    margin: 0;
    padding: 0;
    font-family: var(--font-lato);
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
    color: inherit;
}

.new-footer-schedule-btn div {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.new-footer-schedule-btn div::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    transition:
        transform 0.5s,
        background 0.4s;
    transform: scale(1);
    z-index: 0;
}

.new-footer-schedule-btn div img {
    width: 14px;
    height: 20px;
    transform: translate(-100%, 100%);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.4s;
    z-index: 1;
    position: relative;
    display: block;
    filter: brightness(0) saturate(100%) invert(15%) sepia(40%) saturate(3000%)
        hue-rotate(210deg);
}

.new-footer-schedule-btn:hover div::before {
    transform: scale(3);
    background: var(--color-white);
}

.new-footer-schedule-btn p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #22356c;
}

.new-footer-schedule-btn:hover div img {
    transform: translate(0%, 0%);
    filter: brightness(0) saturate(100%) invert(62%) sepia(98%) saturate(469%)
        hue-rotate(360deg);
}

.new-footer-email {
    font-weight: 600;
    font-size: var(--font-size-5xl);
    line-height: 28px;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.new-footer-email::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: -2px;
    height: 2px;
    background: #f6883e;
    transition: width var(--transition-base);
}

.new-footer-email:hover {
    color: var(--color-white);
}

.new-footer-email:hover::after {
    width: 100%;
}

.new-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 50px; */
    gap: 60px;
    flex-wrap: wrap;
}

.new-footer-links-container {
    display: flex;
    gap: 100px;
    flex: 1;
    flex-wrap: wrap;
}

.new-footer-column {
    display: flex;
    flex-direction: column;
    /* gap: var(--spacing-3xl); */
}

.new-footer-column-heading {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.new-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.new-footer-links li {
    margin: 0;
}

.new-footer-links a {
    font-family: var(--font-fallback);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-white-transparent);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
    display: inline-block;
}

.new-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: -2px;
    height: 2px;
    background: #f6883e;
    transition: width var(--transition-base);
}

.new-footer-links a:hover {
    color: var(--color-white);
}

.new-footer-links a:hover::after {
    width: 100%;
}

.new-footer-right-section {
    width: 100%;
    max-width: 312px;
    min-height: 163px;
    height: auto;
    gap: 25px;
    border-radius: var(--radius-md);
    /* padding: var(--spacing-3xl); */
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.new-footer-google-reviews {
    background: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-base) var(--spacing-7xl);
}

.new-footer-google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-footer-google-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.new-footer-google-label {
    font-family: var(--font-fallback);
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-secondary);
}

.new-footer-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    line-height: 20px;
}

.new-footer-rating-number {
    font-family: var(--font-fallback);
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--color-black);
}

.new-footer-stars {
    display: flex;
    gap: 2px;
}

.new-footer-stars .star {
    color: var(--color-accent-star);
    font-size: var(--font-size-2xl);
    line-height: 1;
}

.new-footer-social-icons {
    display: flex;
    gap: var(--spacing-lg);
}

.new-footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-base);
    font-family: var(--font-fallback);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.new-footer-social-icon svg {
    width: 18px;
    height: 18px;
}

.new-footer-social-icon:hover {
    background: var(--color-bg-dark-hover);
    transform: translateY(-2px);
}

.new-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.new-footer-copyright {
    font-family: var(--font-fallback);
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-white-transparent-light);
    margin: 0;
}

/* Tablet and Mobile: Show hamburger menu, but keep nav visible on tablet */
@media (max-width: 992px) {
    .new-header-menu-toggle {
        display: flex;
    }

    .new-header-right {
        gap: var(--spacing-3xl);
    }
}

/* Mobile only: Hide navigation links */
@media (max-width: 480px) {
    .new-header-nav {
        display: none;
    }

    .search-input {
        height: 37px;
    }
}

/* Tablet: Show navigation with responsive sizing */
@media (min-width: 481px) and (max-width: 992px) {
    .new-header-nav {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .new-header-nav-link {
        font-size: 13px;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    .new-header-right {
        gap: var(--spacing-2xl);
        flex-wrap: nowrap;
    }

    .new-header-contact-icons {
        gap: var(--spacing-lg);
    }

    .new-header-contact-icon {
        width: 32px;
        height: 32px;
    }

    .new-header-contact-icon svg,
    .new-header-contact-icon img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .new-header-container {
        gap: var(--spacing-3xl);
        padding: 10px 30px;
    }

    .new-header-logo-img {
        height: 32px;
    }

    .new-header-tagline {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .section-5-content-inner {
        padding: 0px 50px;
    }

    .new-header-contact-icons {
        gap: var(--spacing-lg);
    }

    .new-header-contact-icon {
        width: 36px;
        height: 36px;
    }

    .new-header-contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .new-header-contact-icon img {
        width: 12px;
        height: 15px;
        object-fit: contain;
        display: block;
    }

    .new-header-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .hero-slider-container {
        height: 70vh;
        min-height: 500px;
    }

    .slide-tagline {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .slide-title {
        font-size: clamp(36px, 15vw, 80px);
        letter-spacing: 4px;
    }

    .slide-footer {
        padding: 0 30px;
        bottom: 30px;
    }

    .project-icon {
        width: 35px;
        height: 35px;
    }

    .project-icon svg {
        width: 20px;
        height: 20px;
    }

    .project-name {
        font-size: var(--font-size-base);
    }

    .pagination-dot {
        width: var(--spacing-sm);
        height: var(--spacing-sm);
    }

    .pagination-dot.active {
        width: 40px;
        height: 6px;
    }

    .slider-page-container {
        bottom: 50px;
    }

    .pagination-dash {
        width: 20px;
    }

    .hover-header-content-left {
        padding: var(--spacing-11xl) 0 var(--spacing-3xl) 0;
    }

    .header-nav-item-main {
        font-size: var(--font-size-2xl);
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-lg);
    }

    .header-call-number {
        font-size: var(--font-size-3xl);
    }

    .header-nav-item-main,
    .header-nav-item-secondary {
        transform: translateX(30px);
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons-inner {
        gap: 0px;
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button {
        min-width: 44px;
        min-height: 44px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button:hover,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .new-footer {
        overflow-x: hidden;
    }

    .new-footer-links-container {
        overflow-x: hidden;
    }

    h1,
    h2,
    h3 {
        font-size: clamp(20px, 5vw, 36px);
    }

    p {
        font-size: clamp(12px, 3vw, 16px);
    }

    .section-2-content-left-inner p {
        /* font-size: clamp(20px, 6vw, 36px); */
        font-size: 24px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .section-3-content-top-left h2 {
        /* font-size: clamp(18px, 6vw, 28px); */
        font-size: 24px;
        line-height: normal;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .section-2-content-left-inner h1 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .section-5-content h2 {
        /* font-size: 24px !important; */
        line-height: normal;
        /* margin-bottom: 20px; */
        font-weight: 800;
    }

    .section-7-top-heading-section h2 {
        font-size: 24px !important;
        line-height: normal !important;
        margin-bottom: 20px;
        font-weight: 800 !important;
    }

    .section-8-content-inner-left p {
        font-size: 24px !important;
        line-height: normal !important;
        margin-bottom: 20px;
        font-weight: 800 !important;
    }

    .section-5-heading-container {
        padding: 0 20px;
        padding-right: 180px;
    }

    .section-5-content h2 {
        text-align: center;
        width: 100%;
    }

    /* .section-5-enquire-btn {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px 24px;
        font-size: 12px;
        width: auto;
        max-width: none;
    } */

    .section-5-content h2,
    .section-6 h2,
    .section-7-top-heading-section h2,
    .section-9-content-top h2,
    .section-10-content h2 {
        font-size: clamp(22px, 6vw, 32px);
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section-2-image-inner-image img,
    .section-5-content-inner-div-2-inner-top img,
    .section-6-content-inner-div-image img,
    /* .section-7-clent-section-inner-image img, */
    .section-8-content-inner-middle img,
    .section-8-content-inner-right img {
        width: 100%;
        height: auto;
    }

    .section-9-content-inner-left img {
        width: 50%;
        height: auto;
    }

    .new-footer {
        padding: var(--spacing-12xl) 0 var(--spacing-3xl);
    }

    .new-footer-top {
        margin-bottom: 10px;
        padding-bottom: 30px;
    }

    .new-footer-logo-text {
        font-size: var(--spacing-11xl);
    }

    .new-footer-main-tagline {
        font-size: var(--font-size-5xl);
    }

    .new-footer-links-container {
        gap: 30px;
    }

    .new-footer-column {
        min-width: 150px;
    }

    .section-5-content h2 {
        font-family: "Lato", sans-serif;
        font-weight: 700;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
        text-transform: capitalize;
    }

    @media (min-width: 600px) and (max-width: 770px) {
        .section-5-enquire-btn {
            bottom: 20px;
            right: 74px;
            /* left of scroll-to-hero (20+44+10) */
        }
    }

    /* Tablet & Mobile: ENQUIRE NOW button centered (same as mobile) */
    @media (max-width: 991px) {
        /* .section-5-content h2 {
            font-size: 35px;
        } */
        .section-5-heading-container {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 0 20px;
            padding-right: 20px;
        }

        /* .section-5-enquire-btn {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            padding: 10px 24px;
            font-size: 12px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        } */
    }

    /* 518px se chhoti screen: button center me (pehle jaisa) */
    @media (max-width: 518px) {
        .section-5-enquire-btn {
            position: fixed !important;
            bottom: 24px !important;
            left: 50% !important;
            right: auto !important;
            top: auto !important;
            transform: translateX(-50%) !important;
            writing-mode: horizontal-tb !important;
            margin: 0 !important;
            padding: 12px 16px !important;
            font-size: 14px !important;
            width: auto !important;
            max-width: none !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            z-index: 9999;
        }

        .section-5-enquire-btn:hover {
            transform: translateX(-50%) translateY(-2px) !important;
            z-index: 999000;
            /* keep below projects dropdown (1000000) */
        }
    }

    /* 519px se badi: default = scroll ki jagah; scroll-hero-visible par left shift */
    @media (min-width: 519px) and (max-width: 769px) {
        .section-5-enquire-btn {
            bottom: 20px !important;
            right: 20px !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            writing-mode: horizontal-tb !important;
        }

        body.scroll-hero-visible .section-5-enquire-btn {
            right: 74px !important;
        }

        .section-5-enquire-btn:hover {
            transform: translateY(-2px) !important;
        }
    }

    /* 519–640: scroll btn right 43px, 42px wide – enquiry usi jagah; visible par 95px */
    @media (min-width: 519px) and (max-width: 640px) {
        .section-5-enquire-btn {
            right: 43px !important;
        }

        body.scroll-hero-visible .section-5-enquire-btn {
            right: 95px !important;
        }
    }

    .section-2 {
        padding: 30px 30px;
        gap: 30px;
    }

    .section-2-content-left-inner {
        height: auto !important;
        min-height: auto !important;
    }
}

@media (min-width: 519px) and (max-width: 599px) {
    .section-5-enquire-btn {
        bottom: 24px;
        right: 20px;
        /* scroll ki jagah; scroll-hero-visible par 74px (1024 rule) */
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .new-footer-links-container {
        gap: var(--spacing-12xl);
    }

    .new-footer-middle {
        gap: var(--spacing-12xl);
    }
}

@media (max-width: 992px) {
    .new-footer-top {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .new-footer-top-right {
        align-items: center;
    }

    .new-footer-middle {
        flex-direction: column;
        gap: var(--spacing-12xl);
    }

    .new-footer-right-section {
        align-items: center;
        width: 100%;
    }

    .new-footer-links-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .hover-header-content-right {
        display: none !important;
    }
}

@media (min-width: 1380px) {
    /* .hover-header-content-left {
    padding-left: 230px;
  } */

    .header-social-links {
        /* padding-left: 230px;
        padding-right: 230px; */
        max-width: 100%;
    }

    .hover-header-container {
        overflow: hidden !important;
    }
}

.btn1212 {
    height: 40px;
    width: 160px;
    background: #22356c;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    color: white;
    padding: 0px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: none;
}

.btn1212::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn1212:hover::before {
    left: 0;
}

.btn1212:hover {
    background: var(--color-accent);
    animation: backgroundPulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    text-decoration: none;
}

@keyframes backgroundPulse {
    0% {
        background-color: #22356c;
    }

    50% {
        background-color: var(--color-accent);
        box-shadow: 0 6px 25px rgba(246, 136, 62, 0.5);
    }

    100% {
        background-color: var(--color-accent);
        box-shadow: 0 4px 15px rgba(246, 136, 62, 0.3);
    }
}

.btn1212 p {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.btn1212 div {
    height: 30px;
    /* final size */
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* background circle */
.btn1212 div::before {
    content: "";
    position: absolute;
    height: 10px;
    /* initial visual size */
    width: 10px;
    background: white;
    border-radius: 50%;
    transition: transform 0.5s;
    transform: scale(1);
    z-index: 0;
}

/* arrow icon */
.btn1212 div img {
    width: 14px;
    height: 20px;
    transform: translate(-100%, 100%);
    transition: transform 0.5s;
    z-index: 1;
    position: relative;
    display: block;
}

/* hover */
.btn1212:hover div::before {
    transform: scale(3);
}

.btn1212:hover div img {
    transform: translate(0%, 0%);
}

/* ============================================
   Comprehensive Responsive Styles for All Sections
   ============================================ */

/* Mobile First - Extra Small Devices (320px and below) */

/* Mobile Devices (480px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .hero-slider-container {
        height: 65vh;
        min-height: 480px;
    }

    .slide-footer {
        width: 85%;
        padding: 0 25px;
    }

    .section-2-content {
        width: 100%;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-image {
        height: 320px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-slider-container {
        height: 50vh;
        min-height: 550px;
    }

    .slide-footer {
        width: 85%;
    }

    /* .section-2 {
        padding: 70px 40px;
    } */

    .section-2-content {
        width: 100%;
    }

    .section-2-image-inner {
        flex-wrap: wrap;
        /* gap: 30px; */
    }

    .section-2-image-inner-image {
        width: 100%;
        /* max-width: 100%; */
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-grid {
        flex-direction: column;
        gap: 30px;
    }

    .project-slider-image {
        height: 400px;
    }

    .project-slider-nav-vertical {
        display: none;
    }

    .project-slider-nav-horizontal {
        display: flex;
        margin-top: 30px;
    }

    .section-5 {
        min-height: auto;
    }

    .section-5-content {
        max-height: none;
    }

    .section-5-content-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 20px 30px;
    }

    .section-5-content-inner-div-1,
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .section-5-content-inner-div-3 {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 18px;
    }

    .section-5-content-inner-top-3-inner,
    .section-5-content-inner-bottom-3-inner {
        flex: 1;
        min-width: 0;
    }

    .section-5-content-inner-div-2-inner-top img {
        height: 240px;
        min-height: 200px;
    }

    .section-6-content-inner {
        flex-wrap: wrap;
        gap: 30px;
    }

    .section-6-content-inner-div {
        width: 48%;
    }

    /* Section 6 Slider Responsive - Tablet: 2 slides visible, same card layout as desktop */
    .section-6-slider-container {
        padding: 0 60px;
        max-width: 100%;
    }

    .section-6-slider-track .section-6-content-inner-div {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
        max-width: calc(50% - 10px);
        box-sizing: border-box;
    }

    .section-6-content-inner-div-image {
        height: 320px;
        padding: var(--spacing-base);
        border: 4px solid #1a0f0a;
        box-shadow: inset 0 0 0 2px var(--color-accent-yellow);
        box-sizing: border-box;
    }

    .section-6-content-inner-div-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-6-content-inner-div-inner {
        padding: var(--spacing-base) 0;
        text-align: center;
    }

    /* .section-6-content-inner-div-inner p,
    .section-6-content-inner-div-inner span {
        font-size: clamp(14px, 2vw, 18px);
    } */

    .section-6-content-inner-div-inner h6 {
        font-size: clamp(13px, 1.8vw, 16px);
    }

    .section-6-slider-btn {
        width: 45px;
        height: 45px;
    }

    .section-6-slider-btn-prev {
        left: 15px;
    }

    .section-6-slider-btn-next {
        right: 15px;
    }

    /* Section 7 - Tablet: 2 boxes in first row, 3rd box below */
    .section-7-client-section {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 30px;
    }

    .section-7-clent-section-inner {
        flex: 0 0 calc(50% - 15px);
        min-width: 0;
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
        min-height: 0;
    }

    .section-7-clent-section-inner:nth-child(3) {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

/* Desktop Small (992px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
    .section-2-content {
        width: 100%;
    }

    .section-2-image-inner-image {
        width: 100%;
        max-width: 600px;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-grid {
        gap: 20px;
    }

    .project-slider-image {
        height: 420px;
    }

    /* .section-3-content-inner {
        padding: 0 50px;
    } */

    .section-5-content-inner-div-2-inner-top,
    .section-5-content-inner-div-2-inner-bottom,
    .section-5-content-inner-top-3-inner,
    .section-5-content-inner-bottom-3-inner,
    .section-5-content-inner-div-1 {
        width: auto !important;
    }

    .section-5-content-inner-div-1 {
        gap: 10px !important;
    }

    .section-5-content-inner-div-2 {
        gap: 18px !important;
    }

    /* .section-9-content-inner-left {
        width: auto !important;
    } */

    .section-9-content-inner-right {
        width: auto !important;
    }

    .section-9-content-inner {
        gap: 20px !important;
    }

    .section-9-content {
        padding: 0 40px;
    }

    .section-9 {
        height: auto !important;
        min-height: auto !important;
    }

    /* Section 7 - Ensure all boxes same width at 1024px */
    .section-7-client-section {
        justify-content: space-between;
        /* flex-wrap: nowrap;
         */
    }

    .section-7-clent-section-inner {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 0;
        max-width: calc(33.333% - 20px);
        width: calc(33.333% - 20px);
    }
}

/* Desktop Medium (1024px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .section-2-content {
        width: 100%;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-image {
        height: 450px;
    }
}

/* Desktop Large (1280px - 1440px) */
@media (min-width: 1281px) and (max-width: 1440px) {
    .section-2-content {
        width: 100%;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-image {
        height: 460px;
    }
}

/* Desktop Extra Large (1440px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    .section-2-content {
        width: 100%;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-image {
        height: 470px;
    }
}

/* Ultra Wide (1920px and above) */
@media (min-width: 1921px) {
    .section-2-content {
        max-width: 100%;
    }

    .section-3-content {
        max-width: 100%;
    }

    .project-slider-image {
        height: 550px;
    }
}

@media (max-width: 519px) {
    .section-6-slider-container {
        padding: 0 10px;
    }
}

/* Additional Responsive Fixes for All Sections */
@media (max-width: 991px) {
    .section-2-image-inner {
        flex-direction: column;
        align-items: center;
    }

    /* 25 Years of trust - horizontal on 990px se kaam screen */
    .section-2-image-inner-label {
        height: auto !important;
        width: 100% !important;
        padding: 10px 0;
    }

    .section-2-image-inner-label-inner {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100%;
        text-align: center;
    }

    .section-2-image-inner-label-inner p {
        white-space: normal;
    }

    .section-2-image-inner-metadata-counter-1 {
        width: 48%;
        min-width: 200px;
    }

    .section-6-content-inner {
        flex-wrap: wrap;
    }

    .section-6-content-inner-div {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Section 6 Slider Responsive - Mobile */
    /* .section-6-slider-container {
        padding: 0 50px;
    } */

    .section-6-slider-track .section-6-content-inner-div {
        flex: 0 0 100%;
    }

    .section-6-content-inner-div-image {
    }

    /* .section-6-content-inner-div-image img {
        height: 260px;
    } */

    .section-6-slider-btn {
        width: 40px;
        height: 40px;
    }

    .section-6-slider-btn-prev {
        left: 5px;
    }

    .section-6-slider-btn-next {
        right: 5px;
    }

    .section-6-slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .section-7-client-section {
        flex-direction: column;
    }

    .section-7-clent-section-inner {
        width: 100%;
        margin-bottom: 20px;
    }

    .section-8-content {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-8-content-inner-left,
    .section-8-content-inner-middle,
    .section-8-content-inner-right {
        width: 100%;
        margin-bottom: 0px;
    }

    .section-9-content-inner {
        flex-direction: column;
    }

    .section-9-content-inner-left,
    .section-9-content-inner-right {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
}

/* Section 7 - Tablet: 2 boxes one line, 3rd below (override max-width:991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .section-7-client-section {
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
        gap: 30px;
    }

    .section-7-clent-section-inner {
        flex: 0 0 calc(50% - 15px) !important;
        min-width: 0 !important;
        max-width: calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
        margin-bottom: 0;
        min-height: 0;
    }

    .section-7-clent-section-inner:nth-child(3) {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
    }

    /* Section 8 - Tablet: text upar, image niche full width */
    .section-8-content {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 50px 50px 50px 50px;
    }

    .section-8-content-inner-left {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .section-8-content-inner-middle {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Section 8 - 769px se kam: text aur button center (vertical + horizontal) - mobile padding */
@media (max-width: 769px) {
    .section-8-content {
        padding: 30px 30px;
    }

    .section-8-content-inner-left {
        /* display: flex !important; */
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    .section-8-content-inner-left h2,
    .section-8-content-inner-left p,
    .section-8-content-inner-left span,
    .section-8-content-inner-left .section-8-btn-wrap {
        text-align: center !important;
    }

    .section-8-content-inner-left .section-8-btn-wrap {
        align-self: center;
    }
}

/* Section 8 - 501px se 769px: text upar, image niche full width */
@media (min-width: 501px) and (max-width: 769px) {
    .section-8-content {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 50px 30px;
    }

    .section-8-content-inner-left {
        grid-column: 1 / -1;
    }

    .section-8-content-inner-middle {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Section 8 - 1024px: margin reset for image */
@media (min-width: 1023px) and (max-width: 1025px) {
    .section-8-content .section-8-content-inner-middle {
        margin-left: 0;
    }
}

/* Container Widths Responsive - Now handled by .main-content-container */
/* Sections inside .main-content-container will automatically respect max-width: 1500px */

/* Ensure sections don't exceed container width */
.main-content-container .section-2,
.main-content-container .section-3,
.main-content-container .section-4,
.main-content-container .section-5,
.main-content-container .section-6,
.main-content-container .section-7,
.main-content-container .section-8,
.main-content-container .section-9,
.main-content-container .section-10 {
    width: 100%;
    max-width: 100%;
}

/* Tablet Portrait (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    /* .section-3-project-sliders {
        padding: 0 50px;
    } */
    .section-3-content-inner {
        padding: 0px 30px 0px 30px;
    }

    /* .project-slider-image {
        height: 250px !important;
    } */

    .project-slider-title {
        font-size: 24px;
    }

    .project-slider-description {
        font-size: 14px;
    }
}

/* Small Desktop (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* .section-3-project-sliders {
        padding: 0 50px;
    } */

    .project-slider-image {
        height: 250px !important;
    }

    .project-slider-left-content {
        padding-right: 20px;
    }
}

/* Medium Desktop (992px - 1023px) */
@media (min-width: 992px) and (max-width: 1023px) {
    /* .project-slider-image {
        height: 400px !important;
    } */

    .project-slider-nav-item-vertical {
        width: 68px;
        height: 400px;
    }
}

/* 1024px: Project slider vertical nav – arrow responsive fix */
@media (min-width: 1024px) and (max-width: 1280px) {
    .project-slider-nav-item-vertical {
        width: 56px;
        gap: 10px;
    }

    .project-slider-nav-arrow {
        margin-bottom: var(--spacing-2xl);
    }

    .project-slider-nav-arrow img {
        max-width: 20px;
        max-height: 20px;
    }

    .project-slider-nav-title-vertical {
        font-size: 14px;
    }

    .project-slider-nav-id-vertical {
        font-size: 36px;
    }

    .project-slider-nav-item-vertical div {
        gap: 107px;
    }
}

/* Ensure images are always responsive */
.project-slider-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Fix for curve decoration */
.project-slider-curve {
    max-width: 100%;
}

.project-slider-curve img {
    width: 100%;
    height: auto;
}

/* Ensure label doesn't overflow on mobile */
@media (max-width: 640px) {
    .project-slider-label {
        max-width: calc(100% - 24px);
        right: 12px;
        /* bottom: 8px; */
    }

    /* .project-slider-label-id {
        font-size: 20px;
    } */

    .project-slider-label-title {
        font-size: 8px;
        word-break: break-word;
    }
}

/* Fix navigation spacing on mobile */
@media (max-width: 767px) {
    .project-slider-nav {
        margin-top: 30px !important;
        width: 100% !important;
    }

    .project-slider-nav-horizontal {
        justify-content: center;
        width: 100%;
    }

    .project-slider-nav-vertical {
        display: none !important;
    }
}

/* Ensure proper stacking on mobile */
@media (max-width: 767px) {
    .section-3-project-sliders > div {
        flex-direction: column !important;
    }

    .section-3-project-sliders > div > div[style*="row-reverse"] {
        flex-direction: column !important;
        width: 100% !important;
    }

    .der-project-slileft,
    .project-slider-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Project slider left content – center on small screens */
    .section-3-project-sliders .der-project-slileft {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .section-3-project-sliders .project-slider-left-content {
        text-align: center !important;
        align-items: center !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-title,
    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-location,
    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-description {
        text-align: center !important;
    }

    .section-3-project-sliders .project-slider-icon-wrapper {
        display: flex !important;
        justify-content: center !important;
    }

    /* Section 5: 1 column on small screens */
    .section-5 {
        min-height: auto;
    }

    .section-5-content {
        max-height: none;
    }

    .section-5-content-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 15px;
    }

    .section-5-content-inner-div-1,
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .section-5-content-inner-div-3 {
        gap: 18px;
    }
}

/* Project slider left content – center at 768px */
@media (max-width: 768px) {
    .section-3-project-sliders .der-project-slileft {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .section-3-project-sliders .project-slider-left-content {
        text-align: center !important;
        align-items: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-title,
    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-location,
    .section-3-project-sliders
        .project-slider-left-content
        .project-slider-description {
        text-align: center !important;
    }

    .section-3-project-sliders .project-slider-icon-wrapper {
        display: flex !important;
        justify-content: center !important;
    }
}

/* Tablet Specific Fixes */
@media (min-width: 641px) and (max-width: 991px) {
    .section-2-content {
        flex-direction: column;
        /* gap: 10px; */
    }

    .section-2-content-left,
    .section-2-content-right {
        width: 100%;
    }

    .section-2-image-inner {
        flex-direction: column;
    }

    .section-2-image-inner-image {
        order: 1;
    }

    .section-2-image-inner-metadata {
        order: 2;
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        /* gap: 24px 40px; */
        gap: 0px 5px;
        height: auto !important;
        min-height: auto !important;
        margin-left: auto;
        margin-right: auto;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .section-2-image-inner-metadata-counter-1 {
        flex: 1 1 0;
        /* min-width: 140px;
        max-width: 220px; */
        width: auto;
        padding: 0 18px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    /* Vertical line teeno text ke beech - pehle aur doosre counter ke right par */
    .section-2-image-inner-metadata-counter-1:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--color-accent);
        box-shadow: var(--shadow-sm);
    }

    .section-2-image-inner-metadata-counter-1-inner {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    .section-2-image-inner-metadata-counter-1-inner p,
    .section-2-image-inner-metadata-counter-1-inner span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .section-2-image-inner-metadata-counter-1-line {
        display: none !important;
    }

    .section-6-content-inner-div {
        width: 48%;
    }

    /* Section 6 Slider Responsive - Small Mobile */
    .section-6-slider-container {
        padding: 0 40px;
    }

    .section-6-slider-track .section-6-content-inner-div {
        flex: 0 0 100%;
    }

    .section-6-content-inner-div-image {
        width: 270px;
        height: 250px;
        display: flex;
        margin: 0px auto;
    }

    /* .section-6-content-inner-div-image img {
        height: 347px;
    } */

    .section-2-image-inner-label {
        height: auto !important;
        width: 100% !important;
    }

    .section-2-image-inner-label-inner {
        position: relative;
        transition: none;
        transform: unset;
        width: 100%;
        top: 0;
        left: 0;
    }
}

/* 990px se badi screen - section-2 metadata pehle jaisa desktop */
@media (min-width: 991px) {
    .section-2-image-inner-metadata {
        flex-direction: column;
        max-width: 291px;
        min-height: 398px;
        gap: 26px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .section-2-image-inner-metadata-counter-1 {
        width: 291px;
        max-width: none;
        min-width: auto;
    }

    .section-2-image-inner-metadata-counter-1-inner {
        width: 291px;
    }

    .section-2-image-inner-metadata-counter-1-line {
        display: block !important;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 251px;
    }
}

/* Section 2: ek ke niche ek, content center – 769px and below */
@media (max-width: 769px) {
    .section-2-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 0px;
        align-items: center;
    }

    .section-2-content-left,
    .section-2-content-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .section-2-content-left-inner {
        min-height: auto !important;
        height: auto !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-2-content-right-inner {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-2-content-right-inner-button {
        display: flex;
        justify-content: center;
    }

    .section-2-image {
        display: flex;
        justify-content: center;
    }

    .section-2-image-inner {
        justify-content: center;
    }

    /* img {
        width: 22px;
    } */

    /* Section 3: 769px se kaam screen pr text-center */
    .section-3-content-top-left,
    .section-3-content-top-left h2,
    .section-3-content-top-left p {
        text-align: center;
        margin-top: 10px;
    }

    .section-3-content-top {
        flex-direction: column;
        justify-content: center;
        gap: 0px;
    }

    .section-3-content-top-right {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .section-3-content-top-left-buttons {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .project-slider-left-content,
    .project-slider-left-content .project-slider-title,
    .project-slider-left-content .project-slider-location,
    .project-slider-left-content .project-slider-description {
        text-align: center !important;
    }

    .der-project-slileft {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .section-3-project-sliders .der-project-slileft {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .section-3-project-sliders .project-slider-left-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    .section-3-project-sliders .project-slider-icon-wrapper {
        display: flex !important;
        justify-content: center !important;
    }

    /* 769px se kaam: icon aur line hide */
    .section-3-project-sliders .project-slider-icon-wrapper,
    .section-3-project-sliders .project-slider-line {
        display: none !important;
    }

    /* 769px se kaam: Saya Gold Avenue + text image ke upar (pehle jaisa) */
    .section-3-project-sliders > div {
        flex-direction: column !important;
        align-items: center !important;
    }

    .section-3-project-sliders > div > div[style*="row-reverse"] {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
    }

    .section-3-project-sliders .der-project-slileft {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-3-project-sliders .project-slider-image-wrapper {
        order: 2 !important;
        width: 100% !important;
    }
}

/* 768px se zyada aur 991px se kam: Section 3 Know More + Section 7 View All button next line */
@media (min-width: 769px) and (max-width: 991px) {
    .section-3-content-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .section-3-content-top-right {
        margin-top: 16px;
    }

    .section-7-top-heading-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .section-7-top-heading-section .btn1212 {
        margin-top: 16px;
    }
}

/* Mobile screen - section-2 metadata pehle jaisa (teen counters stacked, full width, niche line) */
@media (max-width: 640px) {
    .section-2-image-inner-metadata {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 26px;
        padding: 0;
    }

    .section-2-image-inner-metadata-counter-1 {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 0;
    }

    .section-2-image-inner-metadata-counter-1-inner {
        width: 100%;
        max-width: 100%;
    }

    .section-2-image-inner-metadata-counter-1-line {
        display: block !important;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 80%;
        max-width: 251px;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure all containers don't overflow */
.container,
.section-2,
.section-3,
.section-4,
.section-5,
.section-6,
.section-7,
.section-8,
.section-9,
.section-10 {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================
   Footer Responsive Styles
   ============================================ */

/* Tablet Portrait (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .new-footer-top {
        flex-direction: column;
        /* align-items: flex-start; */
        /* gap: 30px; */
    }

    .new-footer-main-tagline {
        /* font-size: clamp(28px, 8vw, 38px); */
        /* text-align: left; */
        line-height: 1.2;
    }

    .new-footer-top-right {
        width: 100%;
        max-width: 100%;
    }

    .new-footer-schedule-btn {
        width: auto;
        /* min-width: 200px; */
    }

    .new-footer-middle {
        flex-direction: column;
        gap: 40px;
    }

    .new-footer-links-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 30px;
    }

    .new-footer-column {
        width: 100%;
    }

    /* Ensure proper order: About Us and Projects in first row, Media and Quick Links in second row */
    .new-footer-column:nth-child(1),
    .new-footer-column:nth-child(2) {
        grid-row: 1;
    }

    .new-footer-column:nth-child(3),
    .new-footer-column:nth-child(4) {
        grid-row: 2;
    }

    .new-footer-column:nth-child(1),
    .new-footer-column:nth-child(3) {
        grid-column: 1;
    }

    .new-footer-column:nth-child(2),
    .new-footer-column:nth-child(4) {
        grid-column: 2;
    }

    .new-footer-column-heading {
        font-size: 13px;
    }

    .new-footer-links a {
        font-size: 13px;
    }

    .new-footer-right-section {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Desktop (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .new-footer-top {
        flex-wrap: wrap;
    }

    .new-footer-main-tagline {
        font-size: clamp(32px, 9vw, 38px);
        line-height: 1.2;
    }

    .new-footer-top-right {
        width: auto;
        max-width: 319px;
    }

    /* .new-footer-links-container {
        gap: 70px;
    } */

    .new-footer-column {
        width: calc(50% - 35px);
        min-width: 200px;
    }

    .new-footer-right-section {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
}

/* 769px se zyada, 993px se kam: footer top – logo center, tagline center, button left / email right */
@media (min-width: 769px) and (max-width: 993px) {
    .new-footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* gap: 32px; */
        padding-bottom: var(--spacing-9xl);
    }

    .new-footer-top-left {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .new-footer-top-left .new-footer-logo {
        display: flex;
        justify-content: center;
    }

    .new-footer-top-left .new-footer-logo img {
        display: block;
    }

    .new-footer-top-center {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .new-footer-main-tagline {
        text-align: center;
    }

    .new-footer-top-right {
        order: 3;
        width: 100%;
        max-width: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Medium Desktop (992px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
    .new-footer-top-center {
        justify-content: center;
    }

    .new-footer-main-tagline {
        text-align: center;
    }

    .new-footer-links-container {
        gap: 80px;
    }

    .new-footer-column {
        width: auto;
        min-width: 150px;
    }
}

/* Desktop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .new-footer-links-container {
        gap: 90px;
    }
}

/* Additional Footer Responsive Fixes */
@media (max-width: 991px) {
    .new-footer-top-center {
        order: 2;
    }

    .new-footer-top-right {
        order: 3;
    }

    .new-footer-top-left {
        order: 1;
    }
}

/* Ensure proper text wrapping */
.new-footer-main-tagline {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.new-footer-email {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.new-footer-copyright {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Tablet Portrait (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .section-9 {
        padding: 60px 25px;
    }

    .section-9-content {
        width: 90%;
        gap: 40px;
    }

    .section-9-content-inner {
        flex-direction: column;
        gap: 40px;
    }

    /* .section-9-content-inner-left {
        width: 100%;
        max-width: 100%;
    } */

    .section-9-content-inner-right {
        width: 100%;
        max-width: 100%;
        gap: 40px;
    }

    .section-9-content-inner-right-rating-section {
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-9-content-inner-right-rating-section-inner {
        flex-direction: row;
        align-items: center;
    }

    .section-9-content-inner-right-rating-section-inner .rating-number {
        font-size: 48px;
    }

    .section-9-content-inner-right-rating-section-inner-bottom p {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .section-9-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .section-10-contact-us {
        padding: 56px 0px;
    }
}

/* Section 9: Mobile - proper center, ek line me ek text/content (642px + 768px tak - tablet ke baad override) */
@media (max-width: 642px) {
    .section-9 {
        padding: 40px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-9-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* padding: 0 15px; */
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .section-9-content-inner {
        display: contents;
    }

    /* 1. Image - choti, center */
    .section-9-content-inner-left {
        order: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 769px) {
        .section-10 {
            padding: 30px 30px;
        }
    }

    .section-9-content-inner-left img {
        display: block;
        margin: 0 auto;
        /* max-width: 280px; */
        /* width: auto; */
        /* height: auto; */
    }

    /* 2. H2 - ek line, center */
    .section-9-content-top {
        order: 2;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .section-9-content-top h2 {
        margin: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .section-9-content-top p {
        margin: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* 3. Reviews block - center, ek line me ek content */
    .section-9-content-inner-right {
        order: 3;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Wrapper content ke hisaab - arrows niche na ho (642px tak) */
    .testimonial-slider-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .testimonial-slide.swiper-slide-active {
        flex: 0 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Arrows text ke turant niche - desktop jaisa upar (642px tak) */
    .section-9-content-inner-right-rating-section-inner-slider-buttons {
        margin-top: 16px !important;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* Rating section - review ek line, uske side wala text next line, dono center - mobile gap kam */
    .section-9-content-inner-right-rating-section {
        display: flex;
        flex-direction: column !important;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    /* Line 1: review - rating number + stars + "2,688 reviews" - ek line, center */
    .section-9-content-inner-right-rating-section-inner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        order: 1;
    }

    .section-9-content-inner-right-rating-section-inner .rating-number {
        font-size: 36px;
    }

    .section-9-content-inner-right-rating-section-inner-rating-stars {
        align-items: center;
    }

    .section-9-content-inner-right-rating-section-inner-rating-stars p {
        text-align: center;
    }

    /* Line 2: uske side wala text (rating description) - next line, center - margin kam */
    .section-9-content-inner-right-rating-section .rating-description {
        order: 2;
        display: block !important;
        width: 100%;
        font-size: var(--font-size-lg);
        line-height: 22px;
        text-align: center !important;
        margin: 0 auto;
        padding: 0;
        margin-bottom: 0;
    }

    /* Line 3 + 4: quote aur name - niche niche, center - gap kam mobile */
    .section-9-content-inner-right-rating-section-inner-bottom {
        align-items: center;
        text-align: center;
        gap: 6px;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .section-9-content-inner-right-rating-section-inner-bottom p {
        margin: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .section-9-content-inner-right-rating-section-inner-bottom div {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .section-9-content-inner-right-rating-section-inner-bottom span {
        display: inline;
        text-align: center;
    }

    .section-9-content-inner-right-rating-section-inner-bottom
        .testimonial-owner-label {
        display: inline;
        text-align: center;
    }

    /* Mobile: arrow ke niche ka background hata - sirf icon dikhe (642px tak) */
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button {
        min-width: 44px;
        min-height: 44px;
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button:hover,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button:hover {
        background: transparent !important;
    }
}

@media (max-width: 769px) {
    .new-footer-container {
        gap: 0px;
    }

    .section-9 {
        padding: 20px 0px;
    }
}

/* Tablet Landscape (641px - 768px) - section-9 responsive, no overlap */
@media (min-width: 641px) and (max-width: 768px) {
    .section-9 {
        /* padding: 60px 30px; */
        height: auto !important;
        min-height: auto !important;
    }

    .section-9-content {
        width: 85%;
        /* gap: 45px; */
        min-height: auto !important;
    }

    .section-9-content-inner {
        flex-direction: row;
        gap: 30px;
    }

    /* .section-9-content-inner-left {
        width: 40%;
        max-width: 300px;
    } */

    .section-9-content-inner-right {
        width: 60%;
        min-width: 260px;
        flex: 1 1 auto;
        gap: 40px;
        min-height: auto !important;
        box-sizing: border-box;
    }

    .section-9-content-inner-right-rating-section {
        gap: 50px;
    }

    .section-9-content-inner-right-rating-section-inner .rating-number {
        font-size: 52px;
    }

    /* Testimonial slider - no overlap, content flows (641-768) */
    .section-9 .testimonial-slider-wrapper {
        min-height: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .section-9 .testimonial-swiper.swiper {
        height: auto !important;
        min-height: auto !important;
    }

    .section-9 .testimonial-swiper .testimonial-slide.swiper-slide {
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        /* gap: 20px; */
    }

    .section-9 .section-9-content-inner-right-rating-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom span {
        white-space: normal;
    }

    .new-footer-top {
        flex-wrap: wrap;
        /* gap: 25px; */
    }

    .new-footer-main-tagline {
        font-size: clamp(30px, 8.5vw, 38px);
        line-height: 1.2;
    }

    .new-footer-top-right {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .new-footer-schedule-btn {
        min-width: 180px;
    }

    .new-footer-email {
        font-size: 20px;
        word-break: break-all;
    }

    .new-footer-middle {
        flex-direction: column;
        gap: 40px;
    }

    .new-footer-links-container {
        width: 100%;
        /* gap: 60px; */
        justify-content: flex-start;
    }

    .new-footer-column {
        width: calc(50% - 30px);
        min-width: 180px;
    }

    .new-footer-column-heading {
        font-size: 14px;
    }

    .new-footer-links a {
        font-size: 14px;
    }

    .new-footer-right-section {
        width: 100%;
        max-width: 100%;
    }

    .section-10 {
        width: 85%;
        /* padding: 60px 30px;
        margin: 45px auto; */
    }

    .section-10::before,
    .section-10::after {
        opacity: 0.2;
    }

    .section-10-content b {
        font-size: clamp(30px, 8.5vw, 36px);
    }

    .section-10-contact-us {
        /* padding-top: 45px; */
        gap: 40px;
    }

    .callback-form {
        padding: 35px 30px;
    }

    .callback-form-title {
        position: relative;
        top: 0;
        left: 0;
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0;
        background: transparent;
        text-align: center;
        width: 100%;
    }

    .callback-form-row:first-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .callback-form input {
        height: 58px;
        font-size: 15px;
    }

    .callback-form textarea {
        font-size: 15px;
    }

    .hero-slider-container {
        height: 50vh;
        min-height: 500px;
    }

    .slide-footer {
        width: 100%;
        padding: 0 30px;
    }

    .section-2-content {
        width: 100%;
    }

    .section-2-image-inner {
        flex-wrap: wrap;
    }

    .section-2-image-inner-metadata {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .section-3-content {
        width: 100%;
    }

    .project-slider-grid {
        flex-direction: column;
    }

    .project-slider-image {
        height: 350px;
    }

    .project-slider-nav-vertical {
        display: none;
    }

    .project-slider-nav-horizontal {
        display: flex;
        margin-top: 0px !important;
    }

    /* .section-3-project-sliders {
        padding: 0 0 40px 0;
    } */

    .project-slider-image {
        height: 300px !important;
    }

    .project-slider-title {
        font-size: 28px;
    }

    .project-slider-description {
        font-size: 15px;
    }

    .project-slider-nav-horizontal {
        gap: 20px;
    }

    .section-3-project-sliders > div {
        flex-direction: column !important;
    }

    .section-3-project-sliders > div > div[style*="row-reverse"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .project-slider-nav {
        margin-top: 0px !important;
    }

    /* .section-3-content-inner {
        padding: 20px 25px 30px 25px !important;
    } */

    .section-3-content {
        padding-bottom: 0px !important;
    }
}

/* @media (max-width: 1370px) {
    .section-8 {
        padding-bottom: 10px;
    }
} */
/* Section 9: 643px–768px par bhi same mobile layout (image → H2 → P → reviews, center, ek line ek content) */
@media (max-width: 1024px) {
    .section-9 {
        padding: 56px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto !important;
        min-height: auto !important;
    }

    .section-9-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* padding: 0 15px; */
        /* gap: 24px; */
        width: 100%;
        max-width: 100%;
    }

    .section-9-content-inner {
        display: contents;
    }

    .section-9-content-inner-left {
        order: 2;
        /* width: 100%;
        max-width: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-9-content-inner-left img {
        display: block;
        margin: 0 auto;
        /* max-width: 280px; */
        width: 80%;
    }

    .section-9-content-top {
        order: 1;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .section-9-content-top h2 {
        margin: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .section-9-content-top p {
        margin: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .section-9-content-inner-right {
        order: 3;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Wrapper content ke hisaab - arrows niche na ho (768px tak) */
    .testimonial-slider-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        height: auto;
        overflow: hidden;
    }

    .testimonial-slide.swiper-slide-active {
        flex: 0 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .section-9-content-inner-right-rating-section {
        display: flex;
        flex-direction: column !important;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .section-9-content-inner-right-rating-section-inner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        order: 1;
    }

    .section-9-content-inner-right-rating-section-inner .rating-number {
        font-size: 36px;
    }

    .section-9-content-inner-right-rating-section-inner-rating-stars {
        align-items: center;
    }

    .section-9-content-inner-right-rating-section-inner-rating-stars p {
        text-align: center;
    }

    .section-9-content-inner-right-rating-section .rating-description {
        order: 2;
        display: block !important;
        width: 100%;
        font-size: var(--font-size-lg);
        line-height: 22px;
        text-align: center !important;
        margin: 0 auto;
        padding: 0;
        margin-bottom: 0;
    }

    .section-9-content-inner-right-rating-section-inner-bottom {
        align-items: center;
        text-align: center;
        gap: 6px;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .section-9-content-inner-right-rating-section-inner-bottom p {
        font-weight: 500;
        font-style: normal;
        font-size: 20px !important;
        line-height: 30px !important;
        letter-spacing: 0;
        vertical-align: middle;
        color: white;
        text-align: center;
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .section-9-content-inner-right-rating-section-inner-bottom div {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .section-9-content-inner-right-rating-section-inner-bottom span,
    .section-9-content-inner-right-rating-section-inner-bottom
        .testimonial-owner-label {
        display: inline;
        text-align: center;
        white-space: normal;
    }

    /* Arrows text ke turant niche - desktop jaisa (768px tak) */
    .section-9-content-inner-right-rating-section-inner-slider-buttons {
        margin-top: 16px !important;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* Mobile: arrow ke niche ka background hata - sirf icon dikhe (768px tak) */
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button {
        min-width: 44px;
        min-height: 44px;
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .left-button:hover,
    .section-9-content-inner-right-rating-section-inner-slider-buttons
        .right-button:hover {
        background: transparent !important;
    }
}

/* Small Desktop (769px - 991px) - clean row: image left, one testimonial slide right */
@media (min-width: 769px) and (max-width: 991px) {
    .section-9 {
        /* padding: 65px 30px; */
        height: auto !important;
        min-height: auto !important;
    }

    .section-9-content {
        /* width: 85%; */
        max-width: 100%;
        /* gap: 50px; */
        min-height: auto !important;
    }

    /* Row: image left, testimonials right - override max-width:991 column */
    .section-9-content-inner {
        /* display: flex !important; */
        /* flex-direction: row !important; */
        align-items: center !important;
        gap: 30px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .section-9-content-inner-left {
        position: relative !important;
        /* width: 38% !important;
        max-width: 320px !important;
        min-width: 0; */
        flex-shrink: 0;
    }

    .section-9-content-inner-left img {
        /* max-width: 100%;
        width: 100%;
        height: auto; */
        display: block;
    }

    .section-9-content-inner-right {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 280px !important;
        max-width: none !important;
        gap: 24px;
        min-height: auto !important;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* .section-9-content-inner-right-rating-section {
        gap: 20px;
    } */

    /* Testimonial slider - one slide visible, no overlap */
    .section-9 .testimonial-slider-wrapper {
        width: 100% !important;
        min-width: 0;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .section-9 .testimonial-swiper.swiper {
        width: 100% !important;
        min-width: 0;
        height: auto !important;
        min-height: auto !important;
        overflow: hidden;
    }

    .section-9 .testimonial-swiper .swiper-wrapper {
        align-items: flex-start;
        width: 100%;
    }

    .section-9 .testimonial-swiper .testimonial-slide.swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        /* gap: 24px; */
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .section-9 .section-9-content-inner-right-rating-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        min-width: 0;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner {
        width: 100%;
        min-width: 0;
    }

    .section-9
        .section-9-content-inner-right-rating-section
        .rating-description {
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom {
        width: 100%;
        min-width: 0;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom {
        align-items: flex-start;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom p {
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
        box-sizing: border-box;
    }

    .section-9 .section-9-content-inner-right-rating-section-inner-bottom span {
        white-space: normal;
    }

    /* .section-9 .section-9-content-inner-right-rating-section-inner-bottom div {
        justify-content: flex-start;
    } */

    .project-slider-nav {
        margin: 0px !important;
    }
}

/* Medium Desktop (992px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
    /* .section-9-content-inner-right-rating-section {
        gap: 70px;
    } */
}

/* Desktop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .section-9-content-inner-right {
        max-width: 550px;
    }

    /* .section-9-content-inner-right-rating-section {
        gap: 80px;
    } */
}

/* Large Desktop (1281px - 1440px) */
@media (min-width: 1281px) and (max-width: 1440px) {
    .section-9-content-inner-right {
        max-width: 700px;
    }
}

/* Extra Large Desktop (1441px and above) */
@media (min-width: 1441px) {
    .section-9-content-inner-right {
        max-width: 716px;
    }
}

/* ============================================
   Section 10 (Contact Form) Responsive Styles
   ============================================ */

/* 769px se kaam screen: inputs ek line me ek (vertically) */
@media (max-width: 769px) {
    .callback-form-row:first-of-type {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Devices (375px - 480px) */
@media (max-width: 480px) {
    .section-10 {
        width: 100%;
        padding: 40px 0px;
        margin: 0px auto;
    }

    .section-10::before,
    .section-10::after {
        display: none;
    }

    .section-10-content {
        width: 100%;
        /* gap: 12px; */
    }

    .section-10-content b {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.3;
    }

    .section-10-contact-us {
        width: 100%;
        padding-top: 35px;
        gap: 30px;
    }

    .section-10-contact-us-form {
        width: 100%;
        padding: 0;
    }

    .callback-form {
        padding: 25px 20px;
        gap: 25px;
    }

    .callback-form-title {
        position: relative;
        top: 0;
        left: 0;
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 0;
        background: transparent;
        text-align: center;
        width: 100%;
    }

    .callback-form-row:first-of-type {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .callback-form input {
        height: 52px;
        padding: 14px 18px;
        font-size: 15px;
    }

    .callback-form textarea {
        /* min-height: 120px !important;
        height: 120px !important; */
        padding: 14px 18px;
        font-size: 15px;
    }

    .callback-form-submit {
        padding: 14px 24px;
        font-size: 15px;
        min-height: 44px;
    }

    .new-footer-top {
        flex-direction: column;
        /* align-items: flex-start; */
        /* gap: 25px; */
        padding-bottom: 30px;
        margin: 0px;
    }

    .new-footer-top-left {
        width: 100%;
    }

    .new-footer-top-center {
        width: 100%;
        justify-content: center;
    }

    .new-footer-main-tagline {
        font-size: clamp(24px, 7vw, 38px);
        /* text-align: left; */
        line-height: 1.2;
    }

    .new-footer-top-right {
        width: 100%;
        max-width: 100%;
    }

    .new-footer-schedule-btn {
        width: 100%;
    }

    .new-footer-email {
        font-size: 18px;
        word-break: break-all;
        line-height: 1.4;
    }

    .new-footer-middle {
        flex-direction: column;
        gap: 0px;
        margin: 0px;
    }

    .new-footer-links-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
    }

    .new-footer-column {
        width: 100%;
    }

    /* Ensure proper order: About Us and Projects in first row, Media and Quick Links in second row */
    .new-footer-column:nth-child(1),
    .new-footer-column:nth-child(2) {
        grid-row: 1;
    }

    .new-footer-column:nth-child(3),
    .new-footer-column:nth-child(4) {
        grid-row: 2;
    }

    .new-footer-column:nth-child(1),
    .new-footer-column:nth-child(3) {
        grid-column: 1;
    }

    .new-footer-column:nth-child(2),
    .new-footer-column:nth-child(4) {
        grid-column: 2;
    }

    .new-footer-right-section {
        width: 100%;
        max-width: 100%;
    }

    .new-footer-google-reviews {
        width: 100%;
        min-width: auto;
        padding: 15px 25px;
        flex-direction: row;
        justify-content: center;
    }

    .new-footer-google-logo svg {
        width: 22px;
        height: 22px;
    }

    .new-footer-rating-number {
        font-size: 22px;
    }

    .new-footer-social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-9-content {
        width: 100%;
        padding: 0;
        /* gap: 35px; */
    }

    .section-9-content-top {
        width: 100%;
        text-align: center;
    }

    .section-9-content-inner {
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }

    /* .section-9-content-inner-left {
        width: 100%;
        max-width: 100%;
    } */

    .section-9-content-inner-right {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        gap: 35px;
    }

    .section-9-content-inner-right-rating-section {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap !important;
    }

    .section-9-content-inner-right-rating-section-inner {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .section-9-content-inner-right-rating-section-inner .rating-number {
        font-size: 32px;
        margin: 0px;
    }

    /* .section-9-content-inner-right-rating-section-inner-rating-stars div {
        width: 110px;
        height: 28px;
    } */

    .section-9-content-inner-right-rating-section-inner-rating-stars p {
        font-size: 14px;
        margin: 5px 0;
    }

    .section-9-content-inner-right-rating-section-inner-rating-stars div img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .section-9-content-inner-right-rating-section-inner-bottom span {
        font-size: 13px;
        display: block;
        text-align: center;
        margin-top: 8px;
    }

    .section-9-content-inner-right-rating-section-inner-bottom div {
        gap: 6px;
        margin: 0px auto;
    }

    .section-3-project-sliders {
        padding: var(--spacing-xl) 0;
    }

    .new-footer-schedule-btn {
        font-size: 16px !important;
        height: auto !important;
        width: auto !important;
        padding: 2px 15px;
    }

    .new-footer-main-tagline {
        font-size: 24px !important;
        margin: 0px !important;
    }

    .new-footer-top-right {
        /* gap: 20px !important; */
        margin: 0px !important;
    }

    .new-footer-social-icon {
        min-width: 40px;
        min-height: 40px;
    }

    .new-footer-logo img {
        width: 110px;
        height: auto;
    }

    .section-2-image-inner-metadata-counter-1 {
        width: 100%;
    }

    .section-5-content-inner-div-1,
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        padding: 30px 20px;
    }

    .section-5-content-inner-div-1 p {
        padding: 10px;
        font-size: 19px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .section-2-image-inner-label-inner p {
        font-size: 32px;
    }
}

@media (max-width: 519px) {
    .section-9 {
        padding: 30px 10px;
    }

    .section-3-content-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Tablet only: Section 5 - pehla box full width, niche vale 2 horizontal */
@media (min-width: 519px) and (max-width: 991px) {
    .section-5-content-inner {
        grid-template-columns: 1fr 1fr;
        padding: 20px 30px;
    }

    .section-5-content-inner-div-1 {
        grid-column: 1 / -1;
    }

    /* Override: div-2 and div-3 side by side, not div-3 full width */
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        min-width: 0;
        overflow: hidden;
    }

    .section-5-content-inner-div-3 {
        grid-column: auto;
        flex-direction: column;
    }

    .section-5-content-inner-top-3-inner,
    .section-5-content-inner-bottom-3-inner {
        min-width: 0;
    }

    .section-5-content-inner-bottom-3-inner span {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* 991px se choti screen: pehla box padding kam, text horizontal */
@media (max-width: 991px) {
    .section-5-content-inner-div-1 {
        padding: 15px 20px;
    }

    .section-5-content-inner-div-1 p {
        max-width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 5px 0;
    }
}

/* 600px se kaam screen: sare box vertically; 601-768px pe upr full, niche 2 horizontal */
@media (max-width: 600px) {
    .section-5-content-inner {
        grid-template-columns: 1fr !important;
    }

    .section-5-content-inner-div-2-inner-top,
    .section-5-content-inner-div-2-inner-bottom,
    .section-5-content-inner-top-3-inner {
        position: relative;
        overflow: hidden;
    }

    .section-5-content-inner-div-2-inner-top::after,
    .section-5-content-inner-div-2-inner-bottom::after,
    .section-5-content-inner-top-3-inner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        pointer-events: none;
        z-index: 1;
    }

    .section-5-content-inner-div-2-inner-bottom > div,
    .section-5-content-inner-top-3-inner > div {
        position: relative;
        z-index: 2;
    }

    .section-5-content-inner-div-1,
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        grid-column: auto;
    }
}

/* Mobile screens 518px and below */
@media (max-width: 518px) {
    .section-5-heading-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .section-5-content h2 {
        /* font-size: clamp(20px, 6vw, 28px) !important; */
        text-align: center !important;
        width: 100% !important;
        font-size: 24px;
    }

    .section-5-content-inner {
        padding: 0 10px !important;
        gap: 0px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .section-5-content-inner-div-1,
    .section-5-content-inner-div-2,
    .section-5-content-inner-div-3 {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        padding: 15px !important;
    }

    .section-5-content-inner-div-2-inner-top,
    .section-5-content-inner-div-2-inner-bottom,
    .section-5-content-inner-top-3-inner,
    .section-5-content-inner-bottom-3-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-5-content-inner-top-3-inner {
        position: relative;
        overflow: hidden;
    }

    .section-5-content-inner-top-3-inner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        pointer-events: none;
        z-index: 1;
    }

    .section-5-content-inner-top-3-inner > div {
        position: relative;
        z-index: 2;
    }

    .section-5-content-inner-top-3-inner p,
    .section-5-content-inner-top-3-inner span {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    }

    .section-5-content-inner-div-2 {
        gap: 18px !important;
    }

    .section-8-content-inner-middle img,
    .section-8-content-inner-right img {
        width: 100%;
        height: auto;
    }

    .section-9-content-inner-left img {
        /* width: 100%;
        height: auto; */
    }

    .section-10::before,
    .section-10::after {
        display: none;
    }

    .section-10 {
        padding: 20px 20px !important;
    }

    .section-2-image-inner-label-inner {
        position: relative;
        /* top: 0%; */
        transform: none;
        top: 0px;
        left: 0%;
    }

    .section-10-contact-us {
        padding: 0px !important;
    }

    .section-2-image-inner-label {
        width: auto;
        height: auto;
        padding: 0px !important;
    }

    /* .section-2-image-inner-label-inner p {
        font-size: 32px;
    } */

    /* Project Slider Mobile Optimizations */
    .section-3-project-sliders {
        width: 100%;
        padding: 0px;
    }

    .project-slider-left-content {
        padding: 0;
        /* height: 190px; */
        justify-content: end;
    }

    .project-slider-title {
        font-size: 20px;
    }

    .project-slider-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .project-slider-image {
        height: 200px !important;
    }

    /* .project-slider-label {
        bottom: 0px;
        right: 12px;
        padding: 4px 8px;
    } */

    .project-slider-label-id {
        font-size: 24px;
    }

    .project-slider-label-title {
        font-size: 8px;
    }

    .project-slider-nav-horizontal {
        gap: 12px;
        flex-wrap: wrap;
    }

    .project-slider-nav-item {
        min-width: 60px;
    }

    .project-slider-nav-id {
        font-size: 16px;
    }

    .project-slider-nav-title {
        font-size: 10px;
    }

    .project-slider-nav-line {
        width: 32px;
    }

    .section-5-content {
        width: 100%;
    }

    .section-5-content-inner-div-1 {
        min-height: auto;
    }

    .hero-slider-container {
        height: 60vh;
        min-height: 450px;
    }

    .slide-footer {
        width: 90%;
        padding: 0 20px;
        bottom: 30px;
    }

    .project-name {
        font-size: 14px;
    }

    .section-2 {
        padding: 30px 10px 0px 10px !important;
        gap: 30px;
    }

    .section-2-content {
        display: flex;
        flex-direction: column;
        padding: 0px !important;
    }

    .section-2-image-inner {
        padding: 0px !important;
    }

    .section-2-image-inner-label-inner p {
        margin: 0px !important;
    }

    .section-2-content-left {
        width: 100%;
    }

    .section-2-content-right {
        width: 100%;
    }

    .section-2-content-left-inner {
        min-height: auto !important;
        height: auto !important;
    }

    .section-2-image-inner-image {
        min-height: auto !important;
        height: auto !important;
    }

    .project-slider-image {
        height: 280px;
    }

    .section-3-content {
        width: 100%;
        padding: 0px !important;
    }

    .new-footer-links-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .new-footer-column {
        width: 100%;
    }

    .new-footer-google-reviews {
        min-width: 100%;
    }

    .pagination-dot.active {
        width: 35px;
        height: 6px;
    }

    .slider-page-container {
        bottom: 50px;
    }

    .pagination-dot {
        width: 7px;
        height: 7px;
    }

    .new-header-container {
        padding: 10px 20px !important;
    }

    .new-footer-container {
        padding: 0px 10px !important;
    }

    .new-footer-email {
        font-size: 18px !important;
    }

    .new-footer-top {
        margin: 0px !important;
        padding-bottom: 0px !important;
        /* gap: 20px !important; */
    }

    .new-footer-middle {
        margin: 0px !important;
    }

    .new-footer {
        padding: 30px 0px !important;
    }

    .section-3-content-inner {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .section-3-content-top {
        gap: 0px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-3-content-top-right {
        margin-top: var(--spacing-lg);
        width: 100%;
    }

    .new-header-tagline {
        display: none;
    }

    .new-header-contact-icons {
        gap: var(--spacing-md);
    }

    .new-header-contact-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .new-header-contact-icon svg {
        width: var(--spacing-2xl);
        height: var(--spacing-2xl);
    }

    .slide-footer {
        flex-direction: column;
        gap: var(--spacing-3xl);
        align-items: flex-start;
        padding: 0px !important;
    }

    .separator-line {
        width: 60%;
        margin: 0px;
    }

    .slide-pagination {
        align-self: flex-end;
    }

    /* Callback Form Responsive */
    .section-10-contact-us-form {
        padding: 0px !important;
    }

    .callback-form-row:first-of-type {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-2xl) !important;
        padding-top: 10px !important;
    }

    .callback-form-title {
        font-size: var(--font-size-3xl);
    }

    .callback-form input {
        padding: var(--spacing-lg) 14px;
        font-size: var(--font-size-base);
    }

    .callback-form textarea {
        padding: var(--spacing-lg) 14px;
        font-size: var(--font-size-base);
        min-height: 50px !important;
        height: 50px !important;
    }

    .callback-form-submit {
        padding: var(--spacing-lg) var(--spacing-3xl);
        font-size: var(--font-size-base);
    }

    .hover-header-content {
        padding: var(--spacing-11xl) var(--spacing-3xl);
    }

    .header-nav-item-main {
        font-size: var(--font-size-xl);
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-base);
    }

    .section-8-content {
        padding: 30px 30px !important;
    }

    .header-call-number {
        font-size: var(--font-size-2xl);
    }

    .header-social-links {
        padding: var(--spacing-3xl) var(--spacing-3xl);
    }

    .header-nav-item-main,
    .header-nav-item-secondary {
        transform: translateX(20px);
    }
}

/* Tablet Portrait (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .section-10 {
        width: 90%;
        /* padding: 60px 25px;
        margin: 45px auto; */
        /* padding-bottom: 20px; */
    }

    .section-10::before,
    .section-10::after {
        opacity: 0.15;
    }

    .section-10-content {
        width: 100%;
        gap: 15px;
    }

    .section-10-content b {
        font-size: clamp(28px, 8vw, 36px);
    }

    .section-10-contact-us {
        width: 100%;
        /* padding-top: 40px; */
        gap: 35px;
    }

    .callback-form {
        padding: 30px 25px;
        gap: 28px;
    }

    .callback-form-title {
        position: relative;
        top: 0;
        left: 0;
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 25px;
        padding: 0;
        background: transparent;
        text-align: center;
        width: 100%;
    }

    .callback-form-row:first-of-type {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .callback-form input {
        height: 55px;
        padding: 15px 20px;
        font-size: 15px;
    }

    .callback-form textarea {
        min-height: 120px !important;
        height: 120px !important;
        padding: 15px 20px;
        font-size: 15px;
    }

    .callback-form-submit {
        padding: 15px 28px;
        font-size: 16px;
    }
}

/* Small Desktop (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .section-10 {
        width: 85%;
        /* padding: 65px 30px; */
    }

    .section-10::before,
    .section-10::after {
        opacity: 0.25;
    }

    .section-10-content b {
        font-size: clamp(32px, 9vw, 36px);
    }

    .callback-form-title {
        position: relative;
        top: 0;
        left: 0;
        font-size: 26px;
        margin-bottom: 30px;
        padding: 0;
        background: transparent;
        text-align: center;
        width: 100%;
    }

    .callback-form-row:first-of-type {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Medium Desktop (992px and above) - Desktop view preserved */
/* No changes needed - desktop view remains as designed */

/* Additional Section 9 Responsive Fixes - column only below 769px */
@media (max-width: 991px) {
    .section-9-content-inner {
        flex-direction: column;
    }

    /* .section-9-content-inner-left {
        width: 100%;
        max-width: 100%;
    } */

    .section-9-content-inner-right {
        width: 100%;
        max-width: 100%;
    }

    .section-9-content-inner-right-rating-section {
        justify-content: center;
        /* margin-bottom: 20px; */
    }
}

/* 769px-991px: force row layout (image left, testimonials right) - overrides above */
@media (min-width: 769px) and (max-width: 991px) {
    /* .section-9-content-inner {
        display: flex !important;
        flex-direction: row !important;
    } */

    /* .section-9-content-inner-left {
        width: 38% !important;
        max-width: 320px !important;
    } */

    .section-9-content-inner-right {
        width: auto !important;
        flex: 1 1 auto !important;
        min-width: 280px !important;
        max-width: none !important;
    }
}

/* Ensure smooth transitions on all devices */
.testimonial-slide {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Enhanced Mobile & Tablet Responsive Styles
   ============================================ */

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Header Container */
    .new-header-container {
        padding: 10px 15px !important;
        gap: var(--spacing-lg) !important;
    }

    /* Logo */
    .new-header-logo-img {
        height: 28px !important;
    }

    /* Contact Icons - Ensure they're visible */
    .new-header-contact-icons {
        gap: var(--spacing-md) !important;
        display: flex !important;
    }

    .new-header-contact-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
    }

    .new-header-contact-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .new-header-contact-icon img {
        width: 12px !important;
        height: 13px !important;
    }

    /* Menu Toggle */
    .new-header-menu-toggle {
        width: 32px !important;
        height: 32px !important;
        padding: var(--spacing-sm) !important;
    }

    .new-header-menu-line {
        height: 2px;
    }

    .new-header-menu-line:nth-child(1) {
        width: 16px;
    }

    .new-header-menu-line:nth-child(2) {
        width: 20px;
    }

    .new-header-menu-line:nth-child(3) {
        width: 10px;
    }

    /* Hover Header Menu - Mobile */
    .hover-header-container.active,
    .hover-project-header-container.active {
        height: 100vh !important;
        overflow-y: auto !important;
    }

    .hover-header-content {
        padding: var(--spacing-6xl) var(--spacing-lg) !important;
        min-height: 100vh !important;
        height: auto !important;
    }

    .hover-header-content-left {
        padding: var(--spacing-6xl) 0 var(--spacing-2xl) 0 !important;
        width: 100% !important;
    }

    .header-close-button {
        top: var(--spacing-lg) !important;
        right: var(--spacing-lg) !important;
        width: 36px !important;
        height: 36px !important;
        position: absolute !important;
        z-index: 1000002 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        /* background: rgba(255, 255, 255, 0.9) !important; */
        color: #111111 !important;
    }

    .header-close-button svg {
        width: 14px !important;
        height: 14px !important;
        opacity: 1 !important;
        visibility: visible !important;
        stroke: #5c5b5b !important;
    }

    /* Navigation Items - Mobile: Vertical layout (stacked) */
    .header-nav-wrapper {
        flex-direction: column !important;
        gap: var(--spacing-4xl) !important;
        margin-top: var(--spacing-4xl) !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    /* Mobile: Search first, then RESIDENTIAL | COMMERCIAL */
    .hover-project-header-container .header-nav-wrapper .search-container {
        order: -1 !important;
        width: 100% !important;
        margin-bottom: var(--spacing-3xl) !important;
        flex-basis: 100% !important;
    }

    .hover-project-header-container .projects-popup-col:first-of-type {
        order: 0 !important;
        width: 100% !important;
    }

    .hover-project-header-container .projects-popup-col:last-of-type {
        order: 1 !important;
        width: 100% !important;
    }

    .header-links {
        width: 100% !important;
        flex: 0 0 auto !important;
        gap: 30px !important;
    }

    /* Mobile: header-links-text below header-links (vertical) */
    .header-links-text {
        display: none !important;
        flex-direction: column !important;
        gap: var(--spacing-xl) !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        overflow: visible !important;
        margin-top: -9px !important;
    }

    .header-links-text .header-nav-item-secondary {
        white-space: normal !important;
        display: block !important;
        padding: 0 !important;
        margin-right: 0 !important;
    }

    .header-nav-item-main {
        font-size: var(--font-size-xl) !important;
        line-height: 1.3 !important;
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-base) !important;
        line-height: 1.4 !important;
    }

    .hover-project-header-container p {
        font-size: var(--font-size-xl) !important;
        margin-bottom: var(--spacing-lg) !important;
        opacity: 1 !important;
    }

    .hover-project-header-container .header-nav-item-main {
        font-size: var(--font-size-lg) !important;
        opacity: 1 !important;
    }

    /* Mobile: Force visibility for all projects popup items - Override GSAP inline styles */
    .hover-project-header-container.active .header-nav-item-main,
    .hover-project-header-container.active .header-nav-item-secondary,
    .hover-project-header-container.active p {
        opacity: 1 !important;
    }

    .hover-project-header-container.active .header-links .header-nav-item-main,
    .hover-project-header-container.active
        .header-links-text
        .header-nav-item-main {
        opacity: 1 !important;
    }

    /* Search Container - Mobile: At top */
    .hover-project-header-container .header-nav-wrapper {
        flex-wrap: wrap !important;
    }

    .hover-project-header-container .search-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 45px !important;
        padding: 0 var(--spacing-2xl) 0 var(--spacing-3xl) !important;
        /* margin-bottom: var(--spacing-3xl) !important; */
    }

    .search-input {
        font-size: var(--font-size-base) !important;
        padding-right: var(--spacing-md) !important;
    }

    .search-icon {
        width: 18px !important;
        height: 18px !important;
    }

    /* Expertise Images Section - Mobile */
    /* .header-expertise-images {
        display: flex !important;
        flex-direction: row !important;
        gap: var(--spacing-sm) !important;
        padding: var(--spacing-xl) 0 !important;
        margin-top: var(--spacing-2xl) !important;
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    } */

    .header-expertise-image-item {
        flex: 0 0 200px !important;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        height: auto !important;
        aspect-ratio: 1 / 1.3 !important;
    }

    .header-expertise-image-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Social Links Section */
    .header-social-links {
        position: relative !important;
        padding: var(--spacing-2xl) var(--spacing-lg) !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
        width: 100% !important;
        bottom: auto !important;
    }

    .header-social-link-left,
    .header-social-link-right {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .header-call-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0 !important;
    }

    .header-call-icon-wrapper img {
        width: 20px !important;
        height: 20px !important;
    }

    .header-call-content {
        gap: var(--spacing-sm) !important;
    }

    .header-call-text {
        font-size: var(--font-size-xs) !important;
    }

    .header-call-number {
        font-size: var(--font-size-2xl) !important;
    }

    .header-social-link-right {
        gap: var(--spacing-md) !important;
        flex-wrap: wrap !important;
    }

    .header-social-icon-bottom {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
    }

    .header-social-icon-bottom svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Right Content Image - Hide on mobile */
    .hover-header-content-right {
        display: none !important;
    }
}

/* Tablet Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Header Container */
    .new-header-container {
        padding: 12px 25px !important;
        gap: var(--spacing-2xl) !important;
    }

    /* Logo */
    .new-header-logo-img {
        height: 35px !important;
    }

    /* Contact Icons */
    .new-header-contact-icons {
        gap: var(--spacing-lg) !important;
        display: flex !important;
    }

    .new-header-contact-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }

    .new-header-contact-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .new-header-contact-icon img {
        width: 15px !important;
        height: 18px !important;
    }

    /* Menu Toggle */
    .new-header-menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    /* Hover Header Menu - Tablet */
    .hover-header-container.active,
    .hover-project-header-container.active {
        height: 100vh !important;
        overflow-y: auto !important;
    }

    .hover-header-content {
        padding: var(--spacing-8xl) var(--spacing-2xl) !important;
        min-height: 100vh !important;
        height: auto !important;
    }

    .hover-header-content-left {
        padding: var(--spacing-8xl) 0 var(--spacing-3xl) 0 !important;
        width: 100% !important;
    }

    @media (min-width: 481px) and (max-width: 769px) {
        .header-close-button {
            margin-top: -11px;
        }
    }

    @media (max-width: 768px) {
        .search-container .search-input {
            width: 400px;
        }
    }

    .header-close-button {
        top: var(--spacing-2xl) !important;
        right: var(--spacing-2xl) !important;
        position: absolute !important;
    }

    /* Navigation Items - Tablet: Keep side by side like desktop */
    .header-nav-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 60px !important;
        margin-top: var(--spacing-6xl) !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    /* Tablet (483px-768px): Search container at top - before Residential */
    .hover-project-header-container .header-nav-wrapper .search-container {
        order: -1 !important;
        width: 100% !important;
        margin-bottom: var(--spacing-3xl) !important;
        flex-basis: 100% !important;
    }

    /* Tablet: Navigation links after search */
    .hover-project-header-container .header-nav-wrapper .header-links {
        order: 0 !important;
    }

    .hover-project-header-container .header-nav-wrapper .header-links-text {
        order: 1 !important;
    }

    .header-links {
        width: auto !important;
        gap: var(--spacing-3xl) !important;
        flex: 0 0 auto !important;
    }

    .header-links-text {
        width: auto !important;
        gap: var(--spacing-3xl) !important;
        flex: 0 0 auto !important;
        flex-direction: column !important;
    }

    .header-nav-item-main {
        font-size: var(--font-size-2xl) !important;
        line-height: 1.3 !important;
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-lg) !important;
        line-height: 1.4 !important;
    }

    .hover-project-header-container p {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: var(--spacing-xl) !important;
        opacity: 1 !important;
    }

    .hover-project-header-container .header-nav-item-main {
        font-size: var(--font-size-xl) !important;
        opacity: 1 !important;
    }

    /* Tablet: Force visibility for all projects popup items - Override GSAP inline styles */
    .hover-project-header-container.active .header-nav-item-main,
    .hover-project-header-container.active .header-nav-item-secondary,
    .hover-project-header-container.active p {
        opacity: 1 !important;
    }

    /* Search Container - Tablet: At top */
    .hover-project-header-container .search-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        margin-bottom: var(--spacing-3xl) !important;
    }

    /* Social Links Section */
    .header-social-links {
        position: relative !important;
        padding: var(--spacing-3xl) var(--spacing-2xl) !important;
        flex-direction: column !important;
        gap: var(--spacing-5xl) !important;
        align-items: flex-start !important;
        width: 100% !important;
        bottom: auto !important;
    }

    .header-social-link-left,
    .header-social-link-right {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .header-call-icon-wrapper {
        width: 52px !important;
        height: 52px !important;
    }

    @media (max-width: 480px) {
        .new-header-right {
            gap: 5px !important;
        }
    }

    .header-call-number {
        font-size: var(--font-size-3xl) !important;
    }

    .header-social-link-right {
        gap: var(--spacing-lg) !important;
    }

    .header-social-icon-bottom {
        width: 34px !important;
        height: 34px !important;
    }

    /* Right Content Image - Hide on tablet */
    .hover-header-content-right {
        display: none !important;
    }

    /* Expertise Images Section - Tablet */
    .header-expertise-images {
        display: flex !important;
        flex-direction: row !important;
        gap: var(--spacing-md) !important;
        padding: var(--spacing-xl) 0 !important;
        margin-top: var(--spacing-2xl) !important;
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .header-expertise-image-item {
        flex: 0 0 200px !important;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        height: auto !important;
        aspect-ratio: 1 / 1.3 !important;
    }

    .header-expertise-image-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Small Tablets (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    /* Header Container */
    .new-header-container {
        padding: var(--spacing-base) 30px !important;
        gap: var(--spacing-4xl) !important;
    }

    /* Logo */
    .new-header-logo-img {
        height: 38px !important;
    }

    /* Contact Icons */
    .new-header-contact-icons {
        gap: var(--spacing-xl) !important;
        display: flex !important;
    }

    .new-header-contact-icon {
        width: 38px !important;
        height: 38px !important;
    }

    /* Hover Header Menu - Small Tablet */
    .hover-header-content {
        padding: var(--spacing-10xl) var(--spacing-3xl) !important;
    }

    .hover-header-content-left {
        padding: var(--spacing-10xl) 0 var(--spacing-4xl) 0 !important;
    }

    /* Navigation Items - Small Tablet: Keep side by side */
    .header-nav-wrapper {
        flex-direction: row !important;
        gap: 60px !important;
        margin-top: var(--spacing-8xl) !important;
        align-items: flex-start !important;
    }

    .header-links {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .header-links-text {
        width: auto !important;
        flex: 0 0 auto !important;
        flex-direction: column !important;
    }

    .header-nav-item-main {
        font-size: 26px !important;
    }

    .header-nav-item-secondary {
        font-size: var(--font-size-xl) !important;
    }

    .hover-project-header-container p {
        font-size: 26px !important;
    }

    .hover-project-header-container .header-nav-item-main {
        font-size: var(--font-size-xl) !important;
    }

    /* Search Container */
    .search-container {
        width: 100% !important;
        max-width: 400px !important;
    }

    /* Social Links Section */
    .header-social-links {
        padding: var(--spacing-base) 50px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .header-social-link-left,
    .header-social-link-right {
        width: auto !important;
    }

    /* Right Content Image - Can show on small tablets but adjust */
    .hover-header-content-right {
        width: 45% !important;
    }
}

/* Ensure all content is visible and scrollable on mobile/tablet */
@media (max-width: 992px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden !important;
    }

    /* Ensure menu overlay is full screen and scrollable */
    .hover-header-container,
    .hover-project-header-container {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Make sure all text is readable */
    .header-nav-item-main,
    .header-nav-item-secondary {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Ensure icons don't overflow */
    .new-header-contact-icon,
    .header-social-icon-bottom {
        flex-shrink: 0 !important;
    }

    /* Ensure logo doesn't shrink too much */
    .new-header-logo {
        flex-shrink: 0 !important;
    }
}

.section-4-video-player p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    /* Bold weight */
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}

@media (max-width: 475px) {
    .section-4-video-player p {
        font-size: 14px;
    }

    .section-4-play-icon {
        width: 42px;
        height: 42px;
    }

    .section-4-play-icon::after {
        width: 35px;
        height: 35px;
    }

    .section-4-play-icon img {
        max-width: 15px;
        max-height: 14px;
    }
}

@media (max-width: 518px) {
    .section-5-content-inner-div-2-inner-bottom div {
        margin-bottom: 60px;
    }

    .section-5-content-inner-bottom-3-inner {
        /* margin-top: 45px; */
        height: auto;
    }

    /* .section-7-top-heading-section h2 {
        font-size: 27px !important;
    } */
    /* .section-7-top-heading-section p {
        font-size: 15px !important;
    } */
    .section-8-content {
        display: flex;
        padding: 30px 10px !important;
        justify-content: center;
        align-items: center;
    }

    .section-8-content-inner-left {
        margin-top: 0px !important;
    }

    .section-9-content-top p {
        font-size: 24px !important;
    }

    .section-10-content h2 {
        font-size: 24px !important;
    }

    /* "Let’s talk!" span (b tag) */
    .section-10-content h2 b {
        font-size: 20px !important;
    }

    .section-7-client-section {
        gap: 30px;
    }
}

.section-7-top-heading-section p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% = 0.1em */
    vertical-align: middle;
    text-transform: capitalize;
}

.section-7-top-heading-section h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.section-7-clent-section-inner-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.section-7-clent-section-inner-content span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.section-8-content-inner-left h2 {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% = 0.1em */
    vertical-align: middle;
    text-transform: capitalize;
}

.section-8-content-inner-left p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #111111;
    /* 🔹 color – yahan apna brand color change kar sakte ho */
}

.section-8-content-inner-left span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    /* text-transform: capitalize; */
    color: #515151;
}

.section-9-content-top h2 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    /* 10% = 0.1em */
    text-align: center;
    vertical-align: middle;
    color: white;
}

.section-9-content-top p {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.rating-description {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    /* Medium */
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
}

.section-9-content-inner-right-rating-section-inner-bottom p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Medium */
    font-style: normal;
    font-size: 28px;
    line-height: normal;
    letter-spacing: 0;
    vertical-align: middle;
    color: white;
}

/* Main heading */
.section-10-content h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

/* "Let’s talk!" span (b tag) */
.section-10-content h2 b {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 36px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

.section-10-content p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #00000099;
}

.section-8-blog-date,
.section-8-blog-date-overlay {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
}

.section-8-blog-desc-overlay {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.section-8-read-more span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    text: #ffffff;
}

.section-7-clent-section-inner-content span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #515151;
}

/* @media (max-width: 379px) {
    .section-5-content-inner-div-3 {
        margin-top: -23px;
    }
} */
@media (max-width: 350px) {
    /* .section-5-content-inner-div-3 {
        margin-top: -56px;
    } */
}

/* @media (min-width: 1490px) {
    .section-5-content-inner-bottom-3-inner {
        height: 340px;
    }
} */
@media (min-width: 1200px) {
    .section-5-content-inner {
        padding: 25px 120px;
    }
}

@media (max-width: 518px) {
    .new-footer-top-right {
        padding-bottom: 15px;
        gap: 15px;
    }

    .new-footer-links-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 30px !important;
    }

    .section-5-content-inner-div-3 {
        padding: 18px 0px !important;
    }

    .section-5-content-inner-div-2 {
        margin-top: 9px;
        padding: 0px !important;
    }

    .section-5-content-inner-div-1 {
        margin-bottom: 12px !important;
    }
}

@media (max-width: 769px) {
    .section-7-top {
        padding: 50px 10px;
    }
}

@media (max-width: 768px) {
    .section-7-clent-section-inner {
        min-height: 0px;
    }
}

/* @media (max-width: 395px) {
    .section-5-content-inner-div-3 {
        padding: 0px !important;
    }
} */
/* .testimonial-slide .muted-line {
    width: 500px;
    height: 100px;
    background-color: red;
} */
/* @media (max-width: 991px) {
    .section-9-content-inner-left img {
        width: 50%;
    }
} */

@media (min-width: 991px) and (max-width: 1030px) {
    .section-5-content-inner-bottom-3-inner p {
        font-size: 15px;
        line-height: 19px;
    }

    .section-5-content-inner-bottom-3-inner span {
        font-size: 16px;
        line-height: 18px;
    }

    .section-5-content-inner-div-1 p {
        font-size: 24px;
        line-height: 38px;
    }
}

@media (max-width: 1207px) {
    .section-8 {
        padding: 0px;
    }
}

@media (max-width: 991px) {
    .section-2 {
        padding: 50px 50px 25px 50px;
    }
}

@media (max-width: 993px) {
    .section-2 {
        padding: 50px 30px 0px 30px;
    }

    .section-3-content-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 994px) {
    .section-3-content-inner {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 426px) {
    .project-slider-label {
        transform: translate(-64%, -50%) !important;
    }

    .project-slider-curve {
        width: 120px !important;
        height: 74px;
        z-index: 9;
    }

    .project-slider-label-title {
        width: 105px;
    }
}

@media (max-width: 519px) {
    .project-slider-label {
        transform: translate(-64%, -50%) !important;
    }

    .project-slider-curve {
        width: 120px !important;
        height: 74px;
        z-index: 9;
    }

    .project-slider-label-title {
        width: 105px;
    }
}

@media (max-width: 769px) {
    .project-slider-label {
        transform: translate(-64%, -50%) !important;
    }

    .project-slider-curve {
        width: 165px !important;
        height: 104px;
        z-index: 9;
    }

    .project-slider-label-title {
        width: 105px;
    }

    .project-slider-label-id {
        font-size: 30px;
    }

    .project-slider-label-title {
        font-size: 12px;
    }
}

@media (min-width: 640px) and (max-width: 769px) {
    .section-3-content-inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (min-width: 1023px) {
    .section-3-content-inner {
        padding-top: 40px;
        padding-bottom: 56px;
    }
}

/* @media (max-width: 1023px) {
    .project-slider-label {
        transform: translate(-64%, -50%) !important;
    }
    .project-slider-curve {
        width: 153px !important;
        height: 98px;
        z-index: 9;
    }
    .project-slider-label-title {
        width: 105px;
    }
    .project-slider-label-id {
        font-size: 30px;
    }
    .project-slider-label-title {
        font-size: 12px;
    }
} */
@media (max-width: 1441px) {
    .project-slider-label {
        transform: translate(-46%, -50%) !important;
    }

    /* .project-slider-curve {
        width: 153px !important;
        height: 96px;
        z-index: 9;
    }
    .project-slider-label-title {
        width: 105px;
    }
    .project-slider-label-id {
        font-size: 30px;
    }
    .project-slider-label-title {
        font-size: 12px;
    } */
}

@media (max-width: 640) {
    .section-3-content-inner {
        padding-bottom: 0;
    }
}

@media (max-width: 1025px) {
    .testimonial-swiper .testimonial-slide.swiper-slide {
        gap: 0px;
        /* padding-top: 30px; */
    }
}

@media (max-width: 361px) {
    .header-social-links {
        height: auto;
    }
}

@media (max-width: 518px) {
    .new-footer-right-section {
        background: none;
    }

    .new-footer-top {
        text-align: left !important;
        /* margin-bottom: 20px !important; */
    }

    .new-footer-top-right {
        text-align: left !important;
        align-items: flex-start;
    }

    .new-footer-top-center {
        margin-top: 20px;
        justify-content: left;
    }

    .new-footer-container {
        gap: 15px !important;
    }

    .new-footer-bottom {
        text-align: left;
    }

    .testimonial-swiper .testimonial-slide.swiper-slide {
        padding-top: 0px;
    }

    .section-9-content-inner-right-rating-section-inner-slider-buttons {
        margin-top: 0px !important;
    }
}

@media (max-width: 768px) {
    /* .new-footer {
        padding-bottom: calc(90px + env(safe-area-inset-bottom)) !important;
    } */

    .new-footer-bottom {
        padding-bottom: calc(100px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 991px) {
    .section-5-content-inner-div-1 {
        height: auto;
    }
}

.trust-text {
    font-family: "Lato", sans-serif !important;
}

@media (max-width: 519px) {
    .section-7-top {
        padding-top: 30px !important;
    }

    .section-9-content-inner-left img {
        max-width: 380px;
        width: -webkit-fill-available;
    }

    .section-7-top {
        padding: 30px 10px !important;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .section-9-content-inner-left img {
        width: auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* .about-customer-relationship-image {
        width: 47%;
    } */
    /* .about-customer-relationship-container {
        flex-direction: column;
    } */
    .about-customer-relationship-content {
        width: 55%;
    }

    .about-customer-relationship-image-wrap {
        /* height: 0 !important; */
    }
}

@media (max-width: 769px) {
    .about-founder-heading {
        margin: 0 0 15px;
    }
}
@media (min-width: 1091px) {
    .new-footer-main-tagline {
        margin: 0 0 0 100px;
    }
}
@media (max-width: 518px) {
    .hero-about-section .hero-about-title {
        font-size: 17px;
    }
    .section-2-about-title {
        line-height: normal;
        margin: 0 0 10px;
    }
    .about-vision-container {
        gap: 20px;
    }
    .section-8-content-inner-left p {
        margin-bottom: 0;
    }
}

.facebook img {
    height: 16px;
}
