/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0b1f38;
  background: #f6f8fb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================================
   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;
    }
}


/* Container */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
  border: none;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(90deg,#005bb0,#0077d8);
  color: #fff;
  box-shadow: 0 8px 30px rgba(3,81,163,0.16);
}
.btn.primary:hover { transform: translateY(-4px); }
.btn.secondary {
  background: #fff;
  color: #005bb0;
  border: 1px solid #dfeaf8;
  box-shadow: 0 6px 18px rgba(3,81,163,0.06);
}
.btn.secondary:hover { transform: translateY(-3px); }

/* HERO */
.hero {
    margin-top: 80px; 
  background: linear-gradient(135deg,#002a66 0%, #0066b3 100%);
  padding: 70px 0 56px;
  color: #fff;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 36px; align-items: center; }
.hero-text h1 {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 12px;
}
.lead { font-size: 18px; opacity: 0.95; margin-bottom: 18px; max-width: 760px; }

.hero-visual {
  min-height: 260px;
  border-radius: 16px;
  background-image: url("gcc-global-delivery-model.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.12);
}


/* Overview */
.overview {
  margin-top: -36px;
  background: #fff;
  padding: 46px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(20,40,70,0.06);
}
.overview h2 { font-size: 28px; margin-bottom: 12px; color: #00345c; }
.overview p { font-size: 17px; color: #223a57; max-width: 1000px; }

/* Offerings / cards */
.offerings {
  padding: 64px 0;
  margin-top: 20px;
  background: linear-gradient(180deg,#f2f7ff 0%, #eef6ff 100%);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.offerings h2 { color: #00345c; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 22px;
  margin-top: 18px;
}
.card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e6eefc;
  box-shadow: 0 10px 26px rgba(9,30,66,0.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-8px); border-color: #a9d0ff; box-shadow: 0 18px 40px rgba(9,30,66,0.07); }
.card h3 { font-size: 18px; color: #004a85; margin-bottom: 10px; }
.card ul { list-style: none; color: #27405f; }
.card li { padding: 6px 0; font-size: 15px; }

/* Outcomes */
.outcomes {
  padding: 64px 0;
  background: #00284a;
  color: #fff;
  margin-top: 18px;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
}
.outcomes h2 { color: #fff; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 18px;
  margin-top: 20px;
}
.outcome {
  background: linear-gradient(180deg,#013859 0%, #014e77 100%);
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: #dff6ff;
}

/* Case Study */
.case-study { padding: 64px 0; }
.case { background: #fff; padding: 26px; border-radius: 14px; box-shadow: 0 8px 18px rgba(10,30,60,0.05); border-left: 5px solid #0077d8; }
.case h3 { color: #00345c; margin-bottom: 10px; }
.case p { color: #223a57; margin-bottom: 8px; }

/* CTA strip */
.cta {
  background: linear-gradient(90deg,#0077d8,#005bb0);
  color: #fff;
  padding: 56px 0;
  margin-top: 18px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  text-align: center;
}
.cta h2 { font-size: 24px; margin-bottom: 14px; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 18px; }
  .hero-visual { min-height: 180px; order: -1; }
  .overview { margin-top: -30px; padding: 30px; }
  .lead { font-size: 16px; }
}
@media (max-width: 520px) {
  .hero { padding: 56px 0 40px; }
  .hero-text h1 { font-size: 26px; }
  .lead { font-size: 15px; }
  .btn { padding: 10px 18px; }
  .cards { gap: 14px; }
}

/* GCC Blueprint Section */
.gcc-blueprint {
  background: #ffffff;
  padding: 50px 40px;
  margin-top: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(20,40,70,0.06);
}

.blueprint-intro {
  font-size: 17px;
  color: #223a57;
  max-width: 900px;
  margin-bottom: 18px;
}

.blueprint-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 12px;
}

.blueprint-list li {
  background: #f4f8ff;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #00345c;
}

/* Who This Is For */
.gcc-for {
  padding: 50px 40px;
}

.for-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 12px;
}

.for-list li {
  background: #eef6ff;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #004a85;
}

.gcc-how {
  padding: 50px 40px;
}

.gcc-how h2 {
  margin-bottom: 18px;
  color: #00345c;
}

/* =========================
   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;
}


