/* ==========================================================================
   1. Base Core & Reset Rules (Global Settings)
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* html, body {
  scroll-behavior: smooth;

  overscroll-behavior: none; 
  overscroll-behavior-y: none;
} */
 html, body {
  scroll-behavior: smooth !important;
  overscroll-behavior: none;
}

/* Agar koi element focused ho tab bhi smooth rahe */
html:focus-within {
  scroll-behavior: smooth !important;
}



html {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.6;
  scroll-behavior: smooth;
  min-height: 100vh;      /* height:100% ki jagah min-height:100vh use karo */
  display: flex;
  flex-direction: column;

}

/* Common Global Layout Elements */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: #6b7280;
}

/* ==========================================================================
   2. Header Navigation Area (Phixer Transparent/Dark Frosted Glass Theme)
   ========================================================================== */
.navbar {
  background-color: rgba(17, 24, 39, 0.85); /* Dark translucent background */
  backdrop-filter: blur(10px); /* Frosted glass look */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed; /* Floats over the hero imagery */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo-text .dot {
  color: #3b82f6; /* Electric Brand Blue */
}

.nav-links a {
  text-decoration: none;
  color: #d1d5db; /* Balanced gray-white links */
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.btn-primary {
  background-color: #ffffff;
  color: #111827;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 20px; /* Pill button shape */
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

/* ==========================================================================
   3. Home Page Component Blueprints (Hero Section)
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('images/hero-bg.jpg'); /* Your unique AI generated backdrop file */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
   border-radius: 20px;
 overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 24, 39, 0.65), rgba(17, 24, 39, 0.45));
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 20px;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-hero-white {
  background-color: #ffffff;
  color: #111827;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.btn-hero-white:hover {
  background-color: #f3f4f6;
}

.btn-hero-trans {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-hero-trans:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* ==========================================================================
   4. The Core 6 Services Unified Grid (Used on Home & Services Page)
   ========================================================================== */
.services-section {
  background-color: #f9fafb;
  padding: 90px 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Automatic column distribution */
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  padding: 20px 20px 10px 20px;
  color: #111827;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  padding: 0 20px 25px 20px;
  line-height: 1.6;
  text-decoration: none !important;
}

.service-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
}

/* See All Portfolio Area Button */
.see-more-container {
  text-align: center;
  margin-top: 50px;
}

.btn-see-more {
  display: inline-block;
  background-color: #111827;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background-color: #3b82f6;
  transform: translateY(-2px);
}

/* ==========================================================================
   5. Before & After Component Grid (Projects Page Geometry Layout)
   ========================================================================== */
.portfolio-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 50px; /* Uniform gap structure */
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Pure side-by-side distribution template */
  gap: 24px;
}

.ba-box {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ba-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(17, 24, 39, 0.8);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.label-badge.target {
  background: #3b82f6;
}

/* ==========================================================================
   6. Custom Content Pages Layout Headers (Services & Projects Banners)
   ========================================================================== */
.services-header-banner,
.portfolio-header-banner {
  background-color: #111827; 
  padding: 140px 0 70px 0; 
   text-align: center;
}

.services-detail-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-title-container h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-title-container p {
  color: #9ca3af;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
} 

/* ========================================================
   PREMIUM FULL-WIDTH GALLERY HERO FIX (CRYSTAL CLEAR DESIGN)
   ======================================================== */
    /* ========================================================
   ULTRA-CLEAN PREMIUM GALLERY HERO (LIGHT & CRISP)
   ======================================================== */

.premium-gallery-hero {
    min-height:450px; 
    height: 800px; 
    width: 100%;
     border-radius: 20px;
     overflow: hidden;
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    padding: 120px 20px 60px 20px; 
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}

/* Light & soft overlay mask layout to make text readable without blocking the photo */
.premium-gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); /* Halka soft dark layer taaki photo bhi saaf dikhe aur text bhi sharp rahe */
    z-index: 1;
}

/* Inner Core Content Wrapper */
.gallery-hero-content {
    max-width: 850px;
    width: 100%;
    color: #ffffff !important;
    position: relative;
    z-index: 2; 
    margin: 0 auto;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.gallery-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ffffff !important;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile Screens Optimization */
@media (max-width: 768px) {
    .premium-gallery-hero { 
        min-height: 350px;
        padding-top: 110px; 
    }
    .gallery-hero-content h1 { font-size: 2.2rem; }
    .gallery-hero-content p { font-size: 1.05rem; }
}



/* ==========================================================================
   7. Media Video Frame Area & Client Review Elements
   ========================================================================== */
.video-banner-section {
  background-color: #f9fafb;
  padding: 80px 0;
  text-align: center;
}

.video-banner-container h2 {
  font-size: 28px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #111827;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.responsive-video {
  width: 100%;
  display: block;
}

/* Review Cards Details */
.reviews-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-grid {
  display: flex;
  justify-content: center;
}

.review-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.stars {
  color: #fbbf24;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.review-date {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.review-text {
  font-size: 16px;
  color: #4b5563;
  font-style: italic;
}

/* ==========================================================================
   8. Contact Us Dashboard Component Geometry Layout
   ========================================================================== */
.contact-header-banner {
  background-color: #111827;
  padding: 140px 0 70px 0;
  text-align: center;
}

.contact-main-section {
  padding: 90px 0;
  background-color: #f9fafb; /* Light sleek contrast gray split grid display background */
}

.contact-layout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Perfect balanced proportion between text card & form blocks */
  gap: 60px;
  align-items: start;
}

/* Left Side Panel Info Display rules */
.contact-info-panel h3,
.contact-form-panel h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.panel-intro-text {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-blocks-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.info-item-card {
  display: flex;
  gap: 20px;
  align-items: start;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.item-icon {
  font-size: 24px;
  line-height: 1;
}

.item-text-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.item-text-details p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

/* Social Media Matrix Setup */
.socials-matrix-area h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 15px;
}

.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-chip {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  color: #ffffff;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  filter: brightness(0.92);
}

/* Real color codes matching global architecture portals */
.fb-color { background-color: #1877f2; }
.li-color { background-color: #0a66c2; }
.ig-color { background-color: #e1306c; }
.sk-color { background-color: #00aff0; }

/* Right Side Contact Form Box Design layout */
.contact-form-panel {
  background-color: #ffffff;
  padding: 45px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.submission-form-blueprint {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.form-input-group input,
.form-input-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  color: #111827;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-group input:focus,
.form-input-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12); /* Modern focus glow box indicator shadow ring */
}

.btn-submit-action {
  font-family: 'Inter', sans-serif;
  background-color: #111827; /* Clean uniform business dark action fill */
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: start; /* Keeps button naturally compact left side aligned */
  margin-top: 10px;
}

.btn-submit-action:hover {
  background-color: #2563eb; /* Lights up brand corporate blue on focus hover interaction */
}

/* Active navigation state helper override rules */
.active-btn {
  background-color: #ffffff !important;
  color: #111827 !important;
}

/* ==========================================================================
   9. Capabilities Grid & Narrative Rows Layout Configuration
   ========================================================================== */
.capabilities-section {
  padding: 80px 0;
  background-color: #f9fafb; /* Soft gray split */
}

.capabilities-container,
.narratives-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sub-section-title {
  text-align: center;
  margin-bottom: 45px;
}

/* 18-Point Capabilities Grid Layout (3 Columns Layout) */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.capability-item {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.capability-item span {
  color: #10b981; /* Premium Emerald Green for checks */
  font-weight: 700;
  font-size: 16px;
}

/* Alternating Narrative Sections Split Architecture */
.detailed-narratives-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.narratives-container {
  display: flex;
  flex-direction: column;
  gap: 90px; /* Healthy vertical separation gap */
}

.narrative-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Image vs Paragraph proportions */
  gap: 60px;
  align-items: center;
}

/* Handles the zigzag flipping sequence */
.narrative-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.narrative-image {
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.narrative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.narrative-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.narrative-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Inline Service Action Hyperlinks */
.btn-narrative-action {
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-narrative-action:hover {
  color: #1d4ed8;
  transform: translateX(4px); /* Moves tiny bit forward like an arrow click shift */
}

/* ==========================================================================
   10. Clickable Image Card & Interactive Dropdown Mechanics
   ========================================================================== */
.narrative-image-clickable {
  position: relative;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.narrative-image-clickable img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Modern overlay that shows 'Click Me' hint on hover */
.click-hint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.click-hint-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.narrative-image-clickable:hover .click-hint-overlay {
  opacity: 1; /* Shows overlay on hover */
}

.narrative-image-clickable:hover img {
  transform: scale(1.03);
}

/* Dropdown Grid Wrapper Geometric Settings */
.showroom-wrapper {
  width: 100%;
  grid-column: span 2; /* Spans full width across the alternating row grid layout */
  margin: 20px 0;
  transition: all 0.4s ease;
}

.hide-showroom {
  display: none !important; /* Hides image rows mesh by default layout settings */
}

.showcase-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Exactly 3 columns setup */
  gap: 25px;
}

.showcase-tile {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   11. Video Showcase Player & Premium Reviews Component
   ========================================================================== */
.video-showcase-section {
  background-color: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #f3f4f6;
}

.video-showcase-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  max-width: 800px;
  margin: 0 auto 45px auto;
  letter-spacing: -0.5px;
}

.video-player-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.showcase-fluid-video {
  width: 100%;
  display: block;
  background-color: #000000;
}

/* Review Board Updates */
.reviews-display-section {
  background-color: #f9fafb; /* Balanced grey separation */
  padding: 100px 0;
  border-top: 1px solid #f3f4f6;
}

.reviews-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-main-header {
  text-align: center;
  margin-bottom: 55px;
}

.reviews-main-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.reviews-main-header p {
  font-size: 16px;
  color: #6b7280;
}

.reviews-matrix-box {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 45px;
  max-width: 650px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

.rating-stars {
  color: #f59e0b; /* Deep Premium Amber Yellow for stars */
  font-size: 26px;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.testimonial-date {
  font-size: 13px;
  color: #9ca3af;
  display: block;
  margin-bottom: 22px;
}

.testimonial-quote {
  font-size: 17px;
  color: #4b5563;
  font-style: italic;
  line-height: 1.65;
}

/* ==========================================================================
   12. Corporate Branded Footer Blueprint
   ========================================================================== */
.main-corporate-footer {
  background-color: #111827; /* Rich elite dark block slate */
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px 20px; /* fixed: right/left padding now symmetric */
  display: grid;
  grid-template-columns: 2fr 1fr; /* Asymmetric grid weights */
  gap: 100px;
}

.footer-logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-dot {
  color: #3b82f6;
}

.footer-branding-column p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
}

.footer-links-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-links-column a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom-bar p {
  color: #6b7280;
  font-size: 13px;
}

/* ==========================================================================
   13. Dedicated Video Page Specific Layout Styles
   ========================================================================== */
.dedicated-page-banner {
  background-color: #111827; /* Sophisticated clean dark theme backdrop */
  padding: 130px 0 60px 0;
  text-align: center;
}

.dedicated-video-showcase {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
}

/* Elite Centered Framer Card for Streaming YouTube Screen */
.video-standalone-frame-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.iframe-widescreen-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Perfect uniform 16:9 cinematic display template ratio */
  height: 0;
}

.iframe-widescreen-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* ==========================================================================
   14. Virtual Staging Page Header Banner Geometry
   ========================================================================== */
.virtual-staging-header-banner {
  background-color: #111827; 
  padding: 140px 0 70px 0; 
  text-align: center;
}

.staging-display-section {
  padding: 90px 0;
  background-color: #ffffff;
}
/* Fixes the local MP4 blank space display issue */
.iframe-widescreen-ratio.local-video-fix video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000; /* Fallback black background color */
}
/* Premium Infinite Scrolling Structural Setup */
/* Recent Photos Auto-Moving Section Styling (LIGHT THEME MATCHED) */
.recent-photos-section {
    background-color: #ffffff; /* White background layout alignment */
    padding: 80px 0;
    color: #111111; /* Dark text alignment for clear readable interface */
    font-family: sans-serif;
    overflow: hidden;
    position: relative;
}

.recent-photos-container {
    max-width: 100%;
}

/* Full Width Center Header Configuration */
.recent-header-center {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center; /* Dynamic text balancing layout */
    padding: 0 20px;
}

.recent-header-center h2 {
    font-size: 2.6rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
}

.recent-header-center p {
    color: #555555; /* Neutral tone layout tracking description */
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Horizontal Infinite Scrolling Track */
.infinite-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollInfinite 28s linear infinite;
    padding-bottom: 10px;
}

.infinite-carousel-track:hover {
    animation-play-state: paused;
}

/* Individual Premium Image Cards Frame */
.recent-image-card {
    width: 330px;
    height: 420px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Clean modern soft shadow framework */
}

.recent-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.recent-image-card:hover img {
    transform: scale(1.04);
}

/* Text Overlay mask over cards */
.card-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
}

.card-text-overlay h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

/* Spacer row framework separating slider element from bottom button */
.slider-btn-space {
    margin-top: 55px;
    text-align: center;
}

/* Continuous Infinite Track Movement Script logic keyframe offset */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1770px); /* Adjusted exact width boundary matching (5 Cards * 330px + 5 * 24px gap) */
    }
}
/* ==========================================================================
   15. RESPONSIVE DESIGN — Tablet & Mobile Breakpoints
   ========================================================================== */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {

  .hero-content h1 {
    font-size: 46px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .contact-layout-container {
    grid-template-columns: 1fr; /* Stack info panel & form */
    gap: 40px;
  }

  .narrative-row,
  .narrative-row.reverse {
    grid-template-columns: 1fr; /* Stack image & text */
    gap: 30px;
  }

  .narrative-image,
  .narrative-image-clickable {
    height: 280px;
  }

  .footer-grid-container {
    grid-template-columns: 1fr; /* Stack footer columns */
    gap: 40px;
  }

  .ba-pair {
    grid-template-columns: 1fr; /* Stack before/after images */
  }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

  /* Navbar */
  .nav-container {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    margin: 0 8px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 90vh;
    padding-top: 100px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .btn-hero-white,
  .btn-hero-trans {
    text-align: center;
    width: 100%;
  }

  /* Section Titles */
  .section-title h2 {
    font-size: 26px;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Capabilities Grid */
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  /* Showcase Grid */
  .showcase-display-grid {
    grid-template-columns: 1fr;
  }

  .showroom-wrapper {
    grid-column: span 1;
  }

  /* Contact Page */
  .contact-form-panel {
    padding: 25px;
  }

  .page-title-container h1 {
    font-size: 28px;
  }

  /* Gallery Hero */
  .premium-gallery-hero {
    height: auto;
    min-height: 320px;
    padding: 100px 20px 40px 20px;
  }

  .gallery-hero-content h1 {
    font-size: 1.9rem;
  }

  .gallery-hero-content p {
    font-size: 1rem;
  }

  /* Recent Photos Carousel */
  .recent-image-card {
    width: 240px;
    height: 320px;
  }

  .recent-header-center h2 {
    font-size: 1.9rem;
  }

  /* Video Showcase */
  .video-showcase-container h2 {
    font-size: 24px;
  }

  /* Footer */
  .footer-grid-container {
    padding: 0 20px 30px 20px;
  }

  .footer-branding-column p {
    max-width: 100%;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

  .logo-text {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .contact-form-panel {
    padding: 18px;
  }

  .info-item-card {
    flex-direction: column;
    gap: 8px;
  }

  .recent-image-card {
    width: 200px;
    height: 280px;
  }
}
/* ==========================================================================
   16. Hamburger Menu (Mobile Navigation)
   ========================================================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-contact-btn {
  display: none;
}

@media (max-width: 768px) {

  .hamburger-btn {
    display: flex;
  }

  .nav-btn {
    display: none; /* Hide the desktop Contact Us button */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #111827;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 40px 30px;
    transition: right 0.35s ease;
    z-index: 1050;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 0;
    font-size: 18px;
    width: 100%;
  }

  .mobile-contact-btn {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
}
/* ==========================================================================
   17. Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
/* ==========================================================================
   18. Turnaround Time Trust Bar
   ========================================================================== */
.turnaround-bar {
  background-color: #111827;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.turnaround-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.turnaround-icon {
  font-size: 26px;
  line-height: 1;
}

.turnaround-text {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.turnaround-text span {
  color: #3b82f6;
  font-weight: 700;
}

@media (max-width: 480px) {
  .turnaround-text {
    font-size: 14px;
  }
  .turnaround-icon {
    font-size: 20px;
  }
}
/* ==========================================================================
   19. How It Works Section
   ========================================================================== */
.how-it-works-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #111827;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 22px auto;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
/* ==========================================================================
   20. FAQ Section
   ========================================================================== */
.faq-section {
  background-color: #f9fafb;
  padding: 90px 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.faq-question .faq-icon {
  font-size: 20px;
  color: #3b82f6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px 24px;
}

.faq-answer p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }
}

