  /* Home Section Styling */
  .home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #4a90e2, #50e3c2);
    color: #fff;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .home-section .container {
    max-width: 700px;
  }

  .home-section h2 {
    font-size: 80px;
    margin-bottom: 20px;
    color: #008e38;
  }

  .home-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #000000;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

/* Shared Button Style */
.btn {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  border: 2px solid transparent;
  display: inline-block;
}

/* Our Services (transparent bg, green border, green text) */
.primary-btn {
  background-color: transparent;
  border: 2px solid #008e38;
  color: #008e38;
}

.primary-btn:hover {
  background-color: #008e38;
  color: #fff;
}

/* Contact Us (gray bg, green border + green text) */
.secondary-btn {
 
  border: 2px solid #008e38;
  color: #008e38;
}

.secondary-btn:hover {
  background-color: #008e38;   /* solid green on hover */
  color: #fff;
  border-color: #008e38;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .home-section {
    height: auto; /* Let it expand based on content */
    padding: 0px 20px;
  }

  .home-section .container {
    max-width: 100%;
  }

  .home-section h2 {
    font-size: 40px; /* smaller for mobile */
  }

  .home-section h1 {
    font-size: 2.2rem;
  }

  .home-section p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column; /* stack buttons vertically */
    gap: 15px;
    align-items: center;
  }

  .btn {
    width: 80%; /* make buttons full width */
    padding: 20px 0;
    font-size: 1rem;
  }



}


/* Extra small screens (480px) */
@media (max-width: 480px) {
  .home-section {
    margin-top: 30px;
    padding: 0 10px;
  }

  .home-section .container {
    max-width: 100%;
  }

  .home-section h2 {
    font-size: 45px !important;       /* bumped a bit bigger */
    margin-bottom: 18px;
  }

  .home-section p {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* ✅ Force bigger buttons for small screens */
  .btn {
    width: 95% !important;       /* nearly full width */
    padding: 14px 0 !important;  /* increase padding */
    font-size: 1.3rem !important;/* larger font size */
    border-radius: 40px;
  }


}


/* Apply bounce to buttons */
.buttons .primary-btn {
  animation: bounce 3s infinite;
  animation-delay: 0s; /* starts first */
}

.buttons .secondary-btn {
  animation: bounce 3s infinite;
  animation-delay: 1.5s; /* starts after the first */
}

/* Stop bouncing on hover */
.buttons .btn:hover {
  animation-play-state: paused;
}

/* Extra small screens (480px) */
@media (max-width: 480px) {
  .home-section {
    margin-top: 30px;
    padding: 0 10px;       /* reduce horizontal padding */
  }

  .home-section .container {
    max-width: 100%;
  }

  .home-section h2 {
    font-size: 25px;       /* smaller heading for tiny screens */
    margin-bottom: 15px;
  }

  .home-section h1 {
    font-size: 1.8rem;     /* adjust h1 if present */
  }

  .home-section p {
    font-size: 14px;       /* smaller paragraph text */
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .buttons {
    flex-direction: column; /* stack buttons vertically */
    gap: 10px;              /* smaller gap */
    align-items: center;
  }

  .btn {
    width: 90%;             /* nearly full width */
    padding: 10px 0;        /* smaller padding */
    font-size: 0.9rem;      /* slightly smaller font */
  }


}



