    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =========================
         Scroll Offset Fix for Anchors
         ============================ */
        :root {
         --top-bar-height: 42px; /* Top bar height */
         --header-height: 64px;  /* Header/nav height */
        }

          html {
          scroll-behavior: smooth; /* Smooth scrolling */
          scroll-padding-top: calc(var(--top-bar-height) + var(--header-height));
       }

        
        /* Top Bar Styles */
        .top-bar {
            background: #2563eb;
            color: white;
            font-size: 14px;
            padding: 8px 0;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        
        .helpline-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .helpline-item a {
            color: white;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        .helpline-item a:hover {
            color: #fbbf24;
        }
        
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .quick-booking-btn {
            background: #fbbf24;
            color: #1e3a8a;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        
        .quick-booking-btn:hover {
            background: #f59e0b;
            transform: translateY(-1px);
        }
        
        .social-links-top {
            display: flex;
            gap: 12px;
        }
        
        .social-links-top a {
            color: white;
            font-size: 16px;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .social-links-top a:hover {
            color: #fbbf24;
        }

      /* ------------------------------------ */
/* 🌐 HEADER & NAVIGATION STYLES */
/* ------------------------------------ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 42px;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    
}


.logo img {
    width: 150px;   
    height: auto;   
    display: block;
}


.logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo p {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    
}

.nav-menu a:hover {
    color: #2563eb;
}


/* Primary Button */
.btn-primary, .btn-get-quote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover, .btn-get-quote:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.mobile-menu {
    display: none;
    margin-top: 24px;
    padding-bottom: 16px;
}

.mobile-menu-content {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}


/* Mobile Menu Visibility */
.mobile-menu.hidden {
    display: none;
}

.mobile-menu.show {
    display: block;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* ------------------------------------ */
/* 💬 GET QUOTE POPUP STYLES */
/* ------------------------------------ */

/* Overlay background */
.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

/* Popup box */
.popup-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideUp 0.3s ease;
}

/* Popup heading */
.popup-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #111827;
}

/* Buttons inside popup */
.popup-content button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    
}

/* WhatsApp button */
.btn-popup-whatsapp {
    background: #25d366;
    color: white;
}
.btn-popup-whatsapp:hover {
    background: #1ebe57;
}

/* Email button */
.btn-popup-email {
    background: #52a1da;
    color: white;
}
.btn-popup-email:hover {
    background: #5274e4;
}

/* Cancel button */
.btn-close {
    background: #e5e7eb;
    color: #374151;
}
.btn-close:hover {
    background: #e67181;
}

/* Hide popup */
.hidden {
    display: none;
}

/* ------------------------------------ */
/* ✨ ANIMATIONS */
/* ------------------------------------ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}



        
/* Hero Section */
.hero{
  background: linear-gradient(135deg, #0f241e 0%, #1d3b33 25%, #33665a 50%, #4a8578 75%, #6ba892 100%);
    position: relative;
    padding: 80px 0 80px; /* Top & bottom spacing */
    overflow: hidden;
    margin-top: 42px;
}


.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.8));
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Hero Badge Wrapper for Scrolling */
.hero-badge-wrapper {
    overflow: hidden;       /* text outside container hidden */
    width: 100%;            /* full width */
    margin-bottom: 16px;
    position: relative;
}

/* Updated Hero Badge with Left-to-Right Scroll */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;

    /* Scrolling Animation */
    white-space: nowrap;     /* Keep in one line */
    position: relative;
    animation: scroll-left 12s linear infinite;
}

/* Keyframes for left-to-right scroll */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);   /* Start outside right */
    }
    100% {
        transform: translateX(-100%);  /* End outside left */
    }
}

/* Hero Heading */
.hero h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: -15px; /* Lifted slightly */
    margin-bottom: 32px;
}

.hero-highlight {
    color: #fbbf24;
}

.underline-highlight {
    color: #fbbf24;
    text-decoration: underline;
    cursor: pointer;
}

/* Hero Paragraph */
.hero p {
    font-size: 20px;
    line-height: 1.5;
    color: #bfdbfe;
    font-style: italic;
    margin-top: -10px;   /* Lifted slightly */
    margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* Buttons Styling */
.btn-whatsapp,
.btn-free-inspection,
.btn-glass {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #10b981;
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
}


/* Free Inspection Button */
.btn-free-inspection {
    background-color: #25D366;
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-free-inspection:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

/* Glass-style Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Stats Section */
.hero-stats {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats .icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.hero-stats h3 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 5px;

    /* Gradient background */
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);

    /* Gradient text for Chrome, Safari, Edge */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Fallback for Firefox / old browsers */
    background-clip: text;
    color: #ec4899; /* fallback solid color */

    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.hero-stats h3:hover {
    transform: scale(1.05);
}


.hero-stats p {
    font-size: 20px;
    font-weight: 600;
    color: #ec4899;
    margin-top: 0;
    text-align: center;
    font-style: italic;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    color: #374151;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color:  #fbbf24;
    display: block;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}
/* === Hero Logo Styling (Pixel-Perfect, Fully Responsive) === */
.hero-logo {
    position: absolute;
    top: -100px; /* Desktop default */
    left: 5px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-logo img {
    width: 420px;
    height: auto;
    display: block;
    max-width: 90vw; /* Ensure it never overflows on smaller screens */
}

/* Auto contrast tagline - cross-browser safe */
.hero-logo p {
    color: #ffffff; /* main text color */
    font-size: 16px;
    font-weight: 500;
    margin: 0;

    /* Dynamic contrast based on background */
    mix-blend-mode: difference;

    /* Subtle shadow for depth */
    text-shadow: 0 0 4px rgba(0,0,0,0.4), 0 0 8px rgba(0,0,0,0.3);

    /* Stroke / outline - works in Chrome, Safari, Edge */
    -webkit-text-stroke: 0.3px rgba(255,255,255,0.4);

    /* Fallback for other browsers (ignored if unsupported) */
    /* text-stroke is not standard, so can be ignored safely */
}


/* 🔹 Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-logo {
        top: -45px;
        left: 15px;
        padding: 8px 12px;
    }

    .hero-logo img {
        width: 320px; /* Slightly larger for tablets */
    }

    .hero-logo p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        top: -30px;
        left: 10px;
        padding: 6px 10px;
    }

    .hero-logo img {
        width: 220px; /* Perfect for mobile landscape */
    }

    .hero-logo p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        top: -15px;
        left: 6px;
        padding: 4px 8px;
    }

    .hero-logo img {
        width: 160px; /* Mobile portrait optimized */
    }

    .hero-logo p {
        font-size: 12px;
    }
}


/* Free Inspection Options Wrapper */
.free-inspection-wrapper {
    position: relative;
    display: inline-block;
}

/* Hidden dropdown options */
.inspection-options {
    display: none; /* hidden by default */
    position: absolute;
    top: 110%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    min-width: 180px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Individual option buttons */
.inspection-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

/* Icons in options */
.inspection-option i {
    font-size: 18px;
}

/* Hover effect for WhatsApp */
.inspection-option.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

/* Hover effect for Email */
.inspection-option.email:hover {
    background-color: #3b82f6;
    color: white;
}


/* === Falling Stats Animation (Continuous Loop) === */
.falling-text {
  opacity: 0;
  transform: translateY(-30px);
  animation: fallDownLoop 3s ease-in-out infinite;
}

.falling-text:nth-child(1) { animation-delay: 0s; }
.falling-text:nth-child(2) { animation-delay: 0.5s; }
.falling-text:nth-child(3) { animation-delay: 1s; }
.falling-text:nth-child(4) { animation-delay: 1.5s; }

@keyframes fallDownLoop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}



/* 🌿 About Section Styling       */
/* ============================ */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Soft background gradient animation */
.about::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05), transparent 70%);
  animation: bgMove 20s linear infinite alternate;
  z-index: 0;
}

@keyframes bgMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}


/* ============================ */
/* Section Title Styling         */
/* ============================ */
h1{
  color: #2563eb;
   font-size: 40px;
   font-family: Arial, Helvetica, sans-serif;
    
}

.about-text .section-title {
  font-size: 25px;
  font-weight: 600;
  color: #2563eb;
  margin-top: 40px;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  
}


/* ============================ */
/* Features List Styling         */
/* ============================ */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

.feature-icon {
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  transition: all 0.3s ease;
}

.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-orange { background: #ffedd5; color: #f97316; }

.feature-item:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: #2563eb;
}

.feature-content p {
  color: #1f2937;
  line-height: 1.9;
}

/* ============================ */
/* 💬 CTA (Free Inspection) Box  */
/* ============================ */
.about-cta {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(60px);
  animation: fadeInUp 1s ease forwards 1s;
  
}

.cta-content {
  text-align: center;
  margin-bottom: 32px;
}

.cta-content .icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.cta-content p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* CTA Features */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #374151;
  transition: transform 0.3s ease;
}

.cta-feature i {
  color: #10b981;
  font-size: 20px;
}

.cta-feature:hover {
  transform: translateX(5px);
}

/* CTA Button */
.btn-cta {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
}

/* ============================ */
/* Animations                     */
/* ============================ */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================ */
/* Contact Options (WhatsApp & Email) */
/* ============================ */
#contact-options {
  display: none; /* hidden initially */
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

#contact-options.slide-down-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ============================ */
/* Contact Buttons Styling        */
/* ============================ */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease, transform 0.3s ease;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* WhatsApp Button */
.contact-btn.whatsapp {
  background: #25D366;
}

.contact-btn.whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.05);
}

/* Email Button */
.contact-btn.email {
  background: #5d98f8;
}

.contact-btn.email:hover {
  background: #69a3f0;
  transform: translateY(-2px) scale(1.05);
}

/* Icons inside buttons */
.contact-btn i {
  font-size: 20px;
}

/* ============================ */
/* Responsive Adjustments         */
/* ============================ */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text .section-title {
    font-size: 36px;
    text-align: center;
  }

  .about-cta {
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  #contact-options {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Technician image fixed next to card's right */
#about-image {
    position: absolute;        /* card ke relative container ke respect me */
    top: 190px;                 /* thodi neeche shift, adjust as needed */
    left: 100%;                /* card ke right edge se start */
    width: 360px;              /* image width */
    height: 400px;             /* card ke height ke barabar ya adjust kare */
    overflow: hidden;
    pointer-events: none;      /* clicks pass through */
}

/* Technician image moving horizontally */
#technician-img {
    position: absolute;
    top: 0;
    left: -360px;              /* container ke left se start */
    width: 360px;              /* image width */
    height: 100%;              /* container height ke barabar */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    animation: moveRight 8s linear infinite;
    pointer-events: auto;      /* allow click */
}

/* Horizontal animation inside container */
@keyframes moveRight {
    0% { left: -360px; }      /* start left se */
    100% { left: 100%; }      /* container ke right edge tak */
}

/* Hide on click */
.hide-tech {
    display: none !important;
}


/* -----------------------------
   Services Section Styles
------------------------------ */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    padding: 90px 0 0 0;
  font-family: 'Poppins', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: #e3f2fd;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2563eb;
  margin: 15px 0;
}

.section-description {
  color: #555;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
  border-color: #2563eb;
}

.service-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(37,99,235,0.5));
}

.service-card h3 {
  font-size: 1.15rem;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.learn-more {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: #1e40af;
  box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

.services-footer {
  text-align: center;
  margin-top: 60px;
  color: #2563eb;
  font-weight: 600;
  font-size: 1rem;
}

    /* ===============================
   BASE STYLES (Light Mode)
================================= */
:root {
  --color-bg: #ffffff;
  --color-text: #1f2937;
  --color-subtext: #6b7280;
  --color-primary: #2563eb;
  --color-success: #16a34a;
  --color-purple: #9333ea;
  --color-border: #d1d5db;
}
.review-slider {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
}

.review-slider h2 {
  margin-bottom: 30px;
  color: #16a34a;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  padding: 20px;
  background: #f0fdf4;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slide.active {
  display: block;
}

.slide p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.slide h4 {
  font-size: 14px;
  color: #555;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: -25px; }
.next { right: -25px; }

 

/* ===============================
   CONTACT SECTION
================================= */
.contact {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  text-align: center;
  background: var(--color-bg);
  padding: 80px 80px 120px;
  color: var(--color-text);
}
/* ===============================
   HERO IMAGE ON TOP
================================= */
.contact-hero-wrapper {
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}


/* Scroll Reveal: image, cards, form */
.contact-hero-wrapper.visible .contact-hero-img,
.contact-cards.visible,
.contact-form-container.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Optional: stagger cards animation */
.contact-cards {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.contact-cards.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out 0.2s; /* slight delay after cards */
}

.contact-form-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   CONTACT CARDS
================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.contact-card {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.contact-card:nth-child(2) {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.contact-card:nth-child(3) {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

/* Icons */
.contact-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card:nth-child(1) .contact-card-icon {
  background: var(--color-primary);
}

.contact-card:nth-child(2) .contact-card-icon {
  background: var(--color-success);
}

.contact-card:nth-child(3) .contact-card-icon {
  background: var(--color-purple);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--color-subtext);
  margin-bottom: 24px;
}

.contact-card a,
.contact-card button {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-card:nth-child(1) a,
.contact-card:nth-child(1) button {
  color: var(--color-primary);
}

.contact-card:nth-child(2) a,
.contact-card:nth-child(2) button {
  color: var(--color-success);
}

.contact-card:nth-child(3) a,
.contact-card:nth-child(3) button {
  color: var(--color-purple);
}

.contact-card a:hover,
.contact-card button:hover {
  opacity: 0.8;
}
.location-section {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
.map-button-wrapper {
  text-align: center;
  margin-top: 5px; /* Button thoda upar */
}

.map-button {
  display: inline-block;
  padding: 14px 28px;
  background: #1a73e8; /* Blue default */
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer; /* Added */
}

.map-button:hover {
  background: #16a34a; /* Green on hover */
  transform: translateY(-3px);
}

.map-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.4); /* Focus ring for accessibility */
}


/* ===============================
   CONTACT FORM
================================= */
.contact-form-container {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

#commercialOptions {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
}

/* ===============================
   DARK MODE
================================= */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0f172a;
    --color-text: #f8fafc;
    --color-subtext: #94a3b8;
    --color-border: #334155;
  }

  .contact {
    background: var(--color-bg);
    color: var(--color-text);
  }

  .contact-card {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.08);
  }

  .contact-form-container {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.08);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #1e293b;
    color: var(--color-text);
    border-color: var(--color-border);
  }

  .contact-card p {
    color: var(--color-subtext);
  }
}
/* ===============================
   TECHNICIAN IMAGE (RIGHT SIDE)
================================= */

/* Wrapper to position image on right */
.contact-tech-wrapper {
  margin-top: 60px;
  text-align: right;
}

/* Image Styles */
.contact-tech-img {
  width: 380px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  animation: fadeInUp 0.8s ease-in-out;
}

/* Smooth fade animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-tech-wrapper {
    text-align: center;
    margin-top: 40px;
  }

  .contact-tech-img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-tech-img {
    width: 250px;
  }
}


/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 768px) {
  .contact {
    padding: 60px 40px 100px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 40px 20px 80px;
  }

  .contact-card-icon {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-card p {
    font-size: 14px;
  }
}

       
/* Footer */
footer {
    width: calc(100vw - 0px);
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background: #111827;
    color: white;
    padding: 80px;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Footer Content */
.footer-content {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column: Company Info + Social Links */
.footer-company {
    flex: 0 0 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d1d5db;
}

.social-links a {
    margin-right: 12px;
    color: white;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Middle Column: Services */
.footer-services-wrapper {
    flex: 1;
    max-width: 450px;
}

.footer-services-wrapper h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-services {
    display: flex;
    gap: 40px;
}

.footer-services .column a {
    display: block;
    color: #d1d5db;
    margin: 10px 0;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-services .column a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffcc00;
}

.footer-services .column a:hover {
    color: #ffffff;
    padding-left: 22px;
}

/* Right Column: Contact Info */
.footer-right {
    flex: 0 0 300px;
}

.footer-right h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-right .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;  /* Reduced gap for tighter spacing */
    margin-top: 15px;
    font-size: 17px; /* Increased font size for better readability */
}

.footer-right .contact-info-item {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: inherit; /* inherit font size */
    transition: color 0.3s;
}

.footer-right .contact-info-item i {
    margin-right: 12px;
    font-size: 18px;
    color: #ffcc00;
}

.footer-right .contact-info-item span {
    line-height: 1.4; /* Slightly tighter line height */
}

.footer-right .contact-info-item:hover {
    color: #ffffff;
}

/* Divider & Bottom Section */
.footer-divider {
    border-top: 1px solid #333;
    margin: 35px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    padding-bottom: 20px; /* Added padding for better breathing room */
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-services {
        flex-direction: column;
        gap: 20px;
    }

    .footer-services-wrapper {
        max-width: 100%;
    }

    .footer-right {
        flex: 1;
        width: 100%;
        font-size: 16px; /* Slightly reduce font size on smaller screens */
    }

    .footer-right .contact-info {
        gap: 10px;
    }
}

        
       /* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-float button {
    background: #10b981;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.whatsapp-float button:hover {
    background: #059669;
}
/* ============================ */
/* Phone Float Button (Call) */
/* ============================ */
.phone-float {
    position: fixed;
    bottom: 160px;  /* Distance from bottom */
    right: 20px;    /* Float on right side */
    z-index: 9999;  /* Make sure it's above everything */
    animation: pulse 2s infinite; /* optional, define keyframes if needed */
}

.phone-float a {
    position: relative;   /* Needed for tooltip positioning */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #2563eb;  /* Blue button */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    overflow: visible;     /* Tooltip will not be cut off */
    transition: all 0.3s ease;
}

.phone-float a:hover {
    background: #1d4ed8;
    transform: translateY(-5px);
}

/* Phone Number Tooltip */
.phone-float a .phone-number {
    position: absolute;
    right: 100%;          /* Tooltip shows to the left of button */
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;            /* Hidden by default */
    visibility: hidden;    /* Hidden completely */
    pointer-events: none;  /* Clicks pass through */
    transition: opacity 0.3s, transform 0.3s;
}

/* Show tooltip on hover */
.phone-float a:hover .phone-number {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-8px); /* Smooth slide effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .phone-float { bottom: 140px; }
}
@media (max-width: 480px) {
    .phone-float { bottom: 120px; }
}

/* Color Classes */
.bg-red-100 { background: #fee2e2; }
.text-red-600 { color: #dc2626; }
.bg-blue-100 { background: #dbeafe; }
.text-blue-600 { color: #2563eb; }
.bg-green-100 { background: #dcfce7; }
.text-green-600 { color: #16a34a; }
.bg-purple-100 { background: #f3e8ff; }
.text-purple-600 { color: #9333ea; }
.bg-orange-100 { background: #fed7aa; }
.text-orange-600 { color: #ea580c; }
.bg-teal-100 { background: #ccfbf1; }
.text-teal-600 { color: #0d9488; }
.bg-indigo-100 { background: #e0e7ff; }
.text-indigo-600 { color: #4f46e5; }
.bg-yellow-100 { background: #fef3c7; }
.text-yellow-600 { color: #d97706; }

/* =========================
   RESPONSIVE LAYOUT FIXES
   — Hero • Services • About • Contact • Footer —
========================== */

/* ----------- Tablets & iPads ≤1024px ----------- */
@media (max-width: 1024px) {

    /* Top Bar */
    .top-bar-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        width: 100% !important;
        padding: 5px 15px !important;
    }

    .top-bar-left,
    .top-bar-right {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 6px !important;
    }

    .helpline-item,
    .quick-booking-btn,
    .social-links-top a {
        display: inline-flex !important;
        white-space: nowrap !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .social-links-top {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
    }

    /* Header / Logo */
    header,
    .top-bar {
        position: relative !important;
        z-index: 1002 !important;
        width: 100% !important;
        overflow: visible !important;
        top: 0 !important;
    }

    .logo {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Hero Section */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 30px !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0 15px !important;
    }

    .hero-logo img {
        max-width: 80% !important;
        height: auto !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
    }

    .hero-text {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-text p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4 !important;
        width: 100% !important;
    }

    /* stylelint-disable-next-line property-no-vendor-prefix */
    .hero-text p.expanded {
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    /* Hero Stats */
    .hero-stats {
        width: 100% !important;
        max-width: 90% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 20px !important;
        border-radius: 14px !important;
        display: block !important;
        margin: 0 auto !important;
        z-index: 5 !important;
    }

    .hero-stats .icon img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
    }

    .hero-stats .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .hero-stats .stat-item {
        width: 100% !important;
        padding: 12px !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    /* Services Section */
    .services-section {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 20px 10px !important;
        box-sizing: border-box !important;
    }

    .service-item {
        flex: 1 1 30% !important; /* 3 items per row */
        max-width: 30% !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .service-item img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 10px auto !important;
    }

    /* About Section */
    .about-content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    #about-image img {
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
     .review-slider {
    max-width: 90%;
    margin: 40px auto;
  }

  .slider-container {
    padding: 0 10px;
  }

  .slide p {
    font-size: 15px;
  }

  .slide h4 {
    font-size: 13px;
  }

  .prev, .next {
    padding: 6px 10px;
    font-size: 18px;
  }


    /* Contact & Footer */
    .contact-section,
    .footer-section {
        width: 100% !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    /* Floating Buttons */
    .phone-float {
        bottom: 20% !important;
        right: 3% !important;
    }

    .whatsapp-float {
        bottom: 12% !important;
        right: 3% !important;
    }
}

/* ----------- Small Mobile ≤768px ----------- */
@media (max-width: 768px) {

    .services-section {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .service-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .about-content {
        flex-direction: column !important;
        gap: 12px !important;
    }

    #about-image img {
        max-width: 100% !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-stats {
        max-width: 95% !important;
    }

    .hero-stats .stat-item {
        width: 100% !important;
        margin: 5px auto !important;
    }

    .phone-float {
        bottom: 18% !important;
    }

    .whatsapp-float {
        bottom: 10% !important;
    }
   .review-slider {
    max-width: 95%;
    margin: 30px auto;
  }

  .review-slider h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .slider-container {
    padding: 0 5px;
  }

  .slide {
    padding: 15px;
  }

  .slide p {
    font-size: 14px;
    line-height: 1.4;
  }

  .slide h4 {
    font-size: 12px;
    margin-top: 10px;
  }

  .prev, .next {
    padding: 4px 8px;
    font-size: 16px;
  }

    .contact-section,
    .footer-section {
        width: 100% !important;
        padding: 18px 12px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}

/* ----------- Extra Small Mobile ≤480px ----------- */
@media (max-width: 480px) {

    .services-section {
        gap: 12px !important;
    }

    .service-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .about-content {
        gap: 12px !important;
    }

    #about-image img {
        max-width: 95% !important;
    }

    .helpline-item,
    .quick-booking-btn,
    .social-links-top a {
        font-size: 0.8rem !important;
    }

    .top-bar-content {
        gap: 3px !important;
    }

    .logo h1 {
        font-size: 1.2rem !important;
    }

    .hero-stats .stat-item {
        width: 95% !important;
        margin: 5px auto !important;
    }

    /* Floating Buttons Adjustment */
    .phone-float {
    position: fixed !important;
    bottom: 40px !important;
    right: 20px !important;
    z-index: 1100 !important;
}

.whatsapp-float {
    position: fixed !important;
    bottom: 110px !important; /* Phone button se 60px upar */
    right: 20px !important;
    z-index: 1100 !important;
}

  .review-slider {
    max-width: 95%;
    margin: 20px auto;
  }

  .review-slider h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .slider-container {
    padding: 0 5px;
  }

  .slide {
    padding: 10px;
  }

  .slide p {
    font-size: 13px;
    line-height: 1.3;
  }

  .slide h4 {
    font-size: 11px;
    margin-top: 8px;
  }

  .prev, .next {
    padding: 3px 6px;
    font-size: 14px;
  }

    /* Contact & Footer for Extra Small Screens */
    .contact-section,
    .footer-section {
        width: 100% !important;
        padding: 15px 10px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}
