/* Global Styles */
:root {
  --primary-green: #1a4d43;
  --secondary-green: #4b8370;
  --accent-green: #7fb8a1;
  --light-green: #e8f5f1;
  --text-dark: #333;
  --text-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  
  #success-message {
  background-color: #dff0d8;
  color: #3c763d;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
  animation: fade-in 0.5s ease-in;
}
  
  body {
    color: #333;
    line-height: 1.6;
  }
  
  /* Navigation */
  .logo {
    color: rgb(1, 112, 10);
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .navbar-brand {
            font-weight: 600;
            color: var(--main-green);
   }

  /* Banner Section */
  .banner {
    background: url('./assets/images/herocover.jpg') no-repeat center/cover;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .banner-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #eeeeee;
  }
  
  .btn-banner {
    background: #92f086;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    font-size: 1rem;
  }
  
  /* Services Section */

 /* Services Section with Shining Cards */
#services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#services h2 {
  color: #2e7d32;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #81c784, #2e7d32);
  border-radius: 2px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Shining Green Card Effect */
.card {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 80, 0.3);
  z-index: 1;
}

/* Green Shine Overlay */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(129, 199, 132, 0.3),
    transparent
  );
  transition: 0.6s;
  z-index: -1;
}

/* Shine Animation on Hover */
.card:hover::after {
  left: 100%;
}

/* Glow Border Effect */
.card:hover {
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
  border-color: rgba(76, 175, 80, 0.6);
}

/* Inner Glow */
.card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    #81c784,
    #4caf50,
    #2e7d32,
    #81c784
  );
  background-size: 400%;
  border-radius: 20px;
  z-index: -2;
  opacity: 0;
  transition: 0.5s;
}

.card:hover::before {
  opacity: 0.7;
  animation: glow 8s linear infinite;
}

@keyframes glow {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Card Content Styling */
.card h3 {
  color: #1b5e20;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #2e7d32;
  transition: width 0.3s ease;
}

.card:hover h3::after {
  width: 100%;
}

.card p {
  color: #424242;
  line-height: 1.6;
}

/* Animation Effects */
.fade-in {
  animation: fadeIn 1s ease-in-out both;
}

.scale-up {
  animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { 
    transform: scale(0.9);
    opacity: 0;
  }
  to { 
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }
  
  #services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
  /* Testimonials Section */
  /* Testimonial Slider Section */
.testimonial-slider {
  padding: 3rem 1rem;
  text-align: center;
}

.testimonial-slider h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.swiper-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  
}

.testimonial-card {
  padding: 2rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-image: url('./assets/images/background-test.png');
  background-position: center;
  color: white;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
}

.testimonial-card h4 {
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #777;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-pagination-bullet {
  background: #333;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-slider h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-slider h2 {
    font-size: 1.2rem;
  }
}

  /* Booking Section */
  .booking {
    padding: 40px 20px;
    text-align: center;
  }
  
  .booking form {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .booking input, .booking textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
  }


  :root {
    --primary-color: #2a7a6d;
    --secondary-color: #3abda7;
    --accent-color: #109e0b;
}

#service-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
    pointer-events: none;
}

.zone-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

.calculator-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
}

.calculator-card input {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.calculator-card input:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: none;
}

.fee-bubble {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.zone-list li {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.zone-list li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
  
  /* Footer */
  footer {
    background: linear-gradient(45deg,  rgb(0, 66, 41), rgb(0, 128, 79));
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  footer p {
    margin-bottom: 10px;
  }
  
  footer .social-links a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
  }
  footer .social-links img {
    width: 40px;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 1s forwards;
  }
  
  .scale-up {
    animation: scaleUp 0.6s forwards;
  }
  
  .slide-up {
    animation: slideUp 0.8s forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /*about section*/

  /* About Us Section Styles */
  /*bunossection*/
.fixed-background {
  background-image: url('./assets/images/background-test.png'); /* Replace with your image */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  animation: fadeInSection 1.2s ease-out;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: slideInText 1s ease-out;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 20px;
  animation: fadeInText 1s ease-out;
  color: #fff;
  font-family: "Raleway", sans-serif;
}



/* Animations */
@keyframes fadeInSection {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideInText {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-background {
      padding: 60px 20px;
  }

  h2 {
      font-size: 28px;
  }

  p {
      font-size: 15px;
  }
}

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem calc((101vw - 1000px) / 2);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  padding: 2rem;
  text-align: left;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #4b8370;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #4b8370;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #cf513b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }
}






  