:root {
      --primary: #d35400;
      --primary-dark: #ba4a00;
      --secondary: #2c3e50;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --accent: #e67e22;
      --success: #27ae60;
      --warning: #f39c12;
        /* layout helpers */
  --topbar-height: 40px;      /* height of .topbar on desktop */
  --header-height: 72px;      /* 👈 add this */
  --offer-height: 0px;        /* 👈 add this (set >0 if banner visible) */
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body, html {
      font-family: 'Open Sans', sans-serif;
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
/* === Header (fixed, below topbar + optional offer banner) === */
#header{
  position: fixed;
  top: calc(var(--topbar-height) + var(--offer-height));
  left: 0;
  width: 100%;
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,.1);
  z-index: 1400;
  transition: top .25s ease, padding .25s ease;
  padding: 12px 0;
}
#header.scrolled{ padding: 8px 0; box-shadow:0 2px 20px rgba(0,0,0,0.15); }

    header.scrolled {
      padding: 8px 0;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo h1 {
      font-size: 1.8rem;
      color: var(--secondary);
      margin: 0;
    }
    
    .logo span {
      color: var(--primary);
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
    }
    
    .nav-menu li {
      margin: 0 15px;
    }
    
    .nav-menu a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s;
    }
    
    .nav-menu a:hover {
      color: var(--primary);
    }
    
    .cta-button {
      background: var(--primary);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
    }
    
    .cta-button:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(211, 84, 0, 0.4);
    }
    
    .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Limited Time Offer Banner */
    .offer-banner {
      background: linear-gradient(90deg, var(--primary), var(--accent));
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 0.9rem;
      position: relative;
      z-index: 999;
    }
    
    .offer-banner .close-offer {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
    }
    
    .slider {
      width: 100%;
    }
    
    section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 100px 40px 60px;
      position: relative;
     min-height: calc(100vh - var(--topbar-height) - var(--header-height) - var(--offer-height));

    }
    
    .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Hero Section - Conversion Optimized */
.hero{
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8Y29uc3RydWN0aW9ufGVufDB8fDB8fHww&auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  color:#fff;
  /* REMOVE the following two lines:
     padding-top: 136px;
     padding-top: calc(var(--topbar-height) + var(--header-height) + var(--offer-height) + 24px);
  */
  padding-top: 15px;   /* or 0 for completely flush */
  text-align:center;
}
    
    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 40px;
    }
    
    .hero-text {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #fff;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-tagline {
      font-size: 1.8em;
      margin-bottom: 25px;
      font-weight: 300;
      color: var(--accent);
    }
    
    .hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .urgency-badge {
      display: inline-block;
      background: var(--warning);
      color: white;
      padding: 8px 15px;
      border-radius: 30px;
      font-size: 0.9rem;
      margin-bottom: 20px;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    /* Base button */
.btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.btn-outline {
  background: #fff;                   /* solid white instead of shaded */
  border: 2px solid var(--primary);
  color: var(--primary);              /* text always primary */
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--primary);         /* solid primary on hover */
  color: #fff;                        /* text turns white */
}

.btn-success {
  background: var(--success);
}

.btn-success:hover {
  background: #219653;
}
a.btn, a.btn-large, a.btn-outline, a.btn-success {
  text-decoration: none;
  color: #fff;           /* default for buttons */
}

a.btn-outline {
  color: var(--primary); /* special for outline */
}

/* ========== TOPBAR (visible at top, hides as soon as you scroll) ========== */
.topbar{
  position: fixed;
  top: 0; left: 0; width: 100%;
  background:#0f172a; color:#fff;
  font-size:14px;
  padding:4px 12px;
  z-index:1500;
  transform: translateY(0);
  transition: transform .25s ease;
}
.topbar.hidden{ transform: translateY(-100%); }

.topbar-container{
  max-width:1200px; margin:0 auto; padding:0 16px;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
}

/* ========== HEADER (stays fixed, snaps to top when scrolling) ========== */
#header{
  position: fixed;
  top: 40px;               /* starts just under the topbar (~topbar height) */
  left: 0; width: 100%;
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,.1);
  z-index: 1400;
  transition: top .25s ease;
}
/* Topbar buttons and select same height */
.topbar .cta,
.topbar select {
  height: 32px;              /* same height for both */
  line-height: 32px;
  font-size: 13px;
  border-radius: 4px;
  padding: 0 12px;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Specific styling for CTA button */
.topbar .cta {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar .cta:hover {
  background: var(--primary-dark);
}

/* Make select look consistent */
.topbar select {
  background: #fff;
  color: var(--dark);
  border: 1px solid #ddd;
}

/* Content never sits under header */
:root{ --page-offset: 100px; }  /* fallback */
body{
  padding-top: calc(var(--topbar-height) + var(--header-height) + var(--offer-height));
}

/* (Optional) keep your existing .btn / .nav styles … */

    .appointment-form {
      background: rgba(255, 255, 255, 0.95);
      padding: 30px;
      border-radius: 12px;
      max-width: 450px;
      color: var(--dark);
      flex: 1;
      min-width: 280px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      position: relative;
    }
    
    .form-header {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .form-header h3 {
      color: var(--secondary);
      margin-bottom: 5px;
    }
    
    .form-badge {
      display: inline-block;
      background: var(--success);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      margin-top: 5px;
    }
    
    .appointment-form form {
      display: grid;
      gap: 15px;
      width: 100%;
    }
    
    input, textarea, select {
      padding: 14px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 1em;
      font-family: 'Open Sans', sans-serif;
      width: 100%;
      transition: border 0.3s;
    }
    
    input:focus, textarea:focus, select:focus {
      border-color: var(--primary);
      outline: none;
    }
    
    textarea {
      min-height: 100px;
      resize: vertical;
    }
    
    /* Trust Badges */
    .trust-badges {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 0.9rem;
    }
    
    .trust-badge i {
      font-size: 1.5rem;
    }
    
    /* Section Headers */
    .section-header {
      text-align: center;
      margin-bottom: 50px;
      width: 100%;
    }
    
    h2 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }
    
    h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .section-subtitle {
      font-size: 1.2em;
      color: var(--gray);
      max-width: 800px;
      margin: 0 auto;
    }
    
    /* Stats Section with Counter Animation */
    .stats {
      background: var(--secondary);
      color: white;
      padding: 60px 0;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      text-align: center;
    }
    
    .stat-item {
      padding: 20px;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 10px;
    }
    
    /* NEW: Specialization Section */
    .specialization {
      background: #fff;
      padding: 60px 0;
    }
    
    .specialization-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .specialization-card {
      background: var(--light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }
    
    .specialization-card:hover {
      transform: translateY(-5px);
    }
    
    .specialization-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .specialization-info {
      padding: 25px;
    }
    
    .specialization-info h3 {
      color: var(--secondary);
      margin-bottom: 15px;
    }
    
    /* NEW: Design Services Section */
    .design-services {
      background:  #fff;
      padding: 60px 0;
    }
    
    .design-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .design-tab {
      padding: 12px 25px;
      background: #fff;
      border: none;
      border-radius: 30px;
      margin: 0 10px 10px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
    }
    
    .design-tab.active {
      background: var(--primary);
      color: white;
    }
    
    .design-content {
      display: none;
    }
    
    .design-content.active {
      display: block;
    }
    
    .design-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .design-feature {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    /* NEW: Process Section */
    .process {
      background: var(--light);
      padding: 60px 0;
    }
    
    .process-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-top: 50px;
      flex-wrap: wrap;
    }
    
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--primary);
      z-index: 1;
    }
    
    .process-step {
      text-align: center;
      position: relative;
      z-index: 2;
      flex: 1;
      min-width: 200px;
      margin-bottom: 30px;
    }
    
    .step-number {
      width: 80px;
      height: 80px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 auto 20px;
    }
    
    /* Guarantee Section */
    .guarantee {
      background: #fff;
      padding: 60px 0;
      text-align: center;
    }
    
    .guarantee-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .guarantee-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }
    
    .guarantee-card:hover {
      transform: translateY(-5px);
    }
    
    .guarantee-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    /* Client Logos */
    .clients {
      background: var(--light);
      padding: 40px 0;
      text-align: center;
    }
    
    .client-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 30px;
    }
    
    .client-logo {
      opacity: 0.6;
      transition: opacity 0.3s;
      height: 40px;
    }
    
    .client-logo:hover {
      opacity: 1;
    }
    
    /* Projects Showcase */
    .projects {
      background: var(--light);
      padding: 60px 0;
    }
    
    .project-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .filter-btn {
      padding: 8px 20px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .filter-btn.active, .filter-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    
    
/* === PROJECTS SHOWCASE SECTION === */
.projects {
  padding: 80px 20px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  color: #475569;
}

.project-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 18px;
  margin: 4px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #d65a00;
  color: #fff;
  border-color: #d65a00;
}


.btn.btn-large {
  background: #d65a00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  align:center;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.btn-large:hover {
  background: #b94d00;
}

    
    /* Testimonials with Video */
    .testimonials {
      background: #fff;
      padding: 60px 0;
    }
    
    .testimonials-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .testimonial-video {
      background: var(--light);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .testimonial-video i {
      font-size: 4rem;
      color: var(--primary);
      cursor: pointer;
    }
    
    .testimonial-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .testimonial-slide {
      background: var(--light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 20px;
      display: none;
    }
    
    .testimonial-slide.active {
      display: block;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      padding: 0 30px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
      content: '"';
      font-size: 3rem;
      color: var(--primary);
      position: absolute;
      opacity: 0.3;
    }
    
    .testimonial-text::before {
      top: -20px;
      left: 0;
    }
    
    .testimonial-text::after {
      bottom: -40px;
      right: 0;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
    }
    
    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .author-info h4 {
      color: var(--secondary);
      margin-bottom: 5px;
    }
    
    /* CTA Banner with Countdown */
    .cta-banner {
      background: linear-gradient(to right, var(--primary), var(--primary-dark));
      color: white;
      padding: 60px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .cta-banner h2 {
      color: white;
      margin-bottom: 20px;
    }
    
    .cta-banner h2:after {
      background: #fff;
    }
    
    .countdown {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0 30px;
    }
    
    .countdown-item {
      background: rgba(255,255,255,0.2);
      padding: 10px 15px;
      border-radius: 5px;
      min-width: 70px;
    }
    
    .countdown-number {
      font-size: 1.8rem;
      font-weight: 700;
    }
    
    .countdown-label {
      font-size: 0.8rem;
      opacity: 0.8;
    }
    
    /* FAQ Section */
    .faq {
      background: var(--light);
      padding: 60px 0;
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }
    
    .faq-answer {
      padding: 0 20px 20px;
      display: none;
    }
    
    .faq-active .faq-answer {
      display: block;
    }
    
    /* Contact Section */
    .contact {
      background: #fff;
    }
    
    .contact-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      width: 100%;
      max-width: 1200px;
    }
    
    .contact-info {
      flex: 1;
      min-width: 300px;
    }
    
    .contact-form {
      flex: 1;
      min-width: 300px;
    }
    
    .contact-details {
      margin-top: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: #fff;
    }
    /* Exit Popup Overlay */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.exit-popup .popup-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.3s ease;
}

/* Close Button (X) */
.exit-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Popup animation */
@keyframes popupFade {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

    
    /* Footer */
    footer {
      background: var(--secondary);
      color: #fff;
      padding: 40px 0 20px;
      text-align: center;
    }
    
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .footer-column {
      flex: 1;
      min-width: 250px;
    }
    
    .footer-column h3 {
      color: var(--accent);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--accent);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: #fff;
      transition: all 0.3s;
    }
    
    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    .copyright {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #ccc;
      font-size: 0.9rem;
    }
    
    /* Floating CTA Button */
    .floating-cta {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: var(--success);
      color: white;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 998;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
    }
    
    .floating-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
.live-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
}

#chat-toggle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f97316; /* orange */
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-options {
  position: absolute;
  bottom: 65px;
  right: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-options a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chat-options a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

/* When active, show the icons */
.live-chat.active .chat-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

    /* Progress bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: var(--primary);
      width: 0;
      z-index: 1500;
      transition: width 0.2s;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 2.8em;
      }
      
      .hero-tagline {
        font-size: 1.5em;
      }
      
      .testimonials-container {
        grid-template-columns: 1fr;
      }
      
      .process-steps {
        flex-direction: column;
        align-items: center;
      }
      
      .process-steps::before {
        display: none;
      }
    }
    
    @media (max-width: 768px) {
        :root{
    --topbar-height: 36px;
    --header-height: 64px;
  }
      .header-container {
        flex-direction: column;
        text-align: center;
      }
      
      .nav-menu {
        margin-top: 15px;
        flex-direction: column;
        display: none;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .nav-menu li {
        margin: 10px 0;
      }
      
      .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }
      
      section {
        padding: 100px 20px 40px;
        min-height: auto;
      }
      
      .hero-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }
      
      .hero-text, .appointment-form {
        max-width: 100%;
        width: 100%;
      }
      
      .hero h1 {
        font-size: 2.2em;
      }
      
      .hero-tagline {
        font-size: 1.3em;
      }
      
      .hero-subtitle {
        font-size: 1em;
      }
      
      h2 {
        font-size: 2em;
      }
      
      .footer-content {
        flex-direction: column;
        gap: 30px;
      }
      
      .floating-cta {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8em;
      }
      
      .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
      }
      
      .appointment-form {
        padding: 20px;
      }
      
      .countdown {
        gap: 5px;
      }
      
      .countdown-item {
        min-width: 60px;
        padding: 8px 10px;
      }
      
      .countdown-number {
        font-size: 1.5rem;
      }
    }
    
    /* === Topbar === */
/* Topbar fixed at top */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;                 /* allow height to adjust */
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  z-index: 2000;
  padding: 6px 16px;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;          /* ✅ vertically center everything */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;                    /* space between left/right */
}
.topbar {
  height: auto;        /* ✅ let it shrink naturally */
  padding: 4px 12px;   /* tighter vertical space */
}

/* Left side (phone + email) */
.topbar-left a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  white-space: nowrap;
}
.topbar .sep {
  margin: 0 6px;
  opacity: .5;
}

/* Right side (buttons, language, socials) */
.topbar-right {
  display: flex;
  align-items: center;          /* ✅ keep everything inline */
  gap: 12px;
  flex-wrap: nowrap;
}

.btn.cta {
  background: #fb8500;
  color: #111;
  padding: 6px 12px;            /* ✅ button fits in topbar */
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Language select */
.lang-switch select {
  padding: 4px 6px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

/* Social icons inline */
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Topbar links (phone, email, social icons) */
.topbar a {
  text-decoration: none !important;  /* remove underline */
  color: #fff;                       /* keep them white */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--primary);              /* highlight color on hover */
}

/* Social icons spacing */
.topbar .socials a {
  margin-left: 8px;
  font-size: 14px;
}

/* === Header === */
#header {
  position: fixed;
  top: 36px; /* below topbar */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Push page content below both */
body {
  padding-top: 120px; /* topbar + header height */
}


/* ===== Topbar mobile adjustments ===== */
@media (max-width: 768px) {
  /* Hide text for phone/email links, keep only icons */
  .topbar-left a {
    font-size: 0;         /* hide text */
  }
  .topbar-left a i {
    font-size: 18px;      /* keep visible icons */
    margin-right: 0; 
  }

  /* Hide consultation button on mobile */
  .topbar .btn.cta {
    display: none !important;
  }

  /* Make topbar content align neatly */
  .topbar-container {
    justify-content: space-between;
    align-items: center;
  }

  .topbar-left, 
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;            /* spacing between icons */
  }

  /* Social icons style */
  .socials a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* Common styles */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  gap: 12px;
}

/* Common styles */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  gap: 12px;
}

/* Common styles */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  gap: 12px;
}

/* Default positioning */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Desktop / Laptop view */
@media (min-width: 769px) {
  .download-buttons {
    bottom: 100px;   /* above Let's Build */
    left: 20px;
  }

  .download-btn {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: background 0.3s ease, transform 0.3s ease;
    max-width: 140px;  /* smaller than Let's Build */
  }

  .download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }

  .download-btn span {
    display: inline; /* show text */
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .download-buttons {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    gap: 8px;
  }

  .download-btn {
    writing-mode: vertical-lr;   /* vertical button text */
    text-orientation: upright;
    background: var(--primary);
    color: #fff;
    padding: 10px 6px;
    border-radius: 0 6px 6px 0;  /* attached to left */
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: auto;
    height: 120px; /* tall vertical button */
  }

  .download-btn i {
    font-size: 16px;
  }

  .download-btn span {
    margin-top: 6px;
  }

  .download-btn:hover {
    background: var(--primary-dark);
  }
}
/* Default positioning */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Default positioning */
.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Desktop / Laptop view */
@media (min-width: 769px) {
  .download-buttons {
    bottom: 100px;   /* above Let's Build */
    left: 20px;
  }

  .download-btn {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: background 0.3s ease, transform 0.3s ease;
    max-width: 140px;  /* smaller than Let's Build */
  }

  .download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .download-btn {
    position: fixed;
    left: 0;
    transform: none;
    writing-mode: vertical-rl;   /* make text vertical */
    text-orientation: mixed;
    border-radius: 0;            /* remove oval */
    width: 40px;                 /* rectangle */
    height: auto;
    padding: 10px 5px;
    justify-content: center;
    font-size: 12px;
    gap: 4px;
  }

  .download-btn .custom-download-icon {
    margin-bottom: 8px;
  }

  /* Stack buttons vertically */
  .download-btn.brochure {
    top: 40%;   /* first button */
  }

  .download-btn.packages {
    top: 60%;   /* second button */
  }
}
/* Hero Section */
.project-hero {
  position: relative;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.project-hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 100px 20px;
}
.project-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.project-location {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Overview */
.project-overview .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 60px 20px;
}
.overview-text { flex: 2; }
.overview-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-weight: 600;
  color: var(--secondary);
}
.stat-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.project-gallery {
  padding: 60px 20px;
  text-align: center;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 15px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.collage-item:hover img {
  transform: scale(1.08);
}

/* Size variations for collage effect */
.collage-item.wide {
  grid-column: span 2;
}

.collage-item.tall {
  grid-row: span 2;
}

/* Responsive tweak */
@media(max-width: 768px) {
  .collage-grid {
    grid-auto-rows: 150px;
  }
}
/* === FIXED PROJECT GRID LAYOUT === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  align-items: stretch;
}

/* Each card is a flex column to keep image + text vertical */
.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.project-info {
  padding: 20px;
  color: #1e293b;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700; /* bold titles */
  color: #1e293b;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 10px;
}

/* Ensure .more-projects keeps grid layout */
.more-projects {
  display: none;
}
.more-projects.show {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.more-projects.show {
  display: grid;
}
/* Ensure all projects are arranged vertically (grid layout) */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 3 per row */
  gap: 1.5rem;
}

/* Hidden extra projects section */
.more-projects {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* vertical grid layout too */
  gap: 1.5rem;
  margin-top: 1.5rem;
}


