/* =========================================================
   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 {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #07101f;
    padding: 18px;
}
.team-photo img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    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;
}
/* Team - Responsive */
@media (max-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-info {
        padding: 24px;
    }
}
@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;
    }
}
/* =========================================================
   SERVICES PAGE
   ========================================================= */
/* ---------------------------------------------------------
   Services Introduction
   --------------------------------------------------------- */
.services-intro {
    padding-top: 110px !important;
    padding-bottom: 100px !important;
}
.services-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 70px;
}
.services-intro-content {
    max-width: 850px;
}
.services-intro-content h1 {
    margin: 0 0 28px;
    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2px;
}
.services-intro-content h1 span {
    color: #19b5fe;
}
.services-intro-content p {
    max-width: 780px;
    margin: 0 0 16px;
    color: #aeb8c7;
    font-size: 18px;
    line-height: 1.8;
}
/* ---------------------------------------------------------
   Services Introduction Visual
   --------------------------------------------------------- */
.services-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}
.services-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));
}
/* ---------------------------------------------------------
   Services List
   --------------------------------------------------------- */
.services-list {
    padding-top: 90px !important;
    padding-bottom: 120px !important;
}
.services-list .section-heading {
    margin-bottom: 55px;
}
.services-list .section-heading h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
}
.services-list .section-heading h2 span {
    color: #19b5fe;
}
/* ---------------------------------------------------------
   Services Grid
   --------------------------------------------------------- */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
/* ---------------------------------------------------------
   Service Card
   --------------------------------------------------------- */
.service-page-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.025);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}
.service-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 181, 254, 0.45);
    background: rgba(25, 181, 254, 0.035);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20),
        0 0 30px rgba(25, 181, 254, 0.06);
}
/* ---------------------------------------------------------
   Service Image
   --------------------------------------------------------- */
.service-page-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #07101f;
}
.service-page-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(2, 8, 23, 0.05),
            rgba(2, 8, 23, 0.45)
        );
    pointer-events: none;
}
.service-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}
.service-page-card:hover .service-page-image img {
    transform: scale(1.05);
}
/* ---------------------------------------------------------
   Service Number
   --------------------------------------------------------- */
.service-page-number {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(25, 181, 254, 0.45);
    background: rgba(2, 8, 23, 0.78);
    color: #19b5fe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}
/* ---------------------------------------------------------
   Service Content
   --------------------------------------------------------- */
.service-page-content {
    padding: 32px 32px 36px;
}
.service-page-content h3 {
    margin: 0 0 15px;
    color: #f5f8ff;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 600;
}
.service-page-content p {
    max-width: 650px;
    margin: 0;
    color: #9da8b8;
    font-size: 16px;
    line-height: 1.75;
}
/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */
@media (max-width: 1000px) {
    .services-intro-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .services-intro-content {
        max-width: 900px;
    }
    .services-intro-visual {
        min-height: 320px;
    }
    .services-intro-visual img {
        max-width: 430px;
    }
    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}
/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */
@media (max-width: 650px) {
    .services-intro {
        padding-top: 75px !important;
        padding-bottom: 70px !important;
    }
    .services-list {
        padding-top: 70px !important;
        padding-bottom: 80px !important;
    }
    .services-intro-content h1,
    .services-list .section-heading h2 {
        letter-spacing: -1px;
    }
    .services-intro-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    .services-intro-visual {
        min-height: 250px;
    }
    .services-intro-visual img {
        max-width: 350px;
    }
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-page-image {
        height: 230px;
    }
    .service-page-content {
        padding: 26px 24px 30px;
    }
    .service-page-content h3 {
        font-size: 23px;
    }
    .service-page-content p {
        font-size: 15px;
    }
}
/* =========================================================
   PROJECTS PAGE
   ========================================================= */
/* ---------------------------------------------------------
   Projects Introduction
   --------------------------------------------------------- */
.projects-intro {
    padding-top: 120px;
    padding-bottom: 80px;
}
.projects-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 80px;
    align-items: end;
}
.projects-intro-content {
    max-width: 850px;
}
.projects-intro-content h1 {
    margin: 18px 0 25px;
    max-width: 850px;
}
.projects-intro-content h1 span {
    color: #19b5fe;
}
.projects-intro-content p {
    max-width: 760px;
    margin: 0 0 16px;
    color: #9da8b8;
    font-size: 16px;
    line-height: 1.8;
}
.projects-intro-number {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.projects-intro-number span {
    display: block;
    color: #19b5fe;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
}
.projects-intro-number small {
    display: block;
    margin-top: 10px;
    color: #7f8da0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
/* ---------------------------------------------------------
   Projects Portfolio
   --------------------------------------------------------- */
.projects-list {
    padding-top: 80px;
}
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 55px;
}
/* ---------------------------------------------------------
   Project Card
   --------------------------------------------------------- */
.project-page-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,
        background 0.3s ease;
}
.project-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 181, 254, 0.45);
    background: rgba(255, 255, 255, 0.035);
}
/* ---------------------------------------------------------
   Project Image
   --------------------------------------------------------- */
.project-page-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #07101f;
}
.project-page-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.project-page-card:hover .project-page-image img {
    transform: scale(1.04);
}
/* Project Number */
.project-page-number {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(5, 12, 22, 0.82);
    color: #19b5fe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}
/* ---------------------------------------------------------
   Project Content
   --------------------------------------------------------- */
.project-page-content {
    padding: 30px;
}
.project-page-category {
    margin-bottom: 10px;
    color: #19b5fe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.project-page-content h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
}
.project-page-content p {
    margin: 0;
    color: #9da8b8;
    font-size: 15px;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   View Project Link
   --------------------------------------------------------- */
.project-page-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.project-page-link span {
    color: #19b5fe;
    transition: transform 0.2s ease;
}
.project-page-link:hover {
    color: #19b5fe;
}
.project-page-link:hover span {
    transform: translateX(5px);
}
/* ---------------------------------------------------------
   Empty Projects State
   --------------------------------------------------------- */
.projects-empty {
    margin-top: 55px;
    padding: 80px 40px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
}
.projects-empty-number {
    display: block;
    margin-bottom: 20px;
    color: #19b5fe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}
.projects-empty h2 {
    margin: 0 0 14px;
    color: #ffffff;
}
.projects-empty p {
    max-width: 550px;
    margin: 0 auto;
    color: #9da8b8;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   Projects CTA
   --------------------------------------------------------- */
.projects-cta {
    padding-top: 100px;
    padding-bottom: 120px;
}
.projects-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border: 1px solid rgba(25, 181, 254, 0.20);
    background:
        linear-gradient(
            135deg,
            rgba(25, 181, 254, 0.06),
            rgba(255, 255, 255, 0.02)
        );
}
.projects-cta-inner h2 {
    margin: 12px 0 15px;
}
.projects-cta-inner h2 span {
    color: #19b5fe;
}
.projects-cta-inner p {
    max-width: 650px;
    margin: 0;
    color: #9da8b8;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   Projects Responsive
   --------------------------------------------------------- */
@media (max-width: 900px) {
    .projects-intro {
        padding-top: 90px;
    }
    .projects-intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .projects-intro-number {
        padding-left: 0;
        padding-top: 25px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .projects-page-grid {
        grid-template-columns: 1fr;
    }
    .projects-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 40px;
    }
}
@media (max-width: 600px) {
    .projects-intro {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .projects-list {
        padding-top: 50px;
    }
    .projects-page-grid {
        gap: 22px;
        margin-top: 40px;
    }
    .project-page-content {
        padding: 24px;
    }
    .project-page-content h3 {
        font-size: 22px;
    }
    .projects-empty {
        padding: 60px 25px;
    }
    .projects-cta {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .projects-cta-inner {
        padding: 35px 25px;
    }
}
/* =========================================================
   PROJECT DETAIL PAGE
   ========================================================= */
.project-detail-page {
    width: 100%;
    overflow: hidden;
}
.project-detail-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}
/* ---------------------------------------------------------
   BACK LINK
   --------------------------------------------------------- */
.project-back-row {
    padding: 40px 0 25px;
}
.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #08a9ff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.project-back-link:hover {
    color: #ffffff;
    transform: translateX(-3px);
}
.project-back-link span {
    font-size: 20px;
}
/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */
.project-detail-hero {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(20, 170, 255, 0.25);
    background: #07111d;
}
.project-hero-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}
.project-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */
.project-detail-intro {
    padding: 90px 0 80px;
}
.project-category,
.project-section-label {
    margin-bottom: 18px;
    color: #08a9ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.project-detail-intro h1 {
    max-width: 1000px;
    margin: 0 0 35px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 700;
}
.project-description {
    max-width: 950px;
    color: #9bb4ce;
    font-size: 19px;
    line-height: 1.9;
}
/* ---------------------------------------------------------
   GALLERY SECTION
   --------------------------------------------------------- */
.project-gallery-section {
    padding: 70px 0 100px;
    background: #050d17;
}
.project-gallery-section h2 {
    margin: 0 0 40px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
}
/* ---------------------------------------------------------
   CAROUSEL
   --------------------------------------------------------- */
.project-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #020811;
    border: 1px solid rgba(20, 170, 255, 0.25);
}
.project-carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.project-carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}
.project-carousel-slide.active {
    opacity: 1;
    visibility: visible;
}
.project-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020811;
}
/* ---------------------------------------------------------
   ARROWS
   --------------------------------------------------------- */
.project-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(2, 8, 17, 0.75);
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}
.project-carousel-arrow:hover {
    background: #08a9ff;
    border-color: #08a9ff;
    color: #ffffff;
}
.project-carousel-prev {
    left: 20px;
}
.project-carousel-next {
    right: 20px;
}
/* ---------------------------------------------------------
   COUNTER
   --------------------------------------------------------- */
.project-carousel-counter {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 5;
    padding: 8px 14px;
    background: rgba(2, 8, 17, 0.8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
/* ---------------------------------------------------------
   THUMBNAILS
   --------------------------------------------------------- */
.project-carousel-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}
.project-thumbnail {
    position: relative;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 2px solid transparent;
    background: #020811;
    cursor: pointer;
}
.project-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: all 0.25s ease;
}
.project-thumbnail:hover img {
    opacity: 0.9;
}
.project-thumbnail.active {
    border-color: #08a9ff;
}
.project-thumbnail.active img {
    opacity: 1;
}
/* ---------------------------------------------------------
   BOTTOM
   --------------------------------------------------------- */
.project-detail-bottom {
    padding: 70px 0 100px;
}
.project-view-all {
    display: inline-flex;
    align-items: center;
    padding: 18px 28px;
    border: 1px solid rgba(8, 169, 255, 0.45);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.project-view-all:hover {
    background: #08a9ff;
    border-color: #08a9ff;
    color: #ffffff;
}
/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */
@media (max-width: 900px) {
    .project-detail-intro {
        padding: 65px 0;
    }
    .project-description {
        font-size: 17px;
        line-height: 1.75;
    }
    .project-carousel-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */
@media (max-width: 600px) {
    .project-detail-container,
    .project-detail-hero {
        width: min(100% - 24px, 1200px);
    }
    .project-back-row {
        padding: 25px 0 20px;
    }
    .project-detail-intro {
        padding: 50px 0;
    }
    .project-detail-intro h1 {
        font-size: 40px;
    }
    .project-description {
        font-size: 16px;
        line-height: 1.7;
    }
    .project-gallery-section {
        padding: 50px 0 70px;
    }
    .project-gallery-section h2 {
        font-size: 40px;
    }
    .project-carousel-track {
        aspect-ratio: 4 / 3;
    }
    .project-carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .project-carousel-prev {
        left: 10px;
    }
    .project-carousel-next {
        right: 10px;
    }
    .project-carousel-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}
.project-short-description {
    max-width: 1100px;
    font-size: 15px;
    line-height: 1.8;
}
.project-long-description {
    max-width: 1100px;
    font-size: 15px;
    line-height: 1.9;
}
/* =========================================================
   PRICING PAGE
   ========================================================= */
/* ---------------------------------------------------------
   INTRO
   --------------------------------------------------------- */
.pricing-intro {
    padding-top: 120px;
    padding-bottom: 80px;
}
.pricing-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 80px;
    align-items: end;
}
.pricing-intro-content {
    max-width: 850px;
}
.pricing-intro-content h1 {
    margin: 18px 0 25px;
    max-width: 850px;
}
.pricing-intro-content h1 span {
    color: #19b5fe;
}
.pricing-intro-content p {
    max-width: 760px;
    margin: 0;
    color: #9da8b8;
    font-size: 16px;
    line-height: 1.8;
}
.pricing-intro-mark {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-intro-mark span {
    display: block;
    color: #19b5fe;
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
}
.pricing-intro-mark small {
    display: block;
    margin-top: 10px;
    color: #7f8da0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
/* ---------------------------------------------------------
   PRICING SECTION
   --------------------------------------------------------- */
.pricing-section {
    padding: 90px 0;
}
.pricing-section-alt {
    background: rgba(255, 255, 255, 0.015);
}
.pricing-section-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.pricing-section-heading h2 {
    margin: 15px 0 15px;
}
.pricing-section-heading p {
    max-width: 700px;
    margin: 0;
    color: #9da8b8;
    line-height: 1.7;
}
.pricing-unit-note {
    display: inline-block;
    margin-top: 15px;
    color: #19b5fe;
    font-size: 13px;
    font-weight: 600;
}
/* ---------------------------------------------------------
   PRICING GRID
   --------------------------------------------------------- */
.pricing-grid {
    display: grid;
    gap: 25px;
}
.pricing-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* ---------------------------------------------------------
   PRICING CARD
   --------------------------------------------------------- */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 35px;
    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;
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(25, 181, 254, 0.40);
    background: rgba(255, 255, 255, 0.035);
}
.pricing-card-featured {
    border-color: rgba(25, 181, 254, 0.45);
    background: rgba(25, 181, 254, 0.035);
}
.pricing-card-number {
    display: block;
    margin-bottom: 25px;
    color: #19b5fe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.pricing-card h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 27px;
}
.pricing-card-description {
    margin: 0;
    color: #9da8b8;
    font-size: 15px;
    line-height: 1.7;
}
.pricing-card-top {
    flex: 1;
}
/* ---------------------------------------------------------
   POPULAR LABEL
   --------------------------------------------------------- */
.pricing-popular {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 15px;
    background: #19b5fe;
    color: #03101c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
/* ---------------------------------------------------------
   PRICE
   --------------------------------------------------------- */
.pricing-price {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.pricing-price small {
    display: block;
    margin-bottom: 8px;
    color: #7f8da0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.pricing-price strong {
    display: block;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.1;
}
.pricing-price small:last-child {
    margin-top: 8px;
    margin-bottom: 0;
    color: #19b5fe;
}
/* ---------------------------------------------------------
   CARD LINK
   --------------------------------------------------------- */
.pricing-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.pricing-card-link span {
    color: #19b5fe;
    transition: transform 0.2s ease;
}
.pricing-card-link:hover {
    color: #19b5fe;
}
.pricing-card-link:hover span {
    transform: translateX(5px);
}
/* ---------------------------------------------------------
   CUSTOM SOFTWARE CARD
   --------------------------------------------------------- */
.pricing-custom-card {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border: 1px solid rgba(25, 181, 254, 0.30);
    background:
        linear-gradient(
            135deg,
            rgba(25, 181, 254, 0.06),
            rgba(255, 255, 255, 0.02)
        );
}
.pricing-custom-number {
    color: #19b5fe;
    font-size: 45px;
    font-weight: 700;
}
.pricing-custom-label {
    display: block;
    margin-bottom: 8px;
    color: #7f8da0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.pricing-custom-content strong {
    display: block;
    color: #ffffff;
    font-size: 38px;
}
.pricing-custom-content p {
    max-width: 650px;
    margin: 10px 0 0;
    color: #9da8b8;
    line-height: 1.7;
}
.pricing-custom-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border: 1px solid rgba(25, 181, 254, 0.45);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.pricing-custom-button span {
    color: #19b5fe;
}
.pricing-custom-button:hover {
    background: #19b5fe;
    border-color: #19b5fe;
    color: #03101c;
}
/* ---------------------------------------------------------
   PRICING NOTE
   --------------------------------------------------------- */
.pricing-note-section {
    padding: 30px 0 80px;
}
.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}
.pricing-note-icon {
    color: #19b5fe;
    font-size: 18px;
    font-weight: 700;
}
.pricing-note p {
    margin: 0;
    color: #7f8da0;
    font-size: 13px;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.pricing-cta {
    padding-top: 50px;
    padding-bottom: 120px;
}
.pricing-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border: 1px solid rgba(25, 181, 254, 0.20);
    background:
        linear-gradient(
            135deg,
            rgba(25, 181, 254, 0.06),
            rgba(255, 255, 255, 0.02)
        );
}
.pricing-cta-inner h2 {
    margin: 12px 0 15px;
}
.pricing-cta-inner h2 span {
    color: #19b5fe;
}
.pricing-cta-inner p {
    max-width: 650px;
    margin: 0;
    color: #9da8b8;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 900px) {
    .pricing-intro {
        padding-top: 90px;
    }
    .pricing-intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-intro-mark {
        padding-left: 0;
        padding-top: 25px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-height: 390px;
    }
    .pricing-custom-card {
        grid-template-columns: 70px 1fr;
    }
    .pricing-custom-button {
        grid-column: 2;
        width: fit-content;
    }
    .pricing-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 40px;
    }
}
@media (max-width: 600px) {
    .pricing-intro {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .pricing-section {
        padding: 65px 0;
    }
    .pricing-card {
        padding: 28px;
        min-height: 370px;
    }
    .pricing-custom-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }
    .pricing-custom-button {
        grid-column: auto;
    }
    .pricing-custom-number {
        font-size: 35px;
    }
    .pricing-custom-content strong {
        font-size: 32px;
    }
    .pricing-note-section {
        padding-bottom: 60px;
    }
    .pricing-cta {
        padding-bottom: 80px;
    }
    .pricing-cta-inner {
        padding: 35px 25px;
    }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */
/* ---------------------------------------------------------
   CONTACT HERO
   --------------------------------------------------------- */
.contact-page-hero {
    padding-top: 125px;
    padding-bottom: 0;
}
.contact-page-hero-content {
    max-width: 850px;
    padding-bottom: 55px;
}
.contact-page-hero-content h1 {
    margin: 18px 0 25px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.05;
}
.contact-page-hero-content h1 span {
    color: var(--sky-blue);
}
.contact-page-hero-content p {
    max-width: 720px;
    margin: 0;
    color: var(--sky-muted);
    font-size: 17px;
    line-height: 1.8;
}
/* ---------------------------------------------------------
   MAP
   --------------------------------------------------------- */
.contact-map-wrapper {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--sky-border);
    border-bottom: 1px solid var(--sky-border);
    background: #07111f;
}
.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(25%) contrast(105%);
}
/* ---------------------------------------------------------
   CONTACT MAIN SECTION
   --------------------------------------------------------- */
.contact-page-section {
    padding-top: 110px;
    padding-bottom: 110px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 90px;
    align-items: start;
}
/* ---------------------------------------------------------
   CONTACT INFORMATION
   --------------------------------------------------------- */
.contact-page-info h2,
.contact-form-heading h2 {
    margin: 15px 0 20px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
}
.contact-page-info h2 span,
.contact-form-heading h2 span {
    color: var(--sky-blue);
}
.contact-page-intro {
    max-width: 520px;
    margin-bottom: 50px;
    color: var(--sky-muted);
    font-size: 16px;
    line-height: 1.8;
}
/* ---------------------------------------------------------
   CONTACT INFO ITEM
   --------------------------------------------------------- */
.contact-info-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid var(--sky-border);
}
.contact-info-item:last-child {
    border-bottom: 1px solid var(--sky-border);
}
.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(56, 189, 248, 0.30);
    color: var(--sky-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.contact-info-label {
    display: block;
    margin-bottom: 6px;
    color: var(--sky-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}
.contact-info-item h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 18px;
}
.contact-info-item p {
    margin: 0;
    color: var(--sky-muted);
    font-size: 15px;
    line-height: 1.7;
}
.contact-info-item a {
    color: var(--sky-muted);
    transition: color var(--transition);
}
.contact-info-item a:hover {
    color: var(--sky-blue);
}
/* ---------------------------------------------------------
   FORM WRAPPER
   --------------------------------------------------------- */
.contact-page-form-wrapper {
    padding: 45px;
    border: 1px solid var(--sky-border);
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.05),
            rgba(15, 23, 42, 0.45)
        );
}
.contact-form-heading {
    margin-bottom: 35px;
}
.contact-form-heading p {
    max-width: 600px;
    margin: 0;
    color: var(--sky-muted);
    font-size: 15px;
    line-height: 1.7;
}
/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */
.contact-page-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.contact-form-full {
    grid-column: 1 / -1;
}
.contact-form-group label {
    color: #dbe7f3;
    font-size: 13px;
    font-weight: 600;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(2, 6, 23, 0.65);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.contact-form-group input {
    height: 52px;
}
.contact-form-group textarea {
    min-height: 170px;
    resize: vertical;
    line-height: 1.7;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #60748a;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--sky-blue);
    box-shadow:
        0 0 0 3px rgba(56, 189, 248, 0.08);
}
/* ---------------------------------------------------------
   FORM ACTION
   --------------------------------------------------------- */
.contact-form-action {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    padding-top: 8px;
}
/* ---------------------------------------------------------
   SUCCESS / ERROR
   --------------------------------------------------------- */
.contact-form-success,
.contact-form-error {
    margin-bottom: 25px;
    padding: 16px 18px;
    border: 1px solid var(--sky-border);
    font-size: 14px;
    line-height: 1.6;
}
.contact-form-success {
    border-color: rgba(34, 197, 94, 0.30);
    background: rgba(34, 197, 94, 0.06);
    color: #86efac;
}
.contact-form-error {
    border-color: rgba(239, 68, 68, 0.30);
    background: rgba(239, 68, 68, 0.06);
    color: #fca5a5;
}
.contact-form-error strong {
    color: #ffffff;
}
.contact-form-error ul {
    margin: 8px 0 0 20px;
}
/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.contact-page-cta {
    padding-top: 40px;
    padding-bottom: 120px;
}
.contact-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border: 1px solid rgba(56, 189, 248, 0.20);
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.07),
            rgba(15, 23, 42, 0.25)
        );
}
.contact-page-cta-inner h2 {
    margin: 12px 0 0;
}
.contact-page-cta-inner h2 span {
    color: var(--sky-blue);
}
/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 900px) {
    .contact-page-hero {
        padding-top: 100px;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-page-form-wrapper {
        padding: 35px;
    }
    .contact-page-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 40px;
    }
}
@media (max-width: 600px) {
    .contact-page-hero {
        padding-top: 90px;
    }
    .contact-page-hero-content {
        padding-bottom: 40px;
    }
    .contact-page-hero-content h1 {
        font-size: 42px;
    }
    .contact-map-wrapper iframe {
        height: 350px;
    }
    .contact-page-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .contact-page-form {
        grid-template-columns: 1fr;
    }
    .contact-form-full,
    .contact-form-action {
        grid-column: auto;
    }
    .contact-page-form-wrapper {
        padding: 25px;
    }
    .contact-page-cta {
        padding-bottom: 80px;
    }
    .contact-page-cta-inner {
        padding: 35px 25px;
    }
}