/* ================= 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;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: #0d6efd;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #084298;
}

/* ================= IMAGE ================= */
.hero-image img {
  width: 100%;
  border-radius: 14px;
}

/* ================= 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 STRIP ================= */
.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;
  }
}
