/* =========================================
   WEBSEODESIGNS
   SEO / DIGITAL MARKETING WEBSITE
========================================= */

:root {

    --navy: #0B1026;
    --navy-light: #141B3A;

    --blue: #2563FF;
    --blue-dark: #1747D1;
    --blue-light: #EEF4FF;

    --white: #FFFFFF;

    --text: #20263A;
    --muted: #6B7280;

    --border: #E6EAF2;

    --light-bg: #F7F9FD;

    --shadow:
        0 20px 60px rgba(11, 16, 38, 0.10);

    --radius: 18px;

    --container: 1180px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {

    background: var(--navy);

    color: rgba(255,255,255,.75);

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.top-bar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.top-links {
    opacity: .75;
}


/* =========================================
   HEADER
========================================= */

.header-main {

    height: 84px;

    background: white;

    border-bottom: 1px solid var(--border);

    position: relative;

    z-index: 100;
}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    white-space: nowrap;
}


.logo-mark {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: flex-end;

    gap: 3px;

    padding: 6px;

    background: var(--blue);

    border-radius: 9px;

    transform: rotate(-4deg);
}


.logo-mark span {

    width: 5px;

    background: white;

    border-radius: 3px;

    display: block;
}


.logo-mark span:nth-child(1) {
    height: 10px;
}


.logo-mark span:nth-child(2) {
    height: 16px;
}


.logo-mark span:nth-child(3) {
    height: 22px;
}


.logo-text {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 22px;

    color: var(--navy);

    letter-spacing: -.5px;
}


.logo-text span {
    color: var(--blue);
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 3px;

    margin-left: auto;

    margin-right: 25px;
}


.nav-link {

    height: 84px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 0 14px;

    font-size: 13px;

    font-weight: 600;

    color: #3D4355;

    transition: .25s ease;
}


.nav-link:hover,
.nav-link.active {

    color: var(--blue);
}


.arrow {

    font-size: 14px;

    margin-top: -4px;
}


/* =========================================
   SIMPLE DROPDOWN
========================================= */

.nav-dropdown {

    position: relative;
}


.simple-dropdown {

    position: absolute;

    top: calc(100% - 1px);

    left: 0;

    width: 220px;

    background: white;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    border-radius: 0 0 12px 12px;

    padding: 10px;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition: .25s ease;
}


.nav-dropdown:hover .simple-dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.simple-dropdown a {

    display: block;

    padding: 10px 13px;

    border-radius: 7px;

    font-size: 13px;

    color: var(--text);

    transition: .2s;
}


.simple-dropdown a:hover {

    background: var(--blue-light);

    color: var(--blue);
}


/* =========================================
   MEGA MENU
========================================= */

.nav-mega-wrapper {

    position: static;
}


.mega-menu {

    position: absolute;

    left: 50%;

    transform:
        translate(-50%, 10px);

    top: 100%;

    width: min(
        1120px,
        calc(100% - 40px)
    );

    background: white;

    border: 1px solid var(--border);

    border-radius: 0 0 20px 20px;

    box-shadow:
        0 30px 70px
        rgba(11,16,38,.15);

    padding: 28px;

    display: grid;

    grid-template-columns:
        1.1fr
        1fr
        1fr
        1fr;

    gap: 25px;

    opacity: 0;

    visibility: hidden;

    transition: .25s ease;
}


.nav-mega-wrapper:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);
}


.mega-intro {

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #1A2450
        );

    border-radius: 15px;

    padding: 25px;

    color: white;
}


.mega-icon {

    width: 45px;

    height: 45px;

    border-radius: 12px;

    background: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    margin-bottom: 18px;
}


.mega-intro h3 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 21px;

    margin-bottom: 10px;
}


.mega-intro p {

    font-size: 12px;

    line-height: 1.7;

    color: rgba(255,255,255,.7);

    margin-bottom: 20px;
}


.mega-button {

    display: inline-block;

    padding: 9px 14px;

    background: white;

    color: var(--navy);

    border-radius: 7px;

    font-size: 11px;

    font-weight: 700;
}


.mega-column h4 {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #9097A9;

    margin-bottom: 13px;
}


.mega-column a {

    display: flex;

    gap: 8px;

    align-items: center;

    padding: 7px 5px;

    font-size: 12px;

    font-weight: 500;

    border-radius: 6px;

    transition: .2s;
}


.mega-column a span {

    width: 21px;

    height: 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 9px;

    font-weight: 700;
}


.mega-column a:hover {

    color: var(--blue);

    background: var(--blue-light);

    padding-left: 9px;
}


/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;
}


.search-button {

    width: 40px;

    height: 40px;

    border: 0;

    background: transparent;

    cursor: pointer;

    color: var(--navy);
}


.header-button {

    background: var(--blue);

    color: white;

    padding: 11px 17px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 10px 25px
        rgba(37,99,255,.20);

    transition: .25s;
}


.header-button:hover {

    background: var(--navy);

    transform: translateY(-2px);
}


.mobile-toggle {

    display: none;

    border: 0;

    background: transparent;

    font-size: 24px;

    cursor: pointer;

    color: var(--navy);
}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    min-height: 680px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #F7FAFF 0%,
            #EDF4FF 100%
        );

    padding:
        100px 0
        90px;
}


.hero-grid {

    display: grid;

    grid-template-columns:
        48%
        52%;

    align-items: center;

    gap: 20px;

    position: relative;

    z-index: 2;
}


.eyebrow {

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.hero h1 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size:
        clamp(45px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--navy);

    max-width: 620px;
}


.hero h1 span {

    color: var(--blue);

    display: block;
}


.hero-description {

    max-width: 570px;

    color: var(--muted);

    font-size: 16px;

    margin:
        24px 0
        28px;
}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.primary-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    background: var(--blue);

    color: white;

    padding: 14px 20px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 14px 30px
        rgba(37,99,255,.22);

    transition: .25s;
}


.primary-button span {

    font-size: 18px;

    line-height: 1;
}


.primary-button:hover {

    background: var(--navy);

    transform: translateY(-2px);
}


.secondary-button {

    padding: 13px 19px;

    border: 1px solid #D7DEEC;

    border-radius: 7px;

    background: white;

    font-size: 12px;

    font-weight: 700;

    color: var(--navy);

    transition: .25s;
}


.secondary-button:hover {

    border-color: var(--blue);

    color: var(--blue);
}


.hero-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}


.hero-tags span {

    background: white;

    border: 1px solid #E1E7F2;

    padding: 6px 11px;

    border-radius: 30px;

    font-size: 10px;

    color: #687086;

    font-weight: 600;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    min-height: 480px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.visual-circle {

    width: 430px;

    height: 430px;

    border-radius: 50%;

    border: 1px dashed
        rgba(37,99,255,.25);

    position: absolute;
}


.visual-circle::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border: 1px solid
        rgba(37,99,255,.12);

    top: 65px;

    left: 65px;
}


.analytics-window {

    width: 470px;

    background: white;

    border-radius: 18px;

    box-shadow:
        0 35px 80px
        rgba(37,64,130,.16);

    overflow: hidden;

    position: relative;

    z-index: 4;

    border: 1px solid
        rgba(255,255,255,.8);
}


.window-top {

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid #EEF1F6;

    font-size: 9px;

    letter-spacing: 1px;

    color: #8A92A5;
}


.window-dots {

    display: flex;

    gap: 5px;
}


.window-dots i {

    width: 7px;

    height: 7px;

    background: #DDE3EE;

    border-radius: 50%;
}


.chart-area {

    padding:
        28px
        25px
        12px;
}


.chart-label {

    font-size: 11px;

    color: #8A92A5;

    margin-bottom: 3px;
}


.chart-number {

    font-size: 18px;

    font-weight: 800;

    color: var(--navy);

    margin-bottom: 10px;
}


.growth-chart {

    width: 100%;

    height: 180px;

    color: var(--blue);
}


.analytics-bottom {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #EEF1F6;
}


.analytics-bottom > div {

    padding: 14px 15px;

    border-right: 1px solid #EEF1F6;
}


.analytics-bottom > div:last-child {
    border-right: 0;
}


.analytics-bottom small {

    display: block;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;
}


.analytics-bottom strong {

    font-size: 10px;

    color: #50586B;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {

    position: absolute;

    z-index: 6;

    background: white;

    border-radius: 12px;

    box-shadow:
        0 18px 40px
        rgba(25,47,95,.14);

    padding: 12px 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 150px;

    animation: floating 4s ease-in-out infinite;
}


.floating-card small {

    display: block;

    color: var(--blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.floating-card strong {

    display: block;

    font-size: 10px;

    color: var(--navy);
}


.floating-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 9px;

    font-size: 12px;

    font-weight: 800;
}


.card-seo {

    left: 0;

    top: 85px;
}


.card-aeo {

    right: -15px;

    top: 155px;

    animation-delay: .8s;
}


.card-geo {

    left: 40px;

    bottom: 55px;

    animation-delay: 1.5s;
}


.rocket-shape {

    position: absolute;

    right: 50px;

    bottom: 55px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    transform: rotate(35deg);

    box-shadow:
        0 15px 35px
        rgba(37,99,255,.25);
}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================
   HERO SHAPES
========================================= */

.hero-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.shape-one {

    width: 300px;

    height: 300px;

    background:
        rgba(37,99,255,.05);

    right: -100px;

    top: -100px;
}


.shape-two {

    width: 130px;

    height: 130px;

    border: 20px solid
        rgba(37,99,255,.05);

    left: 42%;

    bottom: -50px;
}


.shape-three {

    width: 20px;

    height: 20px;

    background: var(--blue);

    opacity: .18;

    left: 8%;

    top: 22%;
}


/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {

    padding: 25px 0;

    border-bottom: 1px solid var(--border);

    background: white;
}


.trust-strip p {

    text-align: center;

    color: #9AA1B0;

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 16px;
}


.trust-items {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}


.trust-items span {

    font-family:
        "Varela Round",
        sans-serif;

    color: #8A92A4;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {

    padding: 105px 0;
}


.section-heading {

    max-width: 620px;

    margin-bottom: 50px;
}


.section-heading.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;
}


.section-heading h2 {

    font-family:
        "Varela Round",
        sans-serif;

    color: var(--navy);

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 15px;
}


.section-heading p {

    color: var(--muted);

    font-size: 15px;
}


/* =========================================
   SERVICES
========================================= */

.services {

    background: var(--light-bg);
}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.service-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 30px;

    position: relative;

    min-height: 285px;

    transition: .3s;
}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color:
        rgba(37,99,255,.25);
}


.service-card.featured {

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #18214A
        );

    color: white;

    border: 0;
}


.service-number {

    position: absolute;

    top: 23px;

    right: 25px;

    color: #B6BDCC;

    font-size: 10px;

    font-weight: 700;
}


.featured .service-number {
    color: rgba(255,255,255,.35);
}


.service-icon {

    width: 48px;

    height: 48px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 25px;
}


.featured .service-icon {

    background: var(--blue);

    color: white;
}


.service-card h3 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 19px;

    line-height: 1.35;

    margin-bottom: 12px;

    color: var(--navy);
}


.featured h3 {
    color: white;
}


.service-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 20px;
}


.featured p {
    color: rgba(255,255,255,.65);
}


.service-card a {

    font-size: 11px;

    font-weight: 800;

    color: var(--blue);
}


.featured a {
    color: white;
}


/* =========================================
   SEARCH SECTION
========================================= */

.search-section {

    background: white;

    overflow: hidden;
}


.search-grid {

    display: grid;

    grid-template-columns:
        45%
        55%;

    align-items: center;

    gap: 70px;
}


.search-visual {

    height: 450px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px dashed
        rgba(37,99,255,.25);
}


.orbit-one {

    width: 380px;

    height: 380px;

    transform: rotate(20deg);
}


.orbit-two {

    width: 270px;

    height: 270px;

    transform: rotate(-25deg);
}


.search-core {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #202D62
        );

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 3px;

    box-shadow:
        0 30px 60px
        rgba(11,16,38,.2);

    position: relative;

    z-index: 3;
}


.search-core span {

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;
}


.search-core strong {

    color: var(--blue);

    font-size: 22px;
}


.mini-pill {

    position: absolute;

    background: white;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 35px
        rgba(30,48,90,.12);

    border-radius: 30px;

    padding: 10px 18px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;
}


.pill-one {
    top: 65px;
    left: 50px;
}


.pill-two {
    top: 100px;
    right: 30px;
}


.pill-three {
    bottom: 75px;
    left: 80px;
}


.search-content h2 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.2;

    color: var(--navy);

    margin-bottom: 18px;
}


.search-content > p {

    color: var(--muted);

    font-size: 15px;

    margin-bottom: 30px;

    max-width: 580px;
}


.pillar-list {

    border-top: 1px solid var(--border);
}


.pillar {

    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}


.pillar > span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    padding-top: 3px;
}


.pillar h3 {

    font-family:
        "Varela Round",
        sans-serif;

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 3px;
}


.pillar p {

    font-size: 12px;

    color: var(--muted);
}


/* =========================================
   ABOUT
========================================= */

.about {

    background: var(--light-bg);
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}


.about-content h2 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.2;

    color: var(--navy);

    margin-bottom: 20px;
}


.about-content p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 16px;
}


.about-content .primary-button {

    margin-top: 15px;
}


.about-visual {

    min-height: 400px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.main-about-card {

    width: 440px;

    height: 300px;

    background: white;

    border-radius: 20px;

    box-shadow: var(--shadow);

    padding: 25px;

    position: relative;

    z-index: 2;
}


.about-card-top {

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    color: #9199A9;

    letter-spacing: 1px;
}


.about-status {

    color: var(--blue);
}


.about-bars {

    height: 180px;

    display: flex;

    align-items: flex-end;

    gap: 20px;

    padding: 20px 15px 0;
}


.about-bars div {

    flex: 1;

    background:
        linear-gradient(
            to top,
            var(--blue),
            #9AB7FF
        );

    border-radius:
        8px 8px 2px 2px;

    opacity: .8;
}


.about-bottom {

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    padding-top: 15px;

    font-size: 9px;

    font-weight: 800;

    color: #858DA0;
}


.about-small-card {

    position: absolute;

    right: 15px;

    top: 35px;

    background: var(--blue);

    color: white;

    padding: 20px;

    border-radius: 14px;

    display: flex;

    flex-direction: column;

    z-index: 4;

    box-shadow:
        0 15px 35px
        rgba(37,99,255,.25);
}


.about-small-card strong {
    font-size: 18px;
}


.about-small-card span {
    font-size: 10px;
    opacity: .75;
}


/* =========================================
   WHY
========================================= */

.why-section {

    background: white;
}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.why-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    transition: .3s;
}


.why-card:hover {

    border-color:
        rgba(37,99,255,.3);

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


.why-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 50%;

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 20px;
}


.why-card h3 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 18px;

    color: var(--navy);

    margin-bottom: 10px;
}


.why-card p {

    font-size: 12px;

    color: var(--muted);
}


/* =========================================
   PROCESS
========================================= */

.process-section {

    background: var(--light-bg);
}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    position: relative;
}


.process-grid::before {

    content: "";

    position: absolute;

    top: 30px;

    left: 8%;

    right: 8%;

    height: 1px;

    background: #DDE4F0;
}


.process-item {

    text-align: center;

    padding: 0 20px;

    position: relative;

    z-index: 2;
}


.process-number {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: white;

    border: 1px solid #DCE3F0;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto
        25px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(30,50,100,.07);
}


.process-item h3 {

    font-family:
        "Varela Round",
        sans-serif;

    color: var(--navy);

    font-size: 19px;

    margin-bottom: 10px;
}


.process-item p {

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio {

    background: white;
}


.portfolio-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.portfolio-card {

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    background: white;

    transition: .3s;
}


.portfolio-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.portfolio-image {

    height: 245px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


.portfolio-image > span {

    position: absolute;

    top: 18px;

    left: 18px;

    background: white;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 8px;

    font-weight: 800;

    color: var(--blue);

    z-index: 3;
}


.project-one {

    background:
        linear-gradient(
            135deg,
            #DDE9FF,
            #BFD3FF
        );
}


.project-two {

    background:
        linear-gradient(
            135deg,
            #E7F3FF,
            #C9DEFF
        );
}


.project-three {

    background:
        linear-gradient(
            135deg,
            #E7EAFE,
            #CCD3FF
        );
}


.project-window {

    width: 230px;

    height: 150px;

    background: white;

    border-radius: 9px;

    box-shadow:
        0 20px 40px
        rgba(30,50,100,.15);

    padding: 12px;
}


.project-header {

    height: 9px;

    width: 65%;

    background: var(--blue);

    border-radius: 4px;

    margin-bottom: 15px;
}


.project-content {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 7px;
}


.project-content div {

    height: 85px;

    background: #EDF2FA;

    border-radius: 5px;
}


.map-shape {

    width: 160px;

    height: 160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            var(--blue) 0 6%,
            transparent 7%
        ),
        #E7F0FF;

    border: 20px solid white;

    box-shadow:
        0 20px 40px
        rgba(30,50,100,.12);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--blue);
}


.circle-project {

    width: 145px;

    height: 145px;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 22px;

    box-shadow:
        0 25px 50px
        rgba(20,30,70,.2);
}


.portfolio-info {

    padding: 22px;
}


.portfolio-info small {

    color: var(--blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.portfolio-info h3 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 18px;

    color: var(--navy);

    margin:
        8px 0
        15px;
}


.portfolio-info a {

    font-size: 11px;

    color: var(--blue);

    font-weight: 800;
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {

    background: var(--light-bg);
}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;

    max-width: 900px;

    margin: auto;
}


.testimonial-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 30px;
}


.quote-mark {

    font-family:
        Georgia,
        serif;

    font-size: 55px;

    line-height: .7;

    color: var(--blue);

    margin-bottom: 20px;
}


.testimonial-card > p {

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 25px;
}


.client-info {

    display: flex;

    align-items: center;

    gap: 12px;
}


.client-avatar {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 800;

    font-size: 12px;
}


.client-info strong {

    display: block;

    font-size: 12px;

    color: var(--navy);
}


.client-info span {

    display: block;

    font-size: 10px;

    color: var(--muted);
}


/* =========================================
   NEWS
========================================= */

.news {

    background: white;
}


.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.news-card {

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    background: white;

    transition: .3s;
}


.news-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


.news-image {

    height: 170px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #27386F
        );

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 34px;
}


.news-content {

    padding: 22px;
}


.news-content small {

    color: var(--blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.news-content h3 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size: 17px;

    line-height: 1.4;

    color: var(--navy);

    margin:
        8px 0
        15px;
}


.news-content a {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================
   CTA
========================================= */

.cta-section {

    background:
        linear-gradient(
            120deg,
            var(--navy),
            #18234C
        );

    padding: 75px 0;

    color: white;
}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.cta-section .eyebrow {

    color: #82A5FF;
}


.cta-section h2 {

    font-family:
        "Varela Round",
        sans-serif;

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.2;

    max-width: 700px;

    margin-bottom: 12px;
}


.cta-section p {

    color: rgba(255,255,255,.65);

    font-size: 13px;

    max-width: 650px;
}


.cta-button {

    background: var(--blue);

    color: white;

    padding: 15px 21px;

    border-radius: 7px;

    white-space: nowrap;

    font-size: 11px;

    font-weight: 800;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.2);
}


.cta-button span {

    font-size: 18px;
}


/* =========================================
   FOOTER
========================================= */

.footer {

    background: #080C1E;

    color: white;

    padding-top: 70px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 55px;
}


.footer-logo .logo-text {
    color: white;
}


.footer-about p {

    max-width: 340px;

    color: rgba(255,255,255,.5);

    font-size: 12px;

    margin-top: 20px;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.footer-column h4 {

    font-size: 12px;

    margin-bottom: 10px;

    color: white;
}


.footer-column a {

    font-size: 11px;

    color: rgba(255,255,255,.5);

    transition: .2s;
}


.footer-column a:hover {

    color: #7EA2FF;
}


.footer-bottom {

    border-top: 1px solid
        rgba(255,255,255,.08);

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.35);

    font-size: 10px;
}


.footer-bottom div {

    display: flex;

    gap: 20px;
}


.footer-bottom a:hover {

    color: white;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .main-nav {
        margin-right: 10px;
    }

    .nav-link {
        padding: 0 8px;
        font-size: 12px;
    }

    .header-button {
        padding: 10px 12px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .analytics-window {
        width: 420px;
    }

    .visual-circle {
        width: 380px;
        height: 380px;
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .top-bar {
        display: none;
    }

    .header-main {
        height: 70px;
    }

    .main-nav {

        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        right: 0;

        margin: 0;

        background: white;

        border-top: 1px solid var(--border);

        box-shadow: var(--shadow);

        padding: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;
    }


    .main-nav.mobile-open {
        display: flex;
    }


    .nav-link {

        height: auto;

        padding: 13px;

        justify-content: space-between;

        border-radius: 7px;
    }


    .nav-link:hover {
        background: var(--blue-light);
    }


    .mobile-toggle {
        display: block;
    }


    .header-button {
        display: none;
    }


    .search-button {
        display: none;
    }


    .simple-dropdown,
    .mega-menu {

        position: static;

        width: 100%;

        transform: none;

        opacity: 1;

        visibility: visible;

        display: none;

        box-shadow: none;

        border: 0;

        border-radius: 0;

        padding: 5px;

    }


    .nav-dropdown:hover .simple-dropdown,
    .nav-mega-wrapper:hover .mega-menu {

        display: block;

        transform: none;
    }


    .mega-menu {

        grid-template-columns:
            1fr 1fr;

        gap: 15px;

        background: var(--light-bg);
    }


    .mega-intro {
        display: none;
    }


    .hero {
        padding: 70px 0;
    }


    .hero-grid {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-visual {
        margin-top: 30px;
    }


    .search-grid,
    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .search-visual {
        order: 2;
    }


    .about-visual {
        order: -1;
    }


    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }


    .process-grid::before {
        display: none;
    }


    .portfolio-grid,
    .news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 30px);
    }


    .logo-text {
        font-size: 19px;
    }


    .hero {

        padding:
            55px 0
            60px;
    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -1.5px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-visual {
        min-height: 390px;
    }


    .analytics-window {
        width: 100%;
    }


    .visual-circle {
        width: 310px;
        height: 310px;
    }


    .card-seo {
        left: -5px;
        top: 45px;
    }


    .card-aeo {
        right: -5px;
        top: 100px;
    }


    .card-geo {
        left: 5px;
        bottom: 30px;
    }


    .rocket-shape {
        right: 5px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }


    .analytics-bottom {
        grid-template-columns: 1fr;
    }


    .analytics-bottom > div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }


    .section {
        padding: 70px 0;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .services-grid,
    .why-grid,
    .portfolio-grid,
    .testimonial-grid,
    .news-grid {

        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;
    }


    .search-visual {
        height: 350px;
    }


    .orbit-one {
        width: 300px;
        height: 300px;
    }


    .orbit-two {
        width: 220px;
        height: 220px;
    }


    .main-about-card {
        width: 100%;
        height: 270px;
    }


    .about-bars {
        height: 150px;
        gap: 10px;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .process-item {
        text-align: left;

        display: grid;

        grid-template-columns: 60px 1fr;

        column-gap: 20px;

        align-items: start;
    }


    .process-number {
        grid-row: span 2;

        margin: 0;
    }


    .process-item p {
        margin-top: 5px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;
    }


    .footer-bottom div {
        flex-direction: column;
        gap: 5px;
    }


    .trust-items {
        justify-content: center;
    }

}
/* =========================================
   GLOBAL PAGE SCROLL FIX
========================================= */

html {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* FAQ page scroll fix */
body.faq-page {
    min-height: 100vh;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: relative !important;
}

/* Prevent sections from locking the page */
.faq-page .faq-hero,
.faq-page .faq-intro,
.faq-page .faq-search-section,
.faq-page .faq-section,
.faq-page .quick-answers,
.faq-page .faq-cta,
.faq-page .footer {
    position: relative;
}

/* Mobile menu should not lock document scrolling */
body.faq-page .main-nav.mobile-open {
    overflow-y: auto;
}
/* =========================================================
   UNIVERSAL SERVICES MEGA MENU
   MASTER DESIGN - FIRST REFERENCE IMAGE
   Applied after all legacy header/menu rules so every page
   uses the same component.
========================================================= */

.nav-mega-wrapper {
    position: static !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
}

.nav-mega-wrapper > .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

.nav-mega-wrapper .arrow,
.nav-mega-wrapper .nav-arrow {
    font-size: 12px !important;
    line-height: 1 !important;
    opacity: .9 !important;
}

/* DESKTOP MENU */
.nav-mega-wrapper > .mega-menu {
    position: absolute !important;
    top: 84px !important;
    left: 50% !important;
    right: auto !important;

    width: min(1120px, calc(100vw - 40px)) !important;
    min-width: 0 !important;
    min-height: 340px !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: 265px minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 0 !important;

    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 0 18px 18px !important;
    overflow: hidden !important;

    box-shadow:
        0 28px 65px rgba(11, 16, 38, .20),
        0 8px 24px rgba(11, 16, 38, .08) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    /* Keep the panel physically connected to the Services trigger.
       A vertical transform here creates a hover dead zone, so the menu
       disappears as the cursor travels from Services to a menu link. */
    transform: translateX(-50%) !important;
    transition:
        opacity .20s ease,
        visibility .20s ease !important;

    z-index: 100002 !important;
}

.nav-mega-wrapper:hover > .mega-menu,
.nav-mega-wrapper:focus-within > .mega-menu,
.nav-mega-wrapper.menu-open > .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) !important;
}

/* Invisible hover bridge. It sits directly under the header and keeps the
   parent hover state alive while the pointer moves into the mega menu. */
.nav-mega-wrapper::after {
    content: "";
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(1120px, calc(100vw - 40px));
    height: 12px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 100001;
}

.nav-mega-wrapper:hover::after,
.nav-mega-wrapper:focus-within::after,
.nav-mega-wrapper.menu-open::after {
    pointer-events: auto;
}

/* LEFT PANEL */
.nav-mega-wrapper .mega-intro {
    min-height: 340px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 28px 24px 26px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;

    background: linear-gradient(145deg, #101a46 0%, #18285f 100%) !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.nav-mega-wrapper .mega-icon,
.nav-mega-wrapper .mega-intro-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    margin: 0 0 27px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    border-radius: 15px !important;

    color: #ffffff !important;
    font-size: 23px !important;
    line-height: 1 !important;
}

.nav-mega-wrapper .mega-eyebrow {
    display: block !important;
    margin: 0 0 8px !important;
    color: #8eafff !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.nav-mega-wrapper .mega-intro h3 {
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 27px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: -.3px !important;
}

.nav-mega-wrapper .mega-intro p {
    max-width: 218px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255,255,255,.72) !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.72 !important;
    font-weight: 400 !important;
}

/* Hide legacy intro CTA because the reference design has no button */
.nav-mega-wrapper .mega-intro .mega-button,
.nav-mega-wrapper .mega-intro .mega-start-button,
.nav-mega-wrapper .mega-intro .mega-view-all {
    display: none !important;
}

/* SERVICE COLUMNS */
.nav-mega-wrapper .mega-column {
    min-width: 0 !important;
    width: auto !important;
    min-height: 340px !important;
    margin: 0 !important;
    padding: 31px 22px 25px !important;

    display: block !important;
    background: #ffffff !important;
    border: 0 !important;
    border-left: 0 !important;
    box-shadow: none !important;
}

.nav-mega-wrapper .mega-column h4 {
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: #17213d !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

.nav-mega-wrapper .mega-column > a {
    width: 100% !important;
    min-height: 49px !important;
    margin: 0 0 10px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    color: #18233e !important;
    text-decoration: none !important;
    transform: none !important;
}

.nav-mega-wrapper .mega-column > a:last-child {
    margin-bottom: 0 !important;
}

.nav-mega-wrapper .mega-column > a:hover,
.nav-mega-wrapper .mega-column > a:focus-visible {
    background: transparent !important;
    color: #2563ff !important;
    transform: translateX(2px) !important;
}

/* NUMBER BADGES */
.nav-mega-wrapper .mega-number,
.nav-mega-wrapper .mega-column > a > span:first-child:not(.mega-item-content) {
    flex: 0 0 30px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #eef3ff !important;
    border: 0 !important;
    border-radius: 8px !important;

    color: #7185ad !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.nav-mega-wrapper .mega-column > a:hover .mega-number,
.nav-mega-wrapper .mega-column > a:focus-visible .mega-number {
    background: #2563ff !important;
    color: #ffffff !important;
}

/* TEXT + DESCRIPTION */
.nav-mega-wrapper .mega-item-content {
    min-width: 0 !important;
    padding: 1px 0 0 !important;
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 3px !important;
}

.nav-mega-wrapper .mega-item-content strong {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1b2742 !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.nav-mega-wrapper .mega-item-content small {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #8994aa !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 9px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

/* Legacy plain mega links: hide their raw text styling if encountered */
.nav-mega-wrapper .mega-column > a > span:not(.mega-number):not(.mega-item-content) {
    font-family: Inter, Arial, sans-serif !important;
}

/* HEADER / STACKING */
.site-header,
.site-header .container,
.header-inner,
.header-main,
.main-nav,
.nav-mega-wrapper {
    overflow: visible !important;
}

.site-header {
    z-index: 100000 !important;
}

.main-nav {
    position: relative !important;
    z-index: 100001 !important;
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-mega-wrapper {
        width: 100% !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .nav-mega-wrapper > .nav-link {
        width: 100% !important;
        min-height: 48px !important;
        padding: 0 12px !important;
    }

    .nav-mega-wrapper > .mega-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        min-height: 0 !important;
        margin: 0 0 8px !important;
        padding: 0 !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border-radius: 10px !important;
        box-shadow: none !important;
    }

    .nav-mega-wrapper.menu-open > .mega-menu {
        display: grid !important;
    }

    .nav-mega-wrapper .mega-intro {
        min-height: auto !important;
        padding: 22px !important;
        border-radius: 10px 10px 0 0 !important;
    }

    .nav-mega-wrapper .mega-icon,
    .nav-mega-wrapper .mega-intro-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        margin-bottom: 18px !important;
    }

    .nav-mega-wrapper .mega-intro h3 {
        font-size: 23px !important;
    }

    .nav-mega-wrapper .mega-intro p {
        max-width: 100% !important;
    }

    .nav-mega-wrapper .mega-column {
        min-height: auto !important;
        padding: 22px !important;
    }

    .nav-mega-wrapper .mega-column h4 {
        margin-bottom: 16px !important;
    }
}

@media (max-width: 600px) {
    .nav-mega-wrapper .mega-column {
        padding: 18px !important;
    }

    .nav-mega-wrapper .mega-column > a {
        margin-bottom: 12px !important;
    }
}
