/* =========================================================
   SKYLINE INFOSOLUTIONS
   Main Website Design System
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

:root {
    --sky-primary: #168fe0;
    --sky-primary-dark: #0d6fc0;
    --sky-blue: #28aef3;
    --sky-cyan: #06b6d4;

    --sky-dark: #020817;
    --sky-dark-2: #030b1a;
    --sky-surface: #0b1c32;
    --sky-surface-2: #0f1d32;

    --sky-white: #f8fafc;
    --sky-text: #dbe7f3;
    --sky-muted: #94a8c0;
    --sky-muted-dark: #71839a;

    --sky-border: rgba(148, 163, 184, 0.14);
    --sky-border-blue: rgba(40, 174, 243, 0.25);

    --container-width: 1280px;

    --header-height: 82px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --transition: 0.25s ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--sky-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--sky-dark);
    color: var(--sky-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   3. COMMON
   ========================================================= */

.container,
.nav-container,
.hero-container,
.section-container {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin: 0 auto;
}

.text-blue {
    color: var(--sky-blue);
}


/* =========================================================
   4. NAVBAR
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(2, 8, 23, 0.72);

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(2, 8, 23, 0.92);

    border-color: var(--sky-border);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18);
}

.nav-container {
    min-height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ---------------------------------------------------------
   Logo
   --------------------------------------------------------- */

.brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.brand-logo {
    width: 180px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* ---------------------------------------------------------
   Desktop Navigation
   --------------------------------------------------------- */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 38px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    color: #c4d0df;

    font-size: 15px;
    font-weight: 500;

    padding: 8px 0;

    transition:
        color var(--transition);
}

.nav-link::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--sky-blue);

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ---------------------------------------------------------
   Navbar CTA
   --------------------------------------------------------- */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 23px;

    border: 1px solid rgba(40, 174, 243, 0.35);

    border-radius: 12px;

    background: rgba(22, 143, 224, 0.10);

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-cta span {
    font-size: 18px;

    transition:
        transform var(--transition);
}

.nav-cta:hover {
    background: var(--sky-primary);

    border-color: var(--sky-primary);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(22, 143, 224, 0.22);
}

.nav-cta:hover span {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   Mobile Menu Button
   --------------------------------------------------------- */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--sky-border);

    border-radius: 10px;

    background: rgba(15, 29, 50, 0.85);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    border-radius: 4px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* ---------------------------------------------------------
   Mobile Navigation
   --------------------------------------------------------- */

.mobile-nav {
    display: none;
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding-top: var(--header-height);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(20, 92, 255, 0.13),
            transparent 34%
        ),

        radial-gradient(
            circle at 15% 85%,
            rgba(0, 185, 255, 0.08),
            transparent 28%
        ),

        var(--sky-dark);
}


/* ---------------------------------------------------------
   Background Grid
   --------------------------------------------------------- */

.hero::before {
    content: '';

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(56, 189, 248, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(56, 189, 248, 0.055) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0, 0, 0, 0.7) 45%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0, 0, 0, 0.7) 45%,
            transparent 100%
        );
}


/* ---------------------------------------------------------
   Hero Glow
   --------------------------------------------------------- */

.hero::after {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.12),
            transparent 68%
        );

    filter: blur(30px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   Hero Container
   --------------------------------------------------------- */

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 50px;

    padding: 80px 0;
}


/* =========================================================
   6. HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 700px;
}


/* ---------------------------------------------------------
   Hero Badge
   --------------------------------------------------------- */

.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding: 10px 17px;

    margin-bottom: 35px;

    border: 1px solid rgba(48, 174, 255, 0.25);

    border-radius: 30px;

    background: rgba(10, 31, 59, 0.55);

    color: #a9c9e8;

    font-size: 14px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #20d878;

    box-shadow:
        0 0 12px rgba(32, 216, 120, 0.7);
}


/* =========================================================
   7. HERO TITLE
   ========================================================= */

.hero-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    font-family: 'Poppins', sans-serif;

    font-size: clamp(
        70px,
        7vw,
        112px
    );

    line-height: 0.94;

    letter-spacing: -5px;

    font-weight: 800;

    color: var(--sky-white);
}

.hero-title > span {
    display: block;

    color: var(--sky-white);
}

.hero-title > span.hero-title-blue {
    color: var(--sky-blue);
}


/* =========================================================
   8. HERO DESCRIPTION
   ========================================================= */

.hero-description {
    max-width: 690px;

    margin: 42px 0 30px;

    color: var(--sky-muted);

    font-size: 20px;

    line-height: 1.75;
}


/* =========================================================
   9. HERO SERVICES
   ========================================================= */

.hero-services {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    max-width: 720px;
}

.hero-service {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(148, 163, 184, 0.16);

    border-radius: 8px;

    background: rgba(15, 29, 50, 0.65);

    color: #b8c7d9;

    font-size: 14px;

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.hero-service span {
    color: var(--sky-blue);

    font-weight: 700;
}

.hero-service:hover {
    border-color: rgba(40, 174, 243, 0.35);

    background: rgba(15, 35, 60, 0.85);

    transform: translateY(-2px);
}


/* =========================================================
   10. HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 34px;
}


/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn span {
    font-size: 18px;

    transition:
        transform var(--transition);
}


/* ---------------------------------------------------------
   Primary Button
   --------------------------------------------------------- */

.btn-primary {
    color: #ffffff;

    background: var(--sky-primary);

    border: 1px solid var(--sky-primary);

    box-shadow:
        0 12px 30px rgba(22, 143, 224, 0.20);
}

.btn-primary:hover {
    background: var(--sky-blue);

    border-color: var(--sky-blue);

    transform: translateY(-3px);

    box-shadow:
        0 16px 40px rgba(22, 143, 224, 0.30);
}

.btn-primary:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   Secondary Button
   --------------------------------------------------------- */

.btn-secondary {
    color: #b9c9dc;

    border: 1px solid rgba(148, 163, 184, 0.20);

    background: rgba(15, 29, 50, 0.45);
}

.btn-secondary:hover {
    color: #ffffff;

    border-color: rgba(40, 174, 243, 0.50);

    background: rgba(15, 35, 60, 0.70);

    transform: translateY(-3px);
}


/* =========================================================
   11. HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ---------------------------------------------------------
   Visual Glow
   --------------------------------------------------------- */

.hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20, 91, 255, 0.16),
            transparent 68%
        );

    filter: blur(50px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   Orbit
   --------------------------------------------------------- */

.network-orbit {
    position: absolute;

    width: 570px;
    height: 570px;

    border: 1px solid rgba(34, 125, 220, 0.14);

    border-radius: 50%;

    animation:
        orbitPulse 7s ease-in-out infinite;
}

.network-orbit::after {
    content: '';

    position: absolute;

    inset: 65px;

    border: 1px solid rgba(34, 125, 220, 0.08);

    border-radius: 50%;
}


/* =========================================================
   12. TECHNOLOGY CARD
   ========================================================= */

.technology-card {
    position: relative;

    z-index: 2;

    width: min(510px, 90%);
    height: 470px;

    border: 1px solid rgba(80, 126, 185, 0.20);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 52, 0.96),
            rgba(3, 11, 26, 0.98)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    overflow: hidden;

    backdrop-filter: blur(20px);

    animation:
        technologyFloat 7s ease-in-out infinite;
}


/* ---------------------------------------------------------
   Card Top
   --------------------------------------------------------- */

.technology-card-top {
    height: 48px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.browser-dots {
    display: flex;

    gap: 7px;
}

.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #40516a;
}

.technology-label {
    margin-left: 18px;

    color: #63748d;

    font-size: 11px;

    letter-spacing: 2px;
}

.status-dot {
    margin-left: auto;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20d878;

    box-shadow:
        0 0 10px rgba(32, 216, 120, 0.8);
}


/* =========================================================
   13. NETWORK DIAGRAM
   ========================================================= */

.network-diagram {
    position: relative;

    height: 370px;
}


/* ---------------------------------------------------------
   Nodes
   --------------------------------------------------------- */

.network-node {
    position: absolute;

    width: 74px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(35, 173, 243, 0.35);

    border-radius: 17px;

    background: rgba(11, 28, 50, 0.90);

    color: #68c9f5;

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        inset 0 0 20px rgba(30, 150, 240, 0.04);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.network-node:hover {
    border-color: rgba(40, 174, 243, 0.75);

    box-shadow:
        0 0 25px rgba(40, 174, 243, 0.12),
        inset 0 0 20px rgba(30, 150, 240, 0.08);
}


/* ---------------------------------------------------------
   Center Node
   --------------------------------------------------------- */

.network-node-center {
    top: 50%;
    left: 50%;

    width: 88px;
    height: 88px;

    transform: translate(-50%, -50%);

    border-color: #1655d8;

    border-radius: 50%;

    background: rgba(20, 70, 190, 0.08);

    color: #ffffff;

    box-shadow:
        0 0 35px rgba(20, 80, 255, 0.15),
        inset 0 0 20px rgba(20, 80, 255, 0.08);

    z-index: 4;
}

.network-node-center:hover {
    transform: translate(-50%, -50%) scale(1.04);

    border-color: #28aef3;
}


/* ---------------------------------------------------------
   Node Positions
   --------------------------------------------------------- */

.network-node-top {
    top: 10%;
    left: 50%;

    transform: translateX(-50%);
}

.network-node-left {
    top: 50%;
    left: 13%;

    transform: translateY(-50%);
}

.network-node-right {
    top: 50%;
    right: 13%;

    transform: translateY(-50%);
}

.network-node-bottom {
    bottom: 10%;
    left: 50%;

    transform: translateX(-50%);
}


/* =========================================================
   14. NETWORK CONNECTIONS
   ========================================================= */

.network-line {
    position: absolute;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(40, 174, 243, 0.65),
            transparent
        );

    opacity: 0.65;
}

.line-vertical-top {
    width: 1px;
    height: 125px;

    top: 20%;
    left: 50%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(40, 174, 243, 0.65),
            transparent
        );
}

.line-horizontal {
    width: 260px;
    height: 1px;

    top: 50%;
    left: 50%;

    transform: translateX(-50%);
}

.line-vertical-bottom {
    width: 1px;
    height: 95px;

    bottom: 25%;
    left: 50%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(40, 174, 243, 0.65),
            transparent
        );
}


/* =========================================================
   15. TECHNOLOGY CARD FOOTER
   ========================================================= */

.technology-card-footer {
    position: absolute;

    bottom: 0;
    left: 22px;
    right: 22px;

    height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(148, 163, 184, 0.08);

    color: #52647c;

    font-size: 12px;
}

.technology-card-footer span {
    display: flex;
    align-items: center;

    gap: 8px;
}

.technology-card-footer i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20d878;

    box-shadow:
        0 0 8px rgba(32, 216, 120, 0.5);
}

.technology-card-footer strong {
    color: #20d878;

    font-weight: 600;
}


/* =========================================================
   16. FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 17px;

    border: 1px solid rgba(93, 126, 177, 0.20);

    border-radius: 15px;

    background: rgba(12, 27, 49, 0.92);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.30);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}

.floating-card-top {
    top: 18%;
    right: -10px;

    animation:
        floatingCard 5s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 13%;
    left: 0;

    animation:
        floatingCard 6s ease-in-out infinite reverse;
}

.floating-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: rgba(23, 77, 185, 0.20);

    color: #31b5f4;

    font-size: 20px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: #e4ebf4;

    font-size: 13px;
    font-weight: 600;
}

.floating-card span {
    margin-top: 3px;

    color: #72839a;

    font-size: 11px;
}


/* =========================================================
   17. SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #52647c;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.scroll-indicator span {
    position: relative;

    width: 18px;
    height: 30px;

    border: 1px solid #475569;

    border-radius: 20px;
}

.scroll-indicator span::after {
    content: '';

    position: absolute;

    top: 6px;
    left: 50%;

    width: 3px;
    height: 6px;

    border-radius: 10px;

    background: var(--sky-blue);

    transform: translateX(-50%);

    animation:
        scrollDown 1.8s infinite;
}


/* =========================================================
   18. COMMON SECTION
   ========================================================= */

.section {
    position: relative;

    padding: 120px 0;

    background: var(--sky-dark);
}

.section-dark {
    background: #030b1a;
}

.section-label {
    display: inline-block;

    color: var(--sky-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-title {
    margin-top: 14px;

    font-family: 'Poppins', sans-serif;

    color: #ffffff;

    font-size: clamp(
        36px,
        4vw,
        58px
    );

    line-height: 1.12;

    letter-spacing: -2px;
}

.section-description {
    max-width: 700px;

    margin-top: 20px;

    color: var(--sky-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   19. FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 30px;

    border-top: 1px solid var(--sky-border);

    background: #010611;

    color: var(--sky-muted);
}

.footer-container {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin: 0 auto;
}

.footer-bottom {
    padding-top: 25px;

    margin-top: 40px;

    border-top: 1px solid var(--sky-border);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 13px;
}


/* =========================================================
   20. ANIMATIONS
   ========================================================= */

@keyframes technologyFloat {

    0%,
    100% {
        transform:
            perspective(1200px)
            rotateY(-3deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1200px)
            rotateY(-3deg)
            rotateX(2deg)
            translateY(-10px);
    }
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes orbitPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.45;
    }

    50% {
        transform: scale(1.035);

        opacity: 0.90;
    }
}


@keyframes scrollDown {

    0% {
        opacity: 0;

        transform:
            translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, 10px);
    }
}


/* =========================================================
   21. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        top: var(--header-height);

        left: 24px;
        right: 24px;

        padding: 15px;

        border: 1px solid var(--sky-border);

        border-radius: 14px;

        background: rgba(2, 8, 23, 0.97);

        backdrop-filter: blur(20px);

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.35);
    }

    .mobile-nav.open {
        display: flex;

        flex-direction: column;

        gap: 5px;
    }

    .mobile-nav a {
        padding: 13px;

        border-radius: 8px;

        color: #cbd5e1;

        font-size: 14px;

        transition:
            background var(--transition),
            color var(--transition);
    }

    .mobile-nav a:hover {
        background: rgba(37, 99, 235, 0.10);

        color: #ffffff;
    }

    .mobile-cta {
        margin-top: 5px;

        background: var(--sky-primary);

        color: #ffffff !important;

        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 70px;
    }

    .hero-content {
        max-width: 850px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-services {
        justify-content: center;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 570px;
    }

    .hero-title {
        font-size: clamp(
            64px,
            9vw,
            95px
        );
    }

    .floating-card-top {
        right: 2%;
    }

    .floating-card-bottom {
        left: 2%;
    }
}


/* =========================================================
   22. MOBILE
   ========================================================= */

@media (max-width: 650px) {

    :root {
        --header-height: 72px;
    }

    .container,
    .nav-container,
    .hero-container,
    .section-container,
    .footer-container {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );
    }

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 145px;
    }

    .mobile-nav {
        top: 72px;

        left: 15px;
        right: 15px;
    }

    .hero {
        min-height: auto;

        padding-top: 72px;
    }

    .hero-container {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );

        padding: 55px 0 80px;

        gap: 30px;
    }

    .hero-badge {
        padding: 8px 13px;

        margin-bottom: 25px;

        font-size: 12px;
    }

    .hero-title {
        font-size: 58px;

        line-height: 0.96;

        letter-spacing: -3px;
    }

    .hero-description {
        margin-top: 28px;

        font-size: 16px;

        line-height: 1.7;
    }

    .hero-services {
        gap: 8px;
    }

    .hero-service {
        padding: 8px 11px;

        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        width: 100%;

        margin-top: 28px;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;

        width: 100%;
    }

    .hero-glow {
        width: 360px;
        height: 360px;
    }

    .network-orbit {
        width: 390px;
        height: 390px;
    }

    .network-orbit::after {
        inset: 45px;
    }

    .technology-card {
        width: min(360px, 94%);

        height: 350px;

        border-radius: 18px;
    }

    .technology-card-top {
        height: 40px;

        padding: 0 14px;
    }

    .technology-label {
        margin-left: 12px;

        font-size: 9px;
    }

    .network-diagram {
        height: 250px;
    }

    .network-node {
        width: 58px;
        height: 58px;

        border-radius: 13px;

        font-size: 9px;
    }

    .network-node-center {
        width: 70px;
        height: 70px;
    }

    .line-horizontal {
        width: 180px;
    }

    .line-vertical-top {
        height: 75px;
    }

    .line-vertical-bottom {
        height: 70px;
    }

    .technology-card-footer {
        left: 15px;
        right: 15px;

        height: 42px;

        font-size: 9px;
    }

    .floating-card {
        padding: 10px 12px;

        gap: 9px;
    }

    .floating-card-top {
        right: -5px;

        top: 8%;
    }

    .floating-card-bottom {
        left: -5px;

        bottom: 5%;
    }

    .floating-icon {
        width: 34px;
        height: 34px;

        font-size: 16px;
    }

    .floating-card strong {
        font-size: 11px;
    }

    .floating-card span {
        font-size: 9px;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .section-description {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   23. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 420px) {

    .brand-logo {
        width: 130px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .network-orbit {
        width: 330px;
        height: 330px;
    }

    .technology-card {
        width: 330px;
        height: 325px;
    }

    .network-diagram {
        height: 225px;
    }

    .network-node {
        width: 52px;
        height: 52px;
    }

    .network-node-center {
        width: 64px;
        height: 64px;
    }

    .line-horizontal {
        width: 150px;
    }

    .floating-card-top {
        right: -8px;
    }

    .floating-card-bottom {
        left: -8px;
    }
}
/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
    position: relative;
    background: #050b1c;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(30, 157, 239, 0.06);
    filter: blur(80px);
    top: 10%;
    right: -180px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;

    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #1da1f2;
}

.section-heading h2,
.why-heading h2,
.contact-info h2 {
    margin: 0;
    color: #f8fafc;
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading h2 span,
.why-heading h2 span,
.contact-info h2 span {
    color: #27a9f5;
}

.section-heading p {
    max-width: 700px;
    margin: 25px auto 0;

    color: #8fa4bf;
    font-size: 17px;
    line-height: 1.8;
}


/* About content */

.about-content h3 {
    margin: 0 0 22px;

    color: #f8fafc;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    line-height: 1.2;
}

.about-content p {
    margin: 0 0 20px;

    color: #8fa4bf;
    font-size: 16px;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    color: #38bdf8;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    transition: gap 0.25s ease, color 0.25s ease;
}

.text-link:hover {
    gap: 15px;
    color: #7dd3fc;
}

.text-link span {
    font-size: 20px;
}


/* About statistics */

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    position: relative;

    min-height: 170px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: linear-gradient(
        145deg,
        rgba(15, 31, 56, 0.85),
        rgba(6, 15, 31, 0.85)
    );

    border: 1px solid rgba(70, 145, 205, 0.18);
    border-radius: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 50px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(39, 169, 245, 0.45);
}

.stat-card strong {
    color: #27a9f5;
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.stat-card span {
    color: #8fa4bf;
    font-size: 14px;
    line-height: 1.5;
}
/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    position: relative;
    background: #030918;
    overflow: hidden;
}

/* Subtle background glow */

.services-section::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    top: 5%;
    left: -300px;

    border-radius: 50%;

    background: rgba(29, 161, 242, 0.055);

    filter: blur(100px);

    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.045);

    filter: blur(100px);

    pointer-events: none;
}


/* ---------------------------------------------------------
   Services heading
   --------------------------------------------------------- */

.services-section .section-heading {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.services-section .section-heading p {
    max-width: 650px;
}


/* ---------------------------------------------------------
   Services grid
   --------------------------------------------------------- */

.services-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* ---------------------------------------------------------
   Service card
   --------------------------------------------------------- */

.service-card {
    position: relative;

    min-height: 340px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(13, 29, 52, 0.92),
            rgba(5, 14, 29, 0.96)
        );

    border: 1px solid rgba(75, 140, 190, 0.16);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 20px 60px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Small glow inside card */

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background: rgba(30, 157, 239, 0.08);

    filter: blur(35px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    pointer-events: none;
}


/* Bottom line */

.service-card::after {
    content: "";

    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(29, 161, 242, 0.45),
            transparent
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(39, 169, 245, 0.38);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(29, 161, 242, 0.06);
}

.service-card:hover::before {
    opacity: 1;

    transform: scale(1.2);
}

.service-card:hover::after {
    opacity: 1;
}


/* ---------------------------------------------------------
   Service number
   --------------------------------------------------------- */

.service-number {
    position: absolute;

    top: 28px;
    right: 30px;

    color: rgba(143, 164, 191, 0.35);

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* ---------------------------------------------------------
   Service icon
   --------------------------------------------------------- */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    color: #38bdf8;

    font-size: 25px;
    font-weight: 500;

    background:
        linear-gradient(
            145deg,
            rgba(20, 68, 112, 0.55),
            rgba(8, 28, 54, 0.7)
        );

    border: 1px solid rgba(56, 189, 248, 0.2);

    border-radius: 15px;

    box-shadow:
        inset 0 0 20px rgba(29, 161, 242, 0.04);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px);

    border-color: rgba(56, 189, 248, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(20, 78, 130, 0.7),
            rgba(8, 30, 60, 0.8)
        );
}


/* ---------------------------------------------------------
   Service title
   --------------------------------------------------------- */

.service-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 14px;

    color: #f8fafc;

    font-family: "Poppins", sans-serif;

    font-size: 22px;
    font-weight: 600;

    line-height: 1.3;
}


/* ---------------------------------------------------------
   Service description
   --------------------------------------------------------- */

.service-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #879bb5;

    font-size: 14px;

    line-height: 1.75;
}


/* ---------------------------------------------------------
   Service link
   --------------------------------------------------------- */

.service-link {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: auto;
    padding-top: 28px;

    color: #38bdf8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.service-link:hover {
    gap: 13px;

    color: #7dd3fc;
}


/* ---------------------------------------------------------
   Highlight card
   --------------------------------------------------------- */

.service-card-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(12, 45, 78, 0.95),
            rgba(5, 19, 38, 0.98)
        );

    border-color: rgba(39, 169, 245, 0.25);
}

.service-card-highlight .service-number {
    color: rgba(56, 189, 248, 0.55);
}


/* =========================================================
   SERVICES — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   SERVICES — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .service-card {
        min-height: 310px;

        padding: 26px;
    }

    .service-number {
        top: 24px;
        right: 24px;
    }

    .service-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

}
/* =========================================================
   WHY SKYLINE SECTION
   ========================================================= */

.why-section {
    position: relative;
    padding: 130px 0;
    background: #020817;
    overflow: hidden;
}


/* Subtle background glow */

.why-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(30, 144, 255, 0.08) 0%,
        rgba(30, 144, 255, 0.03) 35%,
        transparent 70%
    );
    pointer-events: none;
}


/* Keep content above background effect */

.why-section .container {
    position: relative;
    z-index: 2;
}


/* Section label */

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 35px;

    color: #29aaf3;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-label span {
    display: block;

    width: 35px;
    height: 1px;

    background: #29aaf3;
}


/* Header */

.why-header {
    max-width: 1250px;
}


/* Main heading */

.why-header h2 {
    margin: 0;

    max-width: 1200px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -3px;

    color: #f5f7fb;
}

.why-header h2 span {
    color: #29aaf3;
}


/* Description */

.why-header p {
    max-width: 950px;

    margin: 25px 0 30px;

    font-size: 18px;
    line-height: 1.7;

    color: #9aabc2;
}


/* Talk to us button */

.why-header .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 16px 25px;

    border-radius: 10px;

    background: #2099df;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.why-header .btn-primary span {
    font-size: 20px;
}

.why-header .btn-primary:hover {
    background: #29aaf3;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(32, 153, 223, 0.25);
}


/* =========================================================
   WHY CARDS
   ========================================================= */

.why-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-top: 75px;
}


.why-card {
    position: relative;

    min-height: 230px;

    padding: 30px;

    border: 1px solid rgba(42, 111, 159, 0.35);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 38, 66, 0.72),
            rgba(3, 15, 31, 0.85)
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


/* Top blue line */

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 45px;
    height: 2px;

    background: #29aaf3;

    opacity: 0.8;
}


/* Hover */

.why-card:hover {
    transform: translateY(-6px);

    border-color: rgba(41, 170, 243, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(15, 48, 82, 0.9),
            rgba(3, 18, 38, 0.95)
        );
}


/* Number */

.why-number {
    margin-bottom: 45px;

    color: #29aaf3;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* Card heading */

.why-card h3 {
    margin: 0 0 12px;

    font-family: "Poppins", sans-serif;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 600;

    color: #f4f7fb;
}


/* Card description */

.why-card p {
    max-width: 600px;

    margin: 0;

    color: #8fa5c1;

    font-size: 16px;

    line-height: 1.7;
}
/* =========================================================
   PROJECTS SECTION
   ========================================================= */

.projects-section {
    position: relative;
    padding: 130px 0;
    background: #020817;
    overflow: hidden;
}


/* Subtle background glow */

.projects-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    top: 35%;

    background: radial-gradient(
        circle,
        rgba(25, 154, 230, 0.07) 0%,
        rgba(25, 154, 230, 0.025) 35%,
        transparent 70%
    );

    pointer-events: none;
}


/* Keep content above background */

.projects-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   PROJECT HEADER
   ========================================================= */

.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


/* Eyebrow */

.projects-heading .section-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #29aaf3;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Small line before eyebrow */

.projects-heading .section-eyebrow::before {
    content: "";

    display: inline-block;

    width: 35px;
    height: 1px;

    margin-right: 12px;

    vertical-align: middle;

    background: #29aaf3;
}


/* Main heading */

.projects-heading h2 {
    margin: 0;

    max-width: 700px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(45px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2.5px;

    color: #f5f7fb;
}


.projects-heading h2 span {
    color: #29aaf3;
}


/* View all projects */

.projects-heading .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;

    color: #b4c3d8;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.projects-heading .text-link span {
    color: #29aaf3;

    font-size: 20px;

    transition: transform 0.25s ease;
}


.projects-heading .text-link:hover {
    color: #ffffff;
}


.projects-heading .text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.projects-grid {
    display: grid;

    grid-template-columns: 1.35fr 1fr 1fr;

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   PROJECT CARD
   ========================================================= */

.project-card {
    position: relative;

    min-height: 510px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(42, 111, 159, 0.35);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 37, 64, 0.82),
            rgba(3, 15, 31, 0.95)
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.project-card:hover {
    transform: translateY(-7px);

    border-color: rgba(41, 170, 243, 0.65);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(41, 170, 243, 0.05);
}


/* Featured project */

.project-large {
    min-height: 560px;
}


/* =========================================================
   PROJECT VISUAL / PLACEHOLDER
   ========================================================= */

.project-placeholder {
    position: relative;

    height: 285px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(25, 157, 239, 0.15),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #0b2743,
            #061326
        );

    border-bottom: 1px solid rgba(42, 111, 159, 0.25);

    overflow: hidden;
}


/* Decorative grid */

.project-placeholder::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(41, 170, 243, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(41, 170, 243, 0.06) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}


/* Decorative circle */

.project-placeholder::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(41, 170, 243, 0.25);

    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(41, 170, 243, 0.025),
        0 0 0 70px rgba(41, 170, 243, 0.018);
}


/* Project label */

.project-placeholder span {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(41, 170, 243, 0.55);

    border-radius: 18px;

    background: rgba(5, 20, 38, 0.85);

    color: #29aaf3;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: 2px;

    box-shadow:
        0 0 35px rgba(41, 170, 243, 0.08);
}


/* =========================================================
   NETWORK PROJECT
   ========================================================= */

.project-network {
    background:
        radial-gradient(
            circle at center,
            rgba(30, 120, 255, 0.13),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #0b223c,
            #061325
        );
}


/* =========================================================
   SECURITY PROJECT
   ========================================================= */

.project-security {
    background:
        radial-gradient(
            circle at center,
            rgba(41, 170, 243, 0.12),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #102640,
            #061325
        );
}


/* =========================================================
   PROJECT INFORMATION
   ========================================================= */

.project-info {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 30px;
}


/* Category */

.project-info > span {
    margin-bottom: 13px;

    color: #29aaf3;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Project title */

.project-info h3 {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 26px;

    line-height: 1.25;

    font-weight: 600;

    color: #f5f7fb;
}


/* Project link */

.project-info a {
    display: inline-flex;
    align-items: center;

    margin-top: auto;
    padding-top: 25px;

    color: #a9bdd5;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.project-info a:hover {
    color: #29aaf3;

    transform: translateX(4px);
}


/* =========================================================
   PROJECT CARD NUMBER / ACCENT
   ========================================================= */

.project-card {
    counter-increment: project;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-large {
        grid-column: span 2;
    }

}


@media (max-width: 800px) {

    .projects-section {
        padding: 100px 0;
    }

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 25px;

        margin-bottom: 45px;
    }

    .projects-heading h2 {
        font-size: 52px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large {
        grid-column: auto;
    }

    .project-card,
    .project-large {
        min-height: 480px;
    }

}


@media (max-width: 600px) {

    .projects-section {
        padding: 80px 0;
    }

    .projects-heading .section-eyebrow {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .projects-heading h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .projects-heading .text-link {
        font-size: 14px;
    }

    .project-card,
    .project-large {
        min-height: 440px;

        border-radius: 16px;
    }

    .project-placeholder {
        height: 230px;
    }

    .project-placeholder span {
        width: 85px;
        height: 85px;

        font-size: 17px;
    }

    .project-info {
        padding: 25px;
    }

    .project-info h3 {
        font-size: 22px;
    }

}
/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
    position: relative;

    padding: 70px 0 130px;

    background: #020817;

    overflow: hidden;
}


/* =========================================================
   CTA BOX
   ========================================================= */

.cta-box {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    padding: 80px;

    border: 1px solid rgba(41, 170, 243, 0.35);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(30, 145, 235, 0.12),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #081c32 0%,
            #061326 55%,
            #03101f 100%
        );

    overflow: hidden;
}


/* =========================================================
   CTA BACKGROUND GLOW
   ========================================================= */

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(25, 160, 240, 0.08);

    filter: blur(60px);

    pointer-events: none;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.cta-content {
    position: relative;

    z-index: 5;

    max-width: 760px;
}


/* Eyebrow */

.cta-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    color: #29aaf3;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.cta-eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    margin-right: 12px;

    background: #29aaf3;
}


/* Heading */

.cta-content h2 {
    margin: 0;

    max-width: 750px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(48px, 5.5vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 700;

    color: #f5f7fb;
}


.cta-content h2 span {
    color: #29aaf3;
}


/* Description */

.cta-content p {
    max-width: 650px;

    margin: 25px 0 35px;

    color: #9aabc2;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.cta-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}


.cta-actions .btn-primary,
.cta-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Primary */

.cta-actions .btn-primary {
    background: #2099df;

    color: #ffffff;
}


.cta-actions .btn-primary:hover {
    background: #29aaf3;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(32, 153, 223, 0.25);
}


/* Secondary */

.cta-actions .btn-secondary {
    border: 1px solid rgba(91, 132, 169, 0.35);

    background: rgba(5, 20, 38, 0.55);

    color: #b5c5d9;
}


.cta-actions .btn-secondary:hover {
    border-color: rgba(41, 170, 243, 0.55);

    color: #ffffff;

    transform: translateY(-3px);
}


.cta-actions span {
    color: #29aaf3;

    font-size: 19px;
}


/* =========================================================
   DECORATIVE ORBITS
   ========================================================= */

.cta-orbit {
    position: absolute;

    right: -40px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(41, 170, 243, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


.cta-orbit-one {
    width: 470px;
    height: 470px;
}


.cta-orbit-two {
    width: 330px;
    height: 330px;

    right: 30px;

    border-color: rgba(41, 170, 243, 0.18);
}


/* =========================================================
   CTA NODES
   ========================================================= */

.cta-node {
    position: absolute;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border: 1px solid rgba(41, 170, 243, 0.35);

    border-radius: 16px;

    background: rgba(6, 23, 42, 0.9);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);

    color: #29aaf3;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}


.cta-node-one {
    right: 155px;
    top: 85px;
}


.cta-node-two {
    right: 70px;
    top: 50%;

    transform: translateY(-50%);
}


.cta-node-three {
    right: 155px;
    bottom: 85px;
}


/* =========================================================
   CONNECTING LINES
   ========================================================= */

.cta-box::before {
    content: "";

    position: absolute;

    right: 100px;
    top: 50%;

    width: 330px;
    height: 1px;

    background: rgba(41, 170, 243, 0.14);

    transform: rotate(90deg);

    transform-origin: center;

    pointer-events: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .cta-box {
        padding: 65px;

        min-height: 470px;
    }

    .cta-node-one {
        right: 100px;
    }

    .cta-node-two {
        right: 35px;
    }

    .cta-node-three {
        right: 100px;
    }

}


@media (max-width: 800px) {

    .cta-section {
        padding: 60px 0 100px;
    }

    .cta-box {
        min-height: auto;

        padding: 60px 40px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* Hide decorative nodes on tablet */

    .cta-node,
    .cta-orbit,
    .cta-box::before {
        display: none;
    }

}


@media (max-width: 600px) {

    .cta-section {
        padding: 50px 0 80px;
    }

    .cta-box {
        padding: 45px 25px;

        border-radius: 20px;
    }

    .cta-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .cta-content h2 {
        font-size: 40px;

        line-height: 1.06;

        letter-spacing: -1.5px;
    }

    .cta-content p {
        margin: 20px 0 28px;

        font-size: 15px;

        line-height: 1.6;
    }

    .cta-actions {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
    }

}
/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    position: relative;

    padding: 120px 0 130px;

    background: #020817;

    overflow: hidden;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   CONTACT CONTENT
   ========================================================= */

.contact-content {
    padding-top: 15px;
}


.contact-content .section-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    color: #29aaf3;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.contact-content .section-eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    margin-right: 12px;

    background: #29aaf3;
}


.contact-content h2 {
    margin: 0;

    max-width: 650px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;

    color: #f5f7fb;
}


.contact-content h2 span {
    color: #29aaf3;
}


.contact-content > p {
    max-width: 560px;

    margin: 28px 0 45px;

    color: #91a5bf;

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.contact-detail {
    display: flex;

    align-items: center;

    gap: 18px;
}


.contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(41, 170, 243, 0.25);

    border-radius: 12px;

    background: rgba(9, 31, 55, 0.8);

    color: #29aaf3;

    font-size: 20px;
}


.contact-detail > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.contact-detail span {
    color: #71859f;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.contact-detail a,
.contact-detail strong {
    color: #dce6f2;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;
}


.contact-detail a:hover {
    color: #29aaf3;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-wrapper {
    position: relative;
}


.contact-form-wrapper::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background: rgba(25, 145, 230, 0.08);

    filter: blur(70px);

    pointer-events: none;
}


.contact-form {
    position: relative;

    z-index: 2;

    padding: 42px;

    border: 1px solid rgba(67, 116, 157, 0.28);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 30, 52, 0.95),
            rgba(4, 17, 32, 0.95)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   FORM ROW
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-bottom: 20px;
}


.form-group label {
    color: #b9c9da;

    font-size: 13px;

    font-weight: 600;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(78, 121, 157, 0.28);

    border-radius: 9px;

    outline: none;

    background: rgba(3, 15, 29, 0.75);

    color: #edf4fb;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input,
.form-group select {
    height: 52px;

    padding: 0 15px;
}


.form-group textarea {
    min-height: 135px;

    padding: 15px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #566b82;
}


.form-group select {
    appearance: none;

    cursor: pointer;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(41, 170, 243, 0.7);

    background: rgba(5, 22, 40, 0.9);

    box-shadow:
        0 0 0 3px rgba(41, 170, 243, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    width: 100%;

    min-height: 54px;

    margin-top: 5px;

    border: 0;

    border-radius: 9px;

    background: #2099df;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-submit span {
    color: #ffffff;

    font-size: 19px;
}


.contact-submit:hover {
    background: #29aaf3;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(32, 153, 223, 0.25);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-content {
        max-width: 750px;
    }

}


@media (max-width: 700px) {

    .contact-section {
        padding: 90px 0 100px;
    }

    .contact-content h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .contact-content > p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


@media (max-width: 500px) {

    .contact-section {
        padding: 70px 0 80px;
    }

    .contact-content h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .contact-content .section-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .contact-form {
        padding: 25px 20px;

        border-radius: 16px;
    }

    .contact-detail {
        gap: 14px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    padding: 85px 0 25px;

    background: #010611;

    border-top: 1px solid rgba(74, 117, 151, 0.18);

    overflow: hidden;
}


/* Subtle blue glow */

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(20, 132, 214, 0.08);

    filter: blur(90px);

    pointer-events: none;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    position: relative;

    display: grid;

    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;

    gap: 55px;

    padding-bottom: 65px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
    max-width: 390px;
}


.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 25px;
}


.footer-logo img {
    display: block;

    width: 185px;

    height: auto;

    object-fit: contain;
}


.footer-brand p {
    margin: 0 0 22px;

    color: #7f93aa;

    font-size: 14px;

    line-height: 1.75;
}


.footer-location {
    color: #a8b8c9;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}


.footer-column h3 {
    margin: 0 0 12px;

    color: #f1f5fa;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.3px;
}


.footer-column a {
    color: #7f93aa;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {
    color: #29aaf3;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.footer-contact > a:not(.footer-quote) {
    word-break: break-word;
}


.footer-quote {
    display: inline-flex !important;

    align-items: center;

    gap: 12px;

    margin-top: 10px;

    padding: 11px 16px;

    border: 1px solid rgba(41, 170, 243, 0.35);

    border-radius: 8px;

    color: #dcecff !important;

    background: rgba(18, 75, 116, 0.16);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease !important;
}


.footer-quote span {
    color: #29aaf3;

    font-size: 17px;
}


.footer-quote:hover {
    border-color: rgba(41, 170, 243, 0.7);

    background: rgba(18, 100, 155, 0.25);

    transform: translateY(-2px) !important;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(74, 117, 151, 0.16);
}


.footer-bottom p {
    margin: 0;

    color: #52667c;

    font-size: 12px;

    line-height: 1.6;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-bottom-links a {
    color: #52667c;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-bottom-links a:hover {
    color: #29aaf3;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

}


@media (max-width: 700px) {

    .site-footer {
        padding: 65px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;

        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}


@media (max-width: 500px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo img {
        width: 165px;
    }

    .footer-bottom-links {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}
/* =========================================================
   CONTACT FORM MESSAGES
   ========================================================= */

.form-success {
    margin-bottom: 20px;

    padding: 15px 18px;

    border: 1px solid rgba(34, 197, 94, 0.30);

    border-radius: 10px;

    background: rgba(34, 197, 94, 0.08);

    color: #86efac;

    font-size: 14px;

    line-height: 1.5;
}


.form-errors {
    margin-bottom: 20px;

    padding: 15px 18px;

    border: 1px solid rgba(248, 113, 113, 0.30);

    border-radius: 10px;

    background: rgba(248, 113, 113, 0.08);

    color: #fca5a5;

    font-size: 14px;

    line-height: 1.5;
}


.form-errors strong {
    display: block;

    margin-bottom: 8px;

    color: #fecaca;
}


.form-errors ul {
    margin: 0;
    padding-left: 20px;
}


.form-errors li {
    margin-bottom: 4px;
}
.form-success {
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.08);
    color: #86efac;
    font-size: 15px;
    line-height: 1.6;
}

.form-error {
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    font-size: 15px;
    line-height: 1.6;
}

.form-errors {
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    font-size: 15px;
    line-height: 1.6;
}

.form-errors strong {
    display: block;
    margin-bottom: 8px;
}

.form-errors ul {
    margin: 0;
    padding-left: 20px;
}
/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
    background: #020817;
    color: #f8fafc;
}

/* ---------------------------------------------------------
   Shared About Section
   --------------------------------------------------------- */

.about-page .section {
    position: relative;
    padding: 110px 0;
}

.about-page .container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

/* ---------------------------------------------------------
   Eyebrow
   --------------------------------------------------------- */

.about-page .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;

    color: #19b5fe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-page .section-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #19b5fe;
}

/* ---------------------------------------------------------
   Introduction
   --------------------------------------------------------- */

.about-intro {
    padding-top: 90px !important;
    padding-bottom: 100px !important;
}

.about-intro-content {
    max-width: 1180px;
}

.about-intro-content h1 {
    margin: 0 0 28px;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.about-intro-content h1 span {
    color: #19b5fe;
}

.about-intro-text {
    max-width: 1000px;
}

.about-intro-text p {
    margin: 0 0 14px;

    color: #aeb8c7;
    font-size: 18px;
    line-height: 1.8;
}

/* ---------------------------------------------------------
   Approach
   --------------------------------------------------------- */

.about-approach {
    padding-top: 80px !important;
}

.about-page .section-heading {
    margin-bottom: 55px;
}

.about-page .section-heading h2 {
    max-width: 850px;
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-page .section-heading h2 span {
    color: #19b5fe;
}

/* Approach cards */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.approach-card {
    position: relative;

    min-height: 260px;
    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);

    border-color: rgba(25, 181, 254, 0.45);
    background: rgba(25, 181, 254, 0.045);
}

.approach-number {
    display: block;

    margin-bottom: 45px;

    color: #19b5fe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.approach-card h3 {
    margin: 0 0 12px;

    font-size: 27px;
    line-height: 1.2;
}

.approach-card p {
    max-width: 520px;

    margin: 0;

    color: #9da8b8;
    font-size: 16px;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   Vision & Mission
   --------------------------------------------------------- */

.about-vision-mission {
    padding-top: 100px !important;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vision-card,
.mission-card {
    min-height: 340px;
    padding: 45px;

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.vision-card {
    background: rgba(25, 181, 254, 0.055);
    border-color: rgba(25, 181, 254, 0.25);
}

.mission-card {
    background: rgba(255, 255, 255, 0.025);
}

.vision-card .card-label,
.mission-card .card-label {
    display: block;

    margin-bottom: 70px;

    color: #19b5fe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vision-card h3,
.mission-card h3 {
    margin: 0 0 20px;

    font-size: 34px;
}

.vision-card p,
.mission-card p {
    margin: 0;

    color: #aeb8c7;
    font-size: 17px;
    line-height: 1.8;
}
/* ---------------------------------------------------------
   Team
   --------------------------------------------------------- */

.about-team {
    padding-top: 100px !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25, 181, 254, 0.40);
}

.team-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #07101f;
}

.team-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    margin: 0 0 6px;
    font-size: 23px;
}

.team-designation {
    display: block;

    margin-bottom: 18px;

    color: #19b5fe;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-info p {
    margin: 0;

    color: #9da8b8;
    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 900px) {

    .about-page .container {
        width: min(100% - 40px, 1320px);
    }

    .approach-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-content h1,
    .about-page .section-heading h2 {
        letter-spacing: -1px;
    }
}

@media (max-width: 600px) {

    .about-page .section {
        padding: 75px 0 !important;
    }

    .about-page .container {
        width: calc(100% - 32px);
    }

    .approach-grid,
    .vision-mission-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .approach-card,
    .vision-card,
    .mission-card {
        padding: 28px;
    }

    .approach-card {
        min-height: auto;
    }

    .vision-card,
    .mission-card {
        min-height: 280px;
    }

    .team-grid {
        gap: 16px;
    }
}
/* ---------------------------------------------------------
   About Introduction - Text + Visual
   --------------------------------------------------------- */

.about-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 70px;
}

.about-intro-content {
    max-width: 900px;
}

.about-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 430px;
}

.about-intro-visual img {
    display: block;

    width: 100%;
    max-width: 520px;
    height: auto;

    object-fit: contain;

    opacity: 0.92;

    filter:
        drop-shadow(0 0 35px rgba(25, 181, 254, 0.10));
}
@media (max-width: 900px) {

    .about-intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-visual {
        min-height: 300px;
        order: 2;
    }

    .about-intro-visual img {
        max-width: 430px;
    }
}