
    .navbar-brand{font-size:26px;font-weight:bold}
    .navbar-brand span:first-child{color:#b30000}
    .navbar-brand span:last-child{color:green;font-size:16px;font-weight:normal;display:block;line-height:18px}
    .hero-section p{font-weight:bold}
    .call-btn{background:linear-gradient(to right, green, blue);color:#fff;padding:12px 30px;border-radius:30px;font-size:18px;text-decoration:none;display:inline-block;margin-top:15px}
    .call-btn:hover{opacity:.9}
  



  /* LOGO */
  .brand-logo {
    width: 110px;
    height: auto;
  }

  @media (max-width: 768px) {
    .brand-logo {
      width: 90px;
    }
  }

  /* Navbar Call Animation */
  .call-anim {
    position: relative;
    overflow: hidden;
    animation: softPulse 2s infinite ease-in-out;
    border-radius: 40px !important;
  }

  @keyframes softPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(8, 33, 219, 0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0 25px rgba(38, 67, 195, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(3, 65, 136, 0.4); }
  }

  .call-anim::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 160%; height: 160%;
    background: rgba(14, 76, 175, 0.942);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleRing 1.8s infinite ease-out;
    pointer-events: none;
  }

  @keyframes rippleRing {
    0% { transform: translate(-50%, -50%) scale(0); opacity: .55; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
  }

  /* Swiper Height */
  .swiper {
    width: 100%;
    height: 75vh;
  }

  .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
  }

  .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 500px;
  }

  .slide-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: capitalize;
  }

  .call-btn {
    background: #098b6c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    animation: pulse 1.7s infinite;
    text-decoration: none;
    display: inline-block;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  /* Mobile Responsive */
  @media (max-width:768px) {
    .swiper { height: 55vh; }
    .slide-content h1 { font-size: 26px; }
    .call-btn { padding: 10px 22px; font-size: 17px; }
  }




.brand-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 40s linear infinite; /* Default mobile speed */
}

.brand-track img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ------- MOBILE ------- */
@media (max-width: 600px) {
  .brand-track {
    gap: 15px;
    animation: scrollLeft 40s linear infinite; /* Mobile slow same */
  }
  .brand-track img {
    height: 28px; /* Smaller logos */
  }
}

/* ------- TABLET ------- */
@media (min-width: 601px) and (max-width: 1024px) {
  .brand-track {
    gap: 22px;
    animation: scrollLeft 32s linear infinite; /* Medium speed */
  }
  .brand-track img {
    height: 40px;
  }
}

/* ------- LAPTOP / PC ------- */
@media (min-width: 1025px) {
  .brand-track {
    gap: 28px;
    animation: scrollLeft 25s linear infinite; /* 🔥 Faster on laptop */
  }
  .brand-track img {
    height: 50px; /* Smaller than before */
  }
}

/* Animation */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




  /* ******** SUPER COMPACT CARD ******** */
  .service-card {
    border: 10 px;
    padding: 8px;
    border-radius: 2px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: .3s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  /* 1:1 SMALLER IMAGE BOX */
  .img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 1px;
    overflow: hidden;
  }

  .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* SMALL TITLE */
  .service-title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 3px;
  }

  /* VERY SHORT TEXT */
  .service-text {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
    height: 28px; /* small height */
    margin-bottom: 6px;
  }

   /* SMALL BUTTON */
  .book-btn {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: rgb(8, 140, 105);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
  }

  .book-btn:hover {
    background: #00027d;
    transform: scale(1.08);
  }

  /* Mobile Optimization */
  @media(max-width:768px){
    .service-title { font-size: 13px; }
    .service-text { font-size: 11px; height: 30px; }
    .book-btn { padding: 4px 12px; font-size: 11px; }
  }




/* WRAPPER */
.hero-wrapper {
  width: 100%;
  background: #f2f3ff;
}

/* GRID */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;           /* Full height banner fix */
  align-items: stretch;       /* Both sides equal height */
}

/* LEFT BANNER */
.hero-left {
  background: url('https://www.gen1service.com/images/banners/chimney-banner2.avif') center/cover no-repeat;
  background-size: cover !important;
  background-position: center center !important;
  height: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 25px 30px;
  border-radius: 1px;
  text-align: center;
  max-width: 100%;
}

.tagline {
  color: #ff4a4a;
  font-size: 16px;
  font-weight: 600;
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-top: 5px;
}

.call-btn {
  margin-top: 15px;
  display: inline-block;
  background: #1a1aff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}

/* RIGHT FORM */
.hero-right {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-box {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 1px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.form-box h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #bbb;
  margin-bottom: 10px;
}

/* 2 Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #1a1aff;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

/* MOBILE VIEW SUPER COMPACT (25% Smaller) */
@media (max-width: 768px) {

  .hero-container {
    grid-template-columns: 1fr;
    min-height: 38vh; /* Extra compact */
  }

  .hero-left {
    min-height: 24vh;
  }

  .hero-overlay {
    padding: 12px 16px;
  }

  .tagline {
    font-size: 13px;
  }

  .hero-title {
    font-size: 18px;
  }

  .call-btn {
    font-size: 14px;
    padding: 6px 15px;
  }

  .form-box {
    padding: 14px;
    width: 95%;
    max-width: 340px;
    margin-top: -10px;
  }

  input,
  select,
  textarea {
    padding: 6px;
    font-size: 12px;
    margin-bottom: 7px;
  }

  .two-col {
    gap: 5px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 9px;
  }
}



/* ================== SEO CONTENT (below logo/header) ================== */
.seo-content { background:#fff; border-radius:10px; box-shadow:0 3px 12px rgba(0,0,0,.05); padding:18px 16px; margin:16px auto; max-width:1200px; }
.seo-content h2 { font-size:1.6rem; margin-bottom:10px; line-height:1.3; }
.seo-content h3 { font-size:1.2rem; margin:14px 0 6px; color:#1A4C8B; }
.seo-content p { color:#333; line-height:1.65; margin:6px 0 10px; font-size:0.95rem; }
.seo-content ul, .seo-content ol { margin:6px 0 8px 18px; font-size:0.95rem; }
.seo-content li { margin:4px 0; }
.seo-content strong { color:#000; }
.faq { margin-top:10px; }
.faq details { background:#f9fafb; border:1px solid #e5e7eb; border-radius:8px; margin:6px 0; padding:10px 12px; }
.faq summary { font-weight:600; cursor:pointer; font-size:0.95rem; }
@media(max-width:600px){
  .seo-content { padding:14px 12px; margin:10px; }
  .seo-content h2 { font-size:1.3rem; }
  .seo-content h3 { font-size:1.05rem; }
  .seo-content p, .seo-content li, .faq summary { font-size:0.9rem; line-height:1.6; }
}


/* Mobile Responsive Fix – 50% Smaller */
@media (max-width: 576px) {

  .cta-section {
    padding: 35px 0 !important; /* reduce height */
  }

  .cta-small-text {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }

  .cta-heading {
    font-size: 1.3rem !important; /* 50% smaller */
    line-height: 1.4 !important;
  }

  .cta-desc {
    font-size: 14px !important; /* smaller paragraph */
  }

  .cta-btn {
    font-size: 14px !important;
    padding: 8px 20px !important; /* smaller button */
  }
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
                background: #eef1f7; /* Light blue-gray background */
            padding: 0;
            margin: 0;
        }
        
        .testimonial-section {
            width: 100%;
            margin: 20px 0;
            padding: 15px 20px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 15px;
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }
        
        .testimonial-container {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            height: 200px; /* Fixed height for PC */
        }
        
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 15px;
            text-align: center;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        
        .testimonial-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        
        .testimonial-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #f0f0f0;
            flex-shrink: 0;
        }
        
        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-text-container {
            text-align: left;
        }
        
        .quote-icon {
            color: #4CAF50;
            font-size: 20px;
            margin-bottom: 8px;
        }
        
        .testimonial-text {
            font-size: 15px;
            line-height: 1.4;
            color: #555;
            margin-bottom: 10px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #333;
            font-size: 16px;
            margin-bottom: 3px;
        }
        
        .testimonial-location {
            color: #777;
            font-size: 13px;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 12px;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dot.active {
            background-color: #4CAF50;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .testimonial-section {
                margin: 15px 0;
                padding: 12px 15px;
            }
            
            .section-title {
                font-size: 20px;
                margin-bottom: 12px;
            }
            
            .testimonial-container {
                height: 240px; /* Slightly taller for mobile */
            }
            
            .testimonial {
                padding: 12px;
            }
            
            .testimonial-content {
                flex-direction: column;
                gap: 12px;
            }
            
            .testimonial-image {
                width: 60px;
                height: 60px;
            }
            
            .testimonial-text-container {
                text-align: center;
            }
            
            .quote-icon {
                font-size: 18px;
                margin-bottom: 6px;
            }
            
            .testimonial-text {
                font-size: 14px;
                margin-bottom: 8px;
            }
            
            .testimonial-author {
                font-size: 15px;
            }
            
            .testimonial-location {
                font-size: 12px;
            }
        }
    


.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-card img {
  transition: transform .3s ease;
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.gallery-card:hover img {
  transform: scale(1.05);
}



.btn-light:hover {
  background:#0f9d58 !important;
  color:#fff !important;
  transform: scale(1.05);
}



/* ================== FLOAT BUTTONS ================== */
.floating{
  position:fixed;
  left:20px;       /* ← moved to left */
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.floating a{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.4rem;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  text-decoration:none !important;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease;
}

/* Hover Pop Effect */
.floating a:hover{
  transform:scale(1.12);
}

/* ICON PULSE */
.floating a i{
  animation:pulseIcon 1.8s infinite ease-in-out;
}

@keyframes pulseIcon{
  0%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.18); opacity:0.92; }
  100%{ transform:scale(1); opacity:1; }
}

/* CALL BUTTON – BLUE GRADIENT */
.floating .call{
  background:linear-gradient(135deg,#0096FF,#0066CC);
  animation:pulseBg 2.5s infinite ease-in-out;
}

@keyframes pulseBg{
  0%{ box-shadow:0 0 15px rgba(0,150,255,0.5); }
  50%{ box-shadow:0 0 25px rgba(0,150,255,0.9); }
  100%{ box-shadow:0 0 15px rgba(0,150,255,0.5); }
}

/* WhatsApp Button */
.floating .wa{
  background:#25D366;
  color:#fff;
  animation:pulseWa 2.5s infinite ease-in-out;
}

@keyframes pulseWa{
  0%{ box-shadow:0 0 15px rgba(37,211,102,0.5); }
  50%{ box-shadow:0 0 25px rgba(37,211,102,0.9); }
  100%{ box-shadow:0 0 15px rgba(37,211,102,0.5); }
}
