/* Reset */
html, body {
  overflow-x: hidden;
  background-color: #080808;
}

:root {
  --black: #080808;
  --white: #E6E6E6;
  --accent: #FAEFDF;
  --grey: #292929;
  --light-grey: #CCCCCC;


 --font-primary: "Aloevera Display", sans-serif; /* Paragraphs */
--font-secondary: "The-seasons";
--font-monospace: "Fira Code", monospace;
  --font-headings: var(--font-secondary);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 992px) {
   p { font-size: 14px; line-height: 110%; }


   h2{ font-size: 28px; line-height: 110%; }

   h3{ font-size: 24px; line-height: 110%; }

}

p{ font-size: 16px; line-height: 110%; }

 /*Navigation Text */
a { font-size: 16px; line-height: 100%; }
.n2 { font-size: 14px; line-height: 100%; }

 /*Buttons & CTAs */
.cta-lrg { font-size: 16px; line-height: 100%; font-weight: 600; }
.cta-sml { font-size: 14px; line-height: 100%; font-weight: 600; }

 /*Desktop Heading Scale */
h1 { font-size: 52px; line-height: 100%; }
h2 { font-size: 48px; line-height: 110%; }
h3{ font-size: 32px; line-height: 110%; }

.h1-md { font-size: 40px; line-height: 100%; }
.h2-md { font-size: 36px; line-height: 100%; }

/* .h1-sm { font-size: 36px; line-height: 100%; } */

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("../font/aloevera/AloeveraDisplay-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}



body {
  font-family: var(--font-primary);
  background-color: var(--black);
  color: var(--white);
}

h1, h2, h3 {
  font-family: var(--font-headings);
}

/* Header */
.site-header {
    background-color: #080808;
    padding: 15px 40px;
    border-bottom: 1px solid #292929;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .containerh {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px;
}
.logo-mobile h1{   
    display: flex;
    text-align: center;
    align-items: center;
    color: #110909;
    font-size: 24px;
    font-family: var(--font-headings);
    margin: 0;
    text-decoration: none;
    font-weight: 500;
}
.nav-desktop ul {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-desktop ul li a {
    text-decoration: none;
    color: #E6E6E6;
    font-size: 16px;
}
.nav-desktop ul li a:hover {
    color: #FAEFDF;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

/* Mobile Nav */
/* .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #FAEFDF;
    transition: right 0.3s ease;
    padding: 20px;
} */
.mobile-nav.active {
    right: 0;
}
.mobile-nav .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav ul {
    margin-top: 30px;
    list-style: none;
}
.mobile-nav ul li {
    margin-bottom: 20px;
}
.mobile-nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #080808;
}



/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #080808;
}

/* Mobile nav hidden by default */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #FAEFDF;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
}

/* Active state (when opened) */
.mobile-nav.active {
    right: 0;
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #181515;
    cursor: pointer;
    margin-left: auto;
    display: block;
}
@media  (max-width:992px) {
   .site-header {
    background-color: #080808;
    padding: 15px 15px;
    border-bottom: 1px solid #292929;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
}
    
}
/* ======================= Header Dropdown (Desktop & Mobile) ======================= */

/* --- Desktop Dropdown --- */
/* --- Desktop Dropdown --- */
.nav-desktop .dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 125px;
    background-color: var(--accent);
    list-style: none;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);

    /* Horizontal row layout */
    display: flex;
    flex-direction: column;
    gap: 0px;

    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    white-space: nowrap; /* Prevent wrapping */
}

/* Show on hover */
.nav-desktop .has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-desktop .dropdown-menu li {
    margin: 0; /* Remove bottom margin */
}

.nav-desktop .dropdown-menu a {
    display: inline-block; /* Inline for row */
    padding: 8px 12px;
    color: var(--black);
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.nav-desktop .dropdown-menu a:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--black);
}



/* --- Mobile Expandable Submenu --- */
.mobile-nav .has-dropdown .mobile-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .has-dropdown .dropdown-toggle {
    background: none;
    border: none;
    color: var(--black);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.3s ease;
}

.mobile-nav .has-dropdown.open .dropdown-toggle {
    transform: rotate(45deg);
}

.mobile-nav .dropdown-menu {
    list-style: none;
    padding-left: 20px; /* Indent the submenu items */
    margin-top: 10px;
    
    /* Hide by default using max-height for smooth transition */
    max-height: 33px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

/* Show when parent has 'open' class */
.mobile-nav .has-dropdown.open > .dropdown-menu {
    max-height: 200px; /* A height large enough to show all items */
}

.mobile-nav .dropdown-menu li {
    margin-bottom: 15px;
}

.mobile-nav .dropdown-menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,0.7);
}



/* ======================= Image Banner Section ======================= */
/* ======================= Footer Banner Image ======================= */
.image-banner-section {
  width: 100%;
    height: 397px;
    min-height: 486px;
    background-image: url(../images/footer.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Disable parallax for tablets and mobile (better performance + fixes Safari bug) */
@media (max-width: 1024px) {
  .image-banner-section {
    background-attachment: scroll;
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .image-banner-section {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .image-banner-section {
    height: 200px;
    min-height: 200px;
  }
}

/* ======================= Main Footer (New Design) ======================= */
.main-footer {
    background-color: var(--accent);
    color: var(--black);
    padding: 35px 0;
    font-family: var(--font-primary);
    /* margin: 0 15px 0 15px; */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Left column is wider */
    gap: 80px;
}

.footer-block {
    margin-bottom: 50px;
    margin-right: 15px;
    margin-left: 15px;
}

.footer-heading {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #262626; /* Darker text for headings */
}

/* --- Left Column Styling --- */
.contact-details p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #5c5c5c;
}
.contact-details .label {
    font-weight: 600;
    color: #262626;
    display: inline-block;
    width: 90px;
}

/* About Us paragraph updates */
.about-us-text {
    font-size: 14px;
    line-height: 110%;  /* updated line height */
    color: #5c5c5c;
    font-weight: 500;   /* updated font weight */
    max-width: 550px;   /* updated width */
}

/* --- Right Column Styling --- */
.footer-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--black);
    border: 1px solid var(--black);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--black);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--black);
    padding: 8px 0;
    font-size: 16px;
    color: var(--black);
}
.newsletter-form input:focus {
    outline: none;
}
.newsletter-form button {
    background: none;
    border: none;
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
}

/* --- Full-Width Locations Section --- */
.footer-locations {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-locations p {
    font-size: 14px;
    line-height: 100%;
    color: #5c5c5c;
    margin: 0 15px 0 15px;
    font-weight: 400;
}
.footer-locations .label {
    font-weight: 600;
    color: #262626;
}

/* ======================= Copyright (New Design) ======================= */
.copyright-container {
    background-color: #F6E2C6; 
    padding-bottom: 40px;
    height: 61px;
    /* margin: 0 15px 0 15px; */
}
.copyright-text {
    color: #5c5c5c;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 25px;
}
.copyright-text::before,
.copyright-text::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color:#F6E2C6;
}

/* ======================= Footer Responsiveness ======================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        margin: 0px;
    }
    .footer-right-column {
        align-items: flex-start; 
        text-align: left;
    }


.footer-heading {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #262626;
}
.about-us-text {
    font-size: 12px;
    line-height: 110%;  /* updated line height */
    color: #5c5c5c;
    font-weight: 500;   /* updated font weight */
    max-width: 424px;   /* updated width */
}

    /* Contact Us first */
  .footer-left-column .footer-block:nth-child(1) {
    order: 1;
  }

  /* Socials second */
  .footer-right-column .footer-block:nth-child(1) {
    order: 2;
  }

  /* Newsletter third */
  .footer-right-column .footer-block:nth-child(2) {
    order: 3;
  }

  /* About Us fourth */
  .footer-left-column .footer-block:nth-child(2) {
    order: 4;
  }

  /* Locations fifth (already outside grid) */
  .footer-locations {
    order: 5;
  }

  .footer-locations p {
    font-size: 12px;
    line-height: 100%;
    color: #5c5c5c;
    margin: 0 8px 0 8px;
    font-weight: 400;
}
}

/* ======================= Hero Section ======================= */


/* Global line height for the rest of the website */
body {
    line-height: 110%; /* 17.6px */
}
/* Hero Section */
.hero-section {
      display: flex
;
    flex-direction: column;
    justify-content: flex-end;
    height: 550px;
    overflow: hidden;
    margin: 0 15px 110px 15px;
}

.hero-image {
  width: 100%;
  height: 710px; /* let it scale naturally */
  object-fit: cover;
}

/* Hero Content (below image, not overlaying) */
.hero-content-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px 0px;
    margin-top: 20px; /* spacing below image */
}

.hero-left {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 78px;
    flex: 1;
}

.hero-left .h1-desktop {
    font-size: 40px;   /* special note */
    line-height: 1;
    white-space: nowrap;
    font-family: var(--font-secondary);
}

.hero-left .p1-desktop {
    font-size: 16px;
    color: var(--white);

    line-height: 16px; /* only for hero paragraph */
    max-width: 436px;
}

/* CTA Button */
.hero-cta {
    padding: 12px 24px;
    flex-shrink: 0;
    font-size: 16px;
    color: whitesmoke;
    line-height: 100%;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
}

.hero-cta:hover {
    color: var(--accent);
}





/* ======================= We Define Homes Section ======================= */
.define-homes-section {
    background-color: var(--black);
    padding: 120px 0;
    color: var(--white);
    /* display: flex; */
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
    /* margin: 0 15px 0 15px; */
}

.define-homes-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left column smaller than right */
    gap: 100px;
      margin: 110px 15px 110px 15px;
      
}

/* Left Column (Text) */
.define-homes-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Heading top, paragraph bottom */
    height: 100%; /* Fill the height of the image */
}



.define-homes-text p {
    /* line-height: 1.7; */
    max-width: 655px; /* Updated max width */
    width:552px;
    /* font-size: 16px; */
    margin: 0; /* Remove default margin to align to bottom */
}

/* Right Column (Image) */
.define-homes-image img {
    width: 100%;
    max-height: 410px;
    height: 397px;
    object-fit: cover;
    display: block;
}

/* Mobile view */
@media (max-width: 992px) {

    .define-homes-section {
    padding: 44px 0;
   
}
    .define-homes-grid {
        margin: 188px 4px 100px 4px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
        padding: 0 8px; /* ✅ left & right margins */
        margin-top: 188px;
    }

    .define-homes-image {
        order: 1; /* Image first */
        margin-right: 0;
    }

    .define-homes-text {
        order: 2; /* Text after image */
        justify-content: flex-start;
        /* margin-left: 8px; */
        text-align: left; /* ✅ align text left */
    }

    .define-homes-text .h2-desktop {
        font-size: 36px; /* ✅ scale down */
        line-height: 110%;
        margin: 0 0 16px 8px;
    }

    .define-homes-text p {
        font-size: 14px;
        line-height: 110%;
        max-width: 100%; /* ✅ full width within container */
        margin: 0 8px 0 8px;
        width: 373px;
        
    }

    /* Optional: scale images for mobile */
    .define-homes-image img {
        width: 100%;
        height: auto;
        /* border-radius: 6px; */
    }
}

/* ======================= Hero Responsiveness ======================= */

@media (max-width: 992px) {
    .hero-section {
        width: auto;
        display: flex;
        flex-direction: column;
        margin:0;   
        height: 408px;
    }

    .hero-left {
        margin: 0 0px 0 8px; /* ✅ left & right margins */
        gap: 8px;
    }
   .hero-image {
    width: 100%;          
    height: auto;        /*atio */
    max-width: 100%;     /**/
    display: block;
    margin: 0 0 20px 0;  /*w image */
    object-fit: cover;   
}


    .hero-content-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        gap: 16px;
        padding: 0; /* keep only section padding */
    }

    .hero-left h1.h1-desktop {
        font-size: 32px;
        line-height: 110%;
        margin: 0;
        text-align: left;
    }

    .hero-left p.p1-desktop {
        font-size: 16px;
        line-height: 150%;
        text-align: left;
    }

    .hero-cta {
        align-self: flex-start;   /* ✅ button aligned left */
        margin-left: 8px;
        padding: 10px 3px;
        font-size: 14px;
        line-height: 100%;
    }
}

@media (max-width: 768px) {
   

    .hero-left h1.h1-desktop {

        font-size: 36px; /* ✅ slightly smaller on mobile */
        line-height: 100%;
    }

    .hero-left p.p1-desktop {
        font-size: 14px;
        line-height: 110%;
    }
}



/* ======================= Our Designing Process Section ======================= */
.process-section {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    background-color: var(--black);
    padding: 100px 0;
    color: var(--white);
    /* margin-right: 20px;
    margin-left: 20px; */
}

.section-subtitle {
    color: var(--light-grey);
    margin-bottom: 143px;
    font-size: 16px;
    margin-left: 15px;
    width: 754px;
    border-bottom: 1 px solid var(--grey);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    margin-right: 15px;
    margin-left: 15px;
}

/* Add margin to all steps except the last one */
.process-step:not(:last-child) {
    margin-bottom: 372px;
}

.peocess-text {
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.process-text h2 {
    margin-bottom: 455px; /* reduced from 214px */
    font-weight: 400; /* Lighter weight to match design */
}

.process-text p {
    max-width: 591px;
    padding-top: 32px;    color: var(--light-grey);
}

.process-image img {
 width: 100%;
   min-height: 573px;
  height: 412px;
    object-fit: cover;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
.process-section {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    background-color: var(--black);
    padding: 10px 0;
    color: var(--white);
    /* margin-right: 20px;
    margin-left: 20px; */
}

    
    .process-step {
        margin: 0 0px 188px 0px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }
.process-step:not(:last-child) {
    margin-bottom: 143px;
}
    .process-image img {
        order: 1; /* First: Image */
        
    max-width: 100%;
    height: auto;
    display: block;
    width: 440px;
    min-height: 214px;
}
      



.process-text {
        order: 2; /* Second: Text wrapper */
    }

    .process-text h2 {
        margin-left: 8px;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .process-text p {
        font-size: 14px;
        line-height: 110%;
        margin: 0 8px;
        max-width: 90%;
    }
    }

    
.section-subtitle {
    color: var(--light-grey);
    margin-bottom: 48px;
    font-size: 14px;
    margin-left: 15px;
    width: 150px;
    font-family: var(--font-primary);
    font-style: italic;
    border-bottom: 1px solid var(--white);
}

@media (max-width: 768px) {
    .process-step {
        display: flex;
            margin-bottom: 0;

        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .process-image {
        order: 1; /* First: Image */
    }

    .process-text {
        order: 2; /* Second: Text wrapper */
    }

    .process-text h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .process-text p {
        margin: 0 8px;
        max-width: 90%;
    }
}



/* ======================= Image Gallery Section ======================= */
/* .gallery-section {
    background-color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */

/* ======================= Video Gallery Section ======================= */
.gallery-section {
    background-color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item video { /* Changed from img to video */
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the video cover the entire container */
    display: block;
}

/* --- Keep the existing gallery responsiveness --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack gallery videos on mobile */
    }
}
/* ======================= Process & Gallery Responsiveness ======================= */


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack gallery images on mobile */
    }

   
}

/* ======================= Services Showcase Section ======================= */
.services-showcase-section {
    background-color: var(--accent);
    color: var(--black);
    padding: 100px 0;
   
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    /*padding: 0 40px;*/
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar and main content */
    gap: 80px;
}

.services-nav {
  position: -webkit-sticky; /* Safari support */
  position: sticky;
  top: 120px;
  flex: 0 0 300px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.services-nav ul {
    list-style: none;
    margin-bottom: 40px;
}


.services-nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
/*service nav  a:not(.active_ */
.services-nav a:not(.active) {
    opacity: 0.5;
}

.services-nav a.contact-link {
    opacity: 1;
    border-bottom: 1px solid var(--black);
    padding-bottom: 4px;
}

.service-content-block:not(:last-child) {
    margin-bottom: 150px;
}

.service-heading {
    font-size: 48px; /* H2 */
    margin-bottom: 30px;
}

.service-content-block img {
    width: 100%;
    margin-bottom: 40px;
}

.service-text-group {
    max-width: 600px;
    margin-bottom: 30px;
}



.service-text-group p {
    line-height: 110%;
}

.learn-more-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--black);
    padding-bottom: 4px;
}


/* ======================= Final Sections Responsiveness ======================= */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr; /* Stack the nav and content */
    
        /*padding: 0 15px; */
        /* Add side padding */}


    
    .services-nav {
        position: static;
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
        border-bottom: 1px solid rgba(0,0,0,0.2);
        padding-bottom: 20px;
        margin-bottom: 40px;
       
    }
    .services-nav ul {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .services-nav ul {
        flex-direction: column;
        gap: 15px;
    }

   
}


/* ======================= Portfolio CTA Section ======================= */


/* ======================= Testimonials Section ======================= */




/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-page {
    background-color: var(--black);
    color: var(--white);
}

.section-title {
    font-weight: 500;
    /*margin-left: 8px;*/
        margin-bottom: 63px;
            max-width: 80%;
        
    
    


}

.inline-contact-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--white);
    padding-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
    width: 89px;
}

/* --- Why Choose Us Section (Corrected "Ditto" Design - Content Left) --- */
/* Section Wrapper */
.why-us-section {
   display: flex
;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Section Heading */
.why-us-section .section-title {
    margin-bottom: 80px; /* slightly reduced from 138px for balance */
    /* padding-left: 16px; */
    /* font-size: 42px; h2 size */
    font-family: var(--font-headings);
    color: var(--white);
}

/* Grid for Items */
.why-us-grid {
    display: grid;
        align-items: center;
    gap: 80px;
    margin-right: 24px;
    margin-left: 15px;

}

/* Individual Item (Text + Image) */
.why-us-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* text smaller, image larger */
    align-items: center;
    gap: 50px; /* space between text and image */
    margin-bottom: 150px;
}

/* Text Column */
.why-us-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-us-text h2 {
    font-family: var(--font-headings);
    /* font-size: 42px; same as section heading */
    font-weight: 500;
    /* line-height: 1.2; */
    margin-bottom: 235px; /* reduced from 243px for better spacing */
    color: var(--white);
}

.why-us-details p {
    font-family: var(--font-primary);
    color: var(--light-grey);
    font-size: 16px;
    line-height: 110%;
    max-width: 580px;
    margin: 0 0 12px 0; /* spacing before button */
}

.why-us-details .inline-contact-link {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    width: 176px;
}

/* Image Column */
.why-us-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* --- Responsive --- */
@media (max-width: 992px) {
.why-us-section {
    margin-top: 110px;
    padding: 0;
    background-color: var(--black);
}
.why-us-grid {
    display: flex
;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin: 0 ;
}
.why-us-details p{
    font-size: 14px;
    line-height: 110%;
    width: 355px;
}
    .why-us-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image img {
        order: 1;
        height: auto; /* let image resize naturally */
    }

    .why-us-text {
        order: 2;
        text-align: left;
        gap: 8px;
        margin: 0 8px 0 8px
    }
    .why-us-text h2 {
           font-family: var(--font-headings);
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 0;
    color: var(--white);
    font-size: 32px;
}

.why-us-section .section-title {
    margin-bottom: 80px; /* slightly reduced from 138px for balance */
    padding-left: 8px;
    font-size: 36px; 
    font-family: var(--font-headings);
    color: var(--white);
}
    }


    



/* --- Founder Section --- */
/* --- Founder Section (Updated for Mobile Order) --- */
.founder-section {
    padding: 10px 0;
    background-color: var(--black);
    
}

/* Desktop Grid Layout */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 80px; /* Row gap and column gap */
    align-items: stretch; /* Stretch rows so text can align relative to image */
    margin: 211px 15px 211px 15px;
}

/* Heading aligned to top of image */
.founder-heading {
    align-self: start;   /* top aligned */
    justify-self: start;
    margin: 0;           /* remove large margin */
}

/* Image always in second column */
.founder-image {
    grid-row: 1 / span 2; /* image spans both heading and paragraph rows */
    grid-column: 2; 
    display: flex;
    align-items: stretch;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Paragraph aligned to bottom of image */
.founder-details {
    display: flex;
    align-items: flex-end; /* push paragraph to bottom */
}

.founder-details p {
    color: var(--light-grey);
    /* line-height: 1.8;
    font-size: 16px; */
    max-width: 625px; /* ✅ enforce max width */
}

/* --- Responsive --- */
@media (max-width: 992px) {

.founder-section {
    /* padding: 10px 0; */
    background-color: var(--black);
   
}


.founder-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: left;
        margin: 50px 0 100px 0;
    }

    .founder-heading {
        order: 1;
    }
    .founder-image {
        order: 2;
    }
    .founder-details {
        order: 3;
        align-items: center; /* reset so text centers on mobile */
    }

        .founder-details p {
        color: var(--light-grey);
        max-width: 625px;
        text-align: left;
        font-size: 14px;
        line-height: 110%;
        margin-left: 8px;
    }

}

/* --- More Info Section --- */








/* --- Enhance Section --- */
.enhance-section {
    padding: 100px 0;
    background-color: var(--black);
    margin: 211px 15px 211px 15px;
   
}
.enhance-section img {
      width: 100%;
    max-height: 817px;
    object-fit: cover;
    object-position: bottom;
    margin: 0 auto 40px;
    display: block;
    height: 573px;
}



.enhance-text {
    color: var(--white);
    line-height: 110%;
    margin:7px;
    max-width: 1050px;
}

.enhance-text p {
    margin-bottom: 20px;
    color: var(--white);
}

.enhance-text ul {
  list-style: disc;
    padding-left: 20px;
    line-height: 110%;
    
}

.enhance-text li {
    margin-bottom: 15px;
}

@media (max-width: 992px) {

    .enhance-section h2{
        font-size: 36px;
        line-height: 110%;
        width: 424px;
    }


    .enhance-section {
    padding: 10px 0;
    background-color: var(--black);
    margin: 50px 0px 50px 0px;
    width: 441px;
   
}
.enhance-text {
    color: var(--light-grey);
    line-height: 110%;
    margin:7px;
    font-size: 14px;
  width: 357px;}

  .enhance-text p {
    font-size: 14px;
    line-height: 110%;
    margin-bottom: 20px;
}
.enhance-section img {
      width: 100%;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 40px;
    display: block;
    height: 233px;
}
}

/* ======================= About Us Responsiveness ======================= */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 10px;
        margin-left: 8px;
    }
  

   
    

    /* Reverse order for founder image on mobile */
    .founder-heading {
        order: 1;
        
    }
}







/* ==========================================================================
   Stats Section Styles
   ========================================================================== */
.stats-section {
    background-color: var(--black);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
    margin: 6px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Left column slightly smaller */
    align-items: center;
    gap: 60px;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    padding-left: 40px;
    /* border-left: 4px solid #3A4F3D; A dark, elegant green */
    height: 100%;
}

.stat-number {
    font-family: serif; /* For the elegant number style */
    font-size: 150px;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
}

.stat-number .plus-sign {
    font-size: 80px;
    margin-left: 10px;
    vertical-align: super;
}

.stat-label-italic {
    font-style: italic;
    font-size: 18px;
    margin-top: 10px;
}

.stat-item-centered {
    text-align: center;
}

.stat-label {
    font-size: 16px;
    color: var(--light-grey);
}

.stats-image {
    position: relative;
}

.stats-image img {
    width: 100%;
    display: block;
}

.stats-contact-link {
    position: absolute;
    bottom: -50px; /* Position below the image */
    right: 0;
}

/* ======================= Stats Section Responsiveness ======================= */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Stack the columns */
        gap: 60px;
    }
    
    .stats-content {
        display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
    padding-left: 40px;
    /* border-left: 4px solid #3A4F3D; A dark, elegant green */
    height: 100%;
    }
    
    .stat-item-centered {
        text-align: center;
    }

    .stat-number {
        font-size: 100px;
    }

    .stat-number .plus-sign {
        font-size: 60px;
    }
    
    .stats-contact-link {
        position: static; /* Let the link sit naturally */
        display: block;
        text-align: center;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .stats-content {
        flex-direction: column; /* Stack stats vertically on mobile */
        gap: 80px;
    }
}




/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-form-section {
    background-color: var(--accent);
    color: var(--black);
    padding: 40px 0;
        margin:82px 15px 0 15px;
    
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    margin-left: 40px;
    margin-top: 110px;
    margin-right: 611px;
    
}

.form-group label,
.form-group-tags label {
    display: block;
    margin-bottom: 15px;

    font-weight: 500;
    font-size: 20px;
    font-family: var(--font-headings);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    font-size: 16px;
    color: var(--black);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--black);
}

.form-group-tags {
   margin-bottom: 50px;
    margin-left: 40PX;

}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hide the actual radio button */
.tag-group input[type="radio"] {
    display: none;
}

.tag-group label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #EADBC8; /* Slightly darker than accent */
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

/* Style for the selected tag */
.tag-group input[type="radio"]:checked + label {
    background-color: var(--black);
    color: var(--white);
}

.form-footer {
        display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 60px;
    margin-left: 40px;
    margin-right: 59px;
}

.submit-button {
    background: transparent;
    border: none;
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black);
    cursor: pointer;
    margin-left: 4px;
}

.help-text {
    max-width: 300px;
    text-align: right;
    margin-right: 6px;
    
}

.help-text h3 {
    margin-bottom: 10px;
}

.help-text p {
    /* line-height: 1.6;
    font-size: 14px; */
    color: #555;
}

.map-section {
  margin: 240px 15px 50px 15px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;   /* optional for rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* optional shadow */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* --- Contact Page Responsiveness --- */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
        margin: 50px 0 50px 0;
    }
      .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px 16px;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
        margin:48px 16px 40px 16px;
    }
    .form-group-tags{
        margin:64px 16px;
    }
    .help-text {
        text-align: left;
    }
    .map-section {
    margin:130px 8px 130px 8px ;
    width: 100%;
    height: 273px;
    }
}


@media (max-width: 992x) {
    .contact-form-section {
        padding: 60px 0;
        margin: 50px 0 50px 0;
    }
      .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px 16px;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
        margin:48px 16px 40px 16px;
    }
    .form-group-tags{
        margin:64px 16px;
    }
    .help-text {
        text-align: left;
    }
    .map-section {
       margin:130px 8px 130px 8px ;

    width: 100%;
    height: 32vh;
}
}

/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Override all placeholder styles globally */
*::placeholder {
  font-family: var(--font-primary) !important; /* Use your desired font */
  color: inherit !important;
  opacity: 1 !important; /* ensures it's visible */
}

/* For older browsers (optional but good practice) */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: var(--font-primary)!important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: var(--font-primary)!important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: var(--font-primary) !important;
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-primary) !important;
}






/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx LOCATION PAGES CSS */

.breadcrumb-area{
        background: rgba(0, 0, 0, 0) url(https://thethekedaar.in//thethekedaar_images/banner/bg-banner.jpg) no-repeat fixed center center / cover;
        height: 550px;
        z-index: 1;
        display: flex;
        /* align-items: center; */
        flex-direction: column;
        justify-content: center;
}

.breadcrumb-content {
    display: block;
    margin: auto;
    /* padding-top: 20vh; */
}



.intrnl {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent);

}

.min_link{
    color: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    line-height: inherit;
    transition: all 0.1s ease;
}

.min_link:hover{
    color:var(--black); 
    transition: all 0.1s ease;

}