:root {
    --primary: #16a34a;
    --primary-alt: #15803d;
    --dark: #0f172a;
    --text: #334155;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ── Hero entrance ── */
.hero-text {
    animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hero background glow ── */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Gradient text on headline span ── */
.hero-text h1 span {
    background: linear-gradient(135deg, #16a34a 0%, #4ade80 50%, #15803d 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 4s ease infinite;
}

@keyframes gradShift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}


/* Global Navigation Refined */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

/* Logo */
.logo-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 160px;
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-weight: 400;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #000000, #166534);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tagline {
    font-size: 9px;
    color: #64748b;
    font-style: italic;
    margin-left: 32px;
}

/* Nav menus container */
.nav-menus {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-menu-left {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
    flex: 1;
    margin-left: 32px;
}

.nav-menu-right {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-menu-left a,
.nav-menu-right a {
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 400;
    transition: 0.2s opacity;
    white-space: nowrap;
}

.nav-menu-left a:hover,
.nav-menu-right a:hover {
    opacity: 0.65;
}

.nav-icon a {
    font-size: 15px;
    color: #334155;
}

.nav-auth a {
    display: flex;
    align-items: center;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    padding: 0 0 80px;
    background: #f6f6f6;
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.hero-text {
    flex: 1;
    max-width: 560px;
    z-index: 2;
    margin-top: -30px;
    /* Pulls text up further */
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}


.hero-text p {
    font-size: 17px;
    font-weight: 400;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-alt);
}

.btn-ghost {
    border: 1.5px solid #94a3b8;
    color: #0f172a;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s;
    background: white;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero badge — no background, animated shimmer text */
.hero-badge {
    background: #16a34a;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Trust bar below CTAs */
.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 12px;
    color: #64748b;
    font-weight: 400;
}


/* Globe Orb */
.hero-globe-container {
    flex-shrink: 0;
    width: 700px;
    height: 700px;
    transform: translateX(-150px);
    position: relative;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

#hero-3d-globe {
    width: 100%;
    height: 100%;
}

@keyframes float {

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

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Stats */
.stats-bar {
    background: var(--dark);
    padding: 40px 0;
    color: white;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.stat-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* ── Connectivity Cloud Style ── */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
    --section-primary: #10b981;
}

.connectivity-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.section-heading-minimal {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.ultra-light {
    font-weight: 300;
    font-size: 36px;
    color: #0f172a;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.accent-text {
    color: var(--primary);
    font-weight: 300;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-m-card {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 11;
}

.renewed-globe-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 15px #22c55e;
}

.marker-label {
    background: rgba(15, 23, 42, 0.85);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Outfit', sans-serif;
    margin-top: 4px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-m-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.s-m-viz {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #166534, #064e3b) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svg-viz {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
    /* Luminous Glow */
}

/* SVG Keyframes & Animations - ENHANCED VISIBILITY */
.svg-viz line,
.svg-viz path,
.svg-viz rect,
.svg-viz circle {
    stroke: #ffffff !important;
    stroke-width: 3px !important;
    /* Vivid Bolder White Lines */
}

.svg-stamp,
.svg-cursor,
.svg-sat,
.svg-sat-2,
.svg-head {
    fill: #ffffff !important;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.svg-stamp {
    transform-origin: center;
    animation: stampPop 1.5s infinite;
}

@keyframes stampPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.svg-code {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: codeFlow 2s infinite linear;
    stroke: var(--primary);
}

@keyframes codeFlow {
    to {
        stroke-dashoffset: 0;
    }
}

.svg-cursor {
    animation: blink 0.6s infinite;
    fill: var(--primary);
}

.svg-pulse {
    transform-origin: center;
    animation: pulseWave 1.8s infinite;
    stroke: var(--primary);
}

@keyframes pulseWave {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.svg-orbit-slow {
    transform-origin: center;
    animation: spin 15s linear infinite;
    stroke: var(--primary);
}

.svg-sat {
    transform-origin: center;
    animation: spin 8s linear infinite;
    fill: var(--primary);
}

.svg-sat-2 {
    transform-origin: center;
    animation: spin 12s linear infinite reverse;
    fill: var(--primary);
}

.svg-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: pathDraw 3s infinite linear;
    stroke: var(--primary);
}

@keyframes pathDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.svg-head {
    animation: float 1.5s ease-in-out infinite alternate;
    fill: var(--primary);
}

.svg-pulse-light {
    transform-origin: center;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px var(--primary));
    }
}

.svg-orbit-slow {
    transform-origin: center;
    animation: spin 20s linear infinite;
}

.svg-sat {
    transform-origin: center;
    animation: spin 12s linear infinite;
}

.svg-sat-2 {
    transform-origin: center;
    animation: spin 18s linear infinite reverse;
}

.service-m-card:hover .s-m-viz {
    background: rgba(22, 163, 74, 0.08);
    transform: translateY(-2px);
}

.connectivity-bg {
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(22, 163, 74, 0.1));
}

.s-m-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 12px;
}

.s-m-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.s-m-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* About */
.about {
    padding: 100px 0;
    background: white;
}

.about-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.about-info p {
    font-size: 17px;
    max-width: 800px;
}

/* Footer */
.main-footer {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text);
}

.socials a {
    color: var(--text);
    margin-left: 16px;
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }

    .nav-menus {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 999;
        padding: 12px 0;
    }

    .nav-menus.open {
        display: flex;
    }

    .nav-menu-left,
    .nav-menu-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-left: 0;
    }

    .nav-menu-left li,
    .nav-menu-right li {
        width: 100%;
        border-bottom: 1px solid #f8fafc;
    }

    .nav-menu-left a,
    .nav-menu-right a {
        display: block;
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-orb {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero {
        padding: 60px 0;
    }

    .cta-row {
        flex-direction: column;
    }

    .stats-flex {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ── Connectivity Cloud Hub ── */
.connectivity-cloud {
    padding: 0 0 40px;
    background: #ffffff;
    position: relative;
}

.no-margin-top {
    margin-top: 0 !important;
}

.connectivity-hub-wrapper {
    position: relative;
    height: 600px;
    margin-top: 50px;
    overflow: hidden;
}

.hero-globe-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    pointer-events: none;
    /* Non-touchable as requested */
    user-select: none;
}

.hub-visual {
    position: relative;
    width: 1000px;
    height: 600px;
    margin: 0 auto;
}

.hub-center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 10;
}

.core-inner {
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 12;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.core-pulse-1,
.core-pulse-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 11;
    animation: hubPulse 3s infinite;
}

.core-pulse-2 {
    animation-delay: 1.5s;
}

@keyframes hubPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Pillars */
.pillar {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: 1.5px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    z-index: 15;
    transition: 0.3s;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.pillar-info strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    font-weight: 500;
}

.pillar-info span {
    font-size: 13px;
    color: #64748b;
}

.p-wf {
    top: 100px;
    left: 50px;
}

.p-ai {
    top: 100px;
    right: 50px;
}

.p-apps {
    bottom: 100px;
    left: 50px;
}

.p-infra {
    bottom: 100px;
    right: 50px;
}

/* SVG Lines */
.flow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    height: 600px;
    z-index: 5;
    pointer-events: none;
}

.flow-p {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 2px;
}

.flow-dot {
    filter: drop-shadow(0 0 5px var(--primary));
}

50% {
    transform: scale(2.5);
    opacity: 0.4;
}
}

/* ── Global Presence Section ── */
.global-presence {
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

.real-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 60px auto 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    z-index: 10;
}

#real-map {
    width: 100%;
    height: 100%;
}

.custom-map-marker {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-point {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--primary);
    border: 2px solid white;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: markerPulse 2s infinite;
    z-index: 1;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.leaflet-popup-content-wrapper {
    background: #0f172a;
    color: white;
    border-radius: 8px;
    padding: 2px;
}

.leaflet-popup-content {
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    margin: 8px 12px;
}

.leaflet-popup-tip {
    background: #0f172a;
}

@media (max-width: 768px) {
    .real-map-wrapper {
        height: 400px;
        margin-top: 40px;
    }
}
}
}
}

/* ── Product Slider ── */
.product-slider-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.slider-container {
    padding: 24px 0;
    position: relative;
}

.slider-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 30px;
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.slider-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dark);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.view-all-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.view-all-link:hover {
    border-bottom-color: var(--primary);
    padding-right: 5px;
}