.agriculture-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px 80px;
  background: url("Images/contactimg.png") no-repeat center center;
  background-size: cover; /* ✅ ensures responsive fit */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.agriculture-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0,0,0,0.5); */
  z-index: 0;
}

.agriculture-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.agriculture-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: -60px;
  
}

.agriculture-section .description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #000;
  margin-top: 400px;
}

.back-to-home-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff9800;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-to-home-btn:hover {
  background: #e68900;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .agriculture-section {
    width: 100%;
    min-height: 40vh; /* full screen height */
    padding: 40px 15px 60px;
    background: url("Images/contactimg.png") no-repeat center center;
    background-size: cover; /* scale to cover mobile screen */
    background-attachment: scroll; /* avoid zoom/stretch issues */
    text-align: center;
     margin: 0 !important;
    padding: 0 !important;
  }

  .agriculture-section .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .agriculture-section .description {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/*navbar purpose only */
/* Remove background color from top-bar-section */

/* Top Bar Section */
.top-bar-section,
.navbar-section {
  padding: 10px 20px;
  background: transparent !important;  /* fully transparent */
  background-image: none !important;   /* remove any background image */
  box-shadow: none !important;         /* remove any shadow */
}

/* Hero section adjustments for mobile */
.hero-section {
  margin: 0;
  padding: 0;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: sans-serif;
  position: relative;
  flex-wrap: wrap; /* ✅ allows wrapping on mobile */
  background: none !important;
}

.top-bar-section, .navbar {
  background-color: transparent !important;
   box-shadow: none !important;         /* remove any shadows */
   background: #fff; /* Match the background to eliminate unwanted white gaps */
}

/* Navbar links */
.navbar a {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  position: relative;
}

.navbar a.active-link {
  border-bottom: 2px solid #e91e63; /* pink underline active */
}

.navbar a:hover {
  border-bottom: 2px solid #e91e63;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  z-index: 999;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Phone Number */
.phone-number {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.phone-number:hover {
  border-bottom: 2px solid #e91e63;
}

/* Divider Line */
.divider {
  border: none;
  border-top: 4px solid #fff;
  margin: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

/* Right Info (phone + button) */
.right-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.talk-btn {
  padding: 6px 14px;
  border: 1px solid #000;
  background: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  cursor: pointer;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
  }

  .navbar a {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    border-radius: 0;
  }

  .right-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo span {
    font-size: 18px;
  }
}
/*remove extra gap */
@media (max-width: 768px) {
  .hero-section {
    margin: 0 !important;
    padding: 0 !important;
    height: -50h; /* full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center */
    align-items: center;     /* horizontally center */
  }
}
