:root {
  --brand-navy: #0b3a55;
  --brand-teal: #0f766e;
  --brand-gold: #f3b33f;
  --ink: #0f172a;
  --muted: #5b667a;
  --surface: #ffffff;
  --surface-soft: #f6f7fb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

body {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(243, 179, 63, 0.14), transparent 45%),
    #fdfdfd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Serif 4", "Times New Roman", serif;
  letter-spacing: 0.2px;
}

a {
  color: var(--brand-navy);
}

a:hover {
  color: var(--brand-teal);
}

.navbar {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.navbar .navbar-brand h2 {
  font-weight: inherit;
  letter-spacing: normal;
}

.sub-header {
  background: #a4c639;
}

.sub-header a,
.sub-header i {
  color: #f9fafb !important;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading em {
  color: #a4c639;
  font-style: normal;
}

.filled-button,
.border-button {
  display: inline-block;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: normal;
  transition: all 0.3s;
}

.filled-button {
  background-color: #a4c639;
  color: #fff !important;
  padding: 12px 30px;
  box-shadow: none;
}

.filled-button:hover {
  background-color: #fff;
  color: #a4c639 !important;
}

.border-button {
  background-color: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  padding: 10px 28px;
  box-shadow: none;
}

.border-button:hover {
  background-color: #fff;
  color: #a4c639 !important;
}

.service-item,
.team-item,
.contact-item,
.partner-item,
.blog-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.contact-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  padding: 12px 14px;
}

.contact-form .form-control:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.18);
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-feedback.is-success {
  color: #0f766e;
}

.form-feedback.is-error {
  color: #b91c1c;
}

@media (prefers-reduced-motion: reduce) {
  .filled-button,
  .border-button {
    transition: none;
  }
}







/* Banner layout guided by reference image */
.Modern-Slider .item .img-fill {
  position: relative;
}

.Modern-Slider .text-content {
  position: absolute;
  left: calc(8% - 10px);
  bottom: calc(16% - 20px);
  top: auto;
  right: auto;
  transform: none;
  background: rgba(164, 198, 57, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 10px;
  width: 50vw;
  max-width: 560px;
  text-align: left;
  z-index: 2;
  overflow: hidden;
}

.Modern-Slider .text-content h4 {
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.Modern-Slider .text-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.Modern-Slider .slick-active .text-content {
  animation: banner-rise 1.2s ease both;
}

@keyframes banner-rise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .Modern-Slider .text-content {
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
    max-width: none;
  }

  .Modern-Slider .text-content h4 {
    font-size: 24px;
  }

  .Modern-Slider .text-content p {
    font-size: 13px;
  }

  .Modern-Slider .text-content p {
    display: none;
  }
}
