.news-coverage {
  padding: 60px 0;
  background-color: var(--light);
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary);
}

.news-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.news-logos img {
  height: 200px;
  max-width: 400px;
  object-fit: contain;

}







    
    html {
        zoom: 0.85;
    }


 
        /* Base Styles */
:root {
    --primary: #1a2e35;
    --secondary: #628a76;
    --accent: #d4a762;
    --dark: #0d1a1e;
    --light: #f8f9fa;
    --text: #4a4a4a;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: var(--text);
    line-height: 1;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
}



.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 192, 190, 0.3);
}

.btn:hover:after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #e0b56d;
    color: var(--dark);
}

.btn-accent:after {
    background: var(--accent);
}

.section {
    padding: 30px 0;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark);
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin: top 1px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

/* Reduced padding for specific sections */
.trending-designs, .six-reasons, .why-choose-animated,
.signature-projects, .achievements, .india-projects,
.services, .process, .team, 
.contact, .newsletter, .footer {
    padding: 80px 0;
    
}

/* Adjust hero section padding */
.hero {
    min-height: 80vh;
    padding: 0;
}

/* Adjust footer padding */
footer {
    padding: 80px 0 40px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links li {
  position: relative;
}

/* Reduce vertical padding for all sections */
.section {
  padding-top: 40px;
  padding-bottom: 30px;  /* ← Less bottom space */
}

/* Tighten heading spacing */
.section-title {
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 20px;
}

/* Remove excessive gap at bottom of section containers */
.section > *:last-child {
  margin-bottom: 0 !important;
}

/* If any inner grid adds space */
.trending-grid,
.signature-grid,
.team-grid,
.blog-grid,
.projects-carousel {
  margin-bottom: 0 !important;
}

/* Remove space from testimonials */
.testimonial-slider,
.testimonial-slide {
  margin-bottom: 0 !important;
}

/* Optional: override overly padded sections */
.trending-designs, .signature-projects, .why-choose-premium,
.services, .design-philosophy, .team, .process,
 .india-projects, .cta, .contact {
  padding-bottom: 30px !important;
}


/* 2) Hide by default, style the mega-dropdown box */
    .dropdown-content {
      display: none;             /* hide by default (REMOVE any display:flex here) */
      position: absolute;
      top: 100%;                 /* immediately below parent <li> */
      left: 0;                   /* align left edge */
      background-color: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 30px;
      border-radius: var(--radius);
      z-index: 1000;
      
      /* LAYOUT: two columns side by side */
      display: flex;             /* ←– keep this only here, not in base rule */
      gap: 40px;                 /* space between columns */
      white-space: nowrap;       /* prevent wrapping inside columns */
    }

    /* Only show when <li class="dropdown"> has .active */
.dropdown-content {
  display: none;
  flex-direction: column; /* or row if needed */
}

.dropdown.active .dropdown-content {
  display: block; /* ✅ safer than flex */
}

    /* Style each column’s list */
    .dropdown-column ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .dropdown-column ul li {
      margin-bottom: 12px;
    }

    .dropdown-column ul li a {
      color: var(--dark);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .dropdown-column ul li a:hover {
      color: var(--primary);
    }

    /* Align the “Designs” link and its chevron icon */
    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px; /* small space between text and chevron */
    }

    .dropdown-toggle:hover {
      color: var(--primary);
    }

    /* OPTIONAL: If you want a slight animation on open/close, you could do:
       .dropdown-content {
         opacity: 0;
         transform: translateY(-10px);
         transition: opacity 0.2s ease, transform 0.2s ease;
       }
       .dropdown.active .dropdown-content {
         opacity: 1;
         transform: translateY(0);
       }
       But that’s entirely optional. */

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 1001;
}

/* Hero Section - Elegant Redesign */
.hero {
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 46, 53, 0.2), rgba(26, 46, 53, 0.3)), 
                url('https://www.modernhousemaker.com/mhmmodernmhm/images/new/HEROIMAGE.jpeg') no-repeat center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 80px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--accent);
    display: inline-block;
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(212, 167, 98, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-stats {
    display: flex;
    margin-top: 80px;
    gap: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.stat-item {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.43);
    backdrop-filter: blur(1px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll span {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-scroll i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
  .hero {
    background-position: center top !important;  /* Focus top center */
    background-size: cover !important;           /* Maintain coverage */
    background-repeat: no-repeat !important;
    min-height: 600px;                            /* Optional: reduce height */
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
  }
}


/* Featured Clients Section */
.featured-clients {
    padding: 60px 0;
    background:rgb(255, 0, 0);
}

.clients-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    height: 40px;
    object-fit: contain;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Trending Designs Section - New Section */
.trending-designs {
    background-color: white;
    padding: 100px 0;
    text-align: center;

}


.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trend-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trend-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.trend-card:hover img {
    transform: scale(1.05);
}

.trend-content {
    padding: 25px;
    background: white;
}

.trend-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.trend-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.trend-stats span {
    display: flex;
    align-items: center;
}

.trend-stats i {
    margin-right: 5px;
    color: var(--accent);
}

/* Floor Plan Section */
.floor-plans {
    background-color: white;
    text-align: center;
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.floorplan-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.floorplan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.floorplan-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.floorplan-content {
    padding: 30px;
    background: white;
}

.floorplan-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.floorplan-specs {
    list-style: none;
    margin-bottom: 25px;
}

.floorplan-specs li {
    margin-bottom: 10px;
    color: #666;
}

.floorplan-specs strong {
    color: var(--dark);
}


/* Elevation & Interior Section Styles */
.elevation-section, .interior-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
     margin-bottom: 0px;
}

.elevation-filter, .interior-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 1000;
    color: #555;
    font-size: 2rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: white;
}

.elevation-category, .interior-category {
    display: none;
}

.elevation-category.active, .interior-category.active {
    display: block;
}

.elevation-slider-container, .interior-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.elevation-slider, .interior-slider {
    width: 100%;
    overflow: hidden;
}

.elevation-slides, .interior-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.elevation-slide, .interior-slide {
    min-width: calc(25% - 15px);
    flex: 0 0 auto;
}

.elevation-card, .interior-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.elevation-card:hover, .interior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.elevation-card img, .interior-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.elevation-name, .interior-name {
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.slider-nav {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-nav:hover {
    background: var(--accent);
    color: white;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .elevation-slide, .interior-slide {
        min-width: calc(33.33% - 14px);
    }
}

@media (max-width: 992px) {
    .elevation-slide, .interior-slide {
        min-width: calc(50% - 10px);
    }
    
    .elevation-card img, .interior-card img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .elevation-slide, .interior-slide {
        min-width: calc(100% - 20px);
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .elevation-name, .interior-name {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Modern Projects Section */
.modern-projects {
    background-color: white;
    padding: 100px 0;
    text-align: center;
}

.projects-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    background: white;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-badge.award {
    background: var(--primary);
}

.project-content {
    padding: 30px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-meta i {
    margin-right: 5px;
    color: var(--accent);
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.project-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
}

.project-stats .stat small {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.project-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.project-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent);
}

.project-link:hover i {
    transform: translateX(5px);
}
/* Animated Why Choose Us Section */
.why-choose-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f4f4, #ffffff);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.choose-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 100%
}

.choose-content .section-subtitle {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.choose-content .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.choose-content .section-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.choose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    background: white;
    border-radius: 14px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
    border-left: 5px solid var(--accent);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-image {
        order: 2;
    }

    .choose-content {
        order: 1;
        text-align: center;
    }

    .choose-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        justify-content: center;
        text-align: left;
    }
}

/* Achievements Section - New Section */
.achievements {
    background: linear-gradient(rgba(26, 46, 53, 0.9), rgba(26, 46, 53, 0.9)), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80') no-repeat center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.achievements .section-title {
    color: white;
}

.achievements .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.achievement-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Six Reasons Section */
/* === Section Container === */
.faq-studio {
  position: relative;
  padding: 160px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

/* === Background Blur Image === */
.faq-backdrop {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
  filter: blur(12px) brightness(0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* === Section Content === */
.faq-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* === Section Heading === */
.faq-heading-block {
  text-align: center;
  margin-bottom: 80px;
}

.faq-heading-block h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent, #d4a762);
  font-family: 'Playfair Display', serif;
}

.faq-heading-block p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 15px;
  line-height: 1.8;
}

/* === FAQ List === */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* === FAQ Item (Card) === */
.faq-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 167, 98, 0.1);
}

.faq-item.open {
  border-left-color: var(--accent, #d4a762);
}

/* === Question Button === */
.faq-question {
  font-size: 1.35rem;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #fff;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--accent, #d4a762);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question {
  color: var(--accent, #d4a762);
}

.faq-item.open .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

/* === Answer Reveal === */
.faq-answer {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0;
  transition: all 0.4s ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
  max-height: 400px;
  margin-top: 20px;
}

/* === Optional Watermark Sketch === */
.faq-sketch-watermark {
  position: absolute;
  bottom: 40px;
  right: 60px;
  opacity: 0.05;
  height: 300px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: soft-light;
}

/* === CTA Button Area === */
.faq-cta {
  text-align: center;
  margin-top: 100px;
  color: #ccc;
}

.faq-cta h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.btn-fade {
  background: none;
  border: 2px solid var(--accent, #d4a762);
  color: var(--accent, #d4a762);
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-fade:hover {
  background: var(--accent, #d4a762);
  color: #111;
}

/* === Responsive === */
@media (max-width: 768px) {
  .faq-heading-block h2 {
    font-size: 2.2rem;
  }

  .faq-sketch-watermark {
    display: none;
  }
}



/* India Projects Section - New Section */
.india-projects {
    background-color: white;
    padding: 120px 0;
    
}

.india-projects .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.india-slider {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin-top: 60px;
}

.india-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.india-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.slide-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.slide-image:hover img {
    transform: scale(1.05);
}

.slide-text {
    padding: 30px;
}

.slide-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.slide-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.slide-features {
    margin-bottom: 30px;
}

.slide-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.slide-feature i {
    width: 40px;
    height: 40px;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.1rem;
}

.india-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.india-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.india-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Elevation & Interior Section Styles */
.elevation-section, .interior-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.elevation-filter, .interior-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: white;
}

.elevation-category, .interior-category {
    display: none;
}

.elevation-category.active, .interior-category.active {
    display: block;
}

.elevation-slider-container, .interior-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    max-width: 2000px;
}

.elevation-slider, .interior-slider {
    width: 100%;
    overflow: hidden;
}

.elevation-slides, .interior-slides {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.elevation-slide, .interior-slide {
    min-width: calc(25% - 15px);
    flex: 0 0 auto;
}

.elevation-card, .interior-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.elevation-card:hover, .interior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.elevation-image, .interior-image {
    height: 280px;
    overflow: hidden;
}

.elevation-image img, .interior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.elevation-card:hover .elevation-image img,
.interior-card:hover .interior-image img {
    transform: scale(1.05);
}

.elevation-name, .interior-name {
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    background: white;
    margin-top: auto;
}

.slider-nav {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-nav:hover {
    background: var(--accent);
    color: white;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .elevation-slide, .interior-slide {
        min-width: calc(33.33% - 14px);
    }
    
    .elevation-image, .interior-image {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .elevation-slide, .interior-slide {
        min-width: calc(50% - 10px);
    }
    
    .elevation-image, .interior-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .elevation-slide, .interior-slide {
        min-width: calc(100% - 20px);
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .elevation-name, .interior-name {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .elevation-image, .interior-image {
        height: 260px;
    }
}
/* New Section: Design Philosophy */
.design-philosophy {
    padding: 120px 0;
    background-color: var(--light);
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.philosophy-content h2 span {
    color: var(--accent);
}

.philosophy-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.philosophy-points {
    margin: 40px 0;
}

.philosophy-point {
    display: flex;
    margin-bottom: 25px;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.point-content p {
    color: #666;
    line-height: 1.7;
}

/* New Section: Client Testimonials */
.client-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 950px;
    margin: auto;
    position: relative;
}

.testimonial-slide {
    background: rgb(255, 0, 0);
    backdrop-filter: blur(12px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: none;
    animation: fadeIn 0.6s ease-in-out;
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-slide.active {
    display: block;
}

.client-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid rgba(255,255,255,0.25);
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.9;
    margin: 0 auto 25px;
    font-style: italic;
    color: rgba(255, 0, 0, 0.95);
    position: relative;
    max-width: 750px;
}

.testimonial-text::before {
    content: "“";
    font-size: 5rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -30px;
    left: -25px;
    font-family: 'Playfair Display', serif;
}

.testimonial-text::after {
    content: "”";
    font-size: 5rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    bottom: -35px;
    right: -25px;
    font-family: 'Playfair Display', serif;
}

.client-info {
    margin-top: 30px;
}

.client-name {
    font-weight: 700;
    font-size: 1.4rem;
}

.client-role {
    color: var(--accent);
    font-size: 1rem;
}

.client-rating {
    margin-top: 12px;
    color: var(--accent);
    font-size: 1.2rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.testimonial-dot:hover,
.testimonial-dot.active {
    background: white;
    transform: scale(1.5);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* About Section */
.about {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-title span {
    color: var(--accent);
}

.about-text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    margin: 40px 0;
}

.about-feature {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

.about-image {
    position: relative;
    height: 600px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient);
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 250px;
    transform: rotate(5deg);
}

.badge-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.badge-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover:after {
    height: 10px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(98, 138, 118, 0.1) 0%, rgba(26, 46, 53, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}
.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
    transition: background 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.4s ease, background 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.service-desc {
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Signature Projects Section */
.signature-projects {
    background-color: #f9f9f9;
    padding: 100px 0;
    text-align: center;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 3fr));
    gap: 40px;
    margin-top: 50px;
}

.signature-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.signature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.signature-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.signature-card:hover .signature-image img {
    transform: scale(1.1);
}

.signature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.signature-year {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.signature-overlay h3 {
    font-size: 1.8rem;
    margin: 0;
}

.signature-details {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.detail-item span {
    font-size: 0.85rem;
    color: #666;
}

.signature-link {
    display: block;
    padding: 20px;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.signature-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.signature-link:hover {
    color: var(--accent);
    background: rgba(212, 167, 98, 0.05);
}

.signature-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    background-color: white;
    position: relative;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
    position: relative;
}

.process-step {
    width: calc(20% - 20px);
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.process-step:hover .step-number {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateX(-50%) scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    margin: 30px 0 20px;
    color: var(--dark);
}

.step-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 150px 0;
    text-align: center;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--radius);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-slide.active {
    display: block;
}

.client-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    border: 5px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.testimonial-text:before, .testimonial-text:after {
    content: '"';
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.testimonial-text:before {
    top: -30px;
    left: -25px;
}

.testimonial-text:after {
    bottom: -60px;
    right: -25px;
}

.client-info {
    margin-top: 40px;
}

.client-name {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.client-role {
    color: var(--accent);
    font-size: 1rem;
}

.client-rating {
    margin-top: 15px;
    color: var(--accent);
    font-size: 1.2rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Team Section */
.team {
    background-color: #f9f9f9;
    position: relative;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: white;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.member-role {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    font-size: 1rem;
}

.member-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

/* Blog Section */
.blog {
    background-color: white;
    position: relative;
    text-align: center;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-title {
    text-align: left;
    margin-bottom: 0;
}

.blog-title:after {
    left: 0;
    transform: translateX(0);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: white;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--accent);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.read-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent);
}

.read-more:hover i {
    transform: translateX(8px);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(10, 20, 25, 0.8), rgba(10, 20, 25, 0.8)),
                url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 160px 0;
    position: relative;
}

.cta-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 850px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.cta-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.cta-desc {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: #b68b4a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
    position: relative;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    padding: 50px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-text {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-value {
    color: #666;
    line-height: 1.7;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.2rem;
}

.contact-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    padding: 50px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--dark);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 167, 98, 0.2);
    background: white;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* Map Section */
.map-section {
    height: 500px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Newsletter Section */
.newsletter {
    background: var(--primary);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    padding: 0 40px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-btn:hover {
    background: #e0b56d;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    display: block;
    font-family: 'Playfair Display', serif;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.footer-subscribe {
    display: flex;
    margin-bottom: 30px;
}

.footer-subscribe input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer-subscribe input::placeholder {
    color: rgba(255,255,255,0.7);
}

.footer-subscribe button {
    padding: 0 25px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.footer-subscribe button:hover {
    background: #e0b56d;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-icon {
    margin-right: 20px;
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .process-step {
        width: calc(33.33% - 20px);
        margin-bottom: 60px;
    }
    
    .process-step:nth-child(3):after {
        display: none;
    }
    
    .process-step:nth-child(4) {
        margin-top: 100px;
    }
    
    .process-step:nth-child(4):after,
    .process-step:nth-child(5):after {
        display: none;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .slide-image {
        order: -1;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 500px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .portfolio-header, .blog-header, .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .portfolio-title, .blog-title, .projects-title {
        text-align: center;
    }
    
    .portfolio-title:after, .blog-title:after, .projects-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .portfolio-filter {
        width: 100%;
        justify-content: center;
    }
    
    .elevation-slides, .interior-slides {
        height: 500px;
    }
    
    .philosophy-container {
        grid-template-columns: 1fr;
    }
    
    .philosophy-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
        position: relative;
    }
    
    .hero {
        min-height: auto;
        padding: 150px 0 100px;
        height: auto;
        background-position: right center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item:not(:last-child):after {
        display: none;
    }
    
    .process-step {
        width: calc(50% - 20px);
    }
    
    .process-step:nth-child(2):after,
    .process-step:nth-child(4):after {
        display: none;
    }
    
    .process-step:nth-child(3),
    .process-step:nth-child(5) {
        margin-top: 100px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input, .newsletter-btn {
        border-radius: var(--radius);
        width: 100%;
    }
    
    .elevation-slides, .interior-slides {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Adjusted header and logo size for mobile */
    header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    

    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .elevation-slides, .interior-slides {
        height: 350px;
    }
    
    .elevation-prev, .elevation-next,
    .interior-prev, .interior-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    /* Further adjustments for small mobile devices */
    header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 80px;
    }
    
    .process-step:after {
        display: none !important;
    }
    
    .process-step:nth-child(3),
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        margin-top: 0;
    }
    
   

    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-desc {
        font-size: 1.1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .slide-text {
        padding: 20px;  
    }
    
    .slide-text h3 {
        font-size: 1.5rem;
    }
    
    .elevation-slides, .interior-slides {
        height: 300px;
    }
}

/* Social Media Presence Section */
.social-media {
    background-color: #f9f9f9;
    text-align: center;
    padding: 80px 0;
}

.social-devices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.device {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.device:hover {
    transform: translateY(-10px);
}

.device img {
    width: 100%;
    height: auto;
    display: block;
}

.laptop {
    max-width: 400px;
}

@media (max-width: 768px) {
    .social-devices {
        flex-direction: column;
        align-items: center;
    }
    
    .device {
        margin-bottom: 30px;
    }
}
/* ================================
   Social Sidebar (fixed, vertical)
   ================================ */

.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin: 6px 0;
  background-color: white;
  border-radius: 0 12px 12px 0;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-sidebar a:hover {
  transform: translateX(6px);
}

.social-sidebar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* WhatsApp Floating Button – Bottom Right */
.whatsapp-fixed {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 80px;
  height: 80px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
}

.whatsapp-fixed img {
  width: 42px;
  height: 42px;
}

.elevation-section,
.interior-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  margin-bottom: 0 !important;
}
.modern-projects{
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  margin-bottom: 0 !important;
}

/* Optional: tighten filter and slider spacing too */
.elevation-filter,
.interior-filter {
  margin-bottom: 20px !important;
}

.elevation-slider-container,
.interior-slider-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  /* UNLOCK ALL CARD IMAGE HEIGHTS */
  .elevation-card,
  .interior-card,
  .floorplan-card,
  .trend-card,
  .project-item,
  .blog-card,
  .signature-card {
    height: auto !important;
    display: block !important;
  }
}

  /* MAKE IMAGE WRAPPERS FLEXIBLE */
  .elevation-image,
  .interior-image,
  .signature-image,
  .project-image,
  .blog-img,
  .client-avatar {
    height: auto !important;
    width: 100% !important;
    max-height: none !important;
  }

  /* FULLY CONTAIN ALL IMAGES */
  .elevation-card img,
  .interior-card img,
  .floorplan-card img,
  .trend-card img,
  .project-image img,
  .signature-image img,
  .blog-img,
  .client-avatar img {
    object-fit: contain !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100%;
    border-radius: 12px;
  }

  /* FIX SLIDER WIDTH ISSUES */
  .elevation-slide,
  .interior-slide {
    min-width: 100% !important;
    flex: 1 1 100% !important;
  }

  /* OPTIONAL: make avatar round & centered */
  .client-avatar {
    border-radius: 50%;
    margin: 0 auto 20px;
  }

  .member-img {
    border-radius: 12px;
  }


@media (max-width: 768px) {
  /* Layout remains clean and scrollable */
  .elevation-slider,
  .interior-slider,
  .elevation-slider-container,
  .interior-slider-container {
    height: auto !important;
    overflow: hidden !important;
  }

  .elevation-slide,
  .interior-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .elevation-card,
  .interior-card {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    overflow: hidden !important;
    box-shadow: none;
  }

  .elevation-image,
  .interior-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .elevation-card img,
  .interior-card img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    max-height: 250px; /* ✅ Less landscape, more square */
    border-radius: 10px;
    display: block;
  }

  .elevation-name,
  .interior-name {
    padding: 10px 0;
    font-size: 1rem;
    text-align: center;
  }

  /* ✅ Hide arrows */
  .elevation-slider-container .slider-nav,
  .interior-slider-container .slider-nav {
    display: none !important;
  }
}@media (max-width: 768px) {
  .elevation-card,
  .interior-card {
    height: auto !important;       /* Allow height to grow naturally */
    padding: 0 0 15px;             /* Add space below image if needed */
    box-shadow: var(--shadow);
    border-radius: 12px;
  }

  .elevation-image,
  .interior-image {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .elevation-slider-container,
  .interior-slider-container {
    padding: 0 10px;
  }

  .elevation-slide,
  .interior-slide {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .elevation-card img,
  .interior-card img {
    object-fit: contain !important; /* Prevent top/bottom cropping */
    height: 300px !important;       /* You can increase this if you want it bigger */
    width: 100% !important;
    border-radius: 12px;
  }
}


#inquiry-toggle {
    position: fixed;
    right: 0;
    top: 40%;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

#inquiry-toggle:hover {
    background: var(--secondary);
}

#inquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 46, 53, 0.75);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary);
}

#close-inquiry {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn:hover {
    background: var(--secondary);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-4px);
  }
}
#inquiry-toggle {
  animation: shake 1.2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .client-testimonials .client-avatar {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 20px !important;
    }

    .client-testimonials .testimonial-text {
        font-size: 1rem !important;
    }

    .client-testimonials .client-name {
        font-size: 1.1rem !important;
    }

    .client-testimonials .client-role {
        font-size: 0.85rem !important;
    }

    .client-testimonials .client-rating {
        font-size: 1rem !important;
    }
}
@media (max-width: 768px) {
  .elevation-slide,
  .interior-slide {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .elevation-card,
  .interior-card {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 auto;
    background: white;
  }

  .elevation-card img,
  .interior-card img {
    display: block;
    margin: 0 auto;
    height: auto !important;
    max-height: 250px;
    object-fit: contain !important;
    border-radius: 12px;
  }
}
.swipe-hint {
  display: none;
  margin-top: 15px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.8);
  font-style: italic;
  animation: bounceArrow 1.6s infinite;
  position: relative;
}

.swipe-hint i {
  margin-left: 8px;
  color: var(--accent);
}

/* Only show on small screens */
@media (max-width: 768px) {
  .swipe-hint {
    display: block;
  }
}

/* Animation */
@keyframes bounceArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #1a2a6c;
    color: white;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#scrollToTop:hover {
    background-color: #4CAF50;
    transform: scale(1.1);
}
#inquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: none; /* start hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


#inquiry-popup .popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

#close-inquiry {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
#inquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
     background: transparent !important;
    display: none; /* start hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}


/* Optional animation */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 20px #000;
    border-radius: 8px;
}

.popup-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: auto;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 60px;
    color: #333;
    cursor: pointer;
}
html, body {
  overflow-x: hidden;
  touch-action: pan-y; /* ✅ block horizontal swipe on whole page */
}
.elevation-slides, .interior-slides {
  touch-action: pan-x; /* ✅ allow horizontal swiping inside only the slider */
}
/* 🚫 Disable scroll-up reveal animation completely */
.service-card,
.portfolio-item,
.process-step,
.team-member,
.blog-card,
.contact-item,
.award-card,
.trend-card,
.project-item,
.partner-card,
.achievement-card {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* 🔒 Stop zoom/scale on slider images */
.elevation-card:hover img,
.interior-card:hover img,
.elevation-card:hover .elevation-image img,
.interior-card:hover .interior-image img {
  transform: none !important;
}
html, body { overflow-x: hidden; touch-action: pan-y; }
.elevation-slides, .interior-slides {
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}
/* 🔒 Disable all animations on elevation & interior cards and their children */
.elevation-card,
.interior-card,
.elevation-card *,
.interior-card * {
  transition: none !important;
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}
.elevation-card:hover img,
.interior-card:hover img {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}
/* Make dropdown scrollable on mobile */
@media (max-width: 768px) {
  .dropdown-content {
    max-height: 300px; /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
  }

  .dropdown-column {
    width: 200%;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Optional: Better UX */
  .dropdown-content::-webkit-scrollbar {
    width: 5px;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
  }
}
/* General Dropdown Fix */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
}

/* Fix the dropdown content positioning */
.dropdown-content {
  position: absolute;
  top: 100%; /* Directly below the dropdown button */
  left: 0;
  display: flex;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 15px 10px;
  gap: 20px;
  width: max-content;
  border-radius: 5px;
}

/* Each column */
.dropdown-column {
  width: 200px;
}

/* Mobile Specific Fix */
@media (max-width: 768px) {
  .dropdown-content {
    position: static; /* Stops overlapping on mobile */
    display: block;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: none;
    background: none;
    padding: 0;
  }

  .dropdown-column {
    width: 100%;
  }

  .dropdown-content::-webkit-scrollbar {
    width: 5px;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
  }
}
.dropdown-content {
  display: none; /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 15px 10px;
  gap: 20px;
  width: max-content;
  border-radius: 5px;
}

.dropdown-column {
  width: 200px;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    display: none; /* still hidden by default */
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: none;
    background: #fff;
    padding: 10px;
    width: 100%;
  }

  .dropdown-column {
    width: 100%;
  }
}
/* 1) Base styles (desktop) */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  padding: 10px;
  z-index: 999;
  width: max-content;    /* shrink‐to‐fit by default */
  min-width: 300px;      /* ensure each column fits */
}

.dropdown-column {
  width: 200px;
  padding: 0 10px;
  box-sizing: border-box;
}

/* utility class to show it */
.dropdown.open .dropdown-content {
  display: flex;
  gap: 20px;
}

/* 2) Mobile override */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;      /* flow normally under the toggle */
    display: none;         /* hidden by default */
    flex-direction: column;
    width: 200%;           /* full width of its container */
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown-column {
    width: 100%;
    padding: 5px 0;
  }

  /* show it when the parent has .open */
  .dropdown.open .dropdown-content {
    display: block;
  }
}


/* ===== NAVBAR FIX ===== */
header#header {
  background: #ffffff !important;   /* Force white background */
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

header#header .logo {
  color: #1a1a1a !important;  /* Dark logo text */
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

header#header .logo i {
  color: #d4a762; /* Accent color */
  margin-right: 6px;
}

/* Nav Links */
header#header .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

header#header .nav-links li a {
  color: #333 !important;       /* Dark text */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 5px;
  transition: color 0.3s ease;
}

header#header .nav-links li a:hover {
  color: #d4a762 !important;   /* Accent hover */
}

/* Dropdown */
header#header .dropdown-content {
  background: #fff !important;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

header#header .dropdown-content a {
  color: #333 !important;
}

header#header .dropdown-content a:hover {
  color: #d4a762 !important;
}

/* Mobile Menu */
header#header .mobile-menu {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 992px) {
  header#header .mobile-menu {
    display: block;
  }

  header#header .nav-links {
    display: none;
    flex-direction: column;
    background: #fff !important;  /* White mobile menu */
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    padding: 15px;
    border: 1px solid #eee;
  }

  header#header .nav-links.show {
    display: flex;
  }

  header#header .nav-links li a {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
  }
}


footer {
    background: var(--dark, #111);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-subscribe {
    display: flex;
    margin-bottom: 20px;
}

.footer-subscribe input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer-subscribe button {
    background: var(--accent, #f1c05f);
    color: #000;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social img {
    height: 30px;
}

.footer-payment img {
    height: 32px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer Links Row */
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent, #f1c05f);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-contact-icon {
    margin-right: 10px;
    color: var(--accent, #f1c05f);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-links-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-links-row {
        grid-template-columns: 1fr;
    }
}
