@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

.font-one {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font-two {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.font-three {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

:focus,
:active {
  box-shadow: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

.divider-with-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #555;
  margin: 30px 0;
}

.divider-with-text::before,
.divider-with-text::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #ccc;
}
.divider-with-text:not(:empty)::before {
  margin-right: 0.75em;
}
.divider-with-text:not(:empty)::after {
  margin-left: 0.75em;
}

.overlay {
  background: rgba(0, 0, 0, 0.75);
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Initial transparent navbar */
/* ================================
  NAVBAR BASE
================================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  z-index: 999;
  padding-top: 0.5rem; /* py-2 */
  padding-bottom: 0.5rem;
}

.nav-child {
  background: #519518;
  /* border-radius: 10px !important; */
}

/* Fixed state on scroll */
.navbar.fixed-on-scroll {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding-top: 0rem; /* shrink padding */
  padding-bottom: 0rem;
  border-radius: 0px !important;
}

/* Slide down animation */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #f1f1f1 !important;
}
/* Base toggler */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s ease;
}

/* Hover effect */
.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Remove default focus outline */
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.4);
  outline: none;
}

/* Hamburger icon */
.navbar-toggler-icon {
  width: 1.6rem;
  height: 1.6rem;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Light navbar support */
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.4);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================================
  DROPDOWN (DESKTOP HOVER)
================================= */
@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-item {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    white-space: nowrap;
  }
}

/* hero sec */

.btn-primary {
  background-color: #519518;
  border: none;
  padding: 15px 25px;
}
.btn-outline-light {
  border: 1px solid #519518 !important;
  color: #5dca04 !important;
  padding: 15px 25px;
}
.btn-outline-light:hover {
  background: #519518;
  border: 1px solid #519518 !important;
  color: #fff !important;
}

/*  Full Width Zoom Section */
.zoom-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.zoom-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-in-out;
  animation: zoomInOut 30s ease-in-out infinite;
}

/* Keyframes for smooth zoom in & out */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  } /* Zoom in */
  100% {
    transform: scale(1);
  } /* Zoom out */
}

/* Optional overlay for style */
.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 23, 11, 0.869);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.zoom-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .zoom-overlay h1 {
    font-size: 2rem;
  }
}

/* Fullscreen category section */
.category-slider {
  height: 100vh;
  background: url("https://via.placeholder.com/1920x1080") center center/cover
    no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 50px 20px;
}

/* Optional overlay for better text readability */
.category-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Slider wrapper positioned above overlay */
.category-slider .swiper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.category-slider .swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #fff;
}

.category-slider .swiper-slide img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.category-slider .swiper-slide:hover img {
  transform: scale(1.1);
}

.category-slider .swiper-slide h5 {
  font-size: 1rem;
  margin: 0;
}

/*.category-slider  Swiper navigation */
.category-slider .swiper-button-next,
.category-slider .swiper-button-prev {
  color: #fff;
}

@media (max-width: 992px) {
  .category-slider .swiper-slide img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .category-slider .swiper-slide img {
    width: 60px;
    height: 60px;
  }
}

/* category-section */
.about-section {
  padding-top: 0px;
  padding-bottom: 80px;
  /* text-align: center; */
}

.about-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.about-section .category-title-text {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 50px;
}

.about-card {
  border: none;
  overflow: hidden;
  border-radius: 0px;
  transition: all 0.4s ease;
  background: white;
}

.about-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Apply up-and-down animation to the container */
.about-img {
  animation: moveBox 4s ease-in-out infinite alternate;
}

/* Second box moves in opposite phase */
.row .col-lg-6:nth-child(2) .about-img {
  animation-delay: 2s; /* Half of animation duration for alternating effect */
}

/* Keyframes for vertical movement */
@keyframes moveBox {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Move up by 20px */
  }
  100% {
    transform: translateY(0);
  }
}

/*-- ===============================
  NEWS
================================ --*/
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 18px;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

/* Each news item */
.news-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 30px;
  position: relative;
  flex-shrink: 0; /* VERY IMPORTANT */
  background:#fff;
}

/* Date block */
.news-date {
  background-color: #ffc107; /* change color as needed */
  color: #000;
  padding: 8px 10px;
  border-radius: 6px;
  min-width: 70px;
  text-align: center;
  font-weight: 600;
}

/* Date text spacing */
.news-date p {
  margin: 0;
  line-height: 1.2;
}

/* Month & year style */
.news-date span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Content */
.news-content p {
  margin: 0;
  font-weight: 500;
  color:#242424;
}

.news-content a {
  font-size: 0.9rem;
  color: #ffc107;
  text-decoration: none;
}

/* === DOUBLE VERTICAL LINES AFTER EACH NEWS === */
.news-item::after,
.news-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.news-item::before {
  right: 6px;
}

/* Remove lines after last item */
.news-item:last-child::after,
.news-item:last-child::before {
  display: none;
}

@keyframes marquee-news {
  from {
    transform: translateX(10);
  }
  to {
    transform: translateX(-200%);
  }
}

.marquee-content {
  animation: marquee-news 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

/*-- ===============================
  Cards
================================ --*/
.custom-box {
  padding: 30px;
  text-align: center;
  background-color: #f8f9fa;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.custom-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/*-- ===============================
  Team Section
================================ --*/
.team-card {
  /* height: 100%; */
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

.team-card img {
  height: 250px;
  object-fit: cover;
}

.team-card .card-title {
  font-size: 16px !important;
}

.card-text {
  font-size: 13px;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0px;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.dot {
  width: 13px;
  height: 8px;
  background-color: #dcdcdc;
  border-radius: 5px;
}

.team-section .swiper-button-next::after,
.team-section .swiper-button-prev::after {
  display: none;
}

.team-section .swiper-button-next.team-next,
.team-section .swiper-button-prev.team-prev {
  color: #399600;
  background-color: rgba(0, 255, 0, 0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.team-section .swiper-button-next.team-next:hover,
.team-section .swiper-button-prev.team-prev:hover {
  background-color: #029023;
  color: #fff;
}

.team-section .swiper-pagination {
  display: flex;
  justify-content: center; /* center bullets horizontally */
  position: relative;
}

.team-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #b8b8b8;
  transform: rotate(45deg);
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 0;
}

.team-section .swiper-pagination-bullet-active {
  width: 10px; /* larger active */
  height: 10px;
  background-color: #519518;
  transform: rotate(45deg);
}

.horizontal-line {
  height: 2px;
  width: 60px;
  background-color: #029023;
  margin-bottom: 50px;
  border-radius: 2px;
}

/*-- ===============================
  Gallery Section
================================ --*/
.gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px; /* Set desired uniform height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers container without distortion */
  display: block;
}

.gall-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gallery-item:hover .gall-overlay {
  opacity: 1;
}

.overlay-text h5 {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

.gallery-item:hover .gall-overlay {
  opacity: 1;
  transform: scale(1); /* scale up on hover */
}

.overlay-icon {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
  text-decoration: none;
}

.overlay-text h5 {
  color: #fff;
  text-align: center;
  margin: 0;
}

/* See More Button */
.see-more-btn {
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #519518;
  border: 1px solid #519518;
}

.see-more-btn:hover {
  background: #519518;
  border: 1px solid #519518;
  color: #fff;
  transform: translateY(-3px);
}

/*-- ===============================
  Our works
================================ --*/

.faq-wrapper {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.accordion-item {
  border: none;
  border-radius: 14px !important;
  overflow: hidden;
  background: #f9f9f9;
}

.accordion-button::after {
  display: none !important;
  border-bottom: 0;
}

.accordion-button {
  background: #f9f9f9;
  font-weight: 600;
  padding: 20px;
  border-radius: 14px !important;
  box-shadow: none;
  position: relative;
}

.accordion-button:not(.collapsed) {
  color: #519518;
}

.accordion-button:not(.collapsed) {
  background: #f1f1f1;
}

.accordion-body {
  background: #fff;
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.faq-icon {
  font-size: 18px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .faq-wrapper {
    padding: 5px;
  }
}

/*-- ===============================
  Contact
================================ --*/

/* Wrapper */
.contact-wrapper {
  margin: 60px auto;
  background: #e9f7f6;
  border-radius: 20px;
  padding: 25px;
}

/* Card */
.contact-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

/* Left Info Panel */
.contact-info {
  background: #327400;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.contact-info::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  animation: floatBefore 8s ease-in-out infinite;
}

.contact-info::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 20px;
  right: 20px;
  animation: floatAfter 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatBefore {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, -25px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes floatAfter {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Info text */
.contact-info h5 {
  font-weight: 600;
  margin-bottom: 38px;
  font-size: 22px;
}

.contact-info p {
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info i {
  font-size: 18px;
  color: #ffffff;
}

/* Form */
.form-control {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  box-shadow: none;
}

.form-control:focus {
  border-color: #327400;
  box-shadow: 0 0 0 0.15rem rgba(50, 116, 0, 0.25);
}

/* Button */
.btn-custom {
  background: #177500;
  color: #ffffff;
  border-radius: 3px;
  padding: 8px 20px;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #209204;
}

/* Titles */
.section-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 22px;
}

.section-subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 0px;
  }

  .contact-card {
    padding: 0px;
  }

  .contact-info {
    padding: 15px;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 12.5px;
  }
}

/*-- ===============================
  Testimonial
================================ --*/
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
}

.quote {
  font-size: 50px;
  font-weight: bold;
  opacity: 0.1;
}

.stars {
  margin-top: 10px;
  color: gold;
  font-size: 18px;
}

.avatar {
  width: 55px;
  height: 55px;
  background: #ddd;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  right: 20px;
}

.orange {
  border-left: 5px solid #f9a825;
}
.green {
  border-left: 5px solid #43a047;
}
.red {
  border-left: 5px solid #e53935;
}

.testimoneal-sec .swiper-button-next::after,
.testimoneal-sec .swiper-button-prev::after {
  display: none !important;
}

.testimoneal-sec .swiper-button-next,
.testimoneal-sec .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  color: #e64a19;
  font-size: 28px;
}

.testimoneal-sec .swiper-button-next:hover,
.testimoneal-sec .swiper-button-prev:hover {
  color: #d4d4d4;
}

.testimoneal-sec .swiper-button-prev {
  right: 65px;
}

.testimoneal-sec .swiper-button-next {
  right: 15px;
}

.testimoneal-sec .swiper-pagination {
  display: flex;
  justify-content: center; /* center bullets horizontally */
  position: relative;
}

.testimoneal-sec .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #b8b8b8;
  transform: rotate(45deg);
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 0;
}

.testimoneal-sec .swiper-pagination-bullet-active {
  width: 10px; /* larger active */
  height: 10px;
  background-color: #519518;
  transform: rotate(45deg);
}

/* Footer Styles */
.footer {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95),
      rgba(20, 20, 20, 0.95)
    ),
    url("../images/h1-background01.jpg") no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
  line-height: 3;
}

.footer a:hover {
  color: #d4af37; /* gold accent */
}

.footer .social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #bbb;
  font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}

.footer .social-icons a:hover {
  color: #d4af37;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-link {
  color: #d4af37;
  font-weight: 600;
}

.scroll-top {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: #01075a;
  color: #000;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  background-color: #3d24c5;
  color: #000;
}

/*-- ===============================
  Other Page style Start Here
================================ --*/
.breadcrumb-section {
  position: relative;
  background-image: url("../images/invi.jpeg"); /* change image */
  height: 100%;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.breadcrumb-section .overlay-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.84);
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.custom-breadcrumb {
  background: none;
  margin-bottom: 0;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #dddddd;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  padding: 0 8px;
}

/*-- =====================================
  Other Page style vision-section Here
====================================== --*/
.vision-section {
  background-color: #f6f6f6;
}

.vision-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.vision-box h2 {
  font-weight: 700;
}

.vision-quote {
  padding: 20px;
  background: #f1f3f5;
  border-left: 4px solid #198754;
  border-radius: 6px;
  font-size: 15px;
}

.vision-list {
  padding-left: 20px;
}

.vision-list li {
  margin-bottom: 8px;
  color: #555;
}

.vision-warning {
  font-weight: 600;
  color: #dc3545;
}

/*-- =====================================
  Other Page style core-value Here
====================================== --*/
.core-value-section {
  background-color: #f6f6f6;
}

.core-value-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.core-value {
  list-style: none;
  padding-left: 0;
}

.core-value li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.core-value li::before {
  content: "\f005"; /* Font Awesome star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: #198754; /* green star */
  font-size: 14px;
}

/*-- =====================================
  Other Page style board Committee Here
====================================== --*/

/*-- =====================================
  Other Page style legal Here
====================================== --*/
.legal {
  background-color: #f8f9fa;
}

.legal-bx img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 15px;
}

.legal-member .card-body {
  padding: 0;
}

.legal-member .card-title {
  font-weight: 600;
  font-size: 18px;
}

.legal-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/*-- =====================================
  Other Page style Our Member Here
====================================== --*/
.member {
  background-color: #f8f9fa;
}

.member-bx img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.member-bx .card-body {
  padding: 0;
}

.member-bx .card-title {
  font-weight: 600;
  font-size: 16px;
}

/*-- =====================================
  Other Page style Page Gallery Here
====================================== --*/
.gall-pag {
  background-color: #f8f9fa;
}

.gall-pag-bx img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.gall-pag-bx .card-body {
  padding: 0;
}

.gall-pag-bx .card-title {
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}

/*-- =====================================
  Other Page style page contact Here
====================================== --*/
.map-section {
  background-color: #f8f9fa;
}

.map-section h2 {
  font-weight: 600;
}

.map-section p {
  color: #555;
}

.ratio iframe {
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

/*-- =========================================
  Other Page style page donate-section Here
=========================================== --*/

.donate-section {
  background-color: #f8f9fa;
}

.donate-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.donate-section h2 {
  font-weight: 600;
}

.donate-section p {
  color: #555;
}

.form-label {
  font-weight: 500;
}

input.form-control,
select.form-select,
textarea.form-control {
  border-radius: 6px;
  padding: 10px;
}

.donat-btn {
  border-radius: 6px;
  background-color: #519518;
  border: none;
  padding: 10px 25px;
  color: #fff;
}

/*-- =====================================
  Other Page style page join-section Here
====================================== --*/
.join-section {
  background-color: #f8f9fa;
}

.join-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.join-section h2 {
  font-weight: 600;
}

.join-section p {
  color: #555;
}

.form-label {
  font-weight: 500;
}

input.form-control,
select.form-select,
textarea.form-control {
  border-radius: 6px;
  padding: 10px;
}

button.btn-primary {
  border-radius: 6px;
  padding: 10px 25px;
}

/*-- =====================================
  Other Page style page works-section Here
====================================== --*/
.list-group.shadow-sm {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.list-group-item.active {
  background-color: #519518 !important;
  border: 1px solid #519518;
  color: #fff !important;
  font-weight: 500;
}

.service-details .list-group a {
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}
.service-details .list-group a:hover {
  background-color: #519518;
  color: #fff;
}
.services-img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
@media (max-width: 768px) {
  .services-img {
    height: 150px;
  }
}

/*-- =====================================
  Other Page style page Announcement-section Here
====================================== --*/
.announcement-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.announcement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image */
.announcement-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.announcement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Date Badge */
.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #198754;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

.date-badge .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.date-badge .month {
  font-size: 12px;
  opacity: 0.9;
}

/* Card Content */
.announcement-card .card-body {
  padding: 20px;
}

.announcement-card .card-title {
  margin-bottom: 10px;
  color: #333;
}

.announcement-card .card-text {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-img {
    height: 180px;
  }
}

/*-- ==============================================
  Other Page style page Video Container-section Here
=================================================== --*/
.video-box {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  padding: 20px;
}

/* iframe or embed */
.video-box iframe,
.video-box video,
.video-box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Card hover */
.gall-pag-bx {
  transition: transform 0.3s ease;
}

.gall-pag-bx:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .video-box {
    height: 180px;
  }
}
