/* Custom CSS Variables */
:root {
  --forest-green: #2d5016;
  --forest-brown: #8b4513;
  --forest-light-green: #4a7c59;
  --warning-yellow: #ffc107;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --forest-blue: #4a7a7c;
}

/* General Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 80px;
}

.text-forest-green {
  color: var(--forest-green) !important;
}

.bg-forest-green {
  background-color: var(--forest-green) !important;
}

.btn-forest-green {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: white;
  font-weight: 500;
}

.btn-forest-green:hover {
  background-color: var(--forest-light-green);
  border-color: var(--forest-light-green);
  color: white;
}

.btn-forest-brown {
  background-color: var(--forest-brown);
  border-color: var(--forest-brown);
  color: white;
  font-weight: 500;
}


.btn-forest-brown:hover {
  background-color: #a0522d;
  border-color: #a0522d;
  color: white;
}

.btn-forest-blue {
  background-color: var(--forest-blue);
  border-color: var(--forest-blue);
  color: white;
  font-weight: 500;
}

.btn-forest-blue:hover {
  background-color: var(--forest-blue);
  border-color: var(--forest-blue);
  color: white;
  font-weight: 600;
}



/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.navbar-brand h6 {
  font-size: 14px;
  max-width: 350px;
}

.navbar-brand small {
  font-size: 11px;
}

/* Hero Section */
.hero-section {
  background: url('images/headerBG.png') center/cover; 
  min-height: 750px;
  display: flex;
  align-items: start;
  position: relative;
  padding-top: 65px;
  transform: none !important;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.95;
}

.hero-buttons .btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  min-width: 250px;
}

.hero-buttons .btn small {
  font-size: 12px;
  opacity: 0.9;
}

/* Statistics Section */
.stats-section {
  background-color: #F7F4F2;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2rem;
  color: var(--forest-green);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-green);
}

.stat-label {
  color: var(--medium-gray);
  font-size: 14px;
  font-weight: 500;
}

/* About Section */
.about-section {
  display: flex;
  flex-direction: row;
  padding: 100px 0;
  height: fit-content !important;
  background: url('images/aboutBG.png') center/cover;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.timeline-info {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--forest-green);
}

.institutional-support {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-card {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-3px);
}

.support-badge {
  background: var(--forest-green);
  color: white;
  padding: 22px 22px;
  border-radius: 555px;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
  display: inline-block;
}

.support-card small {
  font-size: 11px;
  line-height: 1.3;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: url('images/featuresBG.png') center/cover;
}

.feature-card {
  /* background: white; */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--forest-green), var(--forest-light-green)); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.feature-card h5 {
  color: var(--forest-green);
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* Footer */
.footer-section {
  background: url('images/footerBG.png') center/cover;
}

.contact-info div {
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white !important;
}

.gif{
  max-width: 100%;
  max-height: auto;
}

.btn-yellow{
  background-color: #fff200;
  color: #1A472A;
}

.hero-buttons{
  display: flex !important;
  justify-content: center;
  margin-bottom: 20px;
}

.letter-enhance{
  letter-spacing: -.5px;
  line-height: 35px;
}

.about-flex{
  justify-content: space-between;
  align-items: center;
}

.f-inter{
  font-family: 'inter';
}

.f-raleway{
  font-family: 'raleway';
}

.fw-medium{
  font-weight: medium !important;
}

.support-circle {
  background-color: #e6f0ea;
  color: #1A472A;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.5rem;
}

.institutional-support-card {
  background-color: #F7F4F2;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
}

.h-450{
  height: 450px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons .btn {
    min-width: 200px;
    margin-bottom: 15px;
  }
  
  .navbar-brand h6 {
    font-size: 12px;
  }
  
  .navbar-brand small {
    font-size: 10px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stats-section {
    margin-top: -30px;
  }
  
  .about-section,
  .features-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .institutional-support {
    padding: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fw-semibol{
  font-weight: 300;
}