/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f9fc;
    color: #0b1f38;
    line-height: 1.6;
}

/* GLOBAL 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;
    }
}


/* ======================================================
   CLOUD HERO – CLEAN GRADIENT (NO BG IMAGE)
====================================================== */
.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: 620px;
}

.hero-content p {
    font-size: 19px;
    margin-top: 18px;
    max-width: 520px;
    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;
    margin-bottom: 12px;
    color: #003b73;
}

.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: 25px;
}

.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;
}

/* ============================================================================
   FOOTER 
============================================================================ */
.footer {
    background: #002D62;
    color: white;
    padding: 60px 12%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 40px;
    margin-top: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 12px;
}

.footer-bottom {
    margin-top: 40px;
    opacity: 0.7;
    text-align: center;
}

/* ============================================================================
   RESPONSIVE FIXES 
============================================================================ */
@media (max-width: 900px) {
    .leadership-flex {
        flex-direction: column;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 24px;
    background: #007BFF;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    min-width: 260px;
}

.hero-buttons a:nth-child(2) {
    background: #0066e6;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin: auto;
    }

    .hero-buttons a {
        width: 100%;
        min-width: unset;
        padding: 16px 20px;
        border-radius: 12px;
    }
}
/* ===========================================
 
/* MOBILE ONLY FIXES */
@media (max-width: 768px) {

    /* Add left & right padding to the image */
    .hero-custom {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    /* Ensure background image fits without cutting */
    .hero-custom {
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Arrow */
    .hero-arrow {
        font-size: 22px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
        text-align: center;
    }

    /* CTA button - make smaller + move down */
    @media (max-width: 768px) {
    .hero-cta-button {
        margin-top: 100px !important;   /* move CTA downward */
        display: inline-block;
    }
}

}

@media (max-width: 900px) {

    .navbar .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.nav-active {
        max-height: 600px;
        opacity: 1;
    }

    .dropdown .mega-menu {
        display: none !important;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: static;
        background: #f5f7ff;
        padding: 15px;
        border-radius: 10px;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ======================================================
   GLOBAL CTA BUTTON – BLUE BG + WHITE TEXT
====================================================== */
.cta-btn,
.hero-content a.cta-btn,
.cta a,
a.cta-btn {
    display: inline-block;
    background: #007BFF;
    color: #ffffff !important;
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.cta-btn:hover,
.hero-content a.cta-btn:hover,
.cta a:hover {
    background: #005fd1;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 123, 255, 0.35);
}

/* REMOVE VISITED / LINK COLORS */
.cta-btn:visited,
.cta-btn:active {
    color: #ffffff !important;
    text-decoration: none !important;
}


/* ======================================================
   CTA SECTION – SAME AS HERO
====================================================== */
.cta {
    background: linear-gradient(135deg, #002C5F 0%, #007BFF 100%);
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* CTA BUTTON – SAME AS HERO */
.cta .cta-btn {
    background: #007BFF;
    color: #ffffff !important;
    padding: 16px 38px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta .cta-btn:hover {
    background: #005fd1;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 123, 255, 0.45);
}

/* MICRO COPY */
.cta-microcopy {
    margin-top: 18px;
    font-size: 17px;
    opacity: 0.9;
}

/* =========================
   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;
}

