/* 
    DNS New - Design System
    Theme: Modern Dark / High Performance Corporate
*/

:root {
    --bg-color: #010414;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-blue: #0066ff;
    --accent-cyan: #00f2ff;
    --accent-glow: rgba(0, 102, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -2;
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

#main-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2rem;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

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

.nav-logo {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.8);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    padding: 12px 28px;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero V2 */
.hero-v2 {
    display: flex;
    min-height: 100vh;
    align-items: center;
    gap: 4rem;
    padding: 8rem 0 4rem;
    position: relative;
    /* Essential for containing the scroll indicator */
}

.hero-left {
    flex: 0 0 45%;
}

.sub-title {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.4);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: clamp(1.75rem, 5.6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ffffff, #88c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-heading span {
    color: var(--accent-cyan);
    -webkit-text-fill-color: var(--accent-cyan);
}

.description {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-view {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.5);
}

.btn-connect {
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-connect:hover {
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

/* Stats */
.stats-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Panels */
.hero-right {
    flex: 1;
    position: relative;
    height: 600px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.hero-image-wrap:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.panel-container {
    display: flex;
    gap: 20px;
    width: 110%;
}

.panel {
    position: relative;
    height: 600px;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    transform: skewX(-10deg);
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.panel:hover {
    flex: 1.5;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.3);
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(20deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.panel:hover::before {
    left: 200%;
    transition: all 0.8s ease-in-out;
}

.panel-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewX(10deg) scale(1.4);
}

.panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.panel:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9), transparent);
}

.panel-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    transform: skewX(10deg);
    text-align: center;
    z-index: 5;
    padding: 0 20px;
}

.panel .panel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.panel:hover .panel-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.8);
}

.panel .panel-icon i {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .scroll-down {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-v2 {
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
        padding-top: 8rem;
        gap: 3rem;
        min-height: auto;
    }

    .hero-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    /* Hide the interactive desktop panel section on tablets/mobile */
    .hero-right {
        display: none;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    /* Stack buttons vertically on tablet/mobile */
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-view,
    .btn-connect {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .split {
        flex-direction: column !important;
        text-align: center;
        gap: 4rem;
    }

    .visual-block {
        width: 100%;
    }

    .glass-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #main-nav {
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(1, 4, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: none;
    }

    .nav-container.active {
        right: 0;
        display: flex;
    }

    .nav-links {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-right {
        display: none;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .panel-container {
        flex-direction: column;
        transform: none !important;
        width: 100%;
    }

    .panel {
        transform: none !important;
        height: 350px;
    }

    .panel-img-wrap,
    .panel-content {
        transform: none !important;
    }
}

.panel h3,
.panel:visited h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.panel p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* General Sections */
.section {
    padding: clamp(4rem, 6vw, 7rem) 0;
}

.section-content {
    max-width: 100%;
    margin: 0 auto;
}

.split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Pushing content to edges */
    gap: 4rem;
}

.contact-info {
    flex: 0 0 45%;
}

.contact-form-container {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-end;
    /* Ensuring form is on the far right */
}

.align-center {
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pill-tag {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    border-radius: 100px;
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    padding-bottom: 2rem;
}

.why-card {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.why-icon i {
    width: 24px;
    height: 24px;
}

.why-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.why-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-startup {
    background: white;
    color: var(--bg-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.btn-startup:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
}

.why-glow-bottom {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.3), transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-cyan);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), transparent);
    z-index: -1;
}

.card-icon {
    width: 60px;
    height: 60px;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

/* Features Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-pill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-pill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-pill-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-pill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Panel Icon Common */
.panel-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

/* Careers Section */
.careers-section {
    padding: 0;
}

.glass-bg-container {
    background: linear-gradient(rgba(1, 4, 20, 0.8), rgba(1, 4, 20, 0.8)), url('../images/managed.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-radius: 100px;
    /* Optional rounded section shape */
    margin: 0 1rem;
}

.careers-promo {
    max-width: 800px;
    margin: 0 auto;
}

.careers-promo p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
}

/* Contact Section */
.contact-details {
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.w-full {
    width: 100%;
}

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
    color: var(--text-primary);
}

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

/* Features Section V4 */
.features-v4 {
    /* background: rgba(2, 6, 23, 0.3); */
}

.features-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card-v4 {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card-v4:hover {
    transform: scale(1.02);
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-header-v4 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-icon-v4 {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.feature-icon-v4 i {
    width: 32px;
    height: 32px;
    z-index: 1;
}

/* Glow Effects */
.glow-blue {
    color: #3b82f6;
}

.glow-blue::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    filter: blur(20px);
    opacity: 0.15;
}

.glow-cyan {
    color: #00f2ff;
}

.glow-cyan::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00f2ff;
    filter: blur(20px);
    opacity: 0.15;
}

.feature-titles-v4 {
    display: flex;
    flex-direction: column;
}

.feat-top-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feat-main-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.feature-body-v4 h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-body-v4 p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-v4 {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════ */
/* ABOUT PAGE — Vision & Mission Cards            */
/* ═══════════════════════════════════════════════ */
.about-vm-section {
    position: relative;
    overflow: hidden;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.vm-card {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.vm-vision::before {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), transparent 60%);
}

.vm-mission::before {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), transparent 60%);
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.vm-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vm-vision .vm-icon-wrap {
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--accent-blue);
}

.vm-mission .vm-icon-wrap {
    background: rgba(0, 242, 255, 0.12);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--accent-cyan);
}

.vm-icon-wrap i {
    width: 32px;
    height: 32px;
}

.vm-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.vm-vision .vm-label {
    color: var(--accent-blue);
}

.vm-mission .vm-label {
    color: var(--accent-cyan);
}

.vm-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.vm-accent-line {
    width: 60px;
    height: 3px;
    border-radius: 3px;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.vm-vision .vm-accent-line {
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.vm-mission .vm-accent-line {
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 2.5rem 2rem;
    }
}

/* ═══════════════════════════════════════════════ */
/* ABOUT PAGE — Global Presence Section           */
/* ═══════════════════════════════════════════════ */
.about-global-section {
    position: relative;
}

.about-global-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.global-countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.country-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.country-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.1);
}

.country-card:hover::after {
    opacity: 1;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.country-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.country-card span {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* First card (UK HQ) gets a special highlight */
.country-card:first-child {
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.05);
}

.country-card:first-child::after {
    opacity: 1;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

@media (max-width: 1024px) {
    .global-countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .global-countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .country-card {
        padding: 2rem 1rem;
    }

    .country-flag {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .global-countries-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════ */
/* CONSULTING PAGE — Technology Areas Grid        */
/* ═══════════════════════════════════════════════ */
.tech-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.tech-area-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tech-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-area-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.1);
}

.tech-area-card:hover::before {
    opacity: 1;
}

.tech-area-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid;
    transition: var(--transition-smooth);
}

.tech-area-icon i {
    width: 28px;
    height: 28px;
}

.tech-area-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.tech-area-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .tech-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tech-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════ */
/* MANAGED SERVICES — Delivery Approach Steps     */
/* ═══════════════════════════════════════════════ */
.delivery-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.delivery-step {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.delivery-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.delivery-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
}

.delivery-step:hover::before {
    opacity: 1;
}

.delivery-step-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.delivery-step:hover .delivery-step-number {
    opacity: 0.8;
}

.delivery-step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.delivery-step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .delivery-approach-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════ */
/* RECRUITMENT — Hero Stats Bar                   */
/* ═══════════════════════════════════════════════ */
.stats-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: fit-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
}

.stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}

/* ═══════════════════════════════════════════════ */
/* LEGAL / POLICY PAGES                           */
/* ═══════════════════════════════════════════════ */
.legal-section {
    padding-top: 2rem;
}

.legal-content {
    max-width: 1400px;
    margin: 0 auto;
}

.legal-block {
    position: relative;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.legal-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}

.legal-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-block p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-block ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-block ul li i {
    width: 16px;
    height: 16px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.legal-contact-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.legal-contact-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.08);
}

.legal-contact-item i {
    width: 22px;
    height: 22px;
    color: var(--accent-cyan);
}

.legal-contact-item span {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }

    .legal-contact-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-block h2 {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════ */
/* CAREERS — Culture Grid                         */
/* ═══════════════════════════════════════════════ */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.culture-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.culture-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.1);
}

.culture-card:hover::after {
    opacity: 1;
}

.culture-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.culture-icon i {
    width: 28px;
    height: 28px;
}

.culture-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.culture-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ═══════════════════════════════════════════════ */
/* RECRUITMENT — Hiring Process Timeline          */
/* ═══════════════════════════════════════════════ */
.hiring-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
}

.timeline-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--accent-cyan), rgba(0, 242, 255, 0.1));
    margin: 4px 0;
}

.timeline-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    flex: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-card:hover {
    transform: translateX(8px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-icon {
    margin-bottom: 1rem;
}

.timeline-icon i {
    width: 28px;
    height: 28px;
}

.timeline-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.timeline-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .timeline-step {
        gap: 1rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .timeline-marker {
        width: 40px;
    }

    .timeline-num {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════ */
/* RECRUITMENT — Skill Coverage Cloud             */
/* ═══════════════════════════════════════════════ */
.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.skill-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid;
    transition: var(--transition-smooth);
    cursor: default;
}

.skill-pill i {
    width: 20px;
    height: 20px;
}

.skill-pill:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Color Variants */
.skill-pill-primary {
    background: rgba(0, 242, 255, 0.06);
    border-color: rgba(0, 242, 255, 0.3);
    color: var(--accent-cyan);
}

.skill-pill-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
    background: rgba(0, 242, 255, 0.12);
}

.skill-pill-blue {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--accent-blue);
}

.skill-pill-blue:hover {
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
    background: rgba(0, 102, 255, 0.12);
}

.skill-pill-cyan {
    background: rgba(0, 242, 255, 0.06);
    border-color: rgba(0, 242, 255, 0.3);
    color: var(--accent-cyan);
}

.skill-pill-cyan:hover {
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
    background: rgba(0, 242, 255, 0.12);
}

.skill-pill-purple {
    background: rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.skill-pill-purple:hover {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
    background: rgba(168, 85, 247, 0.12);
}

.skill-pill-orange {
    background: rgba(249, 115, 22, 0.06);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.skill-pill-orange:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
    background: rgba(249, 115, 22, 0.12);
}

.skill-pill-red {
    background: rgba(244, 63, 94, 0.06);
    border-color: rgba(244, 63, 94, 0.3);
    color: #f43f5e;
}

.skill-pill-red:hover {
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.15);
    background: rgba(244, 63, 94, 0.12);
}

.skill-pill-green {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.skill-pill-green:hover {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    background: rgba(16, 185, 129, 0.12);
}

@media (max-width: 600px) {
    .skill-pill {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Site Footer V2 */
.site-footer {
    padding: 2rem 0 0;
    background: #020617;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 2rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-address p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-links-v2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-v2 a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links-v2 a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}


.footer-bottom-v2 {
    /* background: #010414; */
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-contact-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 2rem;
}

.footer-social-inline {
    display: flex;
    gap: 1.5rem;
}

.footer-social-inline a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-social-inline a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-social-inline i,
.footer-social-inline svg {
    width: 20px;
    height: 20px;
}

.footer-info-inline {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.footer-info-inline span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .footer-info-inline span {
        white-space: normal;
    }
}

.footer-copyright-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1 !important;
    /* Lighter gray */
    font-size: 0.85rem;
}

.bottom-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {

    .footer-contact-strip,
    .footer-copyright-strip {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }

    .footer-info-inline {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        text-align: center;
    }

    .footer-info-inline span {
        justify-content: center;
        max-width: 350px;
    }
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-phone i {
    color: var(--accent-cyan);
}

@media (max-width: 1200px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid-v2 {
        grid-template-columns: 1fr;
    }

    .footer-contact-strip,
    .footer-copyright-strip {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════ */
/* UTILITIES                                       */
/* ═══════════════════════════════════════════════ */
.hidden {
    display: none !important;
}

/* ═══════════════════════════════════════════════ */
/* COOKIE CONSENT BANNER                           */
/* ═══════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 900px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 242, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cookie-text a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.5);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        padding: 1.2rem;
        border-radius: 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-actions button {
        flex: 1;
    }
}

/* ═══════════════════════════════════════════════ */
/* DROPDOWN MENU                                   */
/* ═══════════════════════════════════════════════ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* ═══════════════════════════════════════════════ */
/* MEGA MENU                                       */
/* ═══════════════════════════════════════════════ */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 0 2rem;
}

.mega-column h4 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.mega-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-cyan);
}

.mega-column ul {
    list-style: none;
    padding: 0;
}

.mega-column ul li {
    margin-bottom: 0.8rem;
}

.mega-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: block;
}

.mega-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .mega-menu {
        position: static;
        padding: 1rem 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        background: transparent;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .mega-column h4 {
        margin-bottom: 1rem;
    }
}

/* Service Pages Global Styles */
.faq-item {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .chevron-icon {
    transform: rotate(180deg);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.step-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.benefit-tag:hover {
    border-color: var(--accent-cyan);
    color: #fff;
    transform: translateY(-3px);
}

.industry-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent-cyan);
}

.industry-card i {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.footer-info-inline i,
.footer-info-inline svg {
    color: var(--accent-cyan);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    font-size: 1.2rem;
}

.footer-info-inline .material-symbols-outlined {
    color: var(--accent-cyan);
    margin-right: 0.5rem;
}

/* ----------------------------------------------- */
/* GLOBAL RESPONSIVENESS OVERRIDES               */
/* ----------------------------------------------- */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }

    .hero-v2 {
        padding-top: 120px;
        min-height: auto !important;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .split {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-v2 {
        padding-top: 100px;
    }

    .section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .benefit-tag {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .industry-card {
        width: 100%;
    }

    .step-card {
        padding: 2rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* Utility for benefits */
.benefits-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.benefit-tag i {
    color: var(--accent-cyan);
    width: 18px;
    height: 18px;
}

.benefit-tag:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent-cyan);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .main-heading {
        font-size: 2.5rem !important;
    }

    .description {
        font-size: 1rem;
    }

    .cta-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-view,
    .btn-connect {
        width: 100%;
    }

    .split {
        flex-direction: column !important;
        text-align: center;
    }

    .visual-block {
        width: 100%;
    }

    .text-block {
        width: 100%;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .hero-image-wrap {
        height: 300px !important;
    }
}