/* Breadcrumb style */
.breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  font-size: 14px !important;
}

/* Breadcrumb links */
.breadcrumb-link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
}

.breadcrumb-link:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Active breadcrumb */
.breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Mobile optimizations */
@media (max-width: 576px) {
  .breadcrumb {
    font-size: 13px !important;
  }
}
.navbar {
  gap: 48px !important;
}

.header {
  background-color: #f3f3f3 !important;
}

.navbar-top .navbar-collapse {
  top: 112px !important;
  margin: 0px !important;
}

@media screen and (max-width: 990px) {
  .navbar {
    gap: 0px !important;
  }

  .navbar-glass-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
}

.head-band::before {
  background: #f3f3f3;
}
h1 {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  color: #31784b;
  text-align: center;
  margin-bottom: 48px;
}

/* ================= GRID ================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Second row alignment */
.contact-grid .span-2 {
  grid-column: span 2;
}

/* ================= CARD ================= */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
}

/* Icon Placeholder */
.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf6d5;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0e66be;
  font-family: Poppins, sans-serif;
}

/* Card Title */
.contact-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: #2f4f3e;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid .span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .span-2 {
    grid-column: span 1;
  }

  .p {
    text-align: justify !important;
  }
}

.p {
  text-align: start;
}

.main-container {
  border-radius: 20px !important;
  border: 1px solid #c7c7c7 !important;
}

.sub-head-color {
  color: #0b1727 !important;
  font-weight: 600 !important;
}

.para-color {
  color: #333333 !important;
}

.heading {
  color: #0b1727 !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  border: none;
  padding: 10px 0px !important;
  border-bottom: 2px solid #0b1727 !important;
}

.section-1 {
  background-color: #e3eef3 !important;
  padding: 20px 48px !important;
}

.section {
  padding: 80px 24px;
}

/* ================= GRID ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;

  /* ================= CARD ================= */
  .card {
    background: #ffffff;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
  }

  .card-1 {
    background: #ffffff;
    /* padding: 32px; */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    border-radius: 20px !important;

    .card-header {
      border-radius: 20px 20px 0 0 !important;
      width: 100%;
      padding: 8px 10px;
    }
  }

  /* Accent line */
  .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #0e66be;
    border-radius: 22px 0 0 22px;
  }

  /* Hover */
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.12);
  }

  /* ================= CONTENT ================= */
  .card h3 {
    font-family: Poppins, sans-serif;
    font-size: 20px;
    color: #2f4f3e;
    margin-bottom: 14px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  /* Italic emphasis */
  .card .emphasis {
    font-size: 13px;
    font-style: italic;
    color: #4a8c62;
    margin-bottom: 22px;
  }
}
.section {
  background-color: #e3eef3 !important;
}

.main-container {
  border-radius: 20px !important;
  border: 1px solid #c7c7c7 !important;
}

.sub-head-color {
  color: #0b1727 !important;
  font-weight: 600 !important;
}

.para-color {
  color: #333333 !important;
}

.heading {
  color: #0b1727 !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  border: none;
  padding: 10px 0px !important;
  border-bottom: 2px solid #0b1727 !important;
}

.links {
  border: 1px solid #0e66be !important;
  border-radius: 16px !important;
  background-color: #0e66be !important;
  height: 140px !important;
  overflow: hidden;
  img {
    border-radius: 16px !important;
  }

  video {
    border-radius: 16px !important;
    width: 100% !important;
    height: 100% !important;
  }
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 40px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel-track img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 2px solid;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  border: none;
  font-size: 18px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
  border-radius: 4px;
}

.carousel-btn.left {
  left: 5px;
}

.carousel-btn.right {
  right: 5px;
}

@media (max-width: 600px) {
  .section {
    padding: 10px !important;
  }

  .page {
    padding: 10px !important;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.carousel-main {
  width: 90% !important;
  border-radius: 20px !important;
  height: 500px !important;
  background: #e3eef3 !important;
  border-radius: 20px !important;

  .carousel-item {
    height: 450px !important;
    border: 1.5px solid #a8c8e7ff;
    border-radius: 20px !important;

    img {
      border-radius: 20px !important;
      width: 100% !important;
      height: 100%;
    }
  }
}

@media (max-width: 600px) {
  .section {
    padding: 10px !important;
  }

  .section-1 {
    padding: 10px !important;
  }

  .page {
    padding: 10px !important;
  }
}
input,
select,
textarea {
  border: 1.2px solid #c7c7c7 !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
}

input::placeholder {
  color: #999999 !important;
}

select::placeholder {
  color: #999999 !important;
}

label {
  color: #0b1727 !important;
  padding: 0px 10px !important;
  margin-bottom: 2px !important;
}

.form-cn {
  padding: 30px !important;
}

.form-cn-1 {
  padding: 30px !important;
}

@media screen and (max-width: 600px) {
  .form-cn {
    padding: 10px !important;
  }

  .form-cn-1 {
    padding: 5px !important;

    div {
      padding: 10px !important;
    }
  }
}
