/* ===== GLOBAL STYLES ===== */
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
    margin-top: 70px; /* Offset for fixed navbar height */
    font-family: 'Lora', serif;
    font-weight: 400;
    background-color: #fff;
    color: #000;
  }
  
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 0;
}
  
/* ===== NAVIGATION BAR ===== */
  .navbar {
    background-color: #f8f8f8;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #8DC63F;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: #8DC63F;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #5a8c1b;
  }
  
  .logo {
    width: 90px;
  }
  
  .brand-name {
    color: #8DC63F;
    font-weight: bold;
    margin-left: 10px;
  }
  
/* ===== HERO SECTION ===== */
  .hero {
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    background: url('Images/banner\ main.png') center center/cover no-repeat;
    color: #000;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero h1 {
    color: #000;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.85);
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    font-weight: 700;
  }
  
  .hero p {
    color: #000;
    background: rgba(255,255,255,0.8);
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 8px;
    border: none;
    box-shadow: none;
  }
  
  .hero-blur {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
/* ===== GENERAL SECTION STYLES ===== */
  .section {
    padding: 40px 20px;
    background-color: #fff;
  }
  
  .section h2 {
    color: #8DC63F;
    border-bottom: 2px solid #8DC63F;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section ul {
    list-style: none;
    padding: 0;
  }
  
  .section li {
    padding: 8px 0;
    color: #000;
  }
  
  .section ion-icon {
    color: #8DC63F;
    margin-right: 10px;
  }
  
/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 2px solid #8DC63F;
  }
  
  .stat h3 {
    color: #8DC63F;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
  }
  
  .stat p {
    margin: 0;
    font-weight: bold;
    color: #333;
  }
  
/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    border-color: #8DC63F;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(141, 198, 63, 0.2);
  }
  
  .service-card ion-icon {
    font-size: 3rem;
    color: #8DC63F;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    color: #8DC63F;
    margin-bottom: 15px;
  }
  
  .service-card p {
    line-height: 1.6;
    color: #666;
  }
  
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #8DC63F;
  }
  
  .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .client-info strong {
    color: #8DC63F;
    display: block;
  }
  
  .client-info span {
    color: #666;
    font-size: 0.9rem;
  }
  
/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
  
/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover {
    border-color: #8DC63F;
    transform: translateY(-5px);
  }
  
  .pricing-card.featured {
    border-color: #8DC63F;
    transform: scale(1.05);
  }
  
  .featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8DC63F;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .pricing-card h3 {
    color: #8DC63F;
    margin-bottom: 20px;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8DC63F;
    margin-bottom: 20px;
  }
  
  .price span {
    font-size: 1rem;
    color: #666;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .pricing-card li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .pricing-card ion-icon {
    color: #8DC63F;
  }
  
/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: #f8f8f8;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #e8e8e8;
  }
  
  .faq-question h3 {
    margin: 0;
    color: #8DC63F;
  }
  
  .faq-question ion-icon {
    color: #8DC63F;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question ion-icon {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
  }
  
/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
  
  .contact-info,
  .contact-form {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-info h3,
  .contact-form h3 {
    color: #8DC63F;
    margin-bottom: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .contact-item ion-icon {
    font-size: 1.5rem;
    color: #8DC63F;
    margin-top: 5px;
  }
  
  .contact-item h4 {
    color: #8DC63F;
    margin: 0 0 5px 0;
  }
  
  .contact-item p {
    margin: 0;
    line-height: 1.6;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #8DC63F;
  }
  
/* ===== BUTTONS ===== */
.cta-button {
    background-color: #8DC63F;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #5a8c1b;
  }
  
/* ===== FOOTER ===== */
  .footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #000;
    border-top: 2px solid #8DC63F;
  }
  
/* ===== MOBILE NAVIGATION ===== */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .line {
    width: 25px;
    height: 3px;
    background-color: #8DC63F;
    margin: 3px 0;
    transition: 0.3s;
  }
  
  /* Burger menu animation */
  .burger.toggle .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .burger.toggle .line:nth-child(2) {
    opacity: 0;
  }
  
  .burger.toggle .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
/* ===== LOGO LINK ===== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .logo-link:hover {
    text-decoration: none;
  }
  
/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .burger {
      display: flex;
    }
    
    .brand-name {
      display: none;
    }
    
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #f8f8f8;
      flex-direction: column;
      padding: 0;
      border-bottom: 2px solid #8DC63F;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transform: translateY(-10px);
      opacity: 0;
      transition: all 0.3s ease;
    }
    
    .nav-links.nav-active {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }
    
    .nav-links li {
      margin: 0;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-links li:last-child {
      border-bottom: none;
    }
    
    .nav-links a {
      display: block;
      padding: 15px 20px;
      font-size: 18px;
    }
    
    /* About Section Mobile */
    .about-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .about-stats {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    /* Services Section Mobile */
    .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    /* Gallery Section Mobile */
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .gallery-item {
      height: 200px;
    }
    
    /* Pricing Section Mobile */
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .pricing-card.featured {
      transform: none;
    }
    
    /* Contact Section Mobile */
    .contact-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    /* General Mobile Adjustments */
    .section {
      padding: 30px 15px;
    }
    
    .section h2 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
    
    .hero {
      min-height: 200px;
      padding: 40px 10px;
    }
  }
  
  @media (max-width: 480px) {
    /* Extra Small Screen Adjustments */
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .gallery-item {
      height: 250px;
    }
    
    .service-card,
    .testimonial,
    .pricing-card {
      padding: 20px;
    }
    
    .contact-item {
      flex-direction: column;
      text-align: center;
    }
  }
  
/* ===== MAP SECTION ===== */
.map-section {
  width: 100%;
  position: relative;
  background: #eee;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 350px;
  max-width: 100vw;
  border: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .map-section iframe {
    min-height: 250px;
    height: 300px;
  }
}

/* ===== CLIENTS SECTION ===== */
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  margin-top: 32px;
}

.clients-logos-grid img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.clients-logos-grid img:hover {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .clients-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .clients-logos-grid img {
    max-width: 90px;
    max-height: 40px;
  }
}

#backToTop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 10000;
  background: #8DC63F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

#backToTop:hover {
  background: #5a8c1b;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.5,0,0,1), transform 0.7s cubic-bezier(.5,0,0,1);
  will-change: opacity, transform;
}
.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}
  
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 10000;
  background: #8DC63F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
  background: #6ea82a;
  transform: scale(1.08);
}
  
.footer-cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}
  