@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #7cb37e;
  --blue-color: #328ecd;
  --secondary-green: #a8dbca;
  --light-mint: #d4f4cd;
  --light-seafoam: #d2f4e6;
  --light-blue: #bbe1ea;
  --off-white: #fafbfc;
  --pure-white: #ffffff;
}
* {
  font-family: Georgia, "Times New Roman", Times, serif !important;
}

i {
  font-family: "Font Awesome 5 Free", sans-serif !important;
  font-weight: 900;
}

body {
  line-height: 1.6;
  color: #2c3e50;
  background-color: var(--off-white);
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.dropdown-item:active {
  background-color: var(--primary-color) !important;
  color: #ffffff;
}

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  background: url("/assets/bg-hero.jpeg") no-repeat center center;
  background-size: cover;
  color: #2c3e50;
  margin-top: 76px;
  height: 80vh;
}

.btn {
  border-radius: 30px;
  padding: 10px 30px;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white;
}

.why-section {
  position: relative;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background: url("/assets/process.jpeg") no-repeat center center;
  background-size: cover;
}

.cta-section {
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background: url("/assets/cta.jpeg") no-repeat center center;
  background-size: cover;
}

.funds-section {
  position: relative;
}
.funds-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
  background: url("/assets/fund.jpeg") no-repeat center center;
  background-size: cover;
}

/* Section Backgrounds */
.section-bg-alt {
  background: linear-gradient(
    45deg,
    var(--off-white) 0%,
    var(--light-mint) 50%,
    var(--light-seafoam) 100%
  );
}

/* Card Styles */
.card-custom {
  border: none;
  box-shadow: 0 8px 32px rgba(124, 178, 126, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
  background: var(--pure-white);
  overflow: hidden;
}

.card-custom:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 40px rgba(124, 178, 126, 0.15);
}

/* Text Colors */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background: var(--primary-color) !important;
}

/* Section Title */
.section-title {
  position: relative;
  margin-bottom: 50px;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Form Styles */
.custom-input {
  border: none;
  border-bottom: 2px solid #e5e7eb;
  border-radius: 0px;
  padding: 12px 0px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background-color: var(--off-white);
  width: 100%;
}

.custom-input:focus {
  border-color: var(--primary-color);
  /* box-shadow: 0 0 0 3px rgba(124, 178, 126, 0.1); */
  box-shadow: none;
  background-color: transparent;
  outline: none;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: #374151;
  margin-bottom: 0.25rem;
  font-family: "Inter", sans-serif;
}

.option-pill {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  background: var(--off-white);
  color: #374151;
}

.form-check {
  padding-left: 0%;
}

.form-check-input:checked + .option-pill {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.form-check-input {
  display: none;
}

.option-pill:hover {
  border-color: var(--primary-color);
  background: var(--light-mint);
}

.form-check-input:checked + .option-pill:hover {
  background: var(--secondary-green);
  color: white;
}

.form-check-label {
  margin-bottom: 0;
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--light-mint) 0%,
    var(--light-seafoam) 50%,
    var(--light-blue) 100%
  );
  padding: 60px 0;
  padding: 120px 0 80px;
  text-align: center;
}

.contact-info-card {
  background: var(--pure-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(124, 178, 126, 0.1);
  text-align: center;
  height: 100%;
  border: 1px solid var(--light-seafoam);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(124, 178, 126, 0.15);
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 50px 0 30px;
}

.footer i {
  color: var(--primary-color);
}

#about,
#deliver,
#team,
#contact-us {
  position: relative; /* makes them the containing block for their ::before */
  overflow: hidden; /* clips absolutely positioned children */
  z-index: 0; /* create stacking context so ::before with -1 stays inside */
}
#about::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background-image: url("./assets/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

#deliver::before {
  content: "";
  position: absolute;
  bottom: -30%;
  right: 0%;
  width: 500px;
  height: 500px;
  background-image: url("./assets/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

#contact-us::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 500px;
  height: 500px;
  background-image: url("./assets/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

#team::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0%;
  width: 500px;
  height: 500px;
  background-image: url("./assets/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

.select-service {
  border-right: 1px solid #e5e7eb;
  padding-right: 24px;
  margin-right: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .custom-input {
    padding: 10px 0px;
  }

  .select-service {
  border-right: none;
  padding-right: 0px;
  margin-right: 0px;
}

#contact-us::before  {
  bottom: -20%;
}
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .option-pill {
    padding: 8px 16px;
    font-size: 13px;
  }

  .contact-icon {
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.py-5 {
  padding: 3rem 0;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-danger {
  color: #dc3545 !important;
}

.small {
  font-size: 0.875em;
}

/* Animation for form submission */
@keyframes submitSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.submit-success {
  animation: submitSuccess 0.3s ease;
}


.error {
    font-size: 12px;
    font-weight: 500;
    color: #dc3545 !important;
}