/* 🌟 Preloader Styling */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #e0fff9 0%, #b3e7ff 100%);
  background-size: 400% 400%;
  animation: preloaderBackgroundPulse 3s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeZoom 1.5s ease-in-out infinite alternate;
}

.loader-tagline {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  color: #006633; /* Green */
  background: linear-gradient(to right, #009999, #0073e6); /* Green to Blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-bar-container {
  width: 200px;
  height: 10px;
  background: #cceeff;
  border-radius: 10px;
  margin-top: 16px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #00cc99, #00aaff);
  animation: fillLoaderBar 2s infinite ease-in-out;
  border-radius: 10px;
}

@keyframes fillLoaderBar {
  0% { width: 0%; }
  50% { width: 80%; }
  100% { width: 0%; }
}

@keyframes preloaderBackgroundPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* 🔵 Title */
.loader-logo {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  text-shadow: 0 0 6px rgba(0,255,255,0.3);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 25px;
}

.loader-logo span {
  color: #0044cc;
  text-shadow: 0 0 10px rgba(0,255,200,0.6);
}

/* 🔵 Pulse Ring */
.loader-pulse {
  width: 40px;
  height: 40px;
  border: 4px solid transparent;
  border-top: 4px solid #00e6cf;
  border-radius: 50%;
  animation: pulseSpin 1.1s linear infinite;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.5);
}

@keyframes pulseSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* === Site Background Gradient === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #0077b6, #00b894);
  background-attachment: fixed;
  background-size: cover;
  color: #ffffff; /* Optional: Makes text readable on dark bg */
}

/* ===================================================
🔷 Header Glass Style
=================================================== */

.glass-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 500;
  background: linear-gradient(135deg, #e0fff9 0%, #00aaff 100%);
  padding: 15px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.glass-header .container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo-img {
  max-height: 100%;
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.logo {
  height: auto;
  max-height: none;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo wrapper fills the full height of header */
.logo-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

.desktop-nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.desktop-nav a:hover {
  color: #01dfc6;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #01dfc6;
  transition: 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.hamburger {
  font-size: 28px;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  z-index: 999;
}

.mobile-nav a {
  padding: 12px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

.mobile-nav a:hover {
  color: #01dfc6;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-nav.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .main-logo img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .main-logo img {
    max-height: 50px;
  }
}

/* ===================================================
🌇 HERO SECTION
=================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-color: #0e0e0e; /* fallback */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/banner2.jpg') center center / cover no-repeat;
  filter: blur(6px) brightness(0.6); /* 🔹 Blurred and dimmed */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Glow effect for contrast */
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 28px;
  background: linear-gradient(to right, #00cc99, #0099cc);
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* ✨ Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}
.fade-in.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
🎯 Services Section
============================ */
.services-section {
  background: linear-gradient(to bottom, #dff6ff, #e6fbff); /* Light aqua-white gradient */
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9a6;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #00d9a6;
  left: 20%;
  bottom: -10px;
  border-radius: 10px;
}

.section-subtitle {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 60px;
}

/* === Service Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 40px;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  max-width: 280px;
  width: 100%;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #00d9a6;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 217, 166, 0.25);
}

/* === Icons === */
.service-icon {
  font-size: 36px;
  color: #00d9a6;
  margin-bottom: 20px;
}

/* === Text === */
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

/* === Explore Button === */
.explore-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 36px;
  background: linear-gradient(90deg, #00cc99, #00aaff);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 5px 15px rgba(0, 217, 166, 0.2);
  transition: 0.3s ease;
}

.explore-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00aaff, #00cc99);
}

/* === Scroll Animation === */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}

.zoom-in.animate {
  animation: zoomIn 0.9s ease-out forwards;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================================
🌟 ABOUT SECTION WITH IMAGE + GLASS CARD (Updated Colors & Responsive Fix)
================================================= */
/* 📱 Default: Mobile-First (Card Layout) */
.about-section {
  background: linear-gradient(to bottom right, #d0eaff, #b3d9ff);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.about-card-responsive {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.about-img-responsive {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00cfcf;
  margin-bottom: 10px;
}

.subtext {
  color: #3399cc;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.4);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #222;
  min-width: 100px;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 255, 200, 0.15);
}

.about-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(to right, #00cc99, #0099cc);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.about-cta-btn:hover {
  transform: scale(1.05);
}

/* 💻 Desktop View: Switch to Side-by-Side Layout */
@media (min-width: 992px) {
  .about-card-responsive {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 50px;
  }

  .about-img-responsive {
    flex: 1;
    max-width: 500px;
    margin: 0;
  }

  .about-content {
    flex: 1;
  }

  .about-stats {
    justify-content: flex-start;
  }
}

/* 🌟 Process Section Background */
.process-section {
  background: linear-gradient(to bottom right, #e8f9f7, #d0f0ff);
  padding: 100px 20px;
  text-align: center;
}

/* 👣 Steps Container */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

/* 🧼 Individual Step Card */
.step-card {
  background: #fff;
  padding: 30px 25px;
  width: 230px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 217, 166, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  border-top: 4px solid #00cc99;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 217, 166, 0.25);
}

/* 🔢 Circle Step Number */
.step-number {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #00cc99, #00aaff);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  line-height: 45px;
  margin-bottom: 15px;
}

/* 🔠 Headings & Paragraph */
.step-card h3 {
  font-size: 1.1rem;
  color: #00a58e;
  margin-bottom: 10px;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
}

/* 🔁 Animate on Scroll (using zoom-in from existing code) */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}

.zoom-in.animate {
  animation: zoomIn 0.9s ease-out forwards;
}

/* 🌈 Staggered Testimonials Section */
.testimonials-staggered {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.testimonial-masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

/* 🧼 Individual Testimonial Card */
.testimonial-box {
  background: #f4fbfb;
  color: #333;
  padding: 25px 20px;
  width: 260px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 204, 204, 0.1);
  font-style: italic;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 204, 204, 0.25);
}

/* 👤 Author name */
.testimonial-box .author {
  margin-top: 15px;
  font-weight: 600;
  font-style: normal;
  color: #007788;
}

/* 🎯 Variants: Some Tilted, Some Floating */
.tilt {
  transform: rotate(-1.5deg);
}
.float {
  transform: translateY(-8px);
}

/* ✨ Anim Delay (Optional) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* 📱 Responsive Stack */
@media (max-width: 768px) {
  .testimonial-masonry {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-box {
    width: 90%;
    transform: none !important;
  }
}

/* 💫 CTA Ribbon Section */
.cta-ribbon {
  background: linear-gradient(to right, #0044cc, #00cfcf);
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 30px rgba(0, 204, 204, 0.3);
  margin: 100px 0;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-text {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.cta-action-button {
  background: #fff;
  color: #0044cc;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta-action-button:hover {
  background: #00cfcf;
  color: #fff;
  transform: scale(1.05);
}

/* 📱 Responsive */
@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
    justify-content: center;
  }
}

/* 🌌 Footer Styling */
.site-footer {
  background: #0a0a0a;
  color: #ddd;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

/* 🔳 Footer Layout */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  background-color: #f9f6ee; /* off-white */
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #aaa;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* 📎 Footer Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00cfcf;
  text-shadow: 0 0 5px rgba(0,255,255,0.2);
}

/* 📞 Contact */
.footer-col p {
  margin: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col i {
  color: #00e0ff;
  font-size: 1.1rem;
  width: 18px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #00e0ff;
}

/* ✉️ Subscribe Form */
.footer-col.subscribe input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 100%;
  margin-bottom: 12px;
}

.footer-col.subscribe button {
  background: linear-gradient(to right, #00cc99, #0099cc);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.footer-col.subscribe button:hover {
  transform: scale(1.03);
  background: linear-gradient(to right, #0099cc, #00cc99);
}

/* 🔗 Bottom Area */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
}

.social-icons {
  display: flex;
  gap: 18px; /* 🔧 Increase to 18–20px for cleaner spacing */
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
  text-decoration: none; /* 💡 This removes the underline */
}

.social-icons a:hover {
  color: #00cfcf;
  text-shadow: 0 0 6px #00f9ff;
}

footer .copyright {
  font-size: 0.85rem;
  color: #777;
}

/* 📱 Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col.subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col.subscribe input, .footer-col.subscribe button {
    width: 100%;
  }
}

/* 🌟 ABOUT US WRAPPER */
.aboutus-section {
  background: linear-gradient(to bottom, #f4f4f4, #e9fcff);
  padding: 100px 20px;
  color: #1a1a1a;
}

/* 🎯 Flex Container */
.aboutus-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  align-items: flex-start;
  gap: 60px;
}

/* 📝 Text Side */
.aboutus-content {
  flex: 1;
  min-width: 320px;
}

.aboutus-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 10px;
}

.aboutus-highlight {
  font-size: 1.2rem;
  color: #00a2b8;
  margin-bottom: 25px;
  font-weight: 500;
}

.aboutus-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

/* ✔️ Feature List */
.aboutus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.aboutus-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222;
}

.aboutus-list i {
  color: #00cc99;
  margin-right: 10px;
}

/* 🚀 CTA */
.aboutus-cta {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #00cc99, #00aaff);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.aboutus-cta:hover {
  background: linear-gradient(to right, #00aaff, #00cc99);
  transform: scale(1.05);
}

/* 📸 Image + Stats */
.aboutus-side {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.aboutus-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* 🔢 Stats */
.aboutus-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.aboutus-stat-box {
  background: #fff;
  flex: 1;
  min-width: 100px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 204, 204, 0.1);
}

.aboutus-stat-box span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00aaff;
  display: block;
}

.aboutus-stat-box p {
  font-size: 0.9rem;
  color: #444;
  margin-top: 8px;
}

/* 📱 Responsive Layout */
@media (max-width: 992px) {
  .aboutus-container {
    flex-direction: column;
    text-align: center;
  }

  .aboutus-stats {
    justify-content: center;
  }

  .aboutus-content, .aboutus-side {
    padding: 0 10px;
  }
}

/* 🤝 Meet the Team Styling */
.team-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.team-container {
  max-width: 1300px;
  margin: auto;
}

.team-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.1rem;
  color: #00b4c8;
  margin-bottom: 60px;
}

/* 🧑‍🤝‍🧑 Team Grid Layout */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* 🪪 Team Card */
.team-card {
  background: #f8fefe;
  padding: 25px 20px;
  width: 260px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 204, 204, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 204, 204, 0.18);
}

/* 👤 Profile Image */
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* 🧾 Text Details */
.team-card h3 {
  font-size: 1.1rem;
  color: #003e70;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.95rem;
  color: #00b4c8;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.9rem;
  color: #444;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }
}

.aboutus-mission-vision {
  background: #f9fbfc;
  padding: 100px 20px;
  text-align: center;
}

.aboutus-mv-container {
  max-width: 900px;
  margin: auto;
}

.mv-title {
  font-size: 2rem;
  color: #0044cc;
  margin-bottom: 15px;
  font-weight: 700;
}

.mv-paragraph {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 400;
}

.aboutus-service-areas {
  background: linear-gradient(to bottom right, #e6faff, #d2f7ff);
  padding: 100px 20px;
  text-align: center;
}

.aboutus-areas-container {
  max-width: 1000px;
  margin: auto;
}

.areas-title {
  font-size: 2.2rem;
  color: #00aaff;
  font-weight: 700;
  margin-bottom: 10px;
}

.areas-subtitle {
  font-size: 1.1rem;
  color: #006a7c;
  margin-bottom: 40px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
}

.areas-list li {
  background: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 204, 204, 0.1);
  font-weight: 500;
  color: #007888;
  transition: transform 0.3s ease;
}

.areas-list li:hover {
  transform: scale(1.05);
}

/* 🔍 Search Box Styling — Centered and Responsive */
.services-search {
  display: block;
  margin: 0 auto 50px;
  padding: 12px 24px;
  width: 100%;
  max-width: 500px;
  font-size: 1rem;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

.services-search:focus {
  box-shadow: 0 6px 15px rgba(0, 204, 204, 0.2);
}


/* 💼 Services Page Styling */
.services-page {
  background: #f5fafd;
  padding: 100px 20px;
  text-align: center;
}

.servicespage-container {
  max-width: 1300px;
  margin: auto;
}

.servicespage-title {
  font-size: 2.4rem;
  color: #0044cc;
  font-weight: 700;
  margin-bottom: 10px;
}

.servicespage-subtitle {
  font-size: 1.1rem;
  color: #00798a;
  margin-bottom: 50px;
}

/* 🧹 Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

/* 📦 Individual Service Card */
.service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 204, 204, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 204, 204, 0.15);
}

.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-item h3 {
  font-size: 1.2rem;
  color: #003e70;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* 📞 CTA Button */
.service-book-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right, #00cc99, #00aaff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.service-book-btn:hover {
  transform: scale(1.05);
}

/* ❓ FAQ Styling */
.faq-section {
  background: #fefeff;
  padding: 100px 20px;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-title {
  font-size: 2.2rem;
  color: #0044cc;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #00aacc;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #e0f4f7;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f8fafa;
  padding: 0 18px;
}

.faq-answer p {
  font-size: 0.95rem;
  padding: 15px 0;
  color: #444;
}

/* 🌟 OUR CLEANING PROCESS SECTION */
.ourwork-process {
  background: linear-gradient(to right, #e0f7ff, #f0ffff);
  padding: 100px 20px;
  text-align: center;
}

/* 📦 Container (reuse) */
.ourwork-container {
  max-width: 1300px;
  margin: auto;
}

/* 🔠 Title */
.ourwork-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0044cc;
}

.ourwork-subtitle {
  font-size: 1.1rem;
  color: #007a88;
  margin-bottom: 60px;
}

/* 🧹 Process Step Grid */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* 🪪 Process Card */
.process-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 204, 204, 0.06);
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

/* 🧩 Icon Styling */
.process-card i {
  font-size: 36px;
  color: #00aaff;
  margin-bottom: 20px;
}

/* 🔤 Text */
.process-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003e70;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: #444;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-card {
    width: 90%;
  }
}

/* 📦 CLIENT PROJECT SECTION */
.ourwork-projects {
  background: #ffffff;
  padding: 100px 20px;
  color: #1a1a1a;
  text-align: center;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

/* 🗂️ Individual Project Card */
.project-card {
  background: #f8fafa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 204, 204, 0.08);
  width: 360px;
  text-align: left;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

/* 📸 Image */
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 📄 Content Block */
.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003e70;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 0.85rem;
  color: #00a2b8;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #444;
}

.project-content blockquote {
  font-style: italic;
  font-size: 0.9rem;
  color: #007777;
  border-left: 4px solid #00cc99;
  padding-left: 12px;
  margin: 0;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .project-card {
    width: 100%;
  }
}

/* 🌍 SUSTAINABILITY SECTION */
.ourwork-sustainability {
  background: linear-gradient(to bottom, #e6fcf5, #f0fdfc);
  padding: 100px 20px;
  text-align: center;
  color: #1a1a1a;
}

/* ♻️ Grid Layout */
.sustainability-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

/* 🌿 Card Style */
.sustainability-card {
  background: #ffffff;
  padding: 30px 25px;
  width: 280px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 204, 153, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.sustainability-card:hover {
  transform: translateY(-6px);
}

.sustainability-card i {
  font-size: 36px;
  color: #00cc99;
  margin-bottom: 20px;
}

.sustainability-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004466;
  margin-bottom: 12px;
}

.sustainability-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .sustainability-card {
    width: 100%;
  }
}

/* 🧠 TIPS & HACKS STYLING */
.refined-tips {
  background: linear-gradient(to bottom, #f4fcff, #ebf9f9);
  padding: 100px 20px;
  text-align: center;
}

.refined-container {
  max-width: 1200px;
  margin: auto;
}

.refined-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 10px;
}

.refined-subtitle {
  font-size: 1.1rem;
  color: #007c91;
  margin-bottom: 60px;
}

/* 💡 Tips Grid */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tip-card {
  background: #ffffff;
  padding: 30px 25px;
  width: 300px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 204, 204, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-6px);
}

.tip-card i {
  font-size: 36px;
  color: #00cfcf;
  margin-bottom: 20px;
}

.tip-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003e70;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 0.95rem;
  color: #444;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .tip-card {
    width: 100%;
  }
}

/* 🧰 PLAN BUILDER */
.refined-builder {
  background: linear-gradient(to bottom, #fefeff, #f3f9f9);
  padding: 100px 20px;
  text-align: center;
}

.plan-form {
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 204, 204, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #004466;
}

.form-group input {
  margin-right: 8px;
}

.generate-plan-btn {
  background: linear-gradient(to right, #00cc99, #00aaff);
  color: white;
  border: none;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.generate-plan-btn:hover {
  transform: scale(1.05);
}

/* 📤 Output Styling */
.plan-output {
  margin-top: 40px;
  padding: 20px;
  background: #e6f9f9;
  border-left: 5px solid #00cfcf;
  font-size: 1rem;
  color: #003e70;
  border-radius: 12px;
  display: none;
}

/* 🎓 CLEANING UNIVERSITY */
.refined-university {
  background: linear-gradient(to bottom, #f0faff, #f9fefe);
  padding: 100px 20px;
  text-align: center;
}

.university-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.uni-card {
  background: #ffffff;
  padding: 30px 25px;
  width: 280px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 204, 204, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.uni-card:hover {
  transform: translateY(-6px);
}

.uni-card i {
  font-size: 36px;
  color: #00cc99;
  margin-bottom: 18px;
}

.uni-card h3 {
  font-size: 1.1rem;
  color: #004466;
  margin-bottom: 10px;
  font-weight: 600;
}

.uni-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

.uni-card a {
  color: #00aaff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.uni-card a:hover {
  text-decoration: underline;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .uni-card {
    width: 100%;
  }
}

/* 📞 CONTACT SECTION */
/* 🧼 Global Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden; /* ✅ Prevents horizontal scroll */
}

/* 📞 Contact Section */
.contact-section {
  background: linear-gradient(to bottom, #f9fcff, #eef9fa);
  padding: 100px 20px;
  text-align: center;
  width: 100%;
}

/* Container */
.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

/* Titles */
.contact-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0044cc;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #00798a;
  margin-bottom: 50px;
}

/* 🔲 Layout Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

/* 📌 Contact Info Section */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 204, 204, 0.08);
  transition: 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 204, 204, 0.12);
}

.contact-block i {
  font-size: 20px;
  color: #00aacc;
  margin-top: 4px;
}

.contact-block h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0044cc;
  font-weight: 600;
}

.contact-block p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.contact-block a {
  color: #0072cc;
  text-decoration: none;
  font-weight: 500;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* 🗺️ Google Map */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 204, 204, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* 📝 Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  width: 100%;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 204, 204, 0.06);
  box-sizing: border-box;
}

.contact-form form label {
  font-weight: 500;
  margin-top: 15px;
  display: block;
  color: #003e70;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.submit-btn {
  background: linear-gradient(to right, #00cc99, #00aaff);
  color: #fff;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* ✅ Submission Confirmation */
.form-confirmation {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: #e0fff7;
  color: #007a66;
  border-left: 5px solid #00cc99;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* 💬 WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* 📱 Responsive Fixes */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .map-container {
    height: 300px;
  }

  .contact-section {
    padding: 60px 15px;
  }

  .contact-title {
    font-size: 2rem;
  }
}

#scrollToTopBtn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(to right, #00cc99, #00aaff);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
#scrollToTopBtn:hover {
  transform: scale(1.1);
}

.responsive-logo {
  max-height: 70px;
  width: auto;
  height: auto;
}

@media (max-width: 480px) {
  .responsive-logo {
    max-height: 50px;
  }
}

/* ✨ Shine Hover Animation */
.cta-button,
.explore-btn,
.cta-action-button,
.about-cta-btn,
.service-book-btn,
.submit-btn {
  position: relative;
  overflow: hidden;
}

.cta-button::after,
.explore-btn::after,
.cta-action-button::after,
.about-cta-btn::after,
.service-book-btn::after,
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.cta-button:hover::after,
.explore-btn:hover::after,
.cta-action-button:hover::after,
.about-cta-btn:hover::after,
.service-book-btn:hover::after,
.submit-btn:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.highlight-pulse {
  animation: pulseHighlight 0.9s ease-in-out;
  border: 2px solid #00cc99;
  box-shadow: 0 0 12px rgba(0, 204, 204, 0.5);
}

@keyframes pulseHighlight {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ✅ Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  max-width: 400px;
  animation: fadeInUp 0.3s ease-out;
}

.modal-box h3 {
  font-size: 22px;
  color: #046b99;
  margin-bottom: 10px;
}

.modal-box p {
  color: #333;
  font-size: 15px;
}

.modal-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #0cbc87;
}

.modal-close {
  margin-top: 20px;
  background: #0cbc87;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: #089e6c;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌐 Base Social Bar */
.social-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  background-color: #e0fff9;
  color: #000;
  padding: 12px;
  padding-left: 14px;
  border-radius: 0 30px 30px 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 45px;
  height: 45px;
}

.social-icon span {
  margin-left: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  width: 160px;
  background: linear-gradient(to right, #6ef3f3, #3f8df3);
  color: #fff;
}

.social-icon:hover span {
  opacity: 1;
}

/* 🌈 Icons */
.fb { background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png'); }
.ig { background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png'); }
.yt { background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384060.png'); }
.li { background-image: url('https://cdn-icons-png.flaticon.com/512/174/174857.png'); }

.social-icon {
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding-left: 40px;
}

/* 📱 Responsive (Mobile View) */
@media (max-width: 768px) {
  .social-bar {
    top: unset;
    bottom: 20px;
    left: 20px;
    transform: none;
    flex-direction: column;
  }

  .social-icon {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    padding-left: 0;
    justify-content: center;
  }

  .social-icon span {
    display: none;
  }
}

.refined-difference {
  padding: 60px 20px;
  background: #f9ffff;
  text-align: center;
}

.refined-difference .section-title {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.refined-difference .section-subtitle {
  font-size: 1.1rem;
  color: #009999;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  height: 60px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #005577;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 90%;
  }
}


.areas-extra-button {
  margin-top: 20px;
  text-align: center;
}

.serve-all-btn {
  background: linear-gradient(90deg, #00cc99, #00aaff);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 204, 153, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.serve-all-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 204, 153, 0.4);
}

