
  :root{
    --bg: url('images/hero-bg.png'); /* replace with your image */
    /* --overlay: rgba(0,0,0,0.4); */
    --hero-h: 90vh;
    --zoom-duration: 20s;
  }

  html {
  scroll-behavior: smooth;
}


  * {
    box-sizing: border-box;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  .custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  /* When scrolling - solid background */
  .custom-navbar.scrolled {
    background: rgba(46, 125, 50, 0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .custom-navbar .logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
  }

  .custom-navbar .logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #fff;
  }

  .custom-navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }

  .custom-navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }

  .custom-navbar .nav-links li a:hover {
    color: #000;
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
  }

  .close-menu {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .custom-navbar {
      flex-wrap: wrap;
      padding: 12px 20px;
    }

   
  .custom-navbar .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    background: rgba(46, 125, 50, 0.95);
    border-radius: 8px;
    padding: 50px 20px 20px; /* added 20px left & right padding */
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    box-sizing: border-box; /* ensures padding is counted inside width */
  }

  .custom-navbar .nav-links li {
    text-align: center;
    padding: 15px 0;
  }


    .custom-navbar .nav-links.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }
    
    .close-menu {
      display: block;
    }
    
    /* Hide menu button when menu is open */
    .custom-navbar .menu-toggle.hidden {
      display: none;
    }
  }

  /* Fix hero spacing below fixed navbar */
.hero {
  position: relative;
  min-height: calc(100vh - 64px); /* full screen minus navbar */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  padding-top: 100px;  /* 👈 pushes content below navbar */
  padding-bottom: 2rem;
  box-sizing: border-box;
}




  /* Zooming background */
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform-origin: center;
    will-change: transform;
    z-index: 0;
    animation: bg-zoom var(--zoom-duration) ease-in-out infinite alternate;
  }

  /* Dark overlay */
  .hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: var(--overlay);
    z-index:1;
  }

  /* Content wrapper */
  .hero .container {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
    text-align: center;
  }
  .hero h3 {
    font-size: 1rem;
    text-align: center;
  }
}

  .btn{
    display:inline-block;
    padding: .8rem 1.5rem;
    border-radius: 6px;
    background:#ff6a00;
    color:#fff;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s;
  }
  .btn:hover{ background:#e65a00; }

  @keyframes bg-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.25); }
  }

   /* Services Section */
    .services {
      font-family: 'Times New Roman', serif;
      --bg: url('images/bgl1.jpg');
      background: white;
      padding: 60px 0;
      overflow: hidden;
    }

    .services .bg-title {
      font-size: 140px;
      font-weight: bold;
      color:  rgba(139, 237, 144, 0.9);
      text-align: center;
      line-height: 1;
      margin-top: 30px;
      margin-bottom: 10px;
      position: relative;
      z-index: 0;
    }

    .services .section-heading {
      font-size: 54px;
      font-weight: bold;
      color: #1c2a20;
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .services .service-card {
      background: rgba(46, 125, 50, 0.9);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      margin-top: 190px;
      padding: 60px 20px 25px 20px;
      position: relative;
      overflow: visible;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      min-height: 400px; /* Fixed height for all cards */
    }

    .services .service-card img {
      width: 80%;
      height: 180px;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      object-fit: cover;
    }

    

    .services .service-icon {
      font-size: 28px;
      color: #e76f51;
      margin-bottom: 10px;
    }

    .services .service-title {
      color: #fefdfd;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .services .service-text {
      font-size: 20px;
      color: #fafafa;
      padding: 0 10px;
      margin: 0;
      flex-grow: 1; /* Makes text take up remaining space */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Swiper customization for services */
    .services-swiper {
      padding: 20px 10px 60px;
      width: 100%;
      overflow: hidden;
    }
    
    .services-swiper .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(46, 125, 50, 0.9);
      opacity: 0.5;
    }
    
    .services-swiper .swiper-pagination-bullet-active {
      opacity: 1;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
      color: #2ea62c;
      background: rgba(255, 255, 255, 0.8);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .services-swiper .swiper-button-next:after,
    .services-swiper .swiper-button-prev:after {
      font-size: 20px;
      font-weight: bold;
    }

    /* Category tabs */
    .service-categories {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .category-btn {
      padding: 10px 20px;
      background: #fff;
      border: 1px solid #2ea62c;
      border-radius: 30px;
      color: #2ea62c;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .category-btn.active, .category-btn:hover {
      background: #2ea62c;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services .bg-title {
        font-size: 80px;
      }
      .services .section-heading {
        font-size: 32px;
        margin-top: -30px;
      }
      .services .service-card {
        margin-top: 120px;
        padding-top: 50px;
        min-height: 350px; /* Adjusted for mobile */
      }
      .services .service-card img {
        top: -130px;
        width: 70%;
        height: 150px;
      }
      
      .services-swiper .swiper-button-next,
      .services-swiper .swiper-button-prev {
        display: none;
      }
    }
    
    @media (max-width: 576px) {
      .services .bg-title {
        font-size: 60px;
      }
      .services .section-heading {
        font-size: 26px;
      }
      .services .service-card {
        margin-top: 100px;
        padding: 40px 15px 20px 15px;
        min-height: 320px; /* Further adjusted for small screens */
      }
      .services .service-card img {
        top: -100px;
        width: 65%;
        height: 120px;
      }
      .services .service-text {
        font-size: 16px;
      }
      
      .service-categories {
        flex-direction: column;
        align-items: center;
      }
      
      .category-btn {
        width: 80%;
        margin-bottom: 10px;
      }
    }

.about-section {
      padding: 3rem 0;
      position: relative;
      background: #fff;
      overflow: hidden;
    }

    .about-card {
      background: url("https://i.pinimg.com/736x/48/88/2e/48882ebcc4bf0c10e56db981f0790401.jpg") center/cover no-repeat;
      color: #fff;
      padding: 2rem;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5); /* dark overlay */
      z-index: 0;
    }

    .about-card * {
      position: relative;
      z-index: 1;
    }

    .about-card h5 {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      color: #d3c6b3;
    }

    .about-card h2 {
      font-family: 'Merriweather', serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .about-card p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .btn-custom {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 4px;
      border: none;
      transition: all 0.3s ease-in-out;
    }

    .btn-green {
      background: #fff;
      color: #000;
      margin-right: 1rem;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    }

    .btn-green i {
      color: green;
      margin-right: 6px;
    }

    .btn-green:hover {
      background: #f2f2f2;
    }

    .btn-white {
      background: #fff;
      color: #000;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    }

    .btn-white i {
      color: green;
      margin-right: 6px;
    }

    .btn-white:hover {
      background: #f2f2f2;
    }

    .about-extra {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-top: 1rem;
      color: #eee;
    }

    .about-img img {
      width: 100%;
      border-radius: 4px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .about-card {
        margin-top: 1.5rem;
      }
      .about-card h2 {
        font-size: 1.6rem;
      }
      .btn-custom {
        margin-bottom: 10px;
        width: 100%;
      }
    }

    

.testimonial-section {
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonial-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 700;
    color: rgba(115, 244, 113, 0.5);
    margin-bottom: 10px;
    line-height: 1; /* Added for better line spacing */
    word-wrap: break-word; /* Ensure long words break properly */
    overflow-wrap: break-word; /* Additional word breaking */
}

.testimonial-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2b25;
    margin-bottom: 60px;
    line-height: 1.3; /* Added for better readability */
}

.testimonial-card {
    background: rgba(46, 125, 50, 0.9);
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transform: rotate(-4deg);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:nth-child(2) {
    transform: rotate(2deg);
}
.testimonial-card:nth-child(3) {
    transform: rotate(-2deg);
}
.testimonial-card:nth-child(4) {
    transform: rotate(3deg);
}

.testimonial-card:hover {
    background: rgba(46, 125, 50, 0.9);
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.testimonial-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fffcfc;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #f6f4f4;
    margin: 0;
    flex-grow: 1;
}

/* Improved Responsive Design */
@media (max-width: 1200px) {
    .testimonial-section h1 {
        font-size: 80px;
    }
    .testimonial-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .testimonial-section h1 {
        font-size: 70px;
        margin-bottom: 5px;
    }
    .testimonial-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .testimonial-card {
        margin-bottom: 30px;
        transform: rotate(0deg) !important;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 15px;
    }
    
    .testimonial-section h1 {
        font-size: 50px; /* Reduced from 60px for better mobile display */
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .testimonial-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .testimonial-card {
        min-height: 200px;
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 50px 10px;
    }
    
    .testimonial-section h1 {
        font-size: 40px; /* Further reduced for small screens */
        line-height: 1.1;
        margin-bottom: 5px;
    }
    
    .testimonial-section h2 {
        font-size: 20px; /* Reduced from 22px */
        margin-bottom: 25px;
        padding: 0 10px; /* Added padding to prevent text touching edges */
    }
    
    .testimonial-card {
        min-height: 180px; /* Adjusted for mobile */
        padding: 15px 12px;
    }
    
    .testimonial-header h5 {
        font-size: 14px;
    }
    
    .testimonial-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Extra small devices (phones under 400px) */
@media (max-width: 400px) {
    .testimonial-section h1 {
        font-size: 36px; /* Even smaller for very small screens */
    }
    
    .testimonial-section h2 {
        font-size: 18px;
    }
    
    .testimonial-card {
        min-height: 170px;
    }
}

    .case-section {
      padding: 80px 20px;
      background: linear-gradient(to bottom right, #fff 60%, #fdf3e8);
      overflow: hidden;
    }

    .case-subtitle {
      color: #d86f52;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .case-title {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      color: #1c2b25;
      margin-bottom: 40px;
    }

    .case-details {
      margin-top: 20px;
    }

    .case-details .small-title {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      color: #d86f52;
      margin-bottom: 5px;
    }

    .case-details h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 600;
      color: #1c2b25;
      margin-bottom: 20px;
    }
    
    .case-details p {
      color: #555;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .case-details .btn-custom {
      background: #fff;
      border: 1px solid #ddd;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .case-details .btn-custom:hover {
      background: #1c2b25;
      color: #fff;
      border-color: #1c2b25;
    }

    .case-images {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      flex-wrap: wrap;
      position: relative;
    }

    .case-images img {
      border-radius: 4px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .case-images img:hover {
      transform: scale(1.05);
    }

    .case-images .main-img {
      width: 100%;
      max-width: 400px;
      height: 450px;
    }

    .case-images .small-img {
      width: 280px;
      height: auto;
      position: absolute;
      top: 160px;
      left: 350px;
    }

    .case-images .small-img-2 {
      width: 250px;
      height: auto;
      position: absolute;
      top: 160px;
      left: 360px;
    }

    .nav-arrows {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    .nav-arrows button {
      background: #ffef9f;
      border: none;
      width: 40px;
      height: 40px;
      margin-left: 8px;
      font-size: 20px;
      font-weight: bold;
      line-height: 1;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .nav-arrows button:hover {
      background: #ffd84c;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .case-images {
        justify-content: center;
      }
      .case-details {
        margin-top: 40px;
      }
      .case-images .small-img,
      .case-images .small-img-2 {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 15px;
      }
    }



 .pricing-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #7a3e2c;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

/* Package Card */
.package-card {
  background: rgba(46, 125, 50, 0.9);
  border-radius: 30px;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Image */
.package-image {
  width: 220px;
  height: 280px;
  border-radius: 50% / 60%;
  object-fit: cover;
  border: 8px solid #fff;
  margin-bottom: 20px;
}

/* Badge */
.time-badge {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #2ea62c;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.time-badge small {
  font-size: 12px;
  font-weight: 400;
}

/* Package Title */
.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 15px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  display: inline-block;
  padding-bottom: 5px;
}

/* Features */
.package-features {
  text-align: center;
  margin: 20px auto;
  max-width: 250px;
  list-style: none;
  padding: 0;
}

.package-features li {
  font-size: 20px;
  margin: 10px 0;
  color: #fff;
}

.package-features i {
  margin-right: 10px;
  color: #ffdddd;
}

/* Button */
.btn-custom {
  background: #fff;
  color: #2ea62c;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  margin-top: auto; /* This pushes button to bottom */
}

.btn-custom:hover {
  background: #16205a;
  color: #fff;
}

/* Swiper customization for pricing */
.pricing-swiper {
  padding: 20px 10px 60px;
  overflow: hidden;
}

.pricing-swiper .swiper-wrapper {
  align-items: stretch;
}

.pricing-swiper .swiper-slide {
  height: auto;
}

.pricing-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #2ea62c;
  opacity: 0.5;
}

.pricing-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
  color: #2ea62c;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pricing-swiper .swiper-button-next:after,
.pricing-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-title {
    font-size: 28px;
  }
  .package-card {
    margin-bottom: 30px;
  }
  
  .pricing-swiper .swiper-button-next,
  .pricing-swiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-section .row {
    flex-direction: column;
  }
  .package-image {
    width: 180px;
    height: 230px;
  }
  .time-badge {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}

    footer {
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                  url('https://i.pinimg.com/1200x/0f/b6/12/0fb61230057c3538166ee19510761c45.jpg') center/cover no-repeat;
      color: #fff;
      padding: 60px 0 30px;
      font-family: 'Georgia', serif;
      overflow: hidden;
    }

    footer .footer-logo img {
      max-width: 200px;
    }

    footer p {
      font-size: 15px;
      margin: 12px 0;
      line-height: 1.6;
    }

    footer h5 {
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    footer h5::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 50px;
      height: 2px;
      background: #32a636;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 15px;
    }

    footer ul li a:hover {
      color: #32a636;
      padding-left: 5px;
    }

    footer .social-icons a {
      display: inline-block;
      margin-right: 10px;
      background: #32a636;
      color: #fff;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      text-align: center;
      line-height: 38px;
      font-size: 16px;
      transition: 0.3s;
    }

    footer .social-icons a:hover {
      background: #27862c;
    }

    footer .availability {
      font-weight: 600;
      margin-top: 15px;
    }

    footer .map iframe {
      border-radius: 8px;
      box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }

    footer .copyright {
      font-size: 14px;
      color: #ccc;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      margin-top: 30px;
    }

    @media (max-width: 767px) {
      footer {
        text-align: center;
      }
      footer .social-icons {
        margin-top: 20px;
      }
      footer h5::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    /* Contact info styling */
    .contact-info {
      background: rgba(46, 125, 50, 0.1);
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
    }
    
    .contact-info p {
      margin: 8px 0;
      display: flex;
      align-items: center;
    }
    
    .contact-info i {
      margin-right: 10px;
      color: #2ea62c;
      font-size: 18px;
      width: 24px;
    }

    .about-contact {
  margin-top: 1.5rem;
}

.about-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

.about-contact .contact-item i {
  min-width: 22px;   /* keeps icons aligned in one column */
  margin-right: 10px;
  color: #8bed90;    /* theme green */
  font-size: 1rem;
  margin-top: 3px;
}

.about-contact .contact-item a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

.about-contact .contact-item a:hover {
  color: #8bed90;
}

@media (max-width: 768px) {
  .about-contact .contact-item {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.about-contact .map-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #2e7d32;   /* dark green */
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-contact .map-btn:hover {
  background: #43a047;   /* lighter green on hover */
  color: #040404;
  text-decoration: none;
}

/* Scroll to top button */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  font-weight: bold;
  border: none;
  outline: none;
  background: linear-gradient(135deg, #2e7d32, #43a047); /* Stylish green gradient */
  color: white;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px; /* Box with slightly rounded corners */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  transform: translateY(-3px); /* Floating effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}



.menu {
      margin: 0;
      /* margin-top: 20%; */
      background: #f4f4f4;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .menu-image {
      width: 90%;
      max-width: 800px;
      height: auto;
      margin: 10px 0;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

