:root {
  --primary: #4CAF50;
  --secondary: #FFD700;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #1a2e1a, #2d5a2d);
  color: white;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/bg/agro-bg.jpg') no-repeat center/cover;
  filter: blur(5px);
  opacity: 0.3;
  z-index: -2;
}

.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}

/* Glass Container */
.glass-container {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
nav {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo img {
  height: 1.3cm;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  margin-top: 60px;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.hero .subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-buttons button {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.hero-buttons button:first-child {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons button:last-child {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hero-buttons button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll Down Button */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-down i {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Meeting Schedule Section */
.meeting-schedule {
  padding: 5rem 0;
  position: relative;
}

.meeting-schedule h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

#meetingForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#meetingForm button {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  margin-top: 1rem;
}

#meetingForm button:hover {
  background: #3e8e41;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Queries Section */
.queries {
  padding: 5rem 0;
  position: relative;
}

.queries h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.queries button {
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  display: block;
  margin: 0 auto;
}

.honeypot {
  position: absolute;
  left: -9999px; /* Hidden visually */
  height: 0;
  overflow: hidden;
}

.queries button:hover {
  background: #3e8e41;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 0 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  padding: 1.5rem;
}

.footer-column h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.footer-column p, 
.footer-column li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--secondary);
}

.footer-column i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-quote {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      align-items: center;
      gap: 0;
      clip-path: circle(0px at 90% -10%);
      transition: 0.5s ease-out;
      pointer-events: none;
      padding: 1rem 0;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }

  .nav-links a {
      padding: 1.5rem 0;
      width: 100%;
      text-align: center;
  }

  .nav-links.active {
      clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
  }

  .hamburger {
      display: block;
  }

  .hamburger.active div:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
      font-size: 2.5rem;
  }

  .hero p {
      font-size: 1.2rem;
  }

  .hero-buttons {
      flex-direction: column;
      width: 100%;
  }

  .footer-container {
      grid-template-columns: 1fr;
  }
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ===== Enhanced About Page Styles ===== */
.about-section {
  margin-bottom: 6rem;
  padding: 2rem 0;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.section-image:hover img {
  transform: scale(1.05);
}

.glass-container {
  padding: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-columns {
  gap: 3rem;
  margin: 3rem 0;
}

.about-column {
  padding: 2.5rem;
}

.about-column h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0;
}

.value-card {
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.4rem;
  margin: 1.2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .glass-container {
      padding: 2rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .section-text {
      font-size: 1.1rem;
  }
  
  .section-image {
      height: 200px;
  }
  
  .about-columns {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
}

@media (max-width: 480px) {
  .glass-container {
      padding: 1.5rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .section-image {
      height: 150px;
  }
}

/* Products Page Specific Styles */
.products-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), url('../assets/bg/products-bg.jpg') center/cover);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.products-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.product-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.product-intro h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.product-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.product-block {
  margin-bottom: 5rem;
}

.product-block h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.product-block h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary);
}

.product-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reverse {
  flex-direction: row-reverse;
}

.product-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
  display: block;
}

.product-img:hover img {
  transform: scale(1.05);
}

.product-text {
  flex: 1;
  padding: 1rem;
}

.product-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-text strong {
  color: var(--secondary);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background : rgba(76, 175, 80, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card h3 i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .product-section,
  .reverse {
    flex-direction: column;
  }
  
  .products-hero {
    height: 40vh;
  }
  
  .product-intro h1 {
    font-size: 2.2rem;
  }
  
  .product-block h2 {
    font-size: 1.8rem;
  }
}
/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('../assets/bg/agro-bg.jpg') no-repeat center/cover;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card h2 {
  color: #4CAF50;
  margin: 20px 0 10px;
  font-size: 1.3rem;
}

.contact-card h2 i {
  margin-right: 10px;
}

.social-media {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-media a {
  color: #4CAF50;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.social-media a:hover {
  transform: translateY(-5px);
}

.enquiry-form {
  background: rgba(53, 52, 52, 0.5);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.enquiry-form h2 {
  color: #4CAF50;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.enquiry-form button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.enquiry-form button:hover {
  background: #3e8e41;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
      height: 30vh;
  }
  
  .contact-container {
      grid-template-columns: 1fr;
  }
}

.meeting-schedule .glass-container {
  display: flex;
  flex-direction: column;
  align-items: center;     /* ⬅️ centers items horizontally */
  justify-content: center; /* ⬅️ centers items vertically (optional) */
  text-align: center;
  padding: 2rem;
}

.calendly-button {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 5px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-size: 1rem !important;
  align-self: center;
}

.calendly-button:hover {
  background: #3e8e41 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

  /* Company Info Styles */
  .company-info {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), url('assets/images/farm-bg.jpg') center/cover);
    color: white;
  }

  .company-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo-container {
    flex: 0 0 250px;
  }

  .company-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  }

  .company-text {
    flex: 1;
  }

  .company-text h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .company-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .learn-more-btn {
    display: inline-block;
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .learn-more-btn:hover {
    color: white;
    transform: translateX(5px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .company-content {
      flex-direction: column;
      text-align: center;
    }
    
    .logo-container {
      flex: 0 0 150px;
      margin-bottom: 0;
    }
  }

  /* iOS-specific fixes */
  @supports (-webkit-touch-callout: none) {
    body {
      -webkit-font-smoothing: antialiased;
      background-attachment: fixed;
    }
    
    .glass-container {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }
    
    /* Fix for white background bleed */
    html, body {
      background: linear-gradient(to bottom, #1a2e1a, #2d5a2d);
      height: 100%;
      overflow-x: hidden;
    }
  }

  .products-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
  }

  .products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFD700;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }

  .product-image {
    height: 200px;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-content h3 {
    color: #4CAF50;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
  }

  .product-content p {
    color: #eee;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .product-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #FFD700;
  }

  .product-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #4CAF50;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .product-btn:hover {
    background: #3e8e41;
  }

  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }