.hero-section {
    height: 100vh;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      /* url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6') */
      url('/images/large.jpg')
      center/cover no-repeat;
      background-attachment: fixed;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1.6px;
    line-height: 1.2;
  }
  
  .hero-content span {
    color: #2471ff;
    font-weight: 500;
  }
  
  /* CTA */
  .demo-btn {
    margin-top: 28px;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6984b6, #2471ff);
    color: #052e13;
    font-weight: 500;
    letter-spacing: 0.8px;
    transition: all 0.35s ease;
  }
  
  .demo-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(78, 255, 154, 0.45);
  }
  













  
  /* STATS SECTION */
.stats-section {
    position: relative;
    margin-top: -187px; /* Pull into hero */
    z-index: 5;

    background:
    linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
    /* url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6') */
    url('/images/large.jpg')
    center/cover no-repeat;
    background-attachment: fixed;
  }
  
  /* Wrapper */
  .stats-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px !important;
    padding: 0px 40px;
    background: rgba(10, 20, 15, 0.65);
    backdrop-filter: blur(16px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  }
  
  /* Individual Card */
  .stat-card {
    flex: 1;
    text-align: center;
    color: #ffffff;
    padding: 10px 6px;
  }
  
  /* Icon */
  .stat-card i {
    font-size: 22px;
    color: #2471ff;
    margin-bottom: 12px;
  }
  
  /* Label */
  .stat-card h4 {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Number */
  .stat-card span {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
  }
  
  /* RESPONSIVE */
  @media (max-width: 991px) {
    .stats-section {
      margin-top: -60px;
    }
  
    .stats-wrapper {
      flex-wrap: wrap;
      gap: 30px;
      padding: 30px;
    }
  
    .stat-card {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 575px) {
    .stat-card {
      flex: 1 1 100%;
    }
  }
  
/* ================= SOLUTIONS SECTION ================= */

.solutions-section {
  position: relative;
  overflow: hidden;
}

/* Each solution block */
.solution-block {
  position: relative;
  height: 100vh;
  padding: 100px 0;
  border-top: 4px solid #2078ff;
  

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure row & columns stretch full height */
.solution-block .row {
  min-height: 100vh;
  align-items: stretch;
}

/* Full-width background image */
.solution-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solution-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 40, 0.78),
    rgba(20, 40, 70, 0.72)
  );
  z-index: 2;
}

/* Content above overlay */
.solution-block .container {
  position: relative;
  z-index: 10;
}

/* ================= GLASS CARD ================= */

.glass-card {
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 70px 60px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(30, 70, 170, 0.28),
    rgba(50, 110, 220, 0.16)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-radius: 18px;
  border: 1px solid rgba(120, 170, 255, 0.3);

  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  transition: all 0.45s ease;
  animation: fadeInUp 0.9s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.9),
    rgba(65, 120, 235, 0.85)
  );
  box-shadow:
    0 28px 80px rgba(30, 70, 160, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Typography */
.glass-card h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.6px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.glass-card p {
  max-width: 560px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
}

/* ================= BUTTON ================= */

.glass-btn {
  padding: 14px 42px;
  border-radius: 10px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.15)
  );

  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-decoration: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.glass-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 45px rgba(40, 90, 200, 0.45);
}

/* ================= ANIMATION ================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .solution-block {
    height: auto;
    min-height: 520px;
    padding: 80px 0;
  }

  .glass-card {
    height: auto;
    min-height: 420px;
    padding: 50px 40px;
  }

  .glass-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .glass-card {
    padding: 40px 28px;
  }

  .glass-card h2 {
    font-size: 22px;
  }

  .glass-card p {
    font-size: 14px;
  }

  .glass-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}






















/* ================= VALUE PILLARS ================= */

.value-section {
  position: relative;
  border-top: 4px solid #2078ff;
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  overflow: hidden;
  background-attachment: fixed;
}

/* Section title */
.value-header h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #ffffff;
  margin-bottom: 70px;
}

/* Glass cards */
.value-card {
  height: 100%;
  padding: 60px 40px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);

  text-align: center;
  transition: all 0.45s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}




/* Circular icon container - modern glassmorphic style */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;

  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.25),
    rgba(10, 30, 90, 0.15)
  );
  
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.35),        /* outer shadow */
    inset 0 4px 10px rgba(255, 255, 255, 0.15); /* inner glow */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all 0.35s ease;
  position: relative;
}

/* Add subtle floating / hover animation */
.icon-circle::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  border: 2px solid rgba(80, 150, 255, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
  opacity: 1;

  border-color: rgba(80, 180, 255, 0.4);
}

.icon-circle:hover::after {
  opacity: 1;
  transform: scale(1.05);
  border-color: rgba(183, 215, 240, 0.4);
}

/* Icon inside the circle */
.icon-circle i {
  font-size: 32px;
  color: #2078ff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.icon-circle:hover i {
  color: #ffffff;
  transform: scale(1.15);
}


/* ================= FIX CARD HEIGHT & ALIGNMENT ================= */

/* Ensure all columns stretch equally */
.value-section .row > div {
  display: flex;
}

/* Force all cards to same height */
.value-card {
  width: 100%;
  min-height: 240px; /* adjust if you want taller cards */
}















/* ================= CASE STUDIES MODERN ================= */
.case-studies-section-2 {
  background: linear-gradient(135deg, rgba(10,20,40,0.95), rgba(20,40,60,0.85));
  padding: 0px 0;
  color: #fff;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
  /* background-image: url('/images/Blog-Global-Agriculture-Map-1024x482.jpg');
  background-position: center;
  background-size: cover; */
  padding-bottom: 30px;
}

.section-title-2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ================= CASE STUDY CARDS ================= */
.case-study-card-2 {
  display: flex;
  flex-direction: column;
  background: rgba(147, 154, 168, 0.25);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
  min-height: 100%;
}

/* Make all cards same height */
.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
}

.row.justify-content-center > .col-lg-4 {
  display: flex;
}

.case-study-card-2 {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

/* Hover effect */
.case-study-card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
  background: rgba(65, 117, 212, 0.45);
}

/* Icon */
.case-icon-2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20,40,80,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #cfe1ff;
  position: absolute;
  top: 10px;
  left: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.case-study-card-2:hover .case-icon-2 {
  transform: scale(1.1);
}

/* Image */
.case-image-2 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.case-study-card-2:hover .case-image-2 img {
  transform: scale(1.05);
}

/* Content */
.case-content-2 {
  padding: 35px 25px;
  text-align: left;
  flex: 1; /* grow to fill card height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.case-content-2 h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-content-2 p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255,255,255,0.95);
}

/* Arrow icon */
.case-arrow-2 {
  position: absolute;
  top: 35px;
  right: 25px;
  font-size: 20px;
  color: #cfe1ff;
  transition: all 0.3s ease;
}

.case-study-card-2:hover .case-arrow-2 {
  transform: translateX(5px);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .case-image-2 img { height: 180px; }
  .case-content-2 h4 { font-size: 20px; }
  .case-content-2 p { font-size: 13px; }
  .case-arrow-2 { font-size: 18px; }
}

@media(max-width:575px){
  .case-image-2 img { height: 150px; }
  .case-content-2 h4 { font-size: 18px; }
  .case-content-2 p { font-size: 12px; }
  .case-arrow-2 { font-size: 16px; }
}



















/* ================= CAROUSEL SECTION ================= */
.carousel-section-2 {
  background: white;
  padding-bottom: 100px !important;


}

.carousel-title-2 {
  font-size: 32px;
  font-weight: 600;
  color: #3370dc;
  margin-bottom: 30px;
  text-align: center;
}

/* Swiper slide item */
.carousel-item-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(14,32,65,0.25);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.carousel-item-2 img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.carousel-item-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Pagination dots */
.swiper-pagination {
  text-align: center;

}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #0e2041;
}

/* Responsive */
@media(max-width:1200px){
  .carousel-item-2 img { height: 100px; }
}
@media(max-width:991px){
  .carousel-item-2 img { height: 90px; }
}
@media(max-width:768px){
  .carousel-item-2 img { height: 80px; }
}
@media(max-width:575px){
  .carousel-item-2 img { height: 70px; }
}
























/* ================= GUIDED DEMO ================= */

.guided-demo-section {
  padding: 150px 0;
  background: linear-gradient(135deg, #050505, #0e2041);
  border-bottom: 4px solid #2171ff;
}

/* LEFT CONTENT */
.demo-content-advanced {
  color: #ffffff;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2078ff;
  margin-bottom: 16px;
}

.demo-content-advanced h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

.lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* POINTS */
.demo-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.demo-point i {
  color: #2078ff;
  font-size: 18px;
}

/* TRUST */
.demo-trust {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================= FORM ================= */

.demo-form-advanced {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(22px);
  border-radius: 22px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 30px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  outline: none;
}

/* FOOTER */
.form-footer {
  margin-top: 35px;
}

.check-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.legal-text {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* BUTTON */
.submit-btn-advanced {
  margin-top: 28px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2078ff, #0e2041);
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.submit-btn-advanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(32, 120, 255, 0.45);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

















/* ================= FAQ SECTION ================= */

.faq-section {
  position: relative;
  padding: 150px 0;
  background-image: url('/images/farmimg.jpg');
  background-position: center;
  background-size: cover;
  overflow: hidden;

  border-bottom: 4px solid #2171ff;
  border-top: 4px solid #2171ff;
}

/* Overlay */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.85),
    rgba(14, 32, 65, 0.85)
  );
  z-index: 1;
}

/* Ensure content stays above overlay */
.faq-section > .container {
  position: relative;
  z-index: 2;
}


.faq-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #2078ff;
  margin-bottom: 14px;
}

.faq-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.faq-header p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* FAQ WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ ITEM */
.faq-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(22px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 26px 32px;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 18px;
  transition: transform 0.35s ease;
  color: #2078ff;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.45s ease, padding 0.35s ease;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 32px 28px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
    padding: 22px;
  }

  .faq-answer {
    padding: 0 22px;
  }
}
