 .banner {
     position: relative;
     background: url('https://images.unsplash.com/photo-1508780709619-79562169bc64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
     background-size: cover;
     height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
 }

 .rural-banner {
     position: relative;
     background: url('../media/images/rural-farming-cont-bannner.jpg') no-repeat center center;
     background-size: cover;
     height: 400px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
 }

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

 .banner-content {
     position: relative;
     z-index: 2;
 }

 .banner h1 {
     font-size: 2.5rem;
     font-weight: bold;
 }

 .banner p {
     font-size: 1.1rem;
     margin-bottom: 20px;
 }

 .banner .btn-custom {
     border: 2px solid white;
     color: white;
     padding: 10px 25px;
     border-radius: 30px;
     transition: 0.3s;
 }

 .banner .btn-custom:hover {
     background: white;
     color: black;
 }


 /* card */
 .card-img-wrapper {
     overflow: hidden;
     position: relative;

 }

 .card-img-wrapper img {
     transition: transform 0.5s ease, filter 0.5s ease;
 }

 /* Hover effects */
 .custom-card:hover .card-img-wrapper img {
     transform: scale(1.1);
     filter: brightness(85%);
 }

 .custom-card {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .custom-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }

 /* Card body style */
 .card-body {
     /* background: linear-gradient(135deg, #f9f9f9, #ffffff); */
     border-top: 3px solid #28a745;
 }

 .card {
     border: none !important;
     /* remove bootstrap border */
     border-top: 3px solid #28a745 !important;
     border-left: 3px solid #28a745 !important;
     border-radius: 10px;
     /* background-color: #f0f8e9; */
     /* optional smooth corners */
 }

 .action--img {
     border-top: 5px solid #28a745 !important;
     /* border-left: 5px solid #28a745 !important; */
 }

 /* towergarden */
 .bg-towergrden {
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
         url('../media/images/Tower-Garden-banner.webp');
     background-size: cover;
     background-position: center;
     padding: 80px 20px;
     color: white;


 }



 .feature-icon {
     width: 60px;
     height: 60px;
     background-color: #eaf2ff;
     /* light blue background circle */
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin-bottom: 15px;
     font-size: 24px;
     color: #1a3d7c;
 }

 .feature h5 {
     font-weight: 600;
     margin-bottom: 5px;
 }

 .feature p {
     color: #6c757d;
     margin: 0;
 }

 .feature-section {
     padding: 50px 0;
 }

 .product-section {
     background: #eaf2ff;
     /* light blue like your screenshot */
     padding: 50px 20px;
     text-align: center;
 }

 .product-section h3 {
     font-weight: 700;
     font-size: 24px;
     margin-bottom: 30px;
     color: #000;
 }

 .product-card {
     display: flex;
     align-items: center;
     justify-content: center;
     background: #111;
     color: #fff;
     padding: 12px 18px;
     border-radius: 8px;
     border: 2px solid #d4af37;
     /* gold border */
     font-weight: 700;
     font-size: 16px;
     gap: 12px;
     transition: 0.3s ease;
 }

 .product-card img {
     width: 40px;
     height: 40px;
 }

 .product-card:hover {
     background: #222;
     transform: translateY(-5px);
 }

 .product-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     justify-content: center;
     max-width: 1000px;
     margin: 0 auto;
 }

 .tower-image {
     position: relative;
     top: 90px;
 }

 .accordion-item,
 .accordion-button,
 .accordion-body {
     background: transparent !important;
     border: none !important;
     box-shadow: none !important;
 }

 .accordion-button {
     color: #fff !important;
     position: relative;
     padding-bottom: 10px;
 }

 /* Remove Bootstrap's default arrow */
 .accordion-button::after {
     display: none !important;
 }

 /* Accordion Question (button text) */
 .accordion-button {
     font-size: 18px !important;
     font-weight: bold;
 }

 /* Accordion Answer (body text) */
 .accordion-body {
     font-size: 20px !important;
     /* keep answers slightly smaller for readability */
     line-height: 1.2;
 }


 /* Custom SVG Arrow */
 .accordion-button {
     position: relative;
     padding-right: 2rem;
     /* space for arrow */
 }

 .accordion-button::before {
     content: "";
     background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'><path d='M6 4l6 4-6 4z'/></svg>") no-repeat center center;
     background-size: 20px 20px;
     /* ✅ Arrow scaled a bit */
     width: 20px;
     height: 20px;
     position: absolute;
     right: 15px;
     transition: transform 0.3s ease-in-out;
 }

 /* Rotate when opened */
 .accordion-button:not(.collapsed)::before {
     transform: rotate(90deg);
 }

 .accordion-header {
     border-bottom: 1px solid rgba(255, 255, 255, 0.4);
     margin-bottom: 5px;
 }

 .accordion-body {
     color: #fff !important;
     padding: 10px 0;
     font-size: 18px;
     /* ✅ Slightly smaller for content */
 }

 .faq-section h2 {
     font-size: 36px !important;
     color: #fff;
     /* optional for visibility */
 }

 /* Tower Garden Banner Section */
.tower-garden-home {
  position: relative;
  padding: 3rem 0; /* py-5 */
  background: url('../media/images/Tower-Garden-banner.webp') center/cover no-repeat;
}

/* Green Transparent Overlay */
.tower-garden-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 204, 113, 0.9);
}
.garden-text {
  font-size: 18px;
  font-weight: 400;   /* normal readable weight */
  color: #fff;        /* white text (if dark background) */
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  border-radius: 0 0 12px 12px;
}

.service-overlay h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

.service-icon {
  width: 30px;
  height: 30px;
}
.our-farm{
    border-bottom: 3px solid #fff;
    padding: 10px;
}


/* Map container */
.world-map {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: auto;
  display: block;
  position: relative;
}

/* Gradient heading */
.gradient-text {
  font-weight: bold;
  font-size: 1.75rem;
  background: linear-gradient(#b7e0c4, #6bbf7a, #2f7048);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
}

/* Map pointer */
.map-pointer {
  width: 20px;
  height: 20px;
  background-color: green;
  border: 4px solid white;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-pointer:hover {
  transform: scale(1.3);
}

/* Tooltip */
.map-pointer::after {
  content: attr(data-title);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-pointer:hover::after {
  opacity: 1;
}

/* Positions (in %) */
.india { top: 55%; left: 68%; }
.usa { top: 45%; left: 17%; }
.saudi { top: 53%; left: 59%; }
.australia { top: 76%; left: 85%; }
.newzealand { top: 89%; left: 92%; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .map-pointer {
    width: 16px;
    height: 16px;
    border: 3px solid white;
  }
  .map-pointer::after {
    font-size: 11px;
    top: -25px;
  }
}

@media (max-width: 576px) {
  .map-pointer {
    width: 14px;
    height: 14px;
    border: 2px solid white;
  }
  .map-pointer::after {
    font-size: 10px;
    top: -22px;
  }
}
