:root {
  --green: #4caf50;
  --yellow: #f4a100;
  --black: #000;
  --white: #fff;
  --light-green: rgba(76, 175, 80, 0.1);
  --dark-green: #388e3c;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--black);
  font-size: 18px;
  padding-top: 85px;
}

/* ------ Global css ----------- */

.page-breadcum-banner {
  position: relative;
  width: 100%;
  height: 280px;
  background: url("asets/wave.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-breadcum-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-breadcum-banner .banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.page-breadcum-banner .banner-content h1 {
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: 700;
}

.page-breadcum-banner .banner-content h2 {
  font-size: 25x;
  font-weight: 700;
  margin-top: 5px;
}

.information-box-page {
  background: #fff;
  padding: 50px 40px;
  margin: 50px auto;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* ---------------- End Here ---------------------- */

#Navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-nav {
  flex-grow: 1;
  justify-content: center;
}

.navbar-nav .nav-link {
  color: var(--black) !important;
  font-weight: 500;
  font-size: 18px;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--green) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--green);
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

#Navbar .navbar-nav .login-register {
  display: none;
}

#Navbar .navbar-btns button {
  all: unset;
  background-color: var(--green);
  border-color: var(--green);
  padding: 8px 20px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-left: 10px;
  color: var(--white);
}

#Navbar .navbar-btns button:hover {
  background-color: var(--dark-green);
  transform: translateY(-3px);
}
#Navbar .navbar-btns .register {
  background-color: var(--yellow);
}

#Hero {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0;
  text-align: center;
  transition: background-image 3s ease-in-out;
}

#Hero h1 {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 3.5rem;
}

#Hero h2 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

#Hero p {
  font-size: 1.4rem;
  max-width: 1000px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.btn-primary-custom {
  all: unset;
  background-color: var(--green);
  border-color: var(--green);
  padding: 12px 30px;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  color: var(--white);
}

.btn-primary-custom:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-3px);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-weight: bold;
  color: var(--green);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--yellow);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#AboutUs {
  background-color: #f9f9f9;
}

.about-content {
  font-size: 1.2rem;
  line-height: 1.6;
}

.team-member {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member h4 {
  color: var(--green);
  font-weight: bold;
  font-size: 1.5rem;
}

.team-member h5 {
  color: var(--yellow);
  font-weight: 600;
  font-size: 1.2rem;
}

.team-member p {
  font-size: 1.1rem;
}

#MissionVision {
  background-color: var(--light-green);
}

.mission-vision-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  border-top: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
}

.mission-vision-card h3 {
  color: var(--green);
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.mission-vision-card h3 i {
  margin-right: 15px;
  font-size: 2rem;
}

.mission-vision-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}

#WhatWeDo .service-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

#WhatWeDo .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#WhatWeDo .service-card i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 20px;
}

#WhatWeDo .service-card h3 {
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-green);
  font-size: 1.8rem;
}

#WhatWeDo .service-card ul {
  font-size: 1.1rem;
  padding-left: 20px;
}

#WhatWeDo .service-card ul li {
  margin-bottom: 10px;
}

#OurPurpose {
  background-color: #f9f9f9;
}

.purpose-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.purpose-item i {
  color: var(--green);
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.purpose-item p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

#FarmGallery .gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

#FarmGallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#FarmGallery .gallery-item:hover img {
  transform: scale(1.1);
}

#FarmGallery .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#FarmGallery .gallery-item:hover .overlay {
  opacity: 1;
}

#FarmGallery .gallery-item .overlay i {
  color: var(--white);
  font-size: 2rem;
}

#CoreObjectives {
  background-color: var(--light-green);
}

.objective-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--yellow);
}

.objective-item i {
  color: var(--green);
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.objective-item p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

#OurGovernance {
  background-color: #f9f9f9;
}

.governance-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 4px double var(--green);
}

.governance-item i {
  color: var(--green);
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.governance-item p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

#ContactUs {
  background-color: var(--light-green);
}
#ContactUs form {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1rem;
}

#ContactUs .form-control {
  font-size: 1.1rem;
  padding: 12px 15px;
  border-radius: 8px;
}

#ContactUs .form-label {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

#ContactUs .contact-info {
  font-size: 1.1rem;
  margin-top: 15px;
}

#ContactUs .contact-info i {
  color: var(--green);
  margin-right: 10px;
  font-size: 1.3rem;
}

#ContactUs .social-icons a {
  color: var(--green);
  font-size: 1.8rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

#ContactUs .social-icons a:hover {
  color: var(--dark-green);
}

#CTA {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("asets/ctabg.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

#CTA h2 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

#CTA p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

#Footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 25px;
}

#Footer h4 {
  color: var(--green);
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 1.4rem;
}

#Footer p {
  font-size: 1rem;
  line-height: 1.6;
}

#Footer ul {
  list-style: none;
  padding: 0;
}

#Footer ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

#Footer ul li i {
  margin-right: 8px;
  color: var(--green);
}

#Footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

#Footer a:hover {
  color: var(--green);
}

.footer-logo {
  height: 110px;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 1.6rem;
  margin-right: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 35px;
  padding-top: 15px;
  text-align: center;
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  #Navbar .navbar-btns {
    display: none;
  }

  #Navbar .navbar-nav .login-register {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-breadcum-banner .banner-content h1 {
    font-size: 25px;
  }

  .page-breadcum-banner .banner-content h2 {
    font-size: 20x;
  }

  #Hero {
    padding: 90px 0;
  }

  #Hero h1 {
    font-size: 1.75rem;
  }

  #Hero h2 {
    font-size: 2rem;
  }

  #Hero p {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .section {
    padding: 50px 0;
  }

  #Navbar .navbar-btns {
    display: none;
  }

  #CTA h2 {
    font-size: 1.75rem;
  }

  #CTA p {
    font-size: 1.2rem;
  }
}

/* =======  Home Page End Here ======== */

/* =======  Privacy and Policy , TermsConditions,  Legal Document start ======== */

#policy h2,
#TermsConditions h2,
#LegalBanker h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 28px;
  color: #2e7d32;
  font-weight: 700;
  border-left: 3px solid #2e7d32;
  padding-left: 12px;
}

/* PARAGRAPH SPACING */
#policy p,
#TermsConditions p {
  margin-bottom: 18px;
}

/* LIST STYLING */
#policy ul,
#TermsConditions ul {
  margin: 10px 0 25px 30px;
  padding-left: 10px;
}

#policy ul li,
#TermsConditions ul li,
#LegalBanker ul li {
  margin-bottom: 10px;
  list-style: disc;
  font-size: 17px;
}

/* =======  Legal Document Style ======== */

#LegalBanker .legal-box {
  background: #ebebeb;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

#LegalBanker .btn-download {
  margin-top: 20px;
  padding: 12px 26px;
  background: #2e7d32;
  border: none;
  color: #fff;
  font-size: 17px;
  border-radius: 8px;
  cursor: pointer;
}

#LegalBanker .btn-download:hover {
  background: #256628;
}

/* responsive */
@media (max-width: 768px) {
  .information-box-page {
    padding: 30px 20px;
  }

  #policy h2,
  #TermsConditions h2,
  #LegalBanker h2 {
    font-size: 22px;
  }

  #policy ul,
  #TermsConditions ul {
    margin-left: 20px;
  }
}
