* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary: #dd2326;
  --black: #000000;
  --white: #ffffff;
  --soft-gray: #f8f9fa;
  --light-gray: #e9ecef;
  --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 30px -10px rgba(0,0,0,0.15);
  --transition: all 0.25s ease-in-out;
}

body { 
  background-color: var(--white); 
  color: #222; 
  line-height: 1.6; 
  overflow-x: hidden;
  width: 100%;
}

/* CONTAINER - Essential for responsiveness */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* TOP BAR - Hidden on mobile by default */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  width: 100%;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top-left, .top-right {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 20px);
}

.top-bar a { 
  color: var(--white); 
  text-decoration: none; 
  transition: var(--transition); 
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  white-space: nowrap;
}

.top-bar a:hover { color: var(--primary); }
.top-left a i, .top-right a i { margin-right: 5px; font-size: 0.9rem; }

/* STICKY HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  z-index: 1020;
  padding: 12px 0;
  width: 100%;
}

.sticky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a { 
  font-weight: 700; 
  font-size: clamp(1.3rem, 5vw, 1.8rem); 
  letter-spacing: -0.5px; 
  color: var(--black); 
  text-decoration: none; 
  white-space: nowrap;
}

/* DESKTOP NAVIGATION */
.desktop-nav {
  display: none;
}

.nav-menu { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: clamp(1rem, 2vw, 1.8rem); 
  align-items: center; 
}

.nav-menu a { 
  text-decoration: none; 
  color: #222; 
  font-weight: 500; 
  transition: var(--transition); 
  font-size: clamp(0.85rem, 1.5vw, 1rem); 
  white-space: nowrap;
}

.nav-menu a:hover { color: var(--primary); }

/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-menu-custom {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 10px 0;
  min-width: 200px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  list-style: none;
  z-index: 100;
}

.dropdown:hover .dropdown-menu-custom { 
  opacity: 1; 
  visibility: visible; 
  top: 30px; 
}

.dropdown-menu-custom li a { 
  display: block; 
  padding: 8px 20px; 
  font-weight: 400; 
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu-custom li a:hover { 
  background: #f8f8f8; 
  color: var(--primary); 
}

/* QUOTE BUTTON */
.btn-quote {
  background: var(--primary);
  color: var(--white);
  padding: clamp(8px, 2vw, 10px) clamp(16px, 3vw, 24px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-quote:hover { 
  background: #b51b1e; 
  transform: scale(1.02); 
  box-shadow: 0 8px 16px rgba(221,35,38,0.25); 
  color: white; 
}

/* MOBILE TOGGLE */
.mobile-toggle { 
  font-size: 1.8rem; 
  cursor: pointer; 
  color: #333; 
  display: block;
  line-height: 1;
}

/* MOBILE MENU */
.mobile-menu {
  background: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.05);
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
}

.mobile-menu.show { 
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-menu .container {
  padding: 0 15px;
}

.mobile-menu ul { 
  list-style: none; 
  margin: 0;
  padding: 0;
}

.mobile-menu li { 
  margin: 12px 0; 
}

.mobile-menu a { 
  color: #333; 
  text-decoration: none; 
  font-weight: 500; 
  display: block;
  padding: 8px 0;
  font-size: 1rem;
}

.mobile-sub { 
  padding-left: 20px; 
  margin-top: 8px; 
  display: none; 
}

.show-mobile-sub { 
  display: block; 
}

.mobile-sub li {
  margin: 10px 0;
}

.mobile-sub a {
  font-size: 0.9rem;
  color: #666;
}

.btn-quote-mobile { 
  background: var(--primary); 
  color: white; 
  padding: 12px 24px; 
  border-radius: 40px; 
  display: inline-block; 
  text-decoration: none;
  margin-top: 15px;
  font-weight: 600;
  border: none;
  width: 100%;
  text-align: center;
}

/* Dropdown toggle for mobile */
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Mobile S (320px and up) - TOP BAR HIDDEN */
@media screen and (min-width: 320px) {
  .top-bar {
    display: none;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .top-left, .top-right {
    justify-content: center;
    width: 100%;
  }
  
  .top-left a, .top-right a {
    font-size: 0.75rem;
  }
  
  .logo a {
    font-size: 1.3rem;
  }
}

/* Mobile M (375px and up) - TOP BAR HIDDEN */
@media screen and (min-width: 375px) {
  .top-bar {
    display: none;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .top-left a, .top-right a {
    font-size: 0.8rem;
  }
  
  .logo a {
    font-size: 1.4rem;
  }
  
  .mobile-toggle {
    font-size: 1.9rem;
  }
}

/* Mobile L (425px and up) - TOP BAR HIDDEN */
@media screen and (min-width: 425px) {
  .top-bar {
    display: none;
  }
  
  .top-bar .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .top-left, .top-right {
    width: auto;
    justify-content: flex-start;
  }
  
  .top-left a, .top-right a {
    font-size: 0.85rem;
  }
  
  .logo a {
    font-size: 1.5rem;
  }
}

/* Tablet (768px and up) - TOP BAR VISIBLE */
@media screen and (min-width: 768px) {
  .top-bar {
    display: block;
  }
  
  .container {
    padding: 0 25px;
  }
  
  .top-bar .container {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  .top-left, .top-right {
    flex-wrap: nowrap;
  }
  
  .top-left a, .top-right a {
    font-size: 0.9rem;
  }
  
  .logo a {
    font-size: 1.6rem;
  }
  
  .mobile-menu .container {
    padding: 0 25px;
  }
  
  .btn-quote-mobile {
    width: auto;
    display: inline-block;
  }
}

/* Laptop (992px and up) - TOP BAR VISIBLE */
@media screen and (min-width: 992px) {
  .top-bar {
    display: block;
  }
  
  .desktop-nav {
    display: block;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .top-bar .container {
    flex-wrap: nowrap;
  }
  
  .logo a {
    font-size: 1.8rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-menu a {
    font-size: 0.95rem;
  }
}

/* Large Laptop (1200px and up) - TOP BAR VISIBLE */
@media screen and (min-width: 1200px) {
  .top-bar {
    display: block;
  }
  
  .container {
    max-width: 1140px;
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 1.8rem;
  }
  
  .nav-menu a {
    font-size: 1rem;
  }
}

/* Extra Large Desktop (1400px and up) - TOP BAR VISIBLE */
@media screen and (min-width: 1400px) {
  .top-bar {
    display: block;
  }
  
  .container {
    max-width: 1320px;
  }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .top-bar {
    display: none; /* Keep top bar hidden in mobile landscape */
  }
  
  .mobile-menu.show {
    max-height: 90vh;
  }
  
  .mobile-menu li {
    margin: 8px 0;
  }
  
  .mobile-menu a {
    padding: 5px 0;
  }
}

/* High Resolution / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .btn-quote, .btn-quote-mobile {
    border-width: 1px;
  }
}
/* --------------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  width: 100%;
}

.slides-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.slide .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.badge-tag {
  background: rgba(221, 35, 38, 0.2);
  backdrop-filter: blur(5px);
  padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
  border-radius: 50px;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-block;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.slide h1 {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

/* Trust Items */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 15px);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 16px) clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 12px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.trust-item:hover {
  background: rgba(221, 35, 38, 0.3);
  transform: translateY(-2px);
}

.trust-icon {
  width: clamp(35px, 5vw, 45px);
  height: clamp(35px, 5vw, 45px);
  background: rgba(221, 35, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Quote Card */
.quote-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  border-radius: clamp(20px, 4vw, 30px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  color: #333;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.quote-card h3 {
  color: #222;
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  margin-bottom: 1.2rem;
}

.quick-quote-form .row {
  margin: 0 -8px;
}

.quick-quote-form .col-md-6,
.quick-quote-form .col-12 {
  padding: 0 8px;
  margin-bottom: 12px;
}

.quick-quote-form .form-control,
.quick-quote-form .form-select {
  border-radius: 50px;
  padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
  border: 1px solid #ddd;
  background: white;
  font-size: clamp(14px, 2vw, 15px);
  width: 100%;
  height: auto;
}

.quick-quote-form .btn-primary {
  background: #dd2326;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  width: 100%;
  white-space: nowrap;
}

.quick-quote-form .btn-primary:hover {
  background: #b51b1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(221,35,38,0.3);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: clamp(20px, 4vh, 30px);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 3vw, 20px);
  flex-wrap: wrap;
  padding: 0 15px;
}

.dots-container {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
  flex-wrap: wrap;
  justify-content: center;
}

.slider-arrow {
  width: clamp(35px, 5vw, 45px);
  height: clamp(35px, 5vw, 45px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #dd2326;
  border-color: #dd2326;
  transform: scale(1.1);
}

.dot {
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.active-dot, .dot:hover {
  background: #dd2326;
  transform: scale(1.2);
  box-shadow: 0 0 10px #dd2326;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Mobile S (320px) */
@media screen and (min-width: 320px) {
  .hero-slider { 
    min-height: 600px; 
    height: auto; 
    padding: 40px 0; 
  }
  
  .slide {
    position: relative;
    padding: 40px 0;
  }
  
  .slide .row {
    flex-direction: column;
  }
  
  .slide .col-lg-6:first-child {
    margin-bottom: 30px;
  }
  
  .badge-tag {
    margin-bottom: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .trust-item {
    width: 100%;
  }
  
  .quote-card {
    margin-top: 20px;
  }
  
  .slider-nav {
    position: relative;
    margin-top: 30px;
  }
}

/* Mobile M (375px) */
@media screen and (min-width: 375px) {
  .hero-slider { 
    min-height: 650px; 
  }
  
  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .trust-item {
    width: calc(50% - 8px);
  }
}

/* Mobile L (425px) */
@media screen and (min-width: 425px) {
  .hero-slider { 
    min-height: 700px; 
  }
  
  .trust-item {
    width: auto;
  }
  
  .quick-quote-form .btn-primary {
    width: auto;
  }
}

/* Tablet (768px) */
@media screen and (min-width: 768px) {
  .hero-slider { 
    min-height: 800px; 
    height: auto; 
    padding: 60px 0; 
  }
  
  .slide .row {
    flex-direction: row;
    align-items: center;
  }
  
  .slide .col-lg-6:first-child {
    margin-bottom: 0;
  }
  
  .badge-tag {
    margin-bottom: 1.5rem;
  }
  
  .trust-badges {
    flex-direction: row;
    gap: 15px;
  }
  
  .trust-item {
    width: auto;
  }
  
  .quote-card {
    margin-top: 0;
    padding: 2rem;
  }
  
  .quick-quote-form .btn-primary {
    width: 100%;
  }
  
  .slider-nav {
    position: absolute;
    margin-top: 0;
    bottom: 30px;
  }
}

/* Laptop (992px) */
@media screen and (min-width: 992px) {
  .hero-slider { 
    height: 90vh; 
    min-height: 700px; 
    padding: 0; 
  }
  
  .slide {
    position: absolute;
    padding: 0;
  }
  
  .quote-card {
    padding: 2.5rem 2rem;
  }
  
  .quick-quote-form .row {
    margin: 0 -10px;
  }
  
  .quick-quote-form .btn-primary {
    width: auto;
  }
}

/* Large Laptop (1200px) */
@media screen and (min-width: 1200px) {
  .hero-slider { 
    min-height: 800px; 
  }
  
  .slide h1 {
    font-size: 4rem;
  }
  
  .quote-card {
    padding: 2.5rem;
  }
}

/* Extra Large Desktop (1400px) */
@media screen and (min-width: 1400px) {
  .hero-slider { 
    min-height: 900px; 
  }
  
  .slide h1 {
    font-size: 4.5rem;
  }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .hero-slider { 
    min-height: 400px; 
    height: auto;
    padding: 30px 0;
  }
  
  .slide {
    padding: 30px 0;
  }
  
  .slide h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .slide p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .trust-badges {
    margin-bottom: 1rem;
  }
  
  .quote-card {
    padding: 1.5rem;
  }
}

/* High Resolution Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .slide {
    background-size: cover;
  }
}
/* ----------------------------------- */
.about-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }

        /* Subtle background pattern */
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 100, 0, 0.02) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(0, 100, 0, 0.02) 0%, transparent 20%),
                repeating-linear-gradient(45deg, rgba(0,0,0,0.01) 0px, rgba(0,0,0,0.01) 2px, transparent 2px, transparent 6px);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 2;
        }

        /* Entrance Animation Classes */
        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease forwards;
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Image styling with animation */
        .about-section img {
            transition: transform 0.6s ease, box-shadow 0.6s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            max-width: 100%;
            height: auto;
        }

        .about-section img:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        /* Title styling */
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #000000, #dd2326);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #dd2326, #000000);
            border-radius: 2px;
            animation: expandWidth 0.8s ease-out 0.5s forwards;
            transform: scaleX(0);
            transform-origin: left;
        }

        @keyframes expandWidth {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

        /* Lead text styling */
        .lead {
            font-size: 1.1rem;
            font-weight: 450;
            color: #000000;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        /* Bullet list styling */
        .bullet-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .bullet-list li {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeInList 0.5s ease forwards;
        }

        .bullet-list li:nth-child(1) { animation-delay: 0.6s; }
        .bullet-list li:nth-child(2) { animation-delay: 0.8s; }
        .bullet-list li:nth-child(3) { animation-delay: 1.0s; }
        .bullet-list li:nth-child(4) { animation-delay: 1.2s; }

        @keyframes fadeInList {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .bullet-list li i {
            color: #dd2326;
            font-size: 1.3rem;
            margin-right: 15px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .bullet-list li:hover i {
            transform: scale(1.2) rotate(360deg);
            color: #000000;
        }

        /* Button styling */
        .animated-btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, #dd2326, #000000);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px , #dd2326;
            position: relative;
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            animation: fadeInButton 0.8s ease 1.4s forwards;
        }

        @keyframes fadeInButton {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .animated-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(39, 174, 96, 0.5);
            background: linear-gradient(135deg, #000000, #dd2326);
        }

        .animated-btn:hover::before {
            left: 100%;
        }

        .animated-btn i {
            transition: transform 0.3s ease;
        }

        .animated-btn:hover i {
            transform: translateX(8px);
        }

        /* Floating elements for background interest */
        .bg-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            opacity: 0.03;
            color: #000000;
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .floating-element:nth-child(2) { bottom: 15%; right: 8%; animation-delay: 1s; }
        .floating-element:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; }
        .floating-element:nth-child(4) { bottom: 25%; left: 10%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .about-section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .animate-left,
            .animate-right {
                animation-duration: 0.8s;
            }
        }
  
        <!-- Add this CSS to your stylesheet -->
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slides-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.quote-form-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.quote-form-container .container {
  pointer-events: none;
}

.quote-form-container .row {
  pointer-events: none;
}

.quote-form-container .col-lg-5 {
  pointer-events: auto;
}

.quote-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  max-width: 450px;
  margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
  }
  
  .quote-form-container {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .quote-card {
    margin: 0 auto;
  }
  
  .slide {
    position: relative;
    height: 500px;
  }
  
  .slides-container {
    height: auto;
  }
  
  .quote-form-container .offset-lg-7 {
    margin-left: 0;
  }
}

/* Existing slider navigation styles */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.slider-arrow {
  background: rgba(255,255,255,0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.5);
}

.dots-container {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active-dot {
  background: white;
}

/* Badge tag style */
.badge-tag {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

/* Trust item styles */
.trust-item {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.trust-icon {
  color: #ffd700;
}
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.static-content-overlay {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
  background: transparent;
  pointer-events: none;
}

.static-content-overlay .container,
.static-content-overlay .row,
.static-content-overlay .col-lg-7 {
  pointer-events: none;
}

.static-content-overlay .col-lg-5 {
  pointer-events: auto;
}

.quote-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form styling - keeping exactly as before */
.quote-card h3 {
  color: #333;
  font-weight: 600;
}

.quote-card .form-control,
.quote-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
  border-color: #720101;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.15);
}

.quote-card .btn-primary {
  background: #ed2425;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.quote-card .btn-primary:hover {
  background: #ed2425;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px lch(54.23% 102.63 41.18 / 0.596);
}

.quote-card .btn-primary:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

/* Slider navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.slider-arrow {
  background: rgba(255,255,255,0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.5);
}

.dots-container {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active-dot {
  background: white;
}

/* Badge tag */
.badge-tag {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

/* Trust items */
.trust-item {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.trust-icon {
  color: #ffd700;
}

#formMessage {
  font-size: 14px;
  text-align: center;
}

#formMessage .success {
  color: #28a745;
  background: #d4edda;
  padding: 10px;
  border-radius: 5px;
}

#formMessage .error {
  color: #dc3545;
  background: #f8d7da;
  padding: 10px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-slider {
    height: auto;
    min-height: 1000px;
  }
  
  .static-content-overlay {
    padding: 50px 0;
  }
  
  .quote-card {
    margin-top: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .slide {
    position: absolute;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 1100px;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .trust-item {
    padding: 8px 12px;
  }
  
  .trust-icon {
    font-size: 1.5rem;
  }
}

/* ABOUT 
.bullet-list { list-style: none; padding: 0; }
.bullet-list li { margin-bottom: 12px; font-size: 1.1rem; }
.bullet-list i { color: var(--primary); margin-right: 14px; font-size: 1.3rem; }
.animated-btn { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 12px 35px; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; transition: var(--transition); }
.animated-btn:hover { background: var(--primary); color: white; }

/* PRODUCT CARDS */
.product-card {
  background: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  height: 100%; border: 1px solid rgba(0,0,0,0.02);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.product-card img { width: 100%; height: 230px; object-fit: cover; }
.product-info { padding: 1.5rem; }
.product-info h4 { font-weight: 600; margin-bottom: 6px; }
.small-icon { color: #666; margin-bottom: 14px; font-size: 0.9rem; }
.small-icon i { color: var(--primary); margin-right: 6px; }
.view-more { color: var(--primary); font-weight: 500; text-decoration: none; border-bottom: 2px solid transparent; transition: var(--transition); }
.view-more:hover { border-bottom-color: var(--primary); }
.btn-outline-primary-custom { border: 2px solid var(--primary); color: var(--primary); padding: 12px 38px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.btn-outline-primary-custom:hover { background: var(--primary); color: white; }
/*------------------demo ------------------------*/
/* ===== GET IN TOUCH SECTION - MINIMAL & COMPACT ===== */
.get-in-touch {
  position: relative;
  min-height: 400px;
  padding: 40px 0;
  overflow: hidden;
  background-color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
}

/* Background with subtle effect */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Lighter overlay - more transparent */
.light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

/* Premium tag - smaller */
.premium-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(221, 35, 38, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(221, 35, 38, 0.3);
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

/* ===== COMPACT FORM CARD ===== */
.compact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 2px solid rgba(19, 5, 5, 0);
}

/* Compact Form Row - Everything in one line */
.compact-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Form Groups */
.compact-group {
  flex: 1 1 0;
  min-width: 0; /* Prevents overflow */
}

.compact-group-submit {
  flex: 0 0 auto;
}

/* Compact Inputs */
.compact-input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  background: white;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.compact-input:focus {
  border-color: #dd2326;
  outline: none;
  box-shadow: 0 0 0 3px rgba(221, 35, 38, 0.1);
}

.compact-input::placeholder {
  color: #000000;
  font-size: 0.85rem;
}

/* Compact Submit Button */
.btn-compact-submit {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #dd2326;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(221, 35, 38, 0.3);
}

.btn-compact-submit:hover {
  background: #b51b1e;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(221, 35, 38, 0.4);
}

/* ===== MOSQUITO ANIMATIONS - SUBTLE ===== */
.mosquito-world {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.mosquito {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0.4;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}

.mosquito-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: wingVibration 0.3s infinite alternate ease-in-out;
}

@keyframes wingVibration {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(2deg) scale(1.02); }
}

/* Mosquito 1 - Simple left to right */
.mosquito-1 {
  top: 20%;
  left: -5%;
  animation: simpleFly 20s infinite linear;
}

@keyframes simpleFly {
  0% { left: -5%; top: 20%; transform: rotate(3deg); }
  50% { top: 30%; transform: rotate(-3deg); }
  100% { left: 105%; top: 20%; transform: rotate(3deg); }
}

/* Mosquito 2 - Simple diagonal */
.mosquito-2 {
  top: 70%;
  left: 80%;
  animation: simpleDiagonal 18s infinite alternate;
}

@keyframes simpleDiagonal {
  0% { left: 80%; top: 70%; transform: rotate(0deg); }
  50% { left: 60%; top: 50%; transform: rotate(5deg); }
  100% { left: 40%; top: 30%; transform: rotate(-5deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .compact-form-row {
    gap: 6px;
  }
}

@media (max-width: 991px) {
  .compact-form-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .compact-group {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .compact-group-submit {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .btn-compact-submit {
    width: 100%;
    border-radius: 40px;
    height: 45px;
  }
  
  .btn-compact-submit i {
    margin-right: 8px;
  }
  
  .mosquito {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .get-in-touch {
    min-height: 350px;
    padding: 30px 0;
  }
  
  .compact-form-card {
    padding: 15px;
    border-radius: 30px;
  }
  
  .compact-group {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .mosquito {
    opacity: 0.2;
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 576px) {
  .get-in-touch {
    min-height: 320px;
    padding: 20px 0;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .compact-input {
    height: 40px;
    font-size: 0.85rem;
  }
  
  .mosquito {
    display: none; /* Hide on mobile for cleanest look */
  }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
  .mosquito,
  .btn-compact-submit {
    animation: none;
    transition: none;
  }
}

  /* ===== GET IN TOUCH SECTION - MINIMAL & COMPACT ===== */
.get-in-touch {
  position: relative;
  min-height: 400px;
  padding: 40px 0;
  overflow: hidden;
  background-color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
}

/* Background with subtle effect */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Lighter overlay - more transparent */
.light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(31, 30, 30, 0.623) 0%, 
    rgba(26, 23, 23, 0.295) 100%);
  z-index: 2;
}

/* Premium tag - smaller */
.premium-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(221, 35, 38, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(221, 35, 38, 0.3);
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

/* ===== COMPACT FORM CARD ===== */
.compact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Compact Form Row - Everything in one line */
.compact-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Form Groups */
.compact-group {
  flex: 1 1 0;
  min-width: 0; /* Prevents overflow */
}

.compact-group-submit {
  flex: 0 0 auto;
}

/* Compact Inputs */
.compact-input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  background: white;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.compact-input:focus {
  border-color: #dd2326;
  outline: none;
  box-shadow: 0 0 0 3px rgba(221, 35, 38, 0.1);
}

.compact-input::placeholder {
  color: #999;
  font-size: 0.85rem;
}

/* Compact Submit Button */
.btn-compact-submit {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #dd2326;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(221, 35, 38, 0.3);
}

.btn-compact-submit:hover {
  background: #b51b1e;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(221, 35, 38, 0.4);
}

/* ===== MOSQUITO ANIMATIONS - SUBTLE ===== */

/* ===== MOSQUITO ANIMATIONS - REALISTIC FLIGHT WITH TRANSPARENT PNG ===== */
.mosquito-world {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.mosquito {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  will-change: transform, left, top, opacity;
  transform-origin: center center;
  z-index: 10;
}

/* Base mosquito image styling */
.mosquito-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  animation: wingVibration 0.25s infinite alternate ease-in-out;
}

/* More realistic wing vibration - subtle but effective */
@keyframes wingVibration {
  0% { 
    transform: rotate(0deg) scale(1); 
    filter: brightness(0.9) contrast(1.1);
  }
  25% { 
    transform: rotate(2deg) scale(1.02); 
    filter: brightness(1) contrast(1.2);
  }
  75% { 
    transform: rotate(-2deg) scale(0.98); 
    filter: brightness(0.85) contrast(1.05);
  }
  100% { 
    transform: rotate(0deg) scale(1); 
    filter: brightness(0.9) contrast(1.1);
  }
}

/* MOSQUITO 1 - Slow circular/elliptical path (top area) */
.mosquito-1 {
  top: 15%;
  left: 10%;
  width: 45px;
  height: 45px;
  opacity: 0.6;
  animation: mosquitoPath1 24s infinite ease-in-out;
  filter: blur(0.3px) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
}

@keyframes mosquitoPath1 {
  0% {
    left: 5%;
    top: 15%;
    transform: rotate(0deg) scale(1);
  }
  20% {
    left: 25%;
    top: 25%;
    transform: rotate(30deg) scale(1.1);
  }
  40% {
    left: 45%;
    top: 10%;
    transform: rotate(60deg) scale(0.95);
  }
  60% {
    left: 65%;
    top: 30%;
    transform: rotate(90deg) scale(1.05);
  }
  80% {
    left: 85%;
    top: 15%;
    transform: rotate(120deg) scale(1);
  }
  100% {
    left: 5%;
    top: 15%;
    transform: rotate(360deg) scale(1);
  }
}

/* MOSQUITO 2 - Diagonal floating with bounce (middle area) */
.mosquito-2 {
  top: 60%;
  left: 80%;
  width: 55px;
  height: 55px;
  opacity: 0.55;
  animation: mosquitoPath2 18s infinite alternate;
  filter: blur(0.5px) drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

@keyframes mosquitoPath2 {
  0% {
    left: 80%;
    top: 60%;
    transform: rotate(-5deg) scale(1);
  }
  25% {
    left: 65%;
    top: 45%;
    transform: rotate(15deg) scale(1.1);
  }
  50% {
    left: 45%;
    top: 35%;
    transform: rotate(5deg) scale(0.95);
  }
  75% {
    left: 25%;
    top: 50%;
    transform: rotate(-10deg) scale(1.05);
  }
  100% {
    left: 10%;
    top: 70%;
    transform: rotate(5deg) scale(1);
  }
}

/* MOSQUITO 3 - Figure-8 pattern (center area) */
.mosquito-3 {
  top: 40%;
  left: 30%;
  width: 48px;
  height: 48px;
  opacity: 0.65;
  animation: mosquitoPath3 22s infinite linear;
  filter: blur(0.2px) drop-shadow(0 7px 12px rgba(0, 0, 0, 0.28));
}

@keyframes mosquitoPath3 {
  0% {
    left: 30%;
    top: 40%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    left: 45%;
    top: 25%;
    transform: rotate(45deg) scale(1.08);
  }
  50% {
    left: 60%;
    top: 40%;
    transform: rotate(90deg) scale(0.95);
  }
  75% {
    left: 45%;
    top: 55%;
    transform: rotate(135deg) scale(1.05);
  }
  100% {
    left: 30%;
    top: 40%;
    transform: rotate(360deg) scale(1);
  }
}

/* MOSQUITO 4 - Erratic/swooping path (bottom area) */
.mosquito-4 {
  top: 75%;
  left: 15%;
  width: 42px;
  height: 42px;
  opacity: 0.5;
  animation: mosquitoPath4 16s infinite alternate;
  filter: blur(0.6px) drop-shadow(0 9px 14px rgba(0, 0, 0, 0.3));
}

@keyframes mosquitoPath4 {
  0% {
    left: 15%;
    top: 75%;
    transform: rotate(-8deg) scale(1);
  }
  15% {
    left: 30%;
    top: 60%;
    transform: rotate(12deg) scale(1.12);
  }
  30% {
    left: 45%;
    top: 70%;
    transform: rotate(-5deg) scale(0.9);
  }
  45% {
    left: 60%;
    top: 55%;
    transform: rotate(20deg) scale(1.08);
  }
  60% {
    left: 75%;
    top: 65%;
    transform: rotate(-12deg) scale(0.95);
  }
  75% {
    left: 60%;
    top: 80%;
    transform: rotate(8deg) scale(1.05);
  }
  90% {
    left: 40%;
    top: 70%;
    transform: rotate(-5deg) scale(1);
  }
  100% {
    left: 15%;
    top: 75%;
    transform: rotate(8deg) scale(1);
  }
}

/* Additional depth with subtle blur variations */
.mosquito-1 .mosquito-img { filter: blur(0.2px) drop-shadow(0 5px 8px rgba(0,0,0,0.2)); }
.mosquito-2 .mosquito-img { filter: blur(0.4px) drop-shadow(0 5px 8px rgba(0,0,0,0.25)); }
.mosquito-3 .mosquito-img { filter: blur(0.1px) drop-shadow(0 5px 8px rgba(0,0,0,0.15)); }
.mosquito-4 .mosquito-img { filter: blur(0.5px) drop-shadow(0 5px 8px rgba(0,0,0,0.3)); }

/* Add occasional wing speed variation */
@keyframes wingVibrationFast {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(4deg) scale(1.03); }
}

.mosquito-1 .mosquito-img { animation: wingVibration 0.22s infinite alternate; }
.mosquito-2 .mosquito-img { animation: wingVibration 0.28s infinite alternate; }
.mosquito-3 .mosquito-img { animation: wingVibration 0.2s infinite alternate; }
.mosquito-4 .mosquito-img { animation: wingVibration 0.3s infinite alternate; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 991px) {
  .mosquito {
    width: 40px;
    height: 40px;
    opacity: 0.4;
  }
  
  .mosquito-1 { animation: mosquitoPath1 28s infinite ease-in-out; }
  .mosquito-2 { animation: mosquitoPath2 22s infinite alternate; }
  .mosquito-3 { animation: mosquitoPath3 26s infinite linear; }
  .mosquito-4 { animation: mosquitoPath4 20s infinite alternate; }
}

@media (max-width: 768px) {
  .mosquito {
    width: 35px;
    height: 35px;
    opacity: 0.3;
  }
  
  .mosquito-3, .mosquito-4 {
    display: none; /* Hide 2 mosquitoes on mobile for cleaner look */
  }
  
  .mosquito-1 { animation: mosquitoPath1 32s infinite ease-in-out; }
  .mosquito-2 { animation: mosquitoPath2 26s infinite alternate; }
}

@media (max-width: 576px) {
  .mosquito {
    width: 30px;
    height: 30px;
    opacity: 0.2;
  }
  
  .mosquito-2 {
    display: none; /* Keep only 1 mosquito on very small screens */
  }
  
  .mosquito-1 { animation: mosquitoPath1 35s infinite ease-in-out; }
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
  .mosquito,
  .mosquito-img {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1200px) {
  .compact-form-row {
    gap: 6px;
  }
}

@media (max-width: 991px) {
  .compact-form-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .compact-group {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .compact-group-submit {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .btn-compact-submit {
    width: 100%;
    border-radius: 40px;
    height: 45px;
  }
  
  .btn-compact-submit i {
    margin-right: 8px;
  }
  
  .mosquito {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .get-in-touch {
    min-height: 350px;
    padding: 30px 0;
  }
  
  .compact-form-card {
    padding: 15px;
    border-radius: 30px;
  }
  
  .compact-group {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .mosquito {
    opacity: 0.2;
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 576px) {
  .get-in-touch {
    min-height: 320px;
    padding: 20px 0;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .compact-input {
    height: 40px;
    font-size: 0.85rem;
  }
  
  .mosquito {
    display: none; /* Hide on mobile for cleanest look */
  }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
  .mosquito,
  .btn-compact-submit {
    animation: none;
    transition: none;
  }
}
/* ===== PREMIUM TESTIMONIAL CAROUSEL ===== */
.about-section {
  padding: clamp(40px, 8vw, 60px) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.about-section .container {
  max-width: 100%;
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 50px);
  padding: 0 15px;
}

.section-subtitle {
  color: #9c2d2a !important;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding: 0 15px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(20px, 4vw, 40px);
  height: 2px;
  background: #9c2d2a;
  opacity: 0.3;
}

.section-subtitle::before {
  left: -10px;
}

.section-subtitle::after {
  right: -10px;
}

.section-title {
  font-size: clamp(24px, 6vw, 32px) !important;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
  padding: 0 10px;
}

.section-desc {
  font-size: clamp(14px, 2.5vw, 15px) !important;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  padding: 10px 0 20px;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  padding: 15px 5px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: clamp(15px, 3vw, 30px);
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 auto;
  background: white;
  border-radius: clamp(15px, 3vw, 30px);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  margin: 5px 0;
  width: 100%;
  max-width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(156, 45, 42, 0.12);
  border-color: rgba(156, 45, 42, 0.1);
}

.quote-icon {
  position: absolute;
  top: clamp(15px, 3vw, 20px);
  right: clamp(15px, 3vw, 20px);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: rgba(156, 45, 42, 0.1);
  z-index: 1;
}

.rating {
  margin-bottom: 15px;
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.rating i {
  color: #ffc107;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-shadow: 0 2px 4px rgba(255,193,7,0.2);
}

.review-text {
  font-size: clamp(14px, 2.2vw, 15px) !important;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 15px);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.customer-img {
  width: clamp(45px, 8vw, 60px);
  height: clamp(45px, 8vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(156, 45, 42, 0.2);
}

.customer-details h5 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.customer-location {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.customer-location i {
  color: #9c2d2a;
  font-size: 0.75rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.verified-badge i {
  font-size: 0.8rem;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(35px, 6vw, 45px);
  height: clamp(35px, 6vw, 45px);
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  color: #9c2d2a;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: #9c2d2a;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(156, 45, 42, 0.3);
}

.prev-arrow {
  left: clamp(5px, 2vw, 10px);
}

.next-arrow {
  right: clamp(5px, 2vw, 10px);
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 12px);
  margin-top: clamp(20px, 4vw, 30px);
  flex-wrap: wrap;
}

.carousel-dots .dot {
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  border-radius: 50%;
  background: rgba(156, 45, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  width: clamp(24px, 4vw, 30px);
  background: #9c2d2a;
  border-radius: 20px;
}

.carousel-dots .dot:hover {
  background: #9c2d2a;
  transform: scale(1.2);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Mobile S (320px) */
@media screen and (max-width: 374px) {
  .testimonial-card {
    padding: 18px;
  }
  
  .customer-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .customer-img {
    width: 50px;
    height: 50px;
  }
  
  .prev-arrow {
    left: 0;
  }
  
  .next-arrow {
    right: 0;
  }
  
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }
}

/* Mobile M (375px) */
@media screen and (min-width: 375px) and (max-width: 424px) {
  .testimonial-card {
    padding: 20px;
  }
  
  .customer-info {
    flex-direction: row;
    align-items: center;
  }
  
  .customer-img {
    width: 50px;
    height: 50px;
  }
  
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }
}

/* Mobile L (425px) */
@media screen and (min-width: 425px) and (max-width: 767px) {
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-img {
    width: 55px;
    height: 55px;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }
}

/* All Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
  .testimonial-carousel {
    padding: 5px 0;
  }
  
  .carousel-container {
    padding: 10px 0;
  }
  
  .carousel-track {
    gap: 15px;
  }
  
  .testimonial-card {
    min-width: calc(100% - 20px);
    margin: 0 10px;
  }
  
  .prev-arrow {
    left: 0;
  }
  
  .next-arrow {
    right: 0;
  }
  
  .carousel-arrow {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  
  .carousel-dots {
    margin-top: 25px;
  }
  
  /* Hide section subtitle lines on mobile */
  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }
  
  /* Adjust text alignment */
  .section-header {
    text-align: center;
    padding: 0 10px;
  }
  
  .review-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .verified-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* Tablet (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-card {
    min-width: calc(50% - 20px);
  }
  
  .carousel-track {
    gap: 20px;
  }
  
  .section-title {
    font-size: 28px !important;
  }
  
  .customer-info {
    gap: 12px;
  }
  
  .customer-img {
    width: 55px;
    height: 55px;
  }
}

/* Tablet Landscape (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card {
    min-width: calc(33.333% - 20px);
  }
}

/* Small Laptop (1200px to 1399px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card {
    min-width: calc(33.333% - 20px);
  }
}

/* Large Desktop (1400px and above) */
@media screen and (min-width: 1400px) {
  .testimonial-card {
    min-width: calc(33.333% - 20px);
    padding: 35px;
  }
  
  .review-text {
    font-size: 16px !important;
  }
}

/* Touch Devices Optimization */
@media (hover: none) and (pointer: coarse) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .testimonial-card {
    cursor: grab;
  }
  
  .testimonial-card:active {
    cursor: grabbing;
  }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) and (max-width: 767px) {
  .about-section {
    padding: 30px 0;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .customer-img {
    width: 40px;
    height: 40px;
  }
  
  .review-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .carousel-dots {
    margin-top: 15px;
  }
}

/* High Resolution Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .testimonial-card {
    border-width: 0.5px;
  }
}
/* ===== WHY CHOOSE US SECTION - NEW FORMAT ===== */
#jai-about-why {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.jai-about-why-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Content Styles */
.jai-about-why-left {
  padding-right: 30px;
}

.jai-about-why-tag {
  display: inline-block;
  color: #dd2326;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.jai-about-why-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;

  background: linear-gradient(90deg, #000000, #c52321, #940b0938);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.jai-about-why-title span {
  color: #dd2326;
  position: relative;
  display: inline-block;
}

.jai-about-why-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(221,35,38,0.1);
  z-index: -1;
}

.jai-about-why-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Product Image Placeholder */
.jai-about-why-product {
  margin-top: 30px;
}
/* Responsive Design */
@media (max-width: 991px) {
  .jai-about-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .jai-about-why-left {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #jai-about-why {
    padding: 60px 20px;
  }
  
  .jai-about-why-title {
    font-size: 2rem;
  }
  
  .jai-about-feature-item {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .jai-about-feature-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .jai-about-why-title {
    font-size: 1.8rem;
  }
}
    #jai-about-why {
      padding: 100px 20px;
      background: white;
    }
    
    .jai-about-why-container {
      max-width: 1300px;
      margin: 0 auto;
    }
    
    .jai-about-why-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .jai-about-why-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
    }
    
    .jai-about-why-header h2 span {
      color: #dd2326;
    }
    
    .jai-about-why-header p {
      color: #666;
      font-size: 1.1rem;
    }
    
    .jai-about-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  
/* Premium Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237,36,37,0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ed2425;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.section-title .accent {
  color: #ed2425;
  position: relative;
  display: inline-block;
}

.section-title .accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(237,36,37,0.2);
  z-index: -1;
}

.section-desc {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel Styles */
.testimonial-carousel {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  z-index: 2;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
  padding: 20px 0;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 350px;
  background: white;
  border-radius: 25px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(237,36,37,0.15);
}

.quote-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: rgba(237,36,37,0.1);
  transition: all 0.3s;
}

.testimonial-card:hover .quote-icon {
  color: rgba(237,36,37,0.2);
  transform: scale(1.1);
}

.rating {
  margin-bottom: 20px;
  color: #ffb800;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-radius: 50%;
}

.customer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(237,36,37,0.2);
}

.customer-details h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.customer-location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer-location i {
  color: #ed2425;
  font-size: 12px;
}

.verified-badge {
  font-size: 13px;
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 5px;
}

.verified-badge i {
  font-size: 14px;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  color: #333;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: #ed2425;
  color: white;
  box-shadow: 0 10px 25px rgba(237,36,37,0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dots .dot.active {
  width: 30px;
  background: #ed2425;
}

/* Stats Bar */
.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding: 30px;
  background: white;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-bottom: 5px;
}

.stat-number .accent {
  color: #ed2425;
  font-size: 24px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-stars {
  margin-top: 8px;
  color: #ffb800;
  font-size: 14px;
}

/* Animation for entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .testimonial-carousel {
    padding: 0 40px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 280px;
    padding: 25px 20px;
  }

  .testimonial-stats {
    flex-direction: column;
    gap: 30px;
    border-radius: 30px;
    padding: 20px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Touch device optimization */
@media (hover: none) {
  .carousel-arrow {
    display: none;
  }
}

/* Loading animation for images */
.customer-img {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 15px rgba(237,36,37,0.2);
  }
  50% {
    box-shadow: 0 5px 25px rgba(237,36,37,0.4);
  }
  100% {
    box-shadow: 0 5px 15px rgba(237,36,37,0.2);
  }
}


/* TESTIMONIAL CARDS */
.testimonial-card { background: white; border-radius: 30px; padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); height: 100%; }
.testimonial-card img { width: 40px; height: 40px; object-fit: cover; margin-bottom: 1rem; border: 3px solid var(--primary); }
.review-text { font-style: italic; color: #444; }

/* BLOG CARDS */
.blog-card { background: white; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card img { height: 200px; object-fit: cover; width: 100%; }
.blog-content { padding: 1.5rem; }
.blog-content a { color: var(--primary); text-decoration: none; font-weight: 500; }

/* FOOTER */
.footer { background: var(--black); color: #ccc; }
.footer .logo-footer { font-weight: 700; font-size: 2rem; color: white; }
.footer h5 { color: white; margin-bottom: 20px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #ccc; text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--primary); padding-left: 5px; }
.contact-footer li i { width: 24px; color: var(--primary); }
.footer-bottom { border-top: 1px solid #222; color: #aaa; }

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .slide-content h1 { font-size: 2.8rem; }
  .quote-form-banner { border-radius: 30px; }
  .quick-quote { justify-content: center; }
}
@media (max-width: 768px) {
  .top-left, .top-right { justify-content: center; width: 100%; }
  .hero-slider { min-height: 600px; }
  .slide-content h1 { font-size: 2.2rem; }
  .quick-quote input, .quick-quote button { width: 100%; }
  .quote-form-banner { border-radius: 20px; padding: 18px; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 576px) {
  .slide-content h1 { font-size: 1.8rem; }
  .product-card img { height: 180px; }
}
-----------------------------------
/*about us page */
   /* ===== RESET & BASE STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #222;
      line-height: 1.6;
      background: #ffffff;
      overflow-x: hidden;
    }
    
    @media (max-width: 991.98px) {
  .hide-on-mobile {
    display: none;
  }
}.testimonial-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    min-width: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(221, 35, 38, 0.12);
    border-color: rgba(221, 35, 38, 0.1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    color: #dd2326;
    opacity: 0.15;
}

.rating {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 120px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dd2326;
    padding: 2px;
}

.customer-details h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.customer-location {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-location i {
    color: #dd2326;
    font-size: 12px;
}

.verified-badge {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px dashed #e0e0e0;
    padding-top: 15px;
    margin-top: 5px;
}

.verified-badge i {
    font-size: 16px;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dd2326;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(221, 35, 38, 0.3);
}

.carousel-arrow:hover {
    background: #b51c1f;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(221, 35, 38, 0.4);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #dd2326;
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 20px 15px;
    }

    .carousel-track {
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px 15px;
        min-width: calc(100% - 30px);
        margin: 0 5px;
    }

    .quote-icon {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }

    .rating {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .review-text {
        font-size: 14px !important;
        line-height: 1.6;
        min-height: 100px;
        margin-bottom: 15px;
    }

    .customer-info {
        gap: 10px;
    }

    .customer-img {
        width: 50px;
        height: 50px;
    }

    .customer-details h5 {
        font-size: 16px;
    }

    .customer-location {
        font-size: 12px;
    }

    .verified-badge {
        font-size: 12px;
        padding-top: 12px;
    }

    .verified-badge i {
        font-size: 14px;
    }

    /* Navigation arrows for mobile */
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(221, 35, 38, 0.9);
        backdrop-filter: blur(5px);
    }

    .prev-arrow {
        left: 5px;
    }

    .next-arrow {
        right: 5px;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 25px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dots .dot.active {
        width: 24px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 15px 12px;
    }

    .review-text {
        font-size: 13px !important;
        min-height: 90px;
    }

    .customer-img {
        width: 45px;
        height: 45px;
    }

    .customer-details h5 {
        font-size: 15px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
/* Mobile view styles */
@media (max-width: 991.98px) {
    /* Reduce logo size */
    .logo-img {
        height: 45px !important; /* Smaller logo for mobile */
    }
    
    /* Hide desktop GET A QUOTE button */
    .desktop-quote {
        display: none !important;
    }
    
    /* Optional: Adjust spacing for better mobile layout */
    .mobile-toggle {
        font-size: 24px;
        color: #333;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo-img {
        height: 30px !important; /* Even smaller for very small screens */
    }
}
