/* Previous CSS styles unchanged */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80"); /* Replace with your image path */
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* This keeps the image fixed */
  background-position: center;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

.search-container {
  position: sticky;
  top: 100px; /* Adjust based on your navbar height; matches header height when scrolled */
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 2rem auto;
  background-color: transparent;
  z-index: 999; /* Below navbar (z-index: 1000) but above other content */
  transition: top 0.3s ease;
}
.search-container.sticky {
  top: 100px; /* Adjust to navbar height when scrolled; matches header-scrolled height */
  background-color: transparent;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0); /* Optional: subtle shadow for sticky state */
}
.search-input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #a8b7ca;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.822);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(173, 196, 223, 0.795);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  list-style: none;
  /* margin-top: 2px; */
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.search-suggestions li {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-suggestions li:hover {
  background: #f1f5f9;
  color: #1e40af;
}
.search-suggestions.active {
  display: block;
}
/* Hero Section */
.hero {
  width: 100%;
  height: fit-content;
  background: linear-gradient(
    135deg,
    #0f172ab0 0%,
    #1e293bad 50%,
    #334155bb 100%
  );
  color: white;
  text-align: center;
  padding: 140px 5% 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80");
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1; */
}
.background1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000031;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}
.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  animation: fadeInUp 1s ease;
  line-height: 1.2;
}
.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  animation: fadeInUp 1s ease 0.6s both;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  min-width: 120px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease 0.9s both;
  flex-wrap: wrap;
}
.cta-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}
.cta-secondary {
  background: transparent;
  color: white;
  padding: 14px 30px;
  border: 2px solid #3b82f6;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.cta-secondary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}
/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.floating-icon {
  position: absolute;
  color: rgba(48, 117, 230, 0.507);
  animation: float 6s ease-in-out infinite;
}
.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}
.floating-icon:nth-child(4) {
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Services Banner */
.services-banner {
  background: #1e40af;
  color: white;
  padding: 2rem 5%;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.service-item i {
  font-size: 1.8rem;
  color: #60a5fa;
}
.service-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.service-text p {
  font-size: 0.85rem;
  opacity: 0.9;
}
/* Section Styles */
section {
  padding: 80px 5%;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* About Section */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}
.about-text p {
  margin-bottom: 1.2rem;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.about-stats {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-box {
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.stat-box .number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  display: block;
}
.stat-box .label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}
/* Products Section */
.products {
  background: white;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 2px solid #3b82f6;
  background-color: #f8fafc;
}
.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.5),
    rgba(30, 64, 175, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.product-btn {
  background: white;
  color: #1e40af;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}
.product-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #1e40af;
  font-weight: 600;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  opacity: 0.9;
}
/* Product Loading Animation */
.products-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  flex-direction: column;
  gap: 1rem;
}
.products-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3b82f6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}
.products-error {
  text-align: center;
  color: #ef4444;
  font-size: 1rem;
  margin-top: 1rem;
  display: none;
}
/* Why Choose Us Section */
.why-choose {
  background: linear-gradient(135deg, #1e293b81 0%, #33415581 100%);
  color: white;
}
.why-choose .section-title {
  color: white;
  -webkit-text-fill-color: white;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.why-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}
.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.why-item p {
  opacity: 0.9;
  font-size: 0.95rem;
}
/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
}
.contact-details h4 {
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.contact-details p {
  color: #666;
  font-size: 0.9rem;
}
.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-form,
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.contact-form::before,
.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.95rem;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  background: #f8fafc;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  top: -10px;
  left: 8px;
  font-size: 0.75rem;
  color: #3b82f6;
  background: white;
  padding: 0 6px;
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group input:invalid(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}
.form-group input:invalid:not(:focus):not(:placeholder-shown) + label,
.form-group select:invalid(:focus):not(:placeholder-shown) + label {
  color: #ef4444;
}
.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  display: none;
}
.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.submit-btn {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.submit-btn:hover {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.whatsapp-btn:hover {
  background: #2ecc71;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
/* Loading Animation */
.form-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.form-loading.active {
  opacity: 1;
  visibility: visible;
}
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Success Message */
.success-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: #10b981;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 11;
}
.success-message.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.whatsapp-float i {
  color: white;
  font-size: 1.8rem;
}
/* Admin Prompt */
.admin-prompt {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.admin-prompt.active {
  display: flex;
}
.prompt-box {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  text-align: center;
}
.prompt-box h3 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.prompt-box input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.prompt-box input:focus {
  outline: none;
  border-color: #3b82f6;
}
.prompt-box button {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.prompt-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
/* Enquiry Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}
/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  
  .hero {
    padding: 100px 3% 60px;
    margin-top: 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  .cta-primary,
  .cta-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-item {
    flex-direction: column;
    text-align: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form,
  .modal-content {
    padding: 1.5rem;
  }
  section {
    padding: 60px 3%;
  }
  .services-banner {
    padding: 1.5rem 3%;
  }
  
  .whatsapp-float {
    bottom: 70px;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
  .scroll-top {
    bottom: 120px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}
@media (max-width: 575px) {
  .whatsapp-btn {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 80px 3% 50px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .subtitle {
    font-size: 0.9rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.85rem;
  }
  .product-image {
    height: 140px;
  }
  .product-card h3 {
    font-size: 1.3rem;
  }
  .why-item {
    padding: 1.5rem;
  }
  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .why-item h3 {
    font-size: 1.2rem;
  }
  .contact-item {
    padding: 0.8rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 0.9rem;
  }
  .submit-btn,
  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .scroll-top {
    bottom: 120px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .whatsapp-float {
    width: 45px;
    height: 45px;
  }
  .whatsapp-float i {
    font-size: 1.6rem;
  }
  .search-container {
    max-width: 300px !important;
  }
  .form-actions{
    flex-direction: column !important;
  }
}
@media (max-width: 400px) {
  .contact-icon {
    display: none !important;
  }
  
}
@media (max-width: 330px) {
  .contact-info {
    max-width: 300px;
    padding: 5px;
  }
  .contact-item {
    margin-bottom: 5px;
  }
  .contact-form {
    padding: 12px;
  }
  .contact-form h3 {
    margin-bottom: 5px !important;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-actions {
    gap: 5px;
  }
}
