/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  height: 100%;
}
/* 
body{
  padding-top: 80px; /* Adjust based on navbar height 
}

*/

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  background-color: #0a3d22;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0a3d22;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 1s ease-in-out;
  padding: 0 2rem;
  padding-top: 50px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin: 0.75rem 0;
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 1.5rem;
}
.btn {
  padding: 0.8rem 1.5rem;
  background: green;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: 0.3s;
}
.btn:hover {
  background: #0c6c3a;
}
.btn.secondary {
  background: transparent;
  border: 2px solid white;
}
.hero-content.left-align {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.mission-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
  font-weight: 500;
}

.mission-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.mission-list li span {
  color: white;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Base button style */
.btn {
  padding: 0.8rem 1.5rem;
  background: green;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 0.5rem;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 128, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect: primary button */
.btn:hover {
  background: #0c6c3a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.4);
}

/* Secondary button (outlined) */
.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* Hover effect: secondary button */
.btn.secondary:hover {
  background: white;
  color: #0a3d22;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}


/* about section ========================= */
.about-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.list-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.about-list {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
  width: 100%;
}

.extra-list {
  width: 100%;
}

/* Hide the extra list initially */
.hidden {
  display: none;
}

/* Read More button */
button#readMoreBtn {
  margin-top: 25px;
  padding: 10px 25px;
  font-size: 1rem;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button#readMoreBtn:hover {
  background-color: #256429;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .list-wrapper {
    flex-direction: column;
  }

  .about-list, .extra-list {
    width: 100%;
  }
}

/* Vision Section ======================> */

.vision-section {
  padding: 60px 20px;
  background-color: #e8f5e9; /* soft green background */
  text-align: center;
}

.vision-container {
  max-width: 1000px;
  margin: 0 auto;
}

.vision-section h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 40px;
  font-weight: 700;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vision-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(46,125,50,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(46,125,50,0.3);
}

.vision-card h3 {
  font-size: 1.4rem;
  color: #2e7d32;
  margin-bottom: 12px;
  font-weight: 600;
}

.vision-card p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vision-cards {
    grid-template-columns: 1fr;
  }
}

.vision-icon {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
  display: inline-block;
}



.portfolio-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.portfolio-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 100, 0, 0.7);
  color: #fff;
  width: 100%;
  padding: 10px;
  transition: 0.3s;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Light box */

/* Lightbox Styles */
/* Lightbox modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border: 4px solid white;
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Team ========================> */


.team-section {
  font-family: 'Inter', sans-serif;
  background-color: #f0f8f4;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #155e34;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5a5a5a;
  margin-bottom: 50px;
}


/* Tema Section ========================?  */
.team-cards {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
}

.team-member {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 440px;
}

.team-members{
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.team-members img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5%;
  border: 5px solid #d3f1e4;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 220px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d3f1e4;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.team-member p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
}


.team-socials a {
  color: #2b9348;
  font-size: 1.25rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.team-socials a:hover {
  color: #157347;
}


/* Hire us Section  */
.hire-us {
  background: linear-gradient(135deg, #2b9348, #55a630);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hire-us .hire-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hire-us .hire-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hire-us .btn {
  background-color: #fff;
  color: #2b9348;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hire-us .btn:hover {
  background-color: #f0f0f0;
}


/* contact Us Section  */

.contact-section {
  padding: 80px 20px;
  background-color: #f0f4f3;
  text-align: center;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #2b9348;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

/* Contact Info Cards */
.contact-info .contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #2b9348;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Contact Form */
.contact-form form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}

.contact-form button {
  background-color: #2b9348;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #23873f;
}

/* fOOTER ========================> */

.footer {
  background-color: #1b1b1b;
  color: #f0f0f0;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about, .footer-links, .footer-social {
  flex: 1 1 300px;
}

.footer h2, .footer h3 {
  margin-bottom: 10px;
  color: #8cc63f;
}

.footer p, .footer li, .footer a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #8cc63f;
}

.footer-social .social-icons a {
  font-size: 18px;
  color: #ddd;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  margin-top: 30px;
}


/* Scroll to top  */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #8cc63f;
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #6ea12f;
}

/* 
Loader -_____====================>
*/

/* Loader background */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100px;
  height: auto;
  animation: logoPulse 1.5s ease-in-out infinite;
}

.loader-message {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #4c4c4c;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Logo pulse animation */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
