* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 70px;
  width: auto;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #307445;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #dc143c;
}

.business-hours {
  font-size: 0.9rem;
  color: #307445;
  font-weight: 600;
  background: #f0fff0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #307445;
}

/* Hero Section with Carousel */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-1 {
  background: linear-gradient(rgba(48, 116, 69, 0.6), rgba(48, 116, 69, 0.6)), url("assets/carousel 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-2 {
  background: linear-gradient(rgba(48, 116, 69, 0.6), rgba(48, 116, 69, 0.6)), url("assets/carousel 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-3 {
  background: linear-gradient(rgba(48, 116, 69, 0.6), rgba(48, 116, 69, 0.6)), url("assets/carousel 3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0rem;
  font-weight: bold;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #c6ffc9;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: #dc143c;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cta-button:hover {
  background: #b22222;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f8ff;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: bold;
  text-shadow: #1a1a1a 1px 1px 3px;
}

.section-title-v2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #307445;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-top: 4px solid #307445;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: #dc143c;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-content h3 {
  color: #307445;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.service-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

/* Remove the old service-icon styles */
.service-icon {
  display: none;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2 {
  color: #307445;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.about-text .highlight {
  color: #dc143c;
  font-weight: bold;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-image {
  background: linear-gradient(135deg, #307445, #4a9960);
  height: 450px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem;
  display: none;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #307445;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-item h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f8ff;
}

.contact-info-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-top: 4px solid #307445;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: #dc143c;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #307445, #4a9960);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item div:last-child {
  flex: 1;
}

.contact-item strong {
  color: #307445;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.map-link {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.map-link:hover {
  color: #dc143c;
  transform: scale(1.05);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.map-link:visited {
  color: #000000;
}

.map-link:active {
  color: #8b0000;
}

.numbers {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.numbers:hover {
  color: #dc143c;
  transform: scale(1.05);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.number:visited {
  color: #000000;
}

.number:active {
  color: #8b0000;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #4a9960;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #4a9960;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-float:before {
  content: "💬";
}

/* Enhanced Responsive Design with Centering */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .business-hours {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    text-align: center;
    line-height: 1.2;
  }

  nav {
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    justify-content: flex-start;
    width: auto;
  }

  .logo-container img {
    height: 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero .subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.4rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-info-horizontal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.5rem;
    text-align: left;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 1rem;
  }

  /* Center all text content in mobile */
  .section-title {
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-text p {
    font-size: 1rem;
    text-align: center;
  }

  .footer-content {
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  /* Center service cards content */
  .service-card {
    text-align: center;
  }

  /* Center feature items */
  .feature-item {
    text-align: center;
  }

  .business-hours {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

/* Scroll Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-left.animate,
.fade-in-right.animate,
.fade-in-up.animate {
  opacity: 1;
  transform: translate(0);
}

/* Enhanced Stats Design */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f0fff0 0%, #e8f5e8 100%);
  border-radius: 20px;
  border: 2px solid #307445;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(48, 116, 69, 0.1);
}

.stat-item::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;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(48, 116, 69, 0.2);
  border-color: #dc143c;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #dc143c;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  color: #b22222;
}

.stat-label {
  color: #307445;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: #2a5f3a;
  font-weight: 700;
}

.stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-item:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .stat-item {
    padding: 1.5rem 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }
}
