/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f9fc;
    color: #0b1f38;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    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;
    }
}

/* ======================================================
   DATA & AI HERO – CLEAN GRADIENT, SPLIT LAYOUT
====================================================== */
.hero-split {
    background: linear-gradient(135deg, #002C5F 0%, #007BFF 100%);
    padding: 160px 0 130px;
    color: #ffffff;
}

/* FLEX LAYOUT */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 640px;
}

.hero-content p {
    font-size: 19px;
    margin-top: 18px;
    max-width: 540px;
    opacity: 0.95;
}

/* CTA */
.hero-content .cta-btn {
    margin-top: 28px;
    display: inline-block;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 520px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */
@media (max-width: 900px) {

    .hero-split {
        padding: 140px 0 100px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }
}

/* SECTION HEADINGS */
section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* OVERVIEW */
.overview {
    padding: 60px 0;
    font-size: 18px;
}

/* OFFERINGS */
.offerings {
    padding: 60px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.05);
    border-left: 5px solid #0096FF;
}

.card h3 {
    font-size: 20px;
    color: #003b73;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
}

.card li {
    padding: 6px 0;
}

/* OUTCOMES */
.outcomes {
    background: #001f3f;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.outcome-item {
    background: #012958;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
}

/* CASE STUDY */
.case-study {
    padding: 60px 0;
}

.case-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.05);
    border-left: 5px solid #0073cc;
}

/* CTA */
.cta {
    background: #0096FF;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

/* ======================================================
   DATA & AI PAGE – CTA FIX (PAGE ONLY)
====================================================== */

/* All CTA buttons on this page */
.cta-btn,
.hero .cta-btn,
.cta a.cta-btn {
    display: inline-block !important;
    background-color: #007BFF !important;
    color: #ffffff !important;
    padding: 14px 36px !important;
    border-radius: 10px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Hover */
.cta-btn:hover,
.hero .cta-btn:hover,
.cta a.cta-btn:hover {
    background-color: #005fd1 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 123, 255, 0.35);
}

/* Remove purple / underline */
.cta-btn:visited,
.cta-btn:active,
.cta-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Bottom CTA section button (white on blue section) */
.cta .cta-btn {
    background: #ffffff !important;
    color: #007BFF !important;
    font-weight: 700 !important;
}

.cta .cta-btn:hover {
    background: #E6F0FF !important;
    color: #005fd1 !important;
}

.cta-microcopy {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
}

/* ======================================================
   AI READINESS ASSESSMENT – SECTION
====================================================== */

.ai-assessment {
  padding: 80px 0;
}

.ai-assessment h2 {
  font-size: 32px;
  font-weight: 800;
  color: #002d62;
  margin-bottom: 14px;
}

.ai-assessment .assessment-intro {
  font-size: 18px;
  color: #475569;
  max-width: 900px;
  margin-bottom: 36px;
}

/* Grid */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Cards */
.assessment-card {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 12px;
  font-weight: 600;
  color: #0b1f38;
  border-left: 5px solid #0096ff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.assessment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* ======================================================
   WHO THIS ASSESSMENT IS FOR
====================================================== */

.ai-for {
  padding: 60px 0;
}

.ai-for h2 {
  font-size: 30px;
  font-weight: 800;
  color: #002d62;
  margin-bottom: 24px;
}

.ai-for-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.ai-for-list li {
  background: #f8fbff;
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #0b1f38;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  border-left: 4px solid #007bff;
}

/* ======================================================
   HOW THE ENGAGEMENT WORKS
====================================================== */

.ai-process {
  padding: 70px 0;
}

.ai-process h2 {
  font-size: 30px;
  font-weight: 800;
  color: #002d62;
  margin-bottom: 28px;
}

/* Steps */
.ai-steps {
  counter-reset: step;
  list-style: none;
  max-width: 800px;
}

.ai-steps li {
  counter-increment: step;
  background: #ffffff;
  padding: 20px 24px 20px 64px;
  border-radius: 14px;
  margin-bottom: 18px;
  position: relative;
  font-weight: 600;
  color: #0b1f38;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Number circle */
.ai-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #007bff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =========================
   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;
}

/* ===============================
   WHAT MAKES NEXORA DIFFERENT
================================ */
.section.container ul.ai-for-list {
  margin-top: 30px;
}

.section.container ul.ai-for-list li {
  background: #f8fbff;
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #0b1f38;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  border-left: 4px solid #007bff;
}

/* ===============================
   AI READINESS ASSESSMENT FORM
================================ */
#ai-form {
  padding: 90px 0;
}

#ai-form h2 {
  font-size: 32px;
  font-weight: 800;
  color: #002d62;
  margin-bottom: 14px;
}

#ai-form .section-text {
  font-size: 18px;
  color: #475569;
  max-width: 800px;
  margin-bottom: 18px;
}

#ai-form .assessment-intro {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 36px;
  max-width: 820px;
}

/* FORM WRAPPER */
.pod-form {
  max-width: 900px;
  margin: auto;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* INPUTS & SELECTS */
.pod-form input,
.pod-form select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid #dce5f2;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.25s ease;
}

.pod-form input::placeholder {
  color: #94a3b8;
}

/* FOCUS */
.pod-form input:focus,
.pod-form select:focus {
  outline: none;
  border-color: #0096ff;
  box-shadow: 0 0 0 3px rgba(0,150,255,0.15);
}

/* SUBMIT */
.form-cta {
  margin-top: 36px;
  text-align: center;
}

.form-cta .cta-btn {
  background: #007bff;
  color: #ffffff;
  padding: 16px 46px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.form-cta .cta-btn:hover {
  background: #005fd1;
  box-shadow: 0 10px 28px rgba(0,1

/* ===============================
   MOBILE FIXES
================================ */
@media (max-width: 900px) {

  .cta {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .cta-btn {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  #ai-form {
    padding: 70px 0;
  }
}

