* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
}
.top-bar {
    background: #bcd9a2 !important;
    color: #000;
    font-size: 14px;
    padding: 6px 0;
}

.main-header {
    background: #bcd9a2 !important;
    padding: 6px 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-left: 20px;
}

.logo img {
  height: 45px;
}

.nav-links a {
  margin: 0 18px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.nav-links a.active {
  border-bottom: 2px solid #4c8f3a;
  padding-bottom: 4px;
}

.nav-icons span {
  margin-left: 15px;
  font-size: 18px;
  cursor: pointer;
}


/* About Section */
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  font-size: 26px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* ===== GALLERY SECTION ===== */

.gallery-section {
  padding: 100px 80px;
  background-color: #ffffff;
  text-align: center;
}

.gallery-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.gallery-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

/* Gallery Images Layout */
.gallery-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

.gallery-image {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-image.large {
  flex: 2;
}

.gallery-image.small {
  flex: 1;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SECOND GALLERY ROW ===== */

.gallery-row-2 {
  padding: 0 80px 100px;
  background-color: #ffffff;
}

.gallery-row-2-container {
  display: flex;
  gap: 30px;
}

.gallery-row-2-image {
  flex: 1;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-row-2-image img {
  width: 100%;
  height: 380px; /* EXACT visual height like screenshot */
  object-fit: cover;
  display: block;
}


/* ===== OUR PROJECTS SECTION ===== */

.projects-section {
  padding: 140px 80px;
  text-align: center;
  background-color: #ffffff;
}

.projects-title {
  font-size: 44px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.projects-subtitle {
  font-size: 17px;
  color: #555;
}

/* ===== PROJECTS IMAGE GRID ===== */

.projects-gallery {
  padding: 0 80px 140px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.projects-gallery-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-img {
  overflow: hidden;
  border-radius: 22px;
}

.project-img img {
  width: 100%;
  height: 300px; /* EXACT visual height */
  object-fit: cover;
  display: block;
}


/* ===== PLANT VARIETIES SECTION ===== */

.plant-varieties {
  padding: 140px 80px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header Row */
.plant-varieties-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.plant-varieties-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.plant-varieties-text p {
  font-size: 16px;
  color: #555;
}

/* Shop Button */
.plant-varieties-btn a {
  padding: 16px 48px;
  border: 1.5px solid #222;
  border-radius: 40px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

/* Images Row */
.plant-varieties-images {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.plant-img {
  flex: 1;
  overflow: hidden;
  border-radius: 22px;
}

.plant-img img {
  width: 100%;
  height: 360px; /* EXACT visual height from screenshot */
  object-fit: cover;
  display: block;
}


/* ===== FOOTER ===== */



.site-footer {
  padding: 120px 80px;
  background-color: #ffffff;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT */
.footer-left h3 {
  font-size: 28px;
  font-weight: 700;
  color: #4c8f3a;
  margin-bottom: 14px;
}

.footer-left p {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
}

.footer-link {
  display: inline-block;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  margin-bottom: 40px;
}

.footer-left .copyright {
  font-size: 14px;
  color: #444;
}

/* CENTER */
.footer-center h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-center p {
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
}

/* RIGHT */
.footer-right h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-right input {
  width: 360px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #b8c2d9;
  font-size: 15px;
  margin-bottom: 24px;
}

.footer-right button {
  padding: 16px 36px;
  border-radius: 30px;
  border: none;
  background-color: #4c8f3a;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc5a;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}
