/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f9fc;
  color: #0b1f38;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

/* ============================================================================
   HEADER – Clean, Compact, Responsive
============================================================================ */
.header {
    width: 100%;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
}

/* ============================================================================
   NAVIGATION MENU
============================================================================ */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #002D62;
    padding: 8px 0;
    transition: 0.25s;
}

.navbar ul li a:hover {
    color: #0096FF;
}

/* ============================================================================
   STABLE DROPDOWN (DESKTOP)
============================================================================ */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 250px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.dropdown:hover .mega-menu,
.dropdown.hover-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: 25px;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #002D62;
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    color: #0096FF;
    padding-left: 5px;
}

/* ============================================================================
   MOBILE MENU ICON
============================================================================ */
.mobile-menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* ============================================================================
   MOBILE RESPONSIVE
============================================================================ */
@media (max-width: 900px) {

    .mobile-menu-icon {
        display: block;
    }

    .navbar .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .nav-links.nav-active {
        max-height: 700px;
        opacity: 1;
        pointer-events: auto;
        border-bottom: 1px solid #eee;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        padding: 12px 20px;
        background: #f4f8ff;
        border-radius: 10px;
        box-shadow: none;
    }
}


/* ================= HERO ================= */
.industry-hero {
  background: #f9fbff;
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.industry-tag {
  font-size: 13px;
  font-weight: 600;
  color: #0d6efd;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 800;
  margin: 15px 0;
  color: #1E4573;
}

.hero-text p {
  font-size: 16px;
  color: #4a5d73;
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: #0d6efd;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background: #084298;
}

/* ================= IMAGE ================= */
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 45, 98, 0.18);
}


/* ================= SECTION ================= */
.industry-section {
  padding: 60px 0;
}

/* ================= CARDS ================= */
.overview-card,
.info-card,
.offering-card,
.case-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ================= TRIPLE GRID ================= */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.info-card h4 {
  margin-bottom: 10px;
  color: #1E4573;
}

.info-card ul li {
  list-style: none;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ================= OFFERINGS ================= */
.section-title {
  font-size: 26px;
  margin: 50px 0 25px;
  color: #1E4573;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ================= KPI ================= */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  margin: 40px 0;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
}

.kpi-strip strong {
  font-size: 22px;
  color: #0d6efd;
}

.kpi-strip span {
  display: block;
  font-size: 13px;
  color: #4a5d73;
}

/* ================= CTA ================= */
.bottom-cta {
  background: #0b3a73;
  padding: 22px 0;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-grid,
  .triple-grid,
  .offerings-grid,
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .cta-flex {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero-image img {
    max-height: 220px;
  }
}


.cta-micro {
  margin-top: 12px;
  font-size: 14px;
  color: #dbe7ff;
  max-width: 520px;
}

/* ================= AGRICULTURE ASSESSMENT FORM ================= */

.assessment-form {
  margin-top: 40px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.assessment-form input,
.assessment-form select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d6e0f0;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.assessment-form input:focus,
.assessment-form select:focus {
  outline: none;
  border-color: #0d6efd;
}

.assessment-form button {
  grid-column: span 3;
  justify-self: center;
  padding: 16px 36px;
  font-size: 16px;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .assessment-form {
    grid-template-columns: 1fr;
  }

  .assessment-form button {
    width: 100%;
  }
}

/* =========================
   CALLBACK SECTION
========================= */

.callback-section {
    margin-top: 80px;
}

/* Blue Top Bar */
.callback-top {
    background: linear-gradient(135deg, #002c5f, #0056d2);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.callback-top h2 {
    font-size: 32px;
    font-weight: 800;
}

.callback-top p {
    margin: 10px 0 20px;
    font-size: 16px;
    opacity: 0.9;
}

.callback-btn {
    display: inline-block;
    background: #00b4ff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Form Area */
.callback-form-area {
    background: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.callback-form-area h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.callback-form-area p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
}

/* Form */
.callback-form-area form {
    max-width: 420px;
    margin: auto;
}

.callback-form-area input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #cfd9ff;
    font-size: 15px;
}

.callback-form-area button {
    width: 100%;
    padding: 14px;
    background: #0096ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.callback-form-area button:hover {
    background: #0073cc;
}

/* ================= IMPROVED BOTTOM CTA ALIGNMENT ================= */

.bottom-cta {
  background: linear-gradient(135deg, #0b3a73, #0a2f5c);
  padding: 32px 0;
}

.cta-flex {
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: space-between;
  gap: 20px;
}

.cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  max-width: 720px;
  line-height: 1.4;
}

.cta-action {
  flex-shrink: 0;             /* button never squeezes */
}

/* Button polish */
.bottom-cta .btn-primary {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 150, 255, 0.35);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 900px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-action {
    margin-top: 10px;
  }

  .bottom-cta .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}

