@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #1a4d2d;
  --primary-dark: #0e3520;
  --primary-light: #2a6e3f;
  --secondary: #ff9e29;
  --secondary-dark: #e58c1a;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #343a40;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 1rem auto 0;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 158, 41, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 158, 41, 0.5);
  background: linear-gradient(135deg, #ffb24c, #d17f04);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--primary);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(3deg);
}

.site-title {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu ul li a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: var(--secondary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Section */
.highlights {
  padding: 5rem 0;
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.highlight-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.highlight-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.why-choose .section-title {
  color: var(--white);
}

.why-choose .section-title::after {
  background: var(--secondary);
}

.why-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
}

/* About Page */
.about-main {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Vision & Mission */
.vision-mission {
  padding: 5rem 0;
  background: var(--light);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vision-card, .mission-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vision-card i, .mission-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.vision-card h3, .mission-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-box {
  background: var(--light);
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.value-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-box i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.value-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* What We Do */
.what-we-do {
  padding: 5rem 0;
  background: var(--light);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.wwd-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.wwd-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.wwd-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.wwd-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Gallery Page */
.gallery-section {
  padding: 5rem 0;
  background: var(--white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: var(--light);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-lightbox:hover {
  color: var(--secondary);
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  min-width: 40px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.social-connect {
  margin-top: 2rem;
}

.social-connect h3 {
  margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 158, 41, 0.1);
}

.form-status {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

/* Map Section */
.map-section {
  padding: 0 0 5rem 0;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Collaborators Section */
.collaborators-section {
  padding: 5rem 0;
  background: var(--light);
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.collaborator-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.collaborator-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.collaborator-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Join Page */
.join-section {
  padding: 5rem 0;
  background: var(--white);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.join-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefits-list {
  margin-top: 2rem;
}

.benefit {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit i {
  font-size: 1.5rem;
  color: var(--secondary);
  min-width: 30px;
}

.benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.join-form-container {
  background: var(--light);
  padding: 2rem;
  border-radius: 20px;
}

.join-form-container h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section .btn {
  background: var(--white);
  color: var(--secondary);
  box-shadow: none;
}

.cta-section .btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-section i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}





.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .about-grid,
  .vm-grid,
  .contact-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
  }
  
  .overlay.active {
    display: block;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .gallery-filter {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}


.hero {
  position: relative;
  height: 90vh;
  background: url("../images/image16.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00a859;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #007a40;
}