/*==========================================
GLOBAL
==========================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --secondary: #66bb6a;

  --white: #ffffff;
  --black: #222222;

  --text: #555;
  --heading: #1d1d1d;

  --bg: #f6faf7;
  --card: #ffffff;

  --border: #e5e5e5;

  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  --radius: 18px;

  --transition: 0.35s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--heading);
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
}

/*==========================================
BUTTONS
==========================================*/

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 34px;

  background: var(--primary);

  color: #fff;

  border-radius: 50px;

  font-weight: 600;

  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.btn-outline {
  padding: 15px 34px;

  border: 2px solid var(--primary);

  color: var(--primary);

  border-radius: 50px;

  font-weight: 600;
}

.btn-outline:hover {
  background: var(--primary);

  color: #fff;
}

/*==========================================
HEADER
==========================================*/

.header {
  position: sticky;

  top: 0;

  z-index: 999;

  background: #fff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 84px;
}

.logo {
  display: flex;

  align-items: center;

  gap: 15px;
}

.logo img {
  width: 52px;
}

.logo span {
  font-size: 24px;

  font-weight: 700;

  color: var(--primary);
}

nav ul {
  display: flex;

  gap: 35px;
}

nav a {
  color: #333;

  font-weight: 500;

  position: relative;
}

nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
}

/*==========================================
HERO
==========================================*/

.hero {
  background: linear-gradient(135deg, #edf8ef, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin-left: auto;
}

.tag {
  display: inline-block;

  background: #e8f5e9;

  color: var(--primary);

  padding: 8px 20px;

  border-radius: 30px;

  font-weight: 600;

  margin-bottom: 25px;
}

.hero h1 {
  font-size: 40px;

  line-height: 1.15;

  color: var(--heading);

  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;

  margin-bottom: 40px;

  max-width: 560px;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  margin-bottom: 45px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;

  box-shadow: var(--shadow);
}

.stats {
  display: flex;

  gap: 35px;

  flex-wrap: wrap;
}

.stats div {
  background: #fff;

  padding: 20px 28px;

  border-radius: 18px;

  box-shadow: var(--shadow);

  min-width: 150px;
}

.stats h3 {
  color: var(--primary);

  font-size: 30px;

  margin-bottom: 5px;
}

/*==========================================
ABOUT
==========================================*/

.about {
  background: #fff;
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.about-image img {
  border-radius: 25px;

  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 42px;

  color: var(--heading);

  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-list {
  display: grid;

  gap: 18px;

  margin-top: 30px;
}

.about-list li {
  display: flex;

  gap: 15px;

  align-items: flex-start;
}

.about-list span {
  width: 42px;

  height: 42px;

  background: #e8f5e9;

  color: var(--primary);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: bold;
}

/*==========================================
MISSION
==========================================*/

.mission {
  background: #f7fbf7;
}

.cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

.card {
  background: #fff;

  padding: 40px;

  border-radius: 22px;

  box-shadow: var(--shadow);

  transition: 0.35s;
}

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

.card-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #e8f5e9;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  margin-bottom: 25px;
}

.card h3 {
  margin-bottom: 15px;

  color: var(--heading);
}

/*==========================================
GALLERY
==========================================*/

.gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.gallery-item {
  overflow: hidden;

  border-radius: 20px;

  position: relative;
}

.gallery-item img {
  height: 280px;

  object-fit: cover;

  transition: 0.45s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.15);

  opacity: 0;

  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/*==================================
FOOTER
==================================*/

.footer {
  background: #1b4332;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: #ddd;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer hr {
  margin: 40px 0;
  border-color: rgba(255, 255, 255, 0.15);
}

.copyright {
  text-align: center;
}

/* Mobile Menu */

nav.show {
  display: block;
}

nav a.active {
  color: var(--primary);
}

/* Header Effect */

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  transition: 0.3s;
}

/* Reveal Animation */

.hidden {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s;
}

.visible {
  opacity: 1;

  transform: translateY(0);
}

/* Scroll to Top Button (optional) */

.scroll-top {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  box-shadow: var(--shadow);

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;
}

.scroll-top.show {
  opacity: 1;

  visibility: visible;
}

.menu-btn {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #2e7d32;
  font-weight: bold;
}

/*==================================
SERVICES
==================================*/

.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border-top: 5px solid #2e7d32;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 8px;
}

/*==================================
JOURNEY
==================================*/

.journey {
  background: #f8fafc;
}

.timeline {
  position: relative;
  margin-top: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #2e7d32;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  font-size: 10px;
}

.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.timeline-content h3 {
  margin-bottom: 15px;
}

/*==================================
LEADERSHIP
==================================*/

.leadership {
  background: #ffffff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
}

.leader-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.leader-content {
  padding: 30px;
}

.designation {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.leader-content h3 {
  margin-bottom: 15px;
}

.leader-content p {
  margin-bottom: 20px;
}

.leader-content ul {
  padding-left: 20px;
}

.leader-content li {
  margin-bottom: 10px;
}

/*==================================
REGISTRATION
==================================*/

.recognition {
  background: #f8fafc;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.recognition-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.recognition-card:hover {
  transform: translateY(-10px);
}

.recognition-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 25px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.recognition-card h3 {
  margin-bottom: 18px;
}

.trust-box {
  margin-top: 70px;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
}

.trust-box h3 {
  color: #fff;
  margin-bottom: 20px;
}

.trust-box p {
  max-width: 800px;
  margin: auto auto 30px;
}

/*==================================
GALLERY
==================================*/

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gallery-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-content {
  padding: 25px;
}

.gallery-content h3 {
  margin-bottom: 15px;
  color: #2e7d32;
}

.gallery-content p {
  margin: 0;
}

/*==================================
CONTACT
==================================*/

.contact {
  background: #f8fafc;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 60px;
}
.data-container {
  display: flex;
  flex-wrap: wrap;
}
.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex: 1;
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
}
/*==================================
    OUR IMPACT
==================================*/

.impact {
  padding: 100px 0;
  background: #f8fafc;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.impact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border-top: 5px solid #2e7d32;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.impact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2e7d32;
  font-size: 32px;
}

.impact-card h3 {
  font-size: 48px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
  line-height: 1;
}

.impact-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.impact-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}
