* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 5%;
  background: linear-gradient(135deg, #1e3510 0%, #3a6c1c 100%);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img{
    width: 70px;
    border-radius: 10%;
}

@keyframes grow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a8e063;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

nav.scrolled .nav-links a {
  color: rgb(255, 255, 255);
}

/* Our teams start*/
.custom-select {
  position: relative;
}

.select-btn {
  background: transparent;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 550;
}

.select-menu {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  background: rgba(255,255,255,0.95);
  width: 200px;
  padding: 10px 0;
  border-radius: 8px;
  list-style: none;
  color: black;
}

.select-menu li a {
  display: block;
  padding: 12px 16px;
  color: rgb(0, 0, 0);
}

.select-menu li a:hover {
  background: #f2f2f2;
  /* color: black; */
}

.select-menu.show {
  display: block;
  position: absolute;
  z-index: 10;
}

nav.scrolled .select-btn  {
  color: rgb(255, 255, 255);
}
nav.scrolled .select-menu li a{
  color: rgb(0, 0, 0);
}



/* Our teams end*/

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.8),
    rgba(74, 124, 44, 0.6)
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 8px 25px rgba(168, 224, 99, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(168, 224, 99, 0.5);
}

/* Section Styles */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeIn 1s ease;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a8e063, #56ab2f);
  border-radius: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.carousel {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #a8e063;
  transform: scale(1.3);
}

.about-text h3 {
  font-size: 2rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature::before {
  content: "✓";
  color: #56ab2f;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Partners Section */
.partners {
  background: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.partner-card:nth-child(2) {
  animation-delay: 0.2s;
}
.partner-card:nth-child(3) {
  animation-delay: 0.4s;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 5px solid #56ab2f;
  box-shadow: 0 10px 30px rgba(86, 171, 47, 0.3);
  position: relative;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-image img {
  transform: scale(1.1);
}

.partner-card h3 {
  font-size: 1.5rem;
  color: #2d5016;
  margin-bottom: 0.5rem;
}

.partner-card p {
  color: #666;
}

/* video section */

/* Base layout */
.abouts-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Left video container */
.abouts-video {
  flex: 0 0 320px;
}

/* Portrait video */
.abouts-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
}

/* Right content */
.abouts-text {
  flex: 1;
}

/* ============================= */
/* Tablets (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {
  .abouts-content {
    gap: 30px;
  }

  .abouts-video {
    flex: 0 0 260px;
  }
}

/* ============================= */
/* Mobile (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {
  .abouts-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .abouts-video {
    width: 100%;
    max-width: 360px;
  }

  .abouts-text {
    width: 100%;
  }

  .abouts-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
  }
}

/* ============================= */
/* Small phones (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {
  .abouts-video {
    max-width: 300px;
  }

  .abouts-features {
    grid-template-columns: 1fr;
  }
}

/* video section ends */

/* Blog Section */
.blog {
  background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e0 100%);
}

.blog-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-track {
  display: flex;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: 100%;
  padding: 0 1rem;
}

.blog-content {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-text {
  padding: 2rem;
}

.blog-text h3 {
  font-size: 1.8rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.blog-text .date {
  color: #56ab2f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-text p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.read-more {
  display: inline-block;
  color: #56ab2f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2d5016;
  transform: translateX(5px);
}

.blog-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.blog-nav button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-nav button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(168, 224, 99, 0.4);
}

/* Contact Section */
.contact {
  background: #fff;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d5016;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e8f5e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #56ab2f;
  box-shadow: 0 0 15px rgba(86, 171, 47, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 224, 99, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3510 0%, #2d5016 100%);
  color: #fff;
  padding: 3rem 5%;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-section h4 {
  color: #a8e063;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a8e063;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(168, 224, 99, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #a8e063;
  transform: translateY(-3px);
}

.copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    width: 100%;
    padding: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

