        :root {
            --primary-color: #00A6B2;
            --dark-color: #112A32;
            --light-color: #F0F5F4;
            --text-color: #333;
            --muted: #6b6b6b;
            --border: #e9ecec;
            --max-width: 1100px;
            --header-h: 72px;
            --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
      

    *{box-sizing:border-box;margin:0;padding:0}
    html {
  height: 100%;
  scroll-behavior: smooth;
  /* This is the magic line: prevents sticky header from covering content */
  scroll-padding-top: var(--header-h); 
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background: #fff;
  line-height: 1.5;
  height: 100%;
  padding-top: var(--header-h);
  /* 🛑 ADD THIS LINE TO FIX SCROLLING 🛑 */
  overflow: hidden; 

}
main {
  /* Set the height to 100% of the screen minus the header height */
  height: calc(100vh - var(--header-h)); 
  
  /* Enable vertical scrolling only inside this container */
  overflow-y: auto; 
  
  /* Ensure no horizontal scrollbar appears */
  overflow-x: hidden; 
}

    .container{max-width:var(--max-width);margin:0 auto;padding:0 20px}
    
    /* --- UTILITY BAR STYLES --- */
    
.utility-bar {
    background: #0a0a0a; /* Deep premium black */
    color: #fff;
    font-size: 13px;
    height: 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 301; /* Must be higher than header */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.utility-left, .utility-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.utility-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}


.utility-bar a:hover {
    color: var(--primary-color);
}
#utility-bar{
  transition: transform .25s ease, opacity .25s ease;
}

#utility-bar.hidden{
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}


/* Container for the icons */
.social-icons {
    display: flex;
    gap: 12px; /* 🌟 This sets the exact 12px space between icons */
    align-items: center;
}

/* Individual Icon Style */
.social-icons a {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease; /* Smooth transition */
}

/* 🌟 The Brand Color Hover Effect */
.social-icons a:hover {
    opacity: 1;
    color: var(--primary-color) !important; /* Changes to your brand teal/aqua */
}

.divider {
    color: rgba(255,255,255,0.2);
    margin: 0 5px;
}

.whatsapp-link {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* --- ADJUST HEADER POSITION --- */
header {
    /* Since utility bar is 40px, move header down */
    top: 40px !important; 
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {

/* Show hamburger on mobile */
.menu-toggle {
    display: block;
}

/* Hide desktop nav + CTA on mobile */
.nav-center,
.header-cta {
    display: none !important;
}
}

    /* 2. Reset the header position to the very top */

    /* 3. Adjust body padding so there is no gap at the top */
    body {
        padding-top: var(--header-h) !important;
    }

    /* Ensure the mobile menu toggle stays accessible */
    .menu-toggle {
        top: 15px;
    }


    /* Header */
  /* ================= HEADER (CLEAN + RESPONSIVE) ================= */

header {
  height: var(--header-h);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  position: fixed;
  top: 40px;              /* stays below utility bar */
  width: 100%;
  z-index: 300;
  display: flex;
  align-items: center;
}

/* inner layout */
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* desktop nav */
.nav-center {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-center a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  padding: 6px 2px;
  white-space: nowrap;
}
.nav-center a:hover {
  color: var(--primary-color);
}


/* buttons */
.btn {
  display: inline-block;
  padding: .65rem 1.05rem;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: 0;
  text-decoration: none;
}

.header-cta {
  padding: .65rem 1.1rem;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.header-cta {
  transition: all .25s ease;
}

.header-cta:hover {
  filter: brightness(.92);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}
.header-cta{
  display:flex;
  align-items:center;
  gap:8px;
}

.header-cta i{
  font-size:18px;
}
/* Default — no shadow at top */
header{
  transition: box-shadow .25s ease;
}

/* Shadow after scroll */
header.scrolled{
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}


/* hamburger: hidden desktop */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

/* mobile overlay menu */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  z-index: 9999;
  transition: .4s ease-in-out;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

.mobile-links a {
  display: block;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: left;
}
.m-contact-item {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.m-contact-item i {
  color: var(--primary-color);
}


/* ============ MOBILE ============ */
@media (max-width: 768px) {

  /* hide desktop menu + cta */
  .nav-center,
  .header-cta {
    display: none !important;
  }

  /* show hamburger */
  .menu-toggle {
    display: block;
  }
}


    .inner{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 20px}

    /* Reveal animation */
    .reveal { opacity: 0; transform: translateY(24px); will-change: opacity, transform; transition: opacity 600ms cubic-bezier(.2,.9,.2,1), transform 600ms cubic-bezier(.2,.9,.2,1); }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    .reveal-stagger > * { opacity: 0; transform: translateY(18px); }
    .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

    /* HERO */
   .hero{
      position:relative;
      width:100%;
      overflow:hidden;
      background:#000;
      /* --- ADDED: Full viewport height to fix 'fixed' header issue --- */
      min-height: clamp(520px, 100vh, 900px);

      /* --- ADDED: Flexbox centering and removing unnecessary styles --- */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero .hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.56);z-index:0}
    .hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:center;width:100%;padding:0}
    .hero-text{color:#fff;text-align:left;padding:12px 24px}
    .hero-text h1, .hero-text p.sub { color: #ffffff !important; } /* forced white per request */
    .hero p{color:#f1f6f6;font-size:1.02rem;max-width:720px;margin:0 auto;text-shadow:0 6px 18px rgba(0,0,0,.35)}
    /* 1. REPLACED: .hero-form - Now contains hooks for the moving border */
    /* --- REPLACEMENT: .hero-form (Base Container Setup) --- */
    .hero-form {
      background: transparent; /* Changed to transparent to let the stroke show */
      color: var(--text-color);
      border-radius: 12px;
      padding: 20px;
      box-shadow: none; /* Removed static shadow */
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
      
      /* Essential for containing the animated border layers: */
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    /* --- NEW 1: The Moving Stroke (::before) --- */
    .hero-form::before {
        content: '';
        position: absolute;
        inset: -2px; /* Makes the animated layer slightly larger (4px total) */
        border-radius: 14px;
        z-index: -1; /* Sits underneath the main content */
        /* Rotating cone gradient for the movement effect */
        background: conic-gradient(from 0deg, var(--primary-color) 0%, transparent 35%, var(--primary-color) 65%);
        animation: neon-rotate 4s linear infinite; /* Uses the existing keyframe */
        filter: blur(1px); /* A small blur to give it the thin glow */
    }
    
    /* --- NEW 2: The White Mask (::after) --- */
    .hero-form::after {
        content: '';
        position: absolute;
        inset: 2px; /* This leaves a 2px gap around the edge for the stroke */
        border-radius: 10px;
        background: #fff; /* Solid white center mask */
        z-index: 0; /* Sits between the animated stroke and the form content */
    }
    
    /* --- NEW 3: Lift Form Content (Inputs/Text) --- */
    .hero-form > * {
        position: relative;
        z-index: 2; /* Ensures all form inputs and text appear above the white mask */
    }

    /* 2. NEW: The Moving Neon Stroke Element */
    .hero-form::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 14px;
        z-index: -1;
        background: conic-gradient(from 0deg, var(--primary-color) 0%, transparent 35%, var(--primary-color) 65%);
        animation: neon-rotate 4s linear infinite;
        filter: blur(1px) brightness(1.2);
    }

    /* 3. ORIGINAL LINE 2 (KEPT AS-IS) */
    .hero-form input, .hero-form select, .hero-form button {
      width: 100%;
      padding: 11px 12px;
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-size: .96rem;
    }

    /* 4. REPLACED: .hero-form button - Now contains the pulse animation hook */
    .hero-form button {
      background: var(--primary-color);
      color: #fff;
      border: 0;
      font-weight: 800;
      cursor: pointer;
      animation: button-pulse 1.8s infinite; /* NEW: Hook for the pulsing animation */
      box-shadow: 0 0 0 0 rgba(0, 166, 178, 0.4) !important;
    }


    
    
/* WHY - icons (no mask, full width carousel) */
    .why {
    /* CHANGED: Use the light background variable to make the section stand out */
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
    .why-inner{width:100%;display:flex;flex-direction:column;align-items:left;gap:18px}
    .why .lead{text-align:left;color:var(--muted);font-weight:600;margin-top:4px}

    .carousel-viewport{width:100%;overflow:hidden;white-space:nowrap;padding:18px 0;box-sizing:content-box}
    .carousel-track{display:inline-flex;gap:34px;align-items:center;animation:scroll linear infinite;will-change:transform}
    .carousel-track:hover, .carousel-viewport:hover .carousel-track{animation-play-state:paused}
    @keyframes scroll { from { transform: translateX(0%);} to { transform: translateX(-50%);} }

    .carousel-card{flex:0 0 340px;text-align:center;padding:6px 4px;border-radius:6px;background:transparent;display:flex;flex-direction:column;justify-content:center;gap:6px;min-height:136px}
    .carousel-card i{font-size:56px;color:var(--primary-color);display:block;margin:0 auto 6px;line-height:1}
    .carousel-card h3{font-size:20px;font-weight:800;color:var(--dark-color);margin:0;text-align:center}
    .carousel-card p{margin:0;color:var(--muted);font-size:14px}

    /* NEW trust stats styling per your request */
    .trust-stats{width:100%;max-width:980px;display:flex;gap:28px;justify-content:center;align-items:stretch;margin-top:30px;padding:18px 10px 0;flex-wrap:wrap}
    .stat{flex:1 1 160px;text-align:center;padding:22px;border-radius:10px;background:transparent;display:flex;flex-direction:column;gap:6px;align-items:center;justify-content:center;min-width:140px}
    .stat .num{font-size:44px;line-height:1;color:var(--primary-color);font-weight:900}
    .stat .label{font-size:15px;color:var(--dark-color);font-weight:300;opacity:0.9;text-align:center}


 /* ⭐ OUR PRICE ESTIMATES SECTION (NO TOP/BOTTOM PADDING) */

/* ⭐ OUR PRICE ESTIMATES */
#price-estimates{
  background:#fff;
  /* padding handled by .fold */
}


.price-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align:center;
}

/* Heading */
#price-heading{
  font-size:28px;
  font-weight:800;
  color:var(--dark-color);
  margin-bottom:10px;
}

.price-sub{
  color:var(--muted);
  font-weight:600;
  margin-bottom:20px;
}

/* Grid – 4 on desktop */
.price-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}

/* Card */
.price-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition: all .25s ease;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;

  min-height: 210px;
}

/* Icon — brand tone but slightly darker */
.price-box i{
  font-size:26px;
  color: #0b7d8a;   /* slightly darker than brand */
  margin-bottom:6px;
}

/* Hover */
.price-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0,0,0,.12);
}

/* Title */
.price-box h4{
  margin:0;
  font-size:17px;
  font-weight:800;
  color:#111;
}

/* Label */
.price-label{
  font-size:12px;
  font-weight:700;
  color:#555;
  margin:2px 0 0;
}

/* Price (brand color, strong) */
.price-value{
  font-size:1.2rem;
  font-weight:800;
  color: var(--primary-color);
  margin:0 0 4px;
}

/* Description */
.note{
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

/* 📱 Mobile */
@media (max-width: 768px){
  #price-heading{ font-size:22px; }
  .price-cards{ grid-template-columns:1fr; }
}

/* 📲 Tablet */
@media (min-width: 769px) and (max-width: 1024px){
  .price-cards{ grid-template-columns: repeat(2, 1fr); }
}

 
    /* --- WHAT WE OFFER SECTION GRID --- */
.service-grid {
    display: grid !important; 
    /* This tells the browser to make 220px columns and fit as many as possible */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;

    gap: 20px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    justify-items: center; /* Centers cards in the grid slots */
}
/* THE CARD CONTAINER */
.service-card {
    display: block !important;
    width: 180px;
    height: 200px;
    perspective: 1000px;
}


/* THE FLIP MECHANISM */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Prevents seeing the "wrong" side */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   /* 🌟 THE 3D SHADOW: Soft and slightly spread */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
    
    background-color: #ffffff; /* Ensures shadow is visible against white */
    transition: box-shadow 0.3s ease; /* Smooth shadow transition */

}

/* --- FRONT SIDE (Icon & Name) --- */
.flip-card-front {
    background-color: #ffffff;
    color: var(--dark-color);
}

/* The Blue L-Shape Accent */
.flip-card-front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    border-top-left-radius: 8px;
}

.flip-card-front i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px; /* Increased gap as requested */
}

.flip-card-front h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* --- BACK SIDE (Price Information) --- */
.flip-card-back {
    background-color: var(--dark-color);
    color: #ffffff;
    transform: rotateY(180deg); /* Hidden by default */
    padding: 15px;
    text-align: center;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.price-value {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    display: block;

}
#offer-heading {
  text-align: center;
}

/* --- RESPONSIVE SETTINGS --- */

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
        gap: 12px;
        padding: 20px 0;
    }
    .service-card {
        width: 100%; /* Fits the grid column width */
        max-width: 165px; 
        height: 165px; /* Smaller square for mobile */
    }
    .flip-card-front i {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .flip-card-front h3 {
        font-size: 0.9rem;
    }
    .price-value {
        font-size: 18px;
    }
 }

/* Tablets & Small Laptops */
@media (min-width: 481px) and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    }
}

 

     /* PROCESS: left fixed square 480x480, right steps */
    .process{background:#fff;display:flex;align-items:center;justify-content:center;flex-direction:column}
    .process .section-heading{text-align:center;margin-bottom:16px;font-weight:800;font-size:28px;color:var(--dark-color)}
    .process-inner{width:100%;display:grid;grid-template-columns:1fr 440px;gap:32px;align-items:center;max-width:1100px}

    .process-left{
      width: 480px;
      height: 480px;
      max-width: 100%;
      border-radius:12px;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#f8faf9;
      flex-shrink:0;
    }
    .process-left img{
      width:480px;
      height:480px;
      object-fit:cover;
      display:block;
    }
    /* Option B: shrink proportionally on small screens but keep square */
    @media (max-width:520px){
      .process-left{
        width:90vw;
        height:90vw;
      }
      .process-left img{ width:100%; height:100%; object-fit:cover; }
      .process-inner{grid-template-columns:1fr;gap:20px}
    }

    .process-right{background:#fff;padding:22px;border-radius:12px;border:1px solid var(--border);box-shadow:0 12px 30px rgba(0,0,0,0.06);display:flex;flex-direction:column;align-items:center;gap:14px;justify-content:flex-start}
    .process-box-heading{font-weight:800;font-size:16px;color:var(--dark-color);text-align:center;margin-bottom:6px}

    .steps-bar{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;position:relative;padding:16px 6%;box-sizing:border-box}
    .steps-bar::before{content:'';position:absolute;left:6%;right:6%;height:4px;background:var(--border);z-index:0;border-radius:4px}
    .step-wrapper{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;width:calc((100% - 12% - 36px)/4);min-width:56px}
    .step-dot{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;color:var(--dark-color);border:2px solid transparent;background:#fff;cursor:pointer;transition:all .18s;font-size:18px;box-shadow:0 6px 16px rgba(0,0,0,0.05)}
    .step-dot.active{background:var(--primary-color);color:#fff;box-shadow:0 16px 40px rgba(0,166,178,0.16);border-color:var(--primary-color);transform:scale(1.06)}
    .step-main-title{font-size:18px;font-weight:700;color:var(--primary-color);text-align:center;margin-top:6px}
    .step-desc{color:var(--muted);font-weight:600;font-size:14px;text-align:center;margin-top:6px;max-width:360px}
    .process-cta-bottom{margin-top:20px;text-align:center;width:100%}

    /* PROJECTS */
   .portfolio{
    background:#fff;
    padding-top:60px; /* Increased top padding */
    padding-bottom:60px; /* Increased bottom padding */
    display:flex;
    align-items:center;
    justify-content:center
}
    .portfolio-inner{width:100%;display:flex;flex-direction:column;align-items:center;gap:18px}
    .projects-carousel{
    width:100%;
    max-width:1200px;
    position:relative;
    /* REDUCED PADDING: Allows arrows to sit closer to the edge */
    padding:16px 20px; 
    box-sizing:border-box;
    overflow:hidden
}
    .projects-track{display:flex;gap:20px;transition:transform 420ms cubic-bezier(.2,.9,.2,1);will-change:transform;align-items:stretch;padding-bottom:6px}
    .card{flex:0 0 300px;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 10px 28px rgba(0,0,0,0.06);border:1px solid var(--border);display:flex;flex-direction:column}
    .card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  /* ADDED: Smooth transition for the zoom effect */
  transition: transform 0.4s ease-out; 
}
    .card-body{padding:12px}
    .card-body h3{font-weight:700;margin-bottom:6px;font-size:18px;color:var(--primary-color);text-align:left}
    .card-body p{margin:0;color:var(--muted);font-weight:600}

    .carousel-nav{position:absolute;top:50%;transform:translateY(-50%);left:0;right:0;pointer-events:none;display:flex;justify-content:space-between;padding:0 8px;box-sizing:border-box}
    .nav-btn{pointer-events:auto;background:#fff;border:1px solid var(--border);width:46px;height:46px;border-radius:8px;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,0.08);cursor:pointer;margin:0 -28px}
    
    /* CORRECTION: Properly close the active state rule */
    .nav-btn:active{transform:translateY(1px)} 

    /* --- ADDED: Image Zoom Hover Rule --- */
    .card:hover img {
        transform: scale(1.08); /* Zooms the image by 8% */
    
    }

    /* TESTIMONIALS / CTA / FAQ / ABOUT */
    .testimonials{
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center
}
    .testimonials-inner{width:100%;max-width:1100px;display:flex;flex-direction:column;gap:18px;align-items:center}
   .test-grid{
  width:100%;
  display:grid;
  /* ACTION: Forces a multi-column horizontal grid (Restored) */
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); 
  gap:18px; 
  margin-top:6px
}

    .test-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
  /* --- ADDED: Ensures long text strings (like URLs) do not break the container --- */
  word-break: break-word; 
}
    .video-wrapper{width:100%;aspect-ratio:16/9;background:#000;border-radius:8px;overflow:hidden;display:flex;align-items:center;justify-content:center}
    /* --- (If you see a rule for .video-wrapper video, you can delete it) --- */

/* Targets the new <a> wrapper for sizing */
.video-link {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden; 
    cursor: pointer;
}

/* Fixes the image size and prevents cropping */
.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole image is visible (no cropping) */
    display: block; 
    transition: transform 0.3s ease; /* For hover zoom */
}

/* Play Button Overlay Styling */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 18px 22px;
    line-height: 1;
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
}
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

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

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
}

#videoFrame {
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}


/* Hover Effect */
.video-link:hover img {
    transform: scale(1.05);
}
.video-link:hover .video-play-icon {
    background: var(--primary-color);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
    .video-wrapper video{width:100%;height:100%;object-fit:cover;display:block;background:#000}
    .test-quote{font-style:italic;color:var(--text-color);margin:0;font-weight:600}
    .test-meta{display:flex;justify-content:space-between;align-items:center;gap:8px;color:var(--muted);font-weight:700}

    #google-reviews {
  background:#fff;
}

.gr-wrapper{
  margin-top:24px;
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:28px;
  align-items:flex-start;
}

.gr-summary{
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  background:#fff;
}

.gr-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--dark-color);
  margin-bottom:10px;
}

.gr-logo img{
  height:30px;
}

.gr-score{
  font-size:60px;
  font-weight:900;
  color:var(--dark-color);
}

.gr-stars{
  color:#ffb400;
  font-size:22px;
  margin:6px 0;
}

.gr-based{
  color:var(--muted);
  font-weight:600;
}

.gr-list{
  border-left:1px solid var(--border);
  padding-left:18px;
}

.gr-card{
  padding:10px 0 16px;
  border-bottom:1px solid var(--border);
}

.gr-card h4{
  margin:0 0 4px;
  font-weight:800;
}
.gr-card{
  width:100%;
  padding:10px 0 16px;
  border-bottom:1px solid var(--border);
}

.gr-text{
  display:block;
  line-height:1.6;
  overflow:visible;
}


.gr-stars-small{
  color:#ffb400;
  font-size:16px;
}

.gr-time{
  color:var(--muted);
  font-size:13px;
  margin-bottom:8px;
}

.gr-text{
  color:var(--text-color);
  font-weight:600;
}

.gr-viewall{
  text-align:right;
  padding-top:14px;

}

.gr-desc {
  margin-bottom: 16px;
}

.view-link{
  color:var(--primary-color);
  text-decoration:none;
  font-weight:800;
}

.view-link:hover{
  text-decoration:underline;
}

@media(max-width:768px){
  .gr-wrapper{
    grid-template-columns:1fr;
  }

  .gr-list{
    border-left:0;
    padding-left:0;
  }

  .gr-summary{
    max-width:360px;
    margin:0 auto;
  }
}


    .cta{background:var(--light-color);padding-top:0px;padding-bottom:0px;display:flex;align-items:center;justify-content:center}
    .cta-inner{width:100%;display:flex;gap:18px;align-items:center;justify-content:center;max-width:1040px}
    .cta-main{flex:1;text-align:center}
    .cta-extra{width:360px;border-radius:12px;background:#fff;padding:14px;border:1px solid var(--border);box-shadow:0 10px 30px rgba(0,0,0,.06)}

    .faq{background:#f6fbfb;padding-top:0px;padding-bottom:0px}
    .faq-inner{width:100%;max-width:920px;margin:0 auto;padding:0 10px}
    .faq h2{margin-bottom:18px;font-size:28px;font-weight:800;text-align:center;color:var(--dark-color)}
    .faq-item{background:transparent;margin-bottom:22px;border-radius:6px;overflow:visible;border:none}
    .faq-item summary{display:block;cursor:pointer;padding:20px 18px;font-size:18px;font-weight:600;color:var(--dark-color);list-style:none;position:relative;border-bottom:1px solid var(--border);background:transparent;margin-bottom:0;text-align:left}
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::before{content:'\25B6';display:inline-block;margin-right:14px;color:var(--dark-color);font-size:16px;transform:translateY(-1px);transition:transform .18s,color .18s}
    .faq-item[open] summary::before{content:'\25BC';transform:translateY(-1px);color:var(--primary-color)}
    .faq-item p{padding:18px;margin:0;color:var(--muted);font-weight:600;line-height:1.6;background:#fff;border:1px solid var(--border);border-top:none;border-radius:0 0 8px 8px;box-shadow:0 8px 20px rgba(0,0,0,0.04)}
    .faq-item summary:focus{outline:3px solid rgba(0,166,178,0.12);outline-offset:4px;border-radius:6px}

    .about-us{background:#121212;color:#dcdcdc;padding:0px 0;font-family:Georgia, "Times New Roman", Times, serif}
    .about-grid{display:grid;grid-template-columns:1fr 320px 1fr;gap:36px;max-width:1100px;margin:0 auto;padding:0 20px;align-items:start}
    .about-us h3{color:#fff;font-weight:800;font-size:18px;text-transform:uppercase;letter-spacing:.8px;margin-bottom:18px}
    .about-text{color:#cfcfcf;font-size:18px;line-height:1.8}
    .links-list{list-style:none;padding-left:0;color:#cfcfcf;font-size:16px;line-height:2.4}
    .links-list li a{color:#cfcfcf;text-decoration:none;opacity:.95}
    .contact{color:#cfcfcf;font-size:16px;line-height:1.8}
    .contact a{color:#f7b54b;text-decoration:none;font-weight:800}
    .about-bottom{text-align:center;color:#9b9b9b;margin-top:26px;font-size:14px;border-top:1px solid rgba(255,255,255,0.04);padding-top:18px}
    footer{background:#0b0b0b;color:#9b9b9b;padding:22px 0;text-align:center;font-size:14px}

    /* Responsive */
    @media(max-width:1024px){
      .hero-inner{grid-template-columns:1fr 360px;gap:18px}
      .carousel-card{flex:0 0 300px}
      .projects-track .card{flex:0 0 260px}
      .process-inner{grid-template-columns:1fr 380px;gap:20px}
    }
    
    @media(max-width:768px){
      /* NEW: Redefine header variable for medium screens */
      :root {
          --header-h: 64px; 
      }
      /* Hide utility bar on mobile */
@media (max-width: 768px) {
  .utility-bar {
    display: none;
  }

  header {
    top: 0 !important;
  }
}
      /* ACTION 1: HIDE the desktop navigation links and CTA button */
      .nav-center,
      .header-cta {
          display: none !important; 
      }
      
      /* ACTION 2: SHOW the mobile menu icon (Logo will naturally be on the left) */
     /* HIDE hamburger by default (desktop) */

     .menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

      
      .hero-inner{grid-template-columns:1fr;padding:28px 6px 12px;gap:18px}
      .carousel-track{gap:22px;padding:0 28px}
      .carousel-card{flex:0 0 260px}
      .trust-stats{gap:18px;margin-top:24px;padding:0 20px;flex-wrap:wrap;justify-content:center}
      .offer-grid{grid-template-columns:repeat(3,1fr);gap:10px}
      .process-inner{grid-template-columns:1fr}
      .process-right{order:2;width:100%}
      .process-left{order:1;width:100%;min-height:220px}
      .projects-track .card{flex:0 0 240px}
      .cta-extra{display:none} /* Note: If you restored the CTA extra box, this hides it on mobile */
    }
    @media(max-width:490px){
      /* NEW: Redefine header variable for mobile screens */
      :root {
          --header-h: 56px; 
      }
      h1{font-size:22px}
      h2{font-size:24px}
      .carousel-track{padding:0 20px;gap:18px}
      .carousel-card{flex:0 0 220px;min-height:120px}
      .carousel-card i{font-size:44px}
      
      /* MODIFIED: Stats stack vertically */
      .trust-stats{
          flex-direction:column;
          gap:12px;
          padding:8px 20px; /* Consistent side padding */
          margin-top:20px
      }
      
      .stat .num{font-size:32px}
      .offer-grid{grid-template-columns:repeat(2,1fr);gap:10px}
      .projects-track .card{flex:0 0 220px}
      .projects-carousel{padding:8px 12px}
      .step-dot{width:48px;height:48px;font-size:16px}
      .steps-bar{gap:8px;padding:8px 6%}
      .process-cta-bottom{margin-top:48px}
  
    }
    @media(max-width:400px){
      /* DELETED: Manual header height adjustment, now handled by the :root variable (56px) */
      .logo{font-size:16px}
      .hero h1{font-size:20px}
      .hero p{font-size:13px}
      .hero-form{padding:14px}
      .carousel-card{flex:0 0 180px;gap:6px;padding:6px 2px}
      .carousel-card h3{font-size:16px}
      .carousel-card i{font-size:38px}
      .projects-track .card{flex:0 0 180px}
      .card img{height:120px}
      .process-left{min-height:160px}
      .steps-bar{padding:8px 4%}
      .step-dot{width:44px;height:44px;font-size:15px}
      .step-main-title{font-size:16px}
      .step-desc{font-size:13px;max-width:260px}
      .trust-stats{gap:10px;padding:6px}
      .offer-grid{grid-template-columns:repeat(2,1fr);gap:8px}
      .test-grid{grid-template-columns:1fr}
      .faq-item summary{font-size:16px;padding:14px 12px}
      .faq-item p{padding:12px;font-size:13px}
      .about-grid{padding:0 12px;grid-template-columns:1fr;gap:18px}
  
    }
    /* =========================
      /* =========================
       NEW REDESIGNED FOOTER STYLES (v3 - "Boxy" Design)
       ========================= */
    
 /* ================================
        FOOTER — FINAL VERSION
================================= */

#main-footer{
  background:#0b0b0b;
  color:#dcdcdc;
  padding:30px 0 26px;
}

.footer-row{
  max-width:1200px;
  margin:0 auto 50px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
  padding:0 20px;
}

/* Left align everything */
.footer-col{
  text-align:left;
}
.footer-imp{
  text-align: left !important;
}
/* Narrower About text */
.about-col p{
  max-width:420px;
}

.footer-col h3{
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
  text-transform:uppercase;
}

.footer-col p{
  color:#bfbfbf;
  line-height:1.7;
}

/* LINKS */
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  text-decoration:none;
  color:#bfbfbf;
  font-weight:600;
  transition:.2s;
}

.footer-links a:hover{
  color:var(--primary-color);
}

/* FORM */
.footer-form-box{
  background:#fff;
  padding:14px;
  border-radius:12px;
}

.footer-form-box input,
.footer-form-box select{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border-radius:6px;
  border:1px solid #ccc;
}

.footer-form-box button{
  width:100%;
  background:var(--primary-color);
  border:0;
  padding:12px;
  border-radius:8px;
  font-weight:800;
  color:#fff;
}

/* ASSURANCE CARDS */
.assurance-row{
  max-width:1200px;
  margin:0 auto 40px;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.assurance-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:16px 18px;
  display:flex;
  gap:12px;
}

.assurance-card i{
  color:var(--primary-color);
  font-size:28px;
}

.assurance-card h4{
  margin:0 0 4px;
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.assurance-card p{
  margin:0;
  font-size:12px;
  color:#bfbfbf;
}


/* MAP ICON */
.map-icon-tile{
  background:#111;              /* darker, matches footer */
  border-radius:10px;
  display:flex;
  gap:8px;
  align-items:center;
  padding:10px 14px;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

.map-icon-tile img{
  width:42px;
  height:auto;
}

.map-icon-tile span{
  font-size:14px;
  font-weight:700;
}

/* LIVE MAP */
.live-map-box{
  position:relative;
  border-radius:14px;
  overflow:hidden;
}

.live-map-box iframe{
  width:100%;
  height:260px;
  border:0;
}

.live-map-btn{
  position:absolute;
  top:12px;
  left:12px;
  background:rgba(0,0,0,.7);
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
}

.footer-wa{
  color:var(--primary-color);
  text-decoration:none;
}
.footer-bottom{
  text-align:center;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:30px;
  color:#8e8e8e;
  font-size:13px;
}
/* gap between top row + bottom row */
.footer-bottom-row{
  margin-top:48px;
}

/* heading above google map icon */
.map-title{
  color:#dcdcdc;
  font-weight:700;
  text-align:left;
  margin-bottom:10px;
}

/* Google icon box */
.map-icon-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#111;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
  padding:10px;
}

.map-icon-box img{
  width:120px;
  height:120px;
  object-fit:contain;
}


/* MOBILE */
@media(max-width:768px){
  .footer-row,
  .assurance-row{
    grid-template-columns:1fr;
  }
}


.map-sec{
  display: inline-block;
  color:#ffffff;
}
/* ===== MODAL STYLES (Popup) ===== */
    #conversion-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999; /* Ensure it is above everything else */
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

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

    .modal-content {
      position: relative;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      padding: 24px 32px;
      width: 100%;
      max-width: 450px;
      transform: scale(0.9);
      opacity: 0;
      transition: transform 0.3s cubic-bezier(.2,.9,.2,1), opacity 0.3s ease;
    }
    
    /* Reusing form styles for consistency */
    .modal-body input, 
    .modal-body select, 
    .modal-body button {
        width: 100%;
        padding: 11px 12px;
        margin-bottom: 10px;
        border-radius: 8px;
        border: 1px solid var(--border);
        font-size: .96rem;
    }

    /* Close button styling */
    .modal-close {
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      font-size: 32px;
      cursor: pointer;
      color: var(--muted);
      line-height: 1;
      transition: color 0.1s;
    }
    .modal-close:hover {
        color: var(--dark-color);
    }
    /* --- VIDEO MODAL STYLES --- */
.v-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.v-modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.v-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    z-index: 10001;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.v-modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.v-modal-body iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.v-modal-close {
    position: absolute;
    top: -45px; right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}
/* Remove underline from the WhatsApp button */
.header-cta,
.header-cta:hover,
.header-cta:visited {
  text-decoration: none !important;
}

/* GLOBAL SECTION SPACING */
.fold{
  padding:25px 0 !important;
}


@media (max-width: 480px) {
  .fold {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
/* WhatsApp Floating Button */
/* Floating WhatsApp Button */
/* Floating WhatsApp — attached to right edge + slide-in */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 0;                     /* ATTACHED to right edge */
  transform: translateY(-50%);

  width: 60px;
  height: 50px;

  background: #fff;
  border-radius: 12px 0 0 12px; /* rounded only on left side */
  border: 1px solid rgba(0,0,0,.12);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  z-index: 999999;

  /* Animation */
  animation: waSlideIn .6s ease-out forwards;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

/* Slide from outside → inside */
@keyframes waSlideIn {
  from {
    transform: translate(120%, -50%);   /* fully outside screen */
  }
  to {
    transform: translate(0, -50%);      /* in final position */
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}


.hero-content {
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  background: #000000a3;
}

.hero-form {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.animated-border {
  position: relative;
}

.animated-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  background-size: 300% 300%;
  animation: borderMove 8s linear infinite;
  pointer-events: none;
}

.animated-border > * {
  position: relative;
  z-index: 1;
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.animated-border-form::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,0,0,0.25),
    transparent
  );
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-form {
    order: -1;
  }

  .hero-content {
    text-align: center;
    background: #000000a3;
  display: none;
  }

  .hero-points {
    justify-content: center;
  }
}

/* HERO POINTS – FIXED & FORCED */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Individual pill */
.hero-points li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px; /* 👈 pill shape */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}


@media (max-width: 768px) {
  .hero-points {
    justify-content: center;
  }

  .hero-points li {
    font-size: 13px;
    padding: 7px 12px;
  }
}


background: linear-gradient(
  to right,
  rgba(0,0,0,0.65),
  rgba(0,0,0,0.15)
);
text-align: left;


.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}



/* ── Location dropdown nav ── */
.nav-dropdown{position:relative}
.nav-dropdown>a{display:flex;align-items:center;gap:3px;cursor:pointer}
.nav-dropdown>a::after{content:"▾";font-size:.7rem;margin-top:1px}
.dropdown-menu{display:none;position:absolute;top:calc(100% + 6px);left:50%;transform:translateX(-50%);background:#fff;border:1px solid var(--border);border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.1);min-width:210px;padding:6px 0;z-index:500}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{display:block}
.dropdown-menu a{display:block;padding:9px 16px;font-size:.85rem;color:var(--dark-color) !important;font-weight:500;white-space:nowrap;text-decoration:none}
.dropdown-menu a:hover{color:var(--primary-color) !important;background:var(--light-color)}
.dropdown-menu a::after{display:none !important}