@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.btn {
  border-radius: 12px;
}

.btn-outline-success {
  font-weight: 600;
}

#services {
  background: url('your-pattern-image.png') repeat center center;
  background-size: contain;
  background-color: #FFFFFF;
}

h4.fw-bold {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

h6.fw-semibold {
  font-size: 1rem;
  margin-top: 10px;
}

img.mb-2 {
  margin-bottom: 10px;
}

.btn-outline-success.btn-sm {
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-success.btn-sm:hover {
  background-color: #198754;
  color: white;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #198754;
  opacity: 0.5;
  transition: opacity 0.3s, background-color 0.3s;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #198754;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.nav-link.active {
  background-color: #e6f4e9; 
  border-top: 3px solid #1a7a32;
  font-weight: 600;
  color: #1a7a32 !important;
  box-shadow: 0 3px 6px rgba(26, 122, 50, 0.1);
  border-radius: 4px 4px 0 0;
}

.modal-content {
  border-radius: 16px;
}

.modal-header {
  border-bottom: none;
}

.hero-slide h1 {
  font-family: 'Playfair Display', serif;
}

.testimonial-section {
  margin-top: -100px;
  z-index: 3;
}

.testimonial-box {
  max-width: 800px;
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.join-btn {
  background-color: #00cc00;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #009900;
  color: white;
}

::placeholder {
  color: white !important;
  opacity: 1 !important;
}

input::placeholder,
textarea::placeholder {
  color: white !important;
  opacity: 1 !important;
}

.btn-custom {
  background-color: #f7941d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #e67900;
}

.footer-section {
  color: #333;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
}

.footer-icon {
  width: 90px;
  height: 90px;
  margin-right: 8px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #349a28;
  margin-bottom: 0;
}

.footer-text {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.footer-link {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
  color: #349a28;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 0 6px;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #A3C643;
  border-color: #A3C643;
  transform: scale(1.1);
}

.social-icons img {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

.footer-line {
  border-top: 1px dashed #ccc;
  margin: 30px 0 20px;
}

.thank-you-text {
  font-size: 16px;
  color: #A3C643;
  font-weight: bold;
  margin-top: 10px;
}

.welcome-section {
  position: relative;
  background-image: url('images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(133, 209, 70, 0.4);
  z-index: 1;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 20px 30px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  background-color: rgba(3, 63, 6, 0.2);
  color: #ffffff;
}

.welcome-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.welcome-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1050;
}

.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}

.modal-content {
  background-color: #fff !important;
  color: #000;
}

body.modal-open {
  overflow: hidden;
}

.inquire-buttons {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.inquire-buttons.show {
  opacity: 1;
  transform: translateX(0);
}