/* =====================================================
   GLOBAL RESET & VARIABLES
===================================================== */
:root {
  --primary: #002d62;
  --primary-light: #0056b3;
  --accent: #0096ff;
  --bg: #f5f8fc;
  --text-dark: #0b1f38;
  --text-muted: #556b87;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-hover: 0 18px 45px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
}

/* =====================================================
   CONTAINERS & SECTIONS
===================================================== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: var(--white);
}

h1, h2, h3, h4 {
  color: var(--primary);
}

h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
}

.section-text {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  color: var(--text-muted);
}

/* ============================================================================
   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
===================================================== */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 160px 0 130px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: var(--bg);
  border-radius: 50% 50% 0 0;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin: 22px 0;
  color: var(--white);
}

.hero p {
  font-size: 20px;
  max-width: 880px;
  margin: auto;
  opacity: 0.95;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 1.2px;
}

/* =====================================================
   BUTTONS
===================================================== */
.hero-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,150,255,0.35);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #007dd6;
  transform: translateY(-3px);
}

/* =====================================================
   GRID SYSTEM
===================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* =====================================================
   LIST STYLE
===================================================== */
.list {
  list-style: none;
}

.list li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
}

.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =====================================================
   CARDS – PREMIUM LOOK
===================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 50px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.35s ease;
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top: 4px solid var(--accent);
}

.card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15.5px;
}

/* =====================================================
   HIGHLIGHT BOX
===================================================== */
.highlight {
  background: linear-gradient(135deg, #e9f3ff, #ffffff);
  padding: 46px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.highlight h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* =====================================================
   CTA STRIP
===================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary), #001c3d);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 30px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .grid-2,
  .cards,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 130px 0 100px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  h2 {
    font-size: 28px;
    text-align: center;
  }
}

/* =====================================================
   HERO – EXPERT PODS (LEFT CONTENT / RIGHT IMAGE)
===================================================== */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 150px 0 120px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.hero-content {
  text-align: left;
  margin-top: 20px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  margin: 20px 0 16px;
  color: var(--white);
}

.hero-content p {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* BUTTON */
.btn {
  background: var(--accent);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,150,255,0.35);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #007dd6;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  margin-top: 8px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .hero {
    padding: 120px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    margin-top: 0;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    margin-top: 0;
  }
}

/* ===============================
   HERO CTA MICROCOPY
================================ */
.cta-microcopy {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

/* ===============================
   ENGAGEMENT DELIVERABLES
================================ */
.section .cards.three .card h4 {
  color: var(--primary);
}

.section .cards.three .card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   WHO THIS IS FOR
================================ */
.section.light-bg ul.list {
  max-width: 760px;
  margin-top: 30px;
}

.section.light-bg ul.list li {
  font-size: 16px;
  color: var(--text-dark);
}

/* ===============================
   HOW ENGAGEMENT WORKS
================================ */
.section .cards.three .card {
  text-align: left;
}

.section .cards.three .card h4 {
  font-size: 18px;
  font-weight: 700;
}

/* ===============================
   FINAL CTA POLISH
================================ */
.cta {
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 70%);
}

/* ===============================
   MOBILE REFINEMENTS
================================ */
@media (max-width: 900px) {
  .cta-microcopy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section.light-bg ul.list {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =====================================================
   CTA – PRIMARY & SECONDARY ACTIONS
===================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary), #001c3d);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--white);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Secondary CTA */
.secondary-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* Industry trust line */
.cta-note {
  margin-top: 24px;
  font-size: 14px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* =====================================================
   DEPLOY EXPERT POD FORM
===================================================== */
.pod-form {
  max-width: 900px;
  margin: 50px auto 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Inputs & Select */
.pod-form input,
.pod-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #dce5f2;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  transition: all 0.25s ease;
}

.pod-form input::placeholder {
  color: #94a3b8;
}

/* Focus State */
.pod-form input:focus,
.pod-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,150,255,0.15);
}

/* Submit Button */
.form-cta {
  margin-top: 34px;
  text-align: center;
}

.form-cta .btn {
  padding: 16px 46px;
}

/* =====================================================
   MOBILE RESPONSIVE – CTA & FORM
===================================================== */
@media (max-width: 900px) {

  .cta {
    padding: 70px 0;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .pod-form {
    margin-top: 40px;
  }
}

/* =====================================================
   CTA BUTTONS – BOTH BLUE
===================================================== */
.cta .btn {
  background: #0096ff; /* primary blue */
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 25px rgba(0,150,255,0.35);
}

/* Secondary CTA – lighter blue */
.cta .secondary-btn {
  background: #007dd6; /* darker/lighter blue variant */
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 22px rgba(0,125,214,0.35);
}

/* Hover effect for both */
.cta .btn:hover,
.cta .secondary-btn:hover {
  background: #006bb8;
  transform: translateY(-3px);
}

/* =========================
   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;
}

/* =====================================================
   HERO ALIGNMENT FIX (FINAL)
===================================================== */

/* Align left content and right image at same vertical level */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center; /* KEY FIX */
}

/* Remove unnecessary top offset from content */
.hero-content {
  margin-top: 0;
}

/* Remove any image top spacing */
.hero-image img {
  display: block;
  margin-top: 0;
}


