
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html{
  scroll-behavior: smooth;
}
section{
  scroll-margin-top: 80px;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #08340f;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

.nav-links a:hover{
    text-decoration: underline;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a,
.drop-btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #e8f5e9;
  list-style: none;
  padding: 10px;
  display: none;
  border-radius: 6px;
}

.dropdown-menu li {
  padding: 5px 10px;
}

.dropdown-menu a {
  color: black;
}

.dropdown.active .dropdown-menu {
  display: block;
}

/* Call button */

.call-btn {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  background: 09340d;
  z-index: 1;
  overflow: hidden;
}

/* Rotating neon border */
.call-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    #00ffcc,
    #00ffcc,
    #ff00ff,
    #00ffcc
  );
  animation: rotate 2s linear infinite;
  z-index: -2;
}

/* Inner layer to keep button content clean */
.call-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #09340d;
  border-radius: 8px;
  z-index: -1;
}

/* Rotation animation */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}


/* Sections */
section {
  padding: 60px 40px;
}

.home {
  background: #e8f5e9;
  text-align: center;
}
.home-logo{
  width: 100%;
  max-width: 300px;
}

.about {
  background: #f1f1f1;
  text-align: center;
}
.founder{
  text-align: center;
  padding: 10px 0;
  font-family: "poppins";
  font-weight: 625;
}
.about-data{
  max-width: 800px;
  margin: auto;
  text-align: justify;
  line-height: 1.5;
}
.main-headings{
  color: #08340f ;
  font-family: Poppins;
}
.plants {
  background: #ffffff;
  text-align: center;
}

.projects {
  background: #f1f1f1;
  text-align: center;
}

.contact {
  background: #e8f5e9;
}

/* Cards */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  padding: 20px;
  height: fit-content;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
}
.card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.explore-btn{
  padding: 4px 10px;
  background-color: #11891d;
  color: white;
  
}
a{
  color: rgb(12, 12, 12);
}
.whatsapp{
  color: white;
}
.social-media{
  text-align: center;
}
.media-img{
  width: 25px;
  margin-left: 15px;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }
  .card {
    padding: 15px;
  }

  .card img {
    height: 180px;
  }
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #08340f;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;

  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}