/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #8BC34A;
    --dark-color: #1B5E20;
    --light-color: #E8F5E9;
    --text-color: #333333;
    --text-light: #666666;
    --body-color: #FFFFFF;
    --border-color: #DDDDDD;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--body-color);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--dark-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--dark-color);
    color: white;
  }
  
  .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--light-color);
  }
  
  .btn-text {
    padding: 0;
    color: var(--primary-color);
    position: relative;
  }
  
  .btn-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .btn-text:hover::after {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
   .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            min-width: 180px;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border: 2px solid #4CAF50;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
            background: linear-gradient(135deg, #45a049, #4CAF50);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: #4CAF50;
            border: 2px solid #4CAF50;
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: #4CAF50;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
        }

        .btn-secondary:active {
            transform: translateY(-1px);
        }
          /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                min-width: auto;
                padding: 18px 24px;
                font-size: 16px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 25px 15px;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 16px 20px;
                font-size: 15px;
            }
        }

        /* Larger screens */
        @media (min-width: 1200px) {
            .cta-buttons {
                gap: 30px;
            }

            .btn {
                padding: 18px 40px;
                font-size: 18px;
                min-width: 200px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }
        }

        /* Animation for initial load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Focus states for accessibility */
        .btn:focus {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .btn {
                border-width: 3px;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .btn {
                transition: none;
            }
            
            .btn::before {
                display: none;
            }
            
            .container {
                animation: none;
            }
        }
  
  /* Home Service Section */
/* Services Section */
.services {
  background-color: var(--light-color);
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card .description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1rem;
}

/* Coming Soon Styling */
.service-card.coming-soon {
  position: relative;
  opacity: 0.85;
}

.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coming-soon-text {
  font-style: italic;
  color: #888;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-card .icon {
    font-size: 2.2rem;
  }
}
  
  /* About Snippet */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
/* Add this to your main.css file or create a separate testimonials.css file */

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
    padding: 80px 0;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 40px auto 30px;
    min-height: 200px; /* Ensure space while loading */
  }
  
  .testimonial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s ease;
    position: relative;
  }
  
  .testimonial-content {
    position: relative;
  }
  
  .testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial p::before {
    content: '"';
    font-size: 60px;
    color: rgba(76, 175, 80, 0.1);
    position: absolute;
    left: -15px;
    top: -20px;
    z-index: -1;
  }
  
  .client {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  .client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--light-color);
  }
  
  .client-info {
    text-align: left;
  }
  
  .client .name {
    font-weight: 600;
    display: block;
    color: var(--dark-color);
  }
  
  .client .location {
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .testimonial-control {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .testimonial-control:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  .testimonial-dots {
    display: flex;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
  }
  
  .testimonial-loader {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
  }
  
  /* Add other style rules from your original main.css file below */
  
  /* CTA Section */
  .cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
  }
  
  .cta h2 {
    margin-bottom: 15px;
  }
  
  .cta p {
    margin-bottom: 30px;
  }
  
  .cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
  }
  
  .cta .btn-primary:hover {
    background-color: var(--light-color);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .testimonial-slider {
      grid-template-columns: 1fr;
   
    }
  }

/* Global Scrollbar Styling */
::-webkit-scrollbar {
  width: 7px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color */
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #4CAF50; /* Green scrollbar thumb */
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #45a049; /* Darker green on hover */
}

/* Green Aura Theme CSS for Why Choose Us & Service Areas Sections */

/* Base Variables for Green Aura Theme */
:root {
  --primary-green: #2d7a3e;
  --secondary-green: #4a9f5f;
  --light-green: #e8f5ea;
  --accent-green: #1a5d28;
  --text-dark: #2c3e2d;
  --text-light: #6b7c6d;
  --white: #ffffff;
  --cream: #fafbfa;
  --border-light: #d4e8d7;
  --shadow-light: rgba(45, 122, 62, 0.1);
  --shadow-medium: rgba(45, 122, 62, 0.15);
}

/* Container Base Styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-green) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e8f5ea" opacity="0.3"/></svg>') repeat;
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 3rem;
  position: relative;
  line-height: 1.2;
}

.why-choose-us h2::after {
  content: '🌿';
  display: block;
  font-size: 2rem;
  margin-top: 1rem;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-light);
  border: 2px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
  border-color: var(--secondary-green);
}

.benefit-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1rem;
  position: relative;
}

.benefit-item h3::before {
  content: '🌱';
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Service Areas Section */
.service-areas {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}

.service-areas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.service-areas h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 2rem;
  position: relative;
}

.service-areas h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  border-radius: 2px;
}

.service-areas > .container > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.areas-list span {
  background: linear-gradient(135deg, var(--light-green), #f0f9f1);
  color: var(--accent-green);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  font-weight: 500;
  border: 2px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.areas-list span::before {
  content: '📍';
  position: absolute;
  top: 50%;
  left: -30px;
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: all 0.4s ease;
  opacity: 0;
}

.areas-list span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  transition: width 0.4s ease;
}

.areas-list span:hover {
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 25px var(--shadow-medium);
}

.areas-list span:hover::before {
  left: 10px;
  opacity: 1;
}

.areas-list span:hover::after {
  width: 100%;
}

.service-areas .text-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.service-areas .text-link:hover {
  color: var(--accent-green);
  border-bottom-color: var(--secondary-green);
}

.service-areas .text-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-areas .text-link:hover::after {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us,
  .service-areas {
    padding: 60px 0;
  }
  
  .why-choose-us h2,
  .service-areas h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-item {
    padding: 2rem 1.5rem;
  }
  
  .areas-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
  }
  
  .areas-list span {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .why-choose-us h2,
  .service-areas h2 {
    font-size: 1.8rem;
  }
  
  .areas-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .benefit-item h3 {
    font-size: 1.2rem;
  }
}