.colorful-navbar {
    background: linear-gradient(to right, 90deg, #0d47a1, #1976d2, #03090e);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .colorful-navbar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
  }
  
  .navbar-toggler {
    background-color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
  }
  

  /* section 1 */

/* Full screen height section */
.section01 {
  height: 90vh;
  overflow: hidden;
}

/* Each carousel item fills full height */
.section01 .carousel-item {
  height: 100vh;
}

/* Background image container */
.carousel-img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align card left */
  padding-left: 5%;
  margin-top: 97px;
}

/* Background images */
.carousel-img-1 {
  background-image: url('../img/land-degradation.jpg');
}
.carousel-img-2 {
  background-image: url('../img/cover-sofa-2025.jpg');
}
.carousel-img-3 {
  background-image: url('../img/plot4.webp');
}

/* Card styling */
.section1-card {
  position: relative;
  /*background-image: url('../img/background.jpg'); */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  color: white;
  z-index: 1;
}

/* Dark overlay for card opacity effect */
.section1-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Card content on top of overlay */
.section1-card .card-content {
  position: relative;
  z-index: 2;
}

/* Carousel controls style */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-img {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .section1-card {
    margin: 20px;
    padding: 20px;
  }
}



/* section 2 ......................................... */


/* Section Styles */
.real-estate-section {
  background-color: #f8f9fa;
}

/* Property Card Styles */
.property-card {
  transition: none; /* Disable transition effects */
  background-color: #ffffff; /* Ensure the background is white */
}

.property-card h5, 
.property-card p, 
.property-card .small, 
.property-card a {
  color: #000000; /* Default text color */
}

.property-card .badge {
  background-color: #dc3545; /* Red badge for visibility */
}


.why-choose-us-section {
  background: url('../img/plot4.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay for contrast */
}

.why-choose-us-section > .container {
  position: relative;
  z-index: 1;
}

.why-card {
  border-bottom: 3px solid #000845;
  transition: transform 0.3s ease;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e6efff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* section 4  */

.section-4 {
  background: url('your-image.jpg') no-repeat center center/cover;
  position: relative;
  padding: 80px 0;
}

.section-4 .overlay {
  background-color: rgba(0, 61, 112, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.section-4 .container {
  z-index: 1;
  position: relative;
}

.feature-box {
  background: white;
  color: #e63946;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: #e63946;
  color: white;
}

.feature-box + p {
  color: white;
  font-weight: bold;
}


/* section  */


.dedicated-section {
  background-color: #f9f9f9;
}

.dedicated-card {
  background-color: #ffffff;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dedicated-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #007bff;
}

.dedicated-card i {
  color: #007bff;
  transition: color 0.3s;
}

.dedicated-card:hover i {
  color: #0056b3;
}



/* Footer Base */
.footer {
  background-color: #111;
  color: #fff;
  font-size: 15px;
}

.footer a {
  color: #ddd;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer a:hover {
  color: #f8c102; /* Accent color on hover */
}

/* Footer Headings */
.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}

/* Social Icons */
.footer .social-icons a {
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #f8c102;
}

/* Form Elements */
.footer .enquiry-form input,
.footer .enquiry-form select,
.footer .enquiry-form textarea {
  background-color: #222;
  border: 1px solid #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.footer .enquiry-form input::placeholder,
.footer .enquiry-form textarea::placeholder {
  color: #aaa;
}

.footer .enquiry-form input:focus,
.footer .enquiry-form select:focus,
.footer .enquiry-form textarea:focus {
  outline: none;
  border-color: #f8c102;
  box-shadow: none;
}

/* Submit Button */
.footer .btn-danger {
  background-color: #f8c102;
  border-color: #f8c102;
  color: #111;
  font-weight: 600;
}

.footer .btn-danger:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .footer .social-icons {
    justify-content: center;
  }

  .footer h4 {
    text-align: center;
  }

  .footer .enquiry-form {
    text-align: center;
  }
}


.dedicated-section {
  background-color: #f0f8ff;
}

.dedicated-card {
  background-color: #fff;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.dedicated-card i {
  display: block;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}



/* Color Themes */
.card-blue { border-left: 5px solid #007bff; }
.card-blue:hover { background-color: #007bff; }

.card-green { border-left: 5px solid #28a745; }
.card-green:hover { background-color: #28a745; }

.card-purple { border-left: 5px solid #6f42c1; }
.card-purple:hover { background-color: #6f42c1; }

.card-orange { border-left: 5px solid #fd7e14; }
.card-orange:hover { background-color: #fd7e14; }

.card-yellow { border-left: 5px solid #ffc107; }
.card-yellow:hover { background-color: #ffc107; color: #333; }

.card-pink { border-left: 5px solid #e83e8c; }
.card-pink:hover { background-color: #e83e8c; }

/* varanasi  */

.varanasi-section {
  background-image: url('../img/varanasibg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.varanasi-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for contrast */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.varanasi-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.varanasi-subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #ff4b5c;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
}


.project-info-section {
  background-color: #f9f9f9;
}

.project-list li {
  padding: 10px 15px;
  background-color: #ffffff;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-list li:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateX(5px);
}


.property-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.border-hover:hover {
  border: 1px solid #dc3545;
}


/* kanpur  */


.project-section {
  background-image: url('../img/kanpurbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.project-title {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}

.project-subtitle {
  font-size: 32px;
  color: #ddd;
  margin-top: 15px;
}

/* pragraj  */

.prayagraj-section {

  background-image: url('../img/prayagrajbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

.prayagraj-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.prayagraj-title {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}

.prayagraj-subtitle {
  font-size: 32px;
  color: #ddd;
  margin-top: 15px;
}

/* ddu  */

/* DDU Section */
.ddu-section {
  background-image: url('../img/ddubg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ddu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.ddu-section .container {
  position: relative;
  z-index: 2;
}

.ddu-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ddu-subtitle {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

/* Media Queries for responsiveness */
@media (max-width: 992px) {
  .ddu-title {
    font-size: 40px;
  }

  .ddu-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .ddu-title {
    font-size: 36px;
  }

  .ddu-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .ddu-title {
    font-size: 32px;
  }

  .ddu-subtitle {
    font-size: 16px;
  }
}

/* contact us  */

.contact-us-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url('../img/contactusbbg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.contact-us-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
}

.contact-us-subtitle {
  font-size: 24px;
  color: #dc3545; /* Bootstrap danger color */
}



/*nav*/

.custom-navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1030;
  /*background: linear-gradient(90deg,#1976d2, #0d47a1, #03090e);*/
  background: #000000; 
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.custom-logo img {
  max-height: 74px;
  width: 75%;
  
}

.custom-menu .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s;
}

.custom-menu .nav-link:hover,
.custom-menu .nav-link.active {
  color: #ffc107 !important; /* amber hover */
}

.dropdown-menu {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.dropdown-item:hover {
  background-color: #e3f2fd;
  color: #0d47a1;
}





  .why-choose-us-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
  }
  .why-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  .icon-circle {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  
  
   .why-choose-us-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
  }
  .why-card {
    background: linear-gradient(145deg, #ffffff, #e0eafc, #cfdef3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
  }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  .icon-circle {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }




/*....................*/

  .dedicated-section {
    background: linear-gradient(135deg, #f3f4f7, #e8f0ff);
    padding: 60px 0;
  }

  .dedicated-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
  }

  .dedicated-card {
    background: linear-gradient(145deg, #ffffff, #dbe9f6);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    text-align: center;
  }

  .dedicated-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  }

  .dedicated-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
  }

  .dedicated-card:hover i {
    transform: scale(1.1) rotate(5deg);
  }

  .dedicated-card h5 {
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .dedicated-section h2 {
      font-size: 2rem;
    }

    .dedicated-card {
      padding: 25px;
    }
  }
  
  /*.................about us..........*/
  
  
   .custom-icon-box {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    transition: transform 0.3s;
  }

  .custom-card {
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease-in-out;
  }

  .custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  .custom-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
  }

  .section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 50px;
  }
  
  /*contact us */
  .property-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.property-card .badge.bg-danger {
  background: #d32f2f; /* slightly darker red for badge */
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.property-card h5 {
  color: #1e2a78; /* navy blue for titles */
}

.property-card .small.text-danger.fw-bold {
  color: #b71c1c !important; /* deep red for RERA codes */
}

.property-card p.text-muted {
  color: #555; /* dark gray for locations */
}

.property-card p.small {
  color: #777;
}

/* Location icon */
.property-card i.bi-geo-alt-fill.text-danger {
  color: #c62828; /* red icon color */
}

/* Link color inside the small RERA block */
.property-card .small.text-danger.fw-bold a {
  color: #b71c1c;
  text-decoration: underline;
}
.property-card .small.text-danger.fw-bold a:hover {
  color: #880e0e;
  text-decoration: none;
}



/*contect us */
  .office-addresses {
    background-color: #e9ecef; /* Soft section background */
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .office-addresses h2 {
    color: #0d3b66;
  }

  .office-addresses .card {
    background-color: #ffffff; /* Card background white */
    border: none;
    box-shadow: 0 0.3rem 0.6rem rgba(13, 59, 102, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 1rem;
  }

  .office-addresses .card:hover {
    box-shadow: 0 0.6rem 1.2rem rgba(13, 59, 102, 0.3);
    transform: translateY(-4px);
  }

  .office-addresses h5 {
    color: #0d3b66;
    text-align: center;
  }

  .office-addresses p {
    color: #343a40;
    margin-bottom: 0.5rem;
  }

  .office-addresses a {
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

  .office-addresses a:hover {
    color: #a71d1d;
    text-decoration: underline;
  }

  .office-addresses i {
    color: #0d3b66;
  }
  
  
  /*login */
  .login-section {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    padding: 60px 0;
}

.login-card {
    border: 1px solid #dee2e6;
    border-radius: 1.5rem;
    background-color: #ffffff;
}

.logo-img {
    max-height: 59px;
  width: 43%
}


/*gallery */
/* Gallery Section Styling */
.gallery-section {
    background-color: #f9fafb;
  }
  
  .gallery-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: #212529; /* Bootstrap text-dark */
    letter-spacing: 0.05em;
  }
  
  /* Gallery grid spacing handled by Bootstrap g-4 */
  
  /* Individual Gallery Item */
  .gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  
  .gallery-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    user-select: none;
    border-radius: 0.25rem;
  }
  
  /* Modal image overrides */
  #galleryModal .modal-content {
    background: transparent !important;
    box-shadow: none !important;
  }
  
  #galleryModalImage {
    width: 100%;
    border-radius: 0.5rem;
    user-select: none;
  }
  
  
  .whatsapp-icon {
  max-height: 30px;
}



  /**/
  
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333333;
  margin: 0;
  /*padding: 40px;*/
}

/*.news-section {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
/*  gap: 24px;*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*}*/

/*.news-card {*/
/*  background-color: #fff;*/
/*  border: 1px solid #d9e2ec;*/
/*  border-radius: 4px;*/
/*  overflow: hidden;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  transition: box-shadow 0.3s ease, transform 0.2s ease;*/
/*}*/

/*.news-card:hover {*/
/*  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);*/
/*  transform: translateY(-3px);*/
/*}*/

/*.news-card img {*/
/*  width: 100%;*/
/*  height: 200px;*/
/*  object-fit: cover;*/
/*}*/

/*.news-content {*/
/*  padding: 16px 20px 20px;*/
/*}*/

/*.news-label {*/
/*  font-size: 12px;*/
/*  text-transform: uppercase;*/
/*  color: #0072bc;*/
/*  font-weight: 600;*/
/*  display: block;*/
/*  margin-bottom: 8px;*/
/*}*/

/*.news-content h3 {*/
/*  font-size: 18px;*/
/*  color: #005b9e;*/
/*  line-height: 1.4;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.news-content p {*/
/*  font-size: 15px;*/
/*  color: #444;*/
/*  line-height: 1.6;*/
/*}*/

.news-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.news-card {
  background-color: #fff;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 16px 20px 20px;
}

.news-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #0072bc;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.news-content h3 {
  font-size: 18px;
  color: #005b9e;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ✅ Mobile Responsive - 320px screens */
@media (max-width: 480px) {
  .news-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 8px;
  }

  .news-card img {
    height: 160px;
  }

  .news-content {
    padding: 12px 14px 16px;
  }

  .news-content h3 {
    font-size: 16px;
  }

  .news-content p {
    font-size: 14px;
  }
}

  
  
  /*addd this slide */
  
.farmer-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  /*background-color: #0b0d12;*/
}

.farmer-heading {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.3;
}

.farmer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card styling */
.farmer-card {
  background-color: #151820;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.farmer-card:hover {
  background-color: #1d202a;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.farmer-icon {
  font-size: 63px;
  color: #00d9ff;
  margin-bottom: 20px;
  display: inline-block;
}

.farmer-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.farmer-desc {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* ðŸ§© Responsive Design */

/* Tablets (below 992px) */
@media (max-width: 992px) {
  .farmer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens (below 576px) */
@media (max-width: 576px) {
  .farmer-section {
    padding: 40px 15px;
  }

  .farmer-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .farmer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .farmer-card {
    padding: 25px 15px;
  }

  .farmer-icon {
    font-size: 32px;
  }

  .farmer-title {
    font-size: 16px;
  }

  .farmer-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}




/*about us */

.info-section {
  padding: 133px 0;
  background: #1c456d;
}

.info-container {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.info-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.info-center {
  background: #1c456d;
  color: #fff;
  border-radius: 8px;
  padding: 30px;
}

.info-center h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.info-center p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 15px;
}

.info-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.info-card:hover img {
  transform: scale(1.05);
}

.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 15px;
}

.info-overlay h4 {
  margin: 0;
  font-size: 18px;
}

.info-overlay p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* ðŸ”¹ Responsive (for 768px and below) */
@media (max-width: 768px) {
  .info-container {
    grid-template-columns: 1fr;
  }

  .info-right {
    flex-direction: row;
    gap: 10px;
  }

  .info-card {
    flex: 1;
  }
}

/* ðŸ”¹ Mobile (for 320px) */
@media (max-width: 480px) {
  .info-container {
    padding: 0 10px;
  }

  .info-center {
    padding: 20px;
  }

  .info-center h3 {
    font-size: 20px;
  }

  .info-center p {
    font-size: 14px;
  }

  .info-right {
    flex-direction: column;
  }

  .info-card img {
    height: 180px;
  }
}




