/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f4f7fc;
    color: #0b1f38;
    line-height: 1.6;
}

/* GLOBAL */
.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;
    }
}


/* HERO */
.hero {
    background: linear-gradient(135deg, #001a41 0%, #003b7a 100%);
    padding: 150px 0 120px 0; /* pushed spacing down */
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.hero-content {
    padding-top: 40px; /* ensures title is not too high */
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.hero p {
    margin-top: 16px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    margin-top: 40px; /* moved button lower */
    padding: 14px 34px;
    background: #0096FF;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #0073cc;
    transform: translateY(-3px);
}

/* SECTION HEADINGS */
section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    padding-left: 5px; /* balanced align */
}

section h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: #0096FF;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

/* OVERVIEW SECTION FIXED */
.overview {
    padding: 70px 40px;
    background: #ffffff;
    width: 90%;
    max-width: 1200px;
    margin: -40px auto 40px auto;
    border-radius: 22px; /* cleaner shape */
    box-shadow: 0px 4px 16px rgba(0,0,0,0.08);
}

.overview p {
    margin-top: 20px;
    font-size: 18px;
    max-width: 900px;
    opacity: 0.85;
}

/* OFFERINGS */
.offerings {
    padding: 80px 0;
    background: #eef3fa;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 50px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #d7e1f0;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #0096ff;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #003b73;
}

.card li {
    padding: 6px 0;
    opacity: 0.9;
}

/* OUTCOMES */
.outcomes {
    background: #001f3f;
    color: #fff;
    padding: 90px 0;
    text-align: center;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.outcomes h2::after {
    background: #00d1ff;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.outcome-item {
    background: #012b57;
    padding: 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.outcome-item:hover {
    background: #014072;
    transform: translateY(-4px);
}

/* CASE STUDY */
.case-study {
    padding: 80px 0;
}

.case-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.07);
    border-left: 6px solid #0073cc;
}

.case-box h3 {
    margin-bottom: 12px;
    color: #00345c;
    font-size: 22px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #0096ff, #006acc);
    padding: 90px 0;
    text-align: center;
    color: #fff;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta h2::after {
    display: none;
}

/* ======================================================
   CYBERSECURITY HERO – SPLIT LAYOUT
====================================================== */
.hero-split {
    background: linear-gradient(135deg, #001a41 0%, #003b7a 100%);
    padding: 160px 0 130px;
    color: #ffffff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

/* FLEX */
.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: 44px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 620px;
}

.hero-content p {
    font-size: 18px;
    margin-top: 18px;
    max-width: 520px;
    opacity: 0.95;
}

/* 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);
}

/* ======================================================
   CTA FIX – PAGE ONLY (BLUE BG, WHITE TEXT)
====================================================== */
.cta-btn {
    display: inline-block !important;
    background-color: #0096FF !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;
    margin-top: 30px;
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background-color: #0073cc !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,150,255,0.35);
}

/* Kill purple / underline */
.cta-btn:visited,
.cta-btn:active,
.cta-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ======================================================
   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-image {
        justify-content: center;
        margin-top: 40px;
    }
}

.hero-microcopy {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.85;
}

/* CYBER ASSESSMENT SECTION */
.assessment {
    padding: 80px 0;
}

.assessment-intro {
    max-width: 850px;
    margin: 20px 0 40px;
    font-size: 18px;
    opacity: 0.9;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.assessment-item {
    background: #ffffff;
    padding: 26px;
    border-radius: 16px;
    border-left: 5px solid #0096ff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.assessment-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #003b73;
}

/* =========================
   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;
}

