
.section-title {
  position: relative; /* Use relative instead of absolute */
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #fff;
  margin: 10px auto 0;
}
    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #f59e0b;
      --dark: #1e293b;
      --light: #f8fafc;
      --gray: #94a3b8;
      --success: #10b981;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      overflow-x: hidden;
    }
    
    .hidden {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    
    /* Premium Hero Section */
    /* Ultra-Modern Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: floating-orbs 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-glow 3s ease-in-out infinite alternate;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.service-highlight {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 1.8rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.service-highlight:hover::before {
  left: 100%;
}

.service-highlight:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-highlight i {
  margin-right: 0.8rem;
  font-size: 1.3rem;
  color: #ffd700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  box-shadow: 
    0 15px 35px rgba(255, 107, 107, 0.4),
    0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 25px 50px rgba(255, 107, 107, 0.6),
    0 0 0 1px rgba(255,255,255,0.2);
  color: white;
}

.cta-button i {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(8px) rotate(15deg);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.hero-image:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.2);
}

.quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
  animation: badge-float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float-up 15s linear infinite;
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 20%; animation-delay: 2s; }
.floating-element:nth-child(3) { left: 30%; animation-delay: 4s; }
.floating-element:nth-child(4) { left: 40%; animation-delay: 6s; }
.floating-element:nth-child(5) { left: 50%; animation-delay: 8s; }
.floating-element:nth-child(6) { left: 60%; animation-delay: 10s; }
.floating-element:nth-child(7) { left: 70%; animation-delay: 12s; }
.floating-element:nth-child(8) { left: 80%; animation-delay: 14s; }

/* Animations */
@keyframes floating-orbs {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes title-glow {
  0% { text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
  100% { text-shadow: 0 4px 30px rgba(255,255,255,0.3); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4), 0 0 0 1px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 20px 45px rgba(255, 107, 107, 0.6), 0 0 0 1px rgba(255,255,255,0.2); }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-up {
  0% { 
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% { 
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .service-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .service-highlight {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }
}

    
    /* Section Styling */
    .section {
      padding: 6rem 0;
      position: relative;
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      width: 60px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    .section-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 3rem;
    }
    
    /* Feature Cards */
/* Modern Feature Cards Section */
.features-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/*.section-title {*/
/*  color: white;*/
/*  font-size: 2.5rem;*/
/*  font-weight: 700;*/
/*  margin-bottom: 3rem;*/
/*  text-shadow: 0 2px 10px rgba(0,0,0,0.3);*/
/*}*/

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1),
    0 0 0 1px rgba(255,255,255,0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-20px) rotateX(5deg);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,255,255,0.3);
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .service-icon::after {
  opacity: 1;
  animation: pulse-ring 1.5s infinite;
}

.service-icon i {
  font-size: 2.2rem;
  color: white;
  transition: transform 0.4s ease;
}

.feature-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.feature-card:hover .service-icon i {
  transform: scale(1.2);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: center;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #667eea;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.7;
  text-align: center;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #2d3748;
}

.feature-card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-card a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
}

/* Additional Card Variants */
.feature-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.feature-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

.feature-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  box-shadow: 0 10px 30px rgba(254, 202, 87, 0.4);
}

.feature-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  box-shadow: 0 10px 30px rgba(168, 237, 234, 0.4);
}

/* Modern Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.testimonials-section .section-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}

.testimonials-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.3);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(240, 147, 251, 0.1), transparent);
  animation: rotate-gradient 8s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-25px) rotateX(8deg) rotateY(2deg);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.4);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.4s ease;
}

.customer-avatar::before {
  content: attr(data-initial);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-card:hover .customer-avatar {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.customer-info h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  position: relative;
  z-index: 2;
}

.customer-info h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.customer-info h4 a:hover {
  color: #667eea;
}

.rating {
  display: flex;
  gap: 5px;
  margin: 1rem 0;
  position: relative;
  z-index: 2;
}

.rating i {
  font-size: 1.2rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transition: transform 0.2s ease;
}

.testimonial-card:hover .rating i {
  animation: star-bounce 0.6s ease infinite alternate;
}

.testimonial-card:hover .rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .rating i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:hover .rating i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:hover .rating i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:hover .rating i:nth-child(5) { animation-delay: 0.4s; }

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  font-style: italic;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: 20px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  background: rgba(255,255,255,0.8);
  transform: translateX(5px);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: rgba(102, 126, 234, 0.2);
  z-index: 1;
  transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.2) rotate(5deg);
  color: rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes rotate-gradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes star-bounce {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* Card Variants */
.testimonial-card:nth-child(1) .customer-avatar {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.testimonial-card:nth-child(2) .customer-avatar {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.testimonial-card:nth-child(3) .customer-avatar {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  box-shadow: 0 8px 25px rgba(254, 202, 87, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonials-section .section-title {
    font-size: 2.2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
  }
  
  .customer-avatar::before {
    font-size: 1.2rem;
  }
}


    /* Service Areas */
    .service-area {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background: white;
      border-radius: 50px;
      margin: 0 0.75rem 1rem 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .service-area:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    }
    
    /* FAQ Cards */
    .faq-card {
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .faq-card .card-header {
      background: white;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(0,0,0,0.03);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .faq-card .card-header:hover {
      background: rgba(37, 99, 235, 0.03);
    }
    
    .faq-card .card-header h3 {
      margin: 0;
      font-size: 1.25rem;
      position: relative;
      padding-right: 30px;
    }
    
    .faq-card .card-header h3::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: var(--primary);
    }
    
    .faq-card .card-header.collapsed h3::after {
      content: '-';
    }
    
    .faq-card .card-body {
      padding: 1.5rem;
      background: white;
    }
    
    /* Map Section */
    .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(0,0,0,0.05);
    }
    
    /* Weather Widget */
    .weather-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    /* Background Patterns */
    .bg-pattern {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0.03;
      pointer-events: none;
      background-image: radial-gradient(var(--primary) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
      
      .section {
        padding: 4rem 0;
      }
    }
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-section {
        min-height: 600px;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
    
    /* Animations */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .floating {
      animation: float 6s ease-in-out infinite;
    }

  .hero-section {
    min-height: 600px;
    height: 90vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(105deg, rgba(10,32,68,0.85) 0%, rgba(10,32,68,0.7) 100%), 
                url('assets/images/windshield-repair-background.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }

  .hero-content {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
  }

  .service-highlight {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .service-highlight:hover {
    background: var(--primary);
    transform: translateY(-2px);
  }

  .hero-image-wrapper {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
  }

  .quality-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @media (max-width: 992px) {
    .hero-section {
      height: auto;
      min-height: auto;
      padding: 100px 0;
      text-align: center;
    }
    
    .hero-content {
      max-width: 100%;
      margin-bottom: 40px;
    }
    
    .service-highlights {
      justify-content: center;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
  }
  
  /*table css*/
.zip-table-wrapper {
  max-height: 420px;
  overflow-y: auto;
  margin: 0 auto 2rem auto;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(30,41,59,0.10);
  background: #fff;
}
.zip-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.zip-table th, .zip-table td {
  padding: 1.05rem 1.2rem;
  text-align: left;
  vertical-align: middle;
  font-size: 1.08rem;
}
.zip-table th {
  background: #f4f6fa;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.13rem;
  position: sticky;
  top: 0;
  z-index: 2;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #f59e0b;
  box-shadow: 0 2px 8px rgba(245,158,11,0.04);
}
.zip-table td {
  color: #22223b;
  border-bottom: 1px solid #f4f6fa;
  background: #fff;
}
.zip-table tr:nth-child(even) td {
  background: #f9fafb;
}
.zip-table tr:hover td {
  background: #fff8ec;
  color: #1e293b;
  box-shadow: 0 2px 10px rgba(245,158,11,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* Make all links look like plain text, except for View Map */
.zip-table td a:not(.map-btn) {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #e5e7eb;
  padding-bottom: 1px;
  transition: color 0.2s, border-bottom 0.2s;
}
.zip-table td a:not(.map-btn):hover,
.zip-table td a:not(.map-btn):focus {
  color: #2563eb;
  border-bottom: 1px solid #2563eb;
  background: none;
  text-decoration: none;
}
.zip-table tr:hover td a:not(.map-btn) {
  color: #1e293b !important;
  border-bottom: 1px solid #1e293b;
}

/* View Map button style */
.map-btn {
  display: inline-block;
  background: #f59e0b;
  color: #fff !important;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(245,158,11,0.10);
  font-size: 1em;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.map-btn:hover, .map-btn:focus {
  background: #d97706;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(245,158,11,0.16);
  text-decoration: none;
}

@media (max-width: 900px) {
  .zip-table th, .zip-table td { font-size: 1rem; padding: 0.8rem 0.7rem; }
}
@media (max-width: 700px) {
  .zip-table, .zip-table thead, .zip-table tbody, .zip-table tr, .zip-table th, .zip-table td {
    display: block;
    width: 100%;
  }
  .zip-table thead {
    display: none;
  }
  .zip-table tr {
    margin-bottom: 1.2rem;
    background: #fff;
    box-shadow: 0 1px 6px rgba(30,41,59,0.05);
    border-radius: 10px;
    padding: 0.5rem 0;
  }
  .zip-table td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #f4f6fa;
    position: relative;
    background: #fff !important;
  }
  .zip-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #8a8d99;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
  }
  .zip-table-wrapper {
    max-height: 380px;
  }
}