:root {
  --primary-green: #3a5f0b;
  --accent-yellow: #ffc107;
  --dark-green: #2b4504;
  --title-font: "Fredoka", sans-serif;
  --body-font: "DM Sans", sans-serif;

  --theme-color: #ffd800;
  --secondary-color: #0c7735;
  --body-color: #555555;
  --title-color: #000000;
  --smoke-color: #f1f5f4;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #bfbfbf;
  --title-font: "Fredoka", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

.text-yellow {
  color: var(--yellow-color);
}
.text-green {
  color: var(--secondary-color);
}

.btn-green {
  background: var(--secondary-color);
}

.btn-green:hover {
  background: var(--success-color);
}

.btn-yellow {
  background: var(--accent-yellow);
}
.btn-yellow:hover {
  background: var(--yellow-color);
}

body {
  font-family: var(--body-font);
  overflow-x: hidden;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 24px;
}

.h6,
h6 {
  font-size: 20px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}

.hero-section {
  background: var(--secondary-color);
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-sections {
  background: var(--primary-green);
  height: 100vh;
  display: flex;
  align-items: center;
}

.nav-pills .nav-link {
  color: var(--primary-green);
  border-radius: 30px;
  margin: 0 10px;
  transition: all 0.3s;
}

.nav-pills .nav-link.active {
  background: var(--primary-green);
  color: white !important;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-yellow);
}

.feature-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s;
  background: #f8f9fa;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 20px;
}

.stats-section {
  background: url("assets/images/stats-bg.jpg") center/cover fixed;
  padding: 100px 0;
  position: relative;
  color: white;
}

.stats-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--accent-yellow);
}

.service-box {
  padding: 2rem 1rem;
  border-radius: 5px;
  margin: 1rem 0rem;
  box-shadow: 0 0 74px rgba(10, 10, 10, 0.07);
}

.partner-card {
  transition: all 0.3s ease;
  background: white;
  border: 2px solid rgba(58, 95, 11, 0.1);
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 10px 20px rgba(58, 95, 11, 0.1) !important;
}

.partner-card img {
  opacity: 1;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  opacity: 1;
}

.icon-box-sm {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
}

.contact-info h5 {
  color: var(--dark-green);
}


.schedule-timeline {
    border-left: 3px solid var(--primary-green);
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(58, 95, 11, 0.05);
    border-radius: 8px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.05rem;
    top: 1.2rem;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
}



.schedule-table {
    border-left: 3px solid var(--primary-green);
    padding-left: 1rem;
}

.schedule-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.time {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.event {
    margin-left: 1rem;
}
.b-none{
    border:none !important;
}

.fcenter {
    text-align: justify;
    margin: auto;
}