/* 
   Sultify Tech Innovations - Design System v2.0
   Theme: Digital Glass & Steel (Refined)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    /* Color System */
    --color-primary: #0a192f;
    /* Deep Midnight Blue */
    --color-primary-light: #112240;
    /* Lighter Blue for Cards */
    --color-secondary: #64ffda;
    /* Electric Cyan */
    --color-secondary-dim: rgba(100, 255, 218, 0.15);
    --color-accent: #ffd700;
    /* Royal Gold */
    --color-bg: #0a192f;
    --color-text-main: #e6f1ff;
    --color-text-muted: #8892b0;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Slightly more visible border */
    .mobile-menu-overlay {
        display: none;
    }

    /* Hide by default on desktop */

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    --color-white: #ffffff;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Smooth anti-aliased fonts for deep tech look */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #1d2d50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Global Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Force dark inputs */
input,
select,
textarea {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: var(--color-text-main) !important;
    border: 1px solid var(--color-border) !important;
    backdrop-filter: blur(5px);
}

/* Fix Autocomplete background in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--color-primary-light) inset !important;
    -webkit-text-fill-color: white !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Fix for absolute positioned elements popping out */
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* Tighter tracking for headlines */
}

h1 {
    font-size: 4.5rem;
    /* Larger hero */
    letter-spacing: -2px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #eee 0%, #8892b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 65ch;
    line-height: 1.8;
}

.highlight {
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: inherit;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    /* Contain effects */
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}



.align-center {
    align-items: center;
}

/* Specific Grid Layouts (Replacing Inline Styles) */
.grid-contact {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
}

.grid-about {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.grid-footer {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    padding-top: 60px;
}

.system-status-footer {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--color-secondary);
    opacity: 0.7;
    background: rgba(100, 255, 218, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 5px var(--color-secondary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-admin {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media(max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-contact,
    .grid-about,
    .grid-footer,
    .grid-admin {
        grid-template-columns: 1fr;
        gap: 30px;
        /* Unified gap for mobile */
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section {
        padding: 80px 0;
    }
}

/* Utilities */
.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* Components: Buttons (Deep Tech Polish) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 4px;
    /* Techy, slightly sharp edges */
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Primary Outline Button */
.btn-primary {
    background: transparent;
    border: 1px solid rgba(100, 255, 218, 0.5);
    color: var(--color-secondary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(100, 255, 218, 0.1);
    transition: transform 0.4s ease;
    z-index: -1;
    transform: skewX(-20deg);
}

.btn-primary:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.15);
    background: transparent;
}

.btn-primary:hover::before {
    transform: skewX(-20deg) translateX(100%);
    /* Shine pass through */
    left: 100%;
    transition: left 0.5s;
}

/* Filled Button (CTA) */
.btn-filled {
    background: rgba(100, 255, 218, 0.1);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.1);
}

.btn-filled:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.4);
    transform: translateY(-2px);
}

/* Components: Glass Cards */
/* Components: Glass Cards */
.glass-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* JS Handle Transition for Tilt */
}

/* Shine Effect on Hover */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.7),
        0 0 20px rgba(100, 255, 218, 0.1);
    /* Cyan Glow */
    border-color: var(--color-secondary);
    background: rgba(17, 34, 64, 0.8);
}

.glass-card:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar on scroll - enhanced */
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 25, 47, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.navbar.scrolled .nav-logo-img {
    height: 50px;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-links a {
    font-size: 0.95rem;
    transition: font-size 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
}

.nav-links a:hover {
    color: var(--color-secondary);
}

/* Create a special class for the Get Started button in navbar to fix alignment */
.nav-btn {
    margin-left: 30px;
    padding: 10px 24px;
    border: 1px solid var(--color-secondary);
    border-radius: 4px;
    color: var(--color-secondary) !important;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* Animations & Effects */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, rgba(10, 25, 47, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.floating-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    display: inline-block;
}

/* Tech Stack Marquee - Clean Implementation */
.tech-marquee {
    padding: 80px 0;
    background: var(--color-bg);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.tech-track {
    display: flex;
    gap: 80px;
    animation: scroll 60s linear infinite !important;
    width: fit-content;
}

.tech-track:hover {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-item i {
    font-size: 3.5rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.tech-item span {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.tech-item:hover i {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.6));
    transform: scale(1.1);
}

.tech-item:hover span {
    color: var(--color-secondary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Specialized Text Styles */
.text-gradient {
    background: linear-gradient(135deg, #eee 0%, #8892b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cursor Blink Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--color-secondary);
    font-weight: 700;
    margin-left: 5px;
}

/* Typewriter Cursor */
.typed-cursor {
    opacity: 1;
    color: var(--color-secondary);
    font-weight: 700;
    animation: blink 0.7s infinite;
}

/* Secure Badge Redesign */
.secure-badge {
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    backdrop-filter: blur(5px);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--color-secondary);
    animation: pulse-glow 2s infinite;
    z-index: -1;
}

/* Scanner Line Animation */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    box-shadow: 0 0 10px var(--color-secondary);
    animation: scan 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Connection Node Visual */
.connection-node {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.4);
    z-index: 10;
    animation: pulse-node 4s infinite;
}

@keyframes pulse-node {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(100, 255, 218, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(100, 255, 218, 0.6);
    }
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }

    /* Navigation */
    .mobile-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1001;
        font-size: 1.5rem;
        color: var(--color-secondary);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.2rem;
        margin-left: 0;
    }

    .nav-btn {
        margin: 20px 0;
        width: 80%;
        text-align: center;
        margin-left: 0;
    }

    /* Layout Adjustments */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero Adjustments */
    .blob {
        width: 300px;
        height: 300px;
    }

    .glass-card {
        padding: 2rem;
    }
}

/* Components: Forms */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: 0.3s;
}

.form-control {
    width: 100%;
    padding: 16px;
    background: rgba(17, 34, 64, 0.8) !important;
    /* Use dark blue explicitly */
    border: 1px solid rgba(100, 255, 218, 0.2) !important;
    border-radius: 8px;
    color: #e6f1ff !important;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary) !important;
    background: rgba(17, 34, 64, 1) !important;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364ffda' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.form-control option {
    background: var(--color-primary);
    color: var(--color-text-main);
    padding: 10px;
}

/* Tech Grid Background */
.tech-bg {
    background-image: linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    /* Ensure base content is above */
    position: relative;
}

/* Ensure glass cards are above the grid */
.glass-card {
    z-index: 2;
}

/* Featured Glass Card with Gradient Border */
.glass-card.featured {
    border: 1px solid transparent;
    /* Fallback */
    position: relative;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)) padding-box,
        linear-gradient(135deg, var(--color-secondary), transparent) border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glass-card.featured:hover {
    /* transform: translateY(-5px); handled by tilt.js for featured card */
    box-shadow: 0 30px 60px rgba(100, 255, 218, 0.1);
}

/* FALLBACK: Start visible to avoid disappearance */
/* But allow AOS to take over if it loads */

/* Strategy: Don't fight AOS. Trust AOS. 
   But if AOS fails, we need a safety net.
   The JS safety net in main.js handles the failure case after 2 seconds.
   So we should REMOVE the CSS invalidation of animations.
*/

/* Reverting the hardcore overrides that killed animations */
/* [data-aos] { opacity: 1 !important; ... }  <-- This killed the effects. */

/* Instead, rely on the JS Safety Net in main.js to fix "disappearing". */
/* But to be safe against flicker, we can modify the init styles. */

/* FALLBACK: Start visible to avoid disappearance */
/* FALLBACK: Start visible to avoid disappearance */
/* 
   We set opacity: 1 !important to guarantee visibility if JS fails.
   BUT we must allow AOS to animate if it is working.
*/

/* [data-aos] opacity handled by AOS CSS or fallback */

/* Ensure marquee content has enough width to scroll */
.marquee-content {
    width: max-content;
    padding-left: 100%;
    /* Ensure smooth start */
}


/* But wait, the user said "everything gone disappear" when I removed !important. 
   This means AOS CSS IS loading (setting opacity: 0), but JS IS NOT triggering the animation. 
   
   To fix this while keeping animations:
   We need to allow the transition property.
*/

/* FINAL RESOLUTION: Visibility + Animations */

/* 1. Default State (JS Enabled, AOS Loading): Content is hidden by AOS CSS if loaded. */
/* We do NOT force opacity: 1 here. We let AOS handle it. */

/* =========================================
   Refactored Sections (Moved from Inline)
   ========================================= */

/* Hero Section */
.hero-section {
    padding-top: 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.blob-top-right {
    top: -150px;
    right: -150px;
}

.blob-bottom-left {
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    opacity: 0.2;
}

.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Innovation Line */
.innovation-line-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.innovation-line {
    height: 1px;
    width: 30px;
    background: var(--color-secondary);
    margin-right: 15px;
}

.innovation-text {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Typography */
.hero-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.btn-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Stats */
.stats-container {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    margin-right: 3rem;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--color-white);
}

.stat-symbol {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* Hero Visual Card */
.hero-visual-container {
    position: relative;
}

.hero-visual-card {
    position: relative;
    z-index: 2;
    padding: 3rem;
    overflow: hidden;
}

.status-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}

.status-label {
    font-size: 0.7rem;
    color: var(--color-secondary);
    letter-spacing: 2px;
    font-family: monospace;
}

.status-value {
    color: var(--color-secondary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.window-controls {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.code-content {
    font-family: 'Fira Code', 'Consolas', monospace;
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 5;
}

.code-line {
    margin-bottom: 4px;
}

.code-indent {
    padding-left: 24px;
}

.code-keyword {
    color: #c792ea;
}

.code-variable {
    color: #ffcb6b;
}

.code-operator {
    color: #89ddff;
}

.code-string {
    color: #c3e88d;
}

.code-boolean {
    color: #f78c6c;
}

.code-comment {
    color: #5c6370;
    margin-top: 12px;
}

/* Marquee Section */
.marquee-section {
    background: rgba(10, 25, 47, 0.8);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    overflow: hidden;
}

.partner-logo {
    height: 40px;
    border-radius: 4px;
    opacity: 0.8;
}

/* Digital Dera Section */
.digital-dera-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.digital-dera-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.digital-dera-visual {
    flex: 1;
    background: url('../img/digital-dera-logo.jpg') center/cover no-repeat;
    min-height: 400px;
    position: relative;
}

.digital-dera-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
}

.digital-dera-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.icon-store {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Services Section */
.services-section {
    position: relative;
}

.services-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(17, 34, 64, 0.5) 50%, rgba(10, 25, 47, 0) 100%);
    z-index: -1;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.service-card-footer {
    margin-top: auto;
}

.link-service {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.link-security {
    color: #ff5f56;
    font-weight: 600;
    font-size: 0.9rem;
}

.link-mobile {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Values Section */
.values-card {
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.values-blob {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1), transparent 70%);
}

.abstract-code-visual {
    gap: 15px;
    width: 100%;
    transform: rotate(-5deg);
}

.code-block-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.offset-y-20 {
    transform: translateY(20px);
}

.code-block-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.circle-cyan {
    background: rgba(100, 255, 218, 0.2);
}

.circle-red {
    background: rgba(255, 95, 86, 0.2);
}

.circle-gold {
    background: rgba(255, 215, 0, 0.2);
}

.code-block-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.values-text-content {
    padding-left: 3rem;
}

.value-item h4 {
    margin-bottom: 5px;
    color: var(--color-white);
}

.value-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pillars Section */
.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rows-gap-30 {
    row-gap: 30px;
}

.pillar-card {
    position: relative;
    transition: transform 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.pillar-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-white);
}

.pillar-type {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-status {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #5c6370;
    font-family: monospace;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding-bottom: 150px;
}

.cta-container {
    padding: 5rem 2rem;
    background: radial-gradient(circle, rgba(17, 34, 64, 0.8) 0%, rgba(10, 25, 47, 0.9) 100%);
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    margin: 0 auto 3rem;
    max-width: 600px;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* 2. No-JS Fallback: If JS is disabled, .no-js class remains on HTML. */
/* In this case, we MUST ensure content is visible. */
.no-js [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* 3. AOS Enabled State (JS Loaded): START ANIMATING. */
/* When AOS runs, it adds class 'aos-init' to body. */
body.aos-init [data-aos] {
    opacity: unset !important;
    transform: unset !important;
    visibility: unset !important;
    /* transition properties are handled by AOS CSS */
}

/* 4. Force specific fix for fade effects to ensure they work */

/* Tech Card Implementation */
.tech-card {
    background: #112240;
    /* Solid Deep Blue */
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tech-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.7), 0 0 20px rgba(100, 255, 218, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Radio Card Group */
.radio-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .radio-card-group {
        grid-template-columns: 1fr;
    }
}

.radio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.radio-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.radio-card.selected {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.15);
}

.radio-card i {
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    display: block;
    transition: 0.3s;
}

.radio-card.selected i {
    color: var(--color-secondary);
}

.radio-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 4px;
    display: block;
}

.radio-card small {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    transition: 0.3s;
}

.radio-card.selected small {
    color: rgba(100, 255, 218, 0.9);
}

.radio-card .check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1rem;
    color: var(--color-secondary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.radio-card.selected .check-icon {
    opacity: 1;
    transform: scale(1);
}

.video-hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.video-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* The vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--color-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-bg);
    border: 3px solid var(--color-secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    background-color: var(--color-secondary);
    box-shadow: 0 0 15px var(--color-secondary-dim);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid transparent;
    border-width: 10px 0 10px 10px;
    border-left-color: rgba(17, 34, 64, 0.8);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid transparent;
    border-width: 10px 10px 10px 0;
    border-right-color: rgba(17, 34, 64, 0.8);
}

.right::after {
    left: -10px;
}

.timeline-content {
    background: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.timeline-date {
    color: var(--color-secondary);
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 5px;
    display: block;
}

/* Mobile Timeline */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(17, 34, 64, 0.8) transparent transparent;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(17, 34, 64, 0.3);
}

.stat-counter-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(var(--color-white), var(--color-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Enhanced Responsiveness */
@media screen and (max-width: 992px) {

    /* Tablet & Small Desktop */
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }

    .timeline {
        max-width: 100%;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {

    /* Mobile Devices */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Stats Section on Mobile */
    .stat-counter-item {
        padding: 10px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stat-counter-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 2.8rem;
        /* Smaller font for mobile */
    }

    /* About Grid adjustments */
    .grid-about {
        gap: 40px !important;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Timeline Mobile Adjustments */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent rgba(17, 34, 64, 0.8) transparent transparent;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }

    /* Digital Dera Mobile */
    .digital-dera-bg {
        min-height: 300px !important;
    }
}

/* Marquee Refinement - Tech Stack */
.marquee-section {
    padding: 60px 0 !important;
    /* Bigger section height */
}

.tech-icon {
    font-size: 3.5rem !important;
    /* Bigger icons */
    color: rgba(255, 255, 255, 0.9) !important;
    /* White icons */
    transition: all 0.3s ease;
}

.tech-icon:hover {
    color: var(--color-secondary) !important;
    /* Accent color on hover for interactivity */
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

/* --- Landing Page Enhancements --- */

/* 1. Services: Enhanced Hover & Glow */
.glass-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(2, 12, 27, 0.7), 0 0 20px rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
}

.floating-icon {
    transition: transform 0.4s ease;
}

.glass-card:hover .floating-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.5));
}

/* 2. Values: Animate Code Visuals */
@keyframes float-code {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.abstract-code-visual .code-block-item {
    animation: float-code 6s ease-in-out infinite;
}

.abstract-code-visual .code-block-item:nth-child(2) {
    animation-delay: 1s;
}

.abstract-code-visual .code-block-item:nth-child(3) {
    animation-delay: 2s;
}

.abstract-code-visual .code-block-item:nth-child(4) {
    animation-delay: 3s;
}

/* 3. CTA: Circuit Texture & Glow */
.cta-container {
    background: radial-gradient(circle at center, rgba(17, 34, 64, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%),
        url('../img/circuit-pattern.png') center/cover;
    /* Fallback if image missing is handled by gradient */
    border: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.1);
}

.cta-container:hover {
    box-shadow: 0 0 60px rgba(100, 255, 218, 0.2);
}

.cta-btn {
    font-size: 1.2rem !important;
    padding: 15px 40px !important;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}


/* Static Glass Card (No Hover Movement) - For Forms */
.glass-card.static {
    transition: none !important;
}

.glass-card.static:hover {
    transform: none !important;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7) !important;
    border-color: var(--color-border) !important;
}

.glass-card.static::after {
    content: none !important;
    display: none !important;
    animation: none !important;
}

.glass-card.static:hover {
    background: rgba(17, 34, 64, 0.6) !important;
    /* Prevent hover brightening */
    /* Remove glow box-shadow too if desired, user said 'reflection' so maybe just the shine sweep? */
    /* I'll reduce the shadow to be matte */
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7) !important;
}


/* --- Premium Header Enhancements (Overrides) --- */

/* Floating Pill Navbar Layout */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(10, 25, 47, 0.85);
    /* Dark Glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Pill Shape */
    padding: 10px 40px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

.navbar.navbar-scrolled {
    width: 85%;
    /* Shrinks on scroll for focus */
    padding: 8px 30px;
    background: rgba(10, 25, 47, 0.95);
    /* More solid */
    border-color: rgba(100, 255, 218, 0.3);
    /* Subtle cyan border */
    box-shadow: 0 10px 30px -5px rgba(2, 12, 27, 0.9);
}

.nav-center-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-group.group-right {
    justify-content: flex-end;
}

.nav-group.group-left {
    justify-content: flex-start;
}

/* Logo in center */
.logo-center {
    flex: 0 0 auto;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-center .nav-logo-img {
    height: 60px;
    /* Slightly larger for center focus */
    transition: transform 0.3s ease;
}

.logo-center:hover .nav-logo-img {
    transform: scale(1.1);
}

/* Links Styling Updates */
.nav-links a {
    margin: 0;
    /* Reset margins since we use gap */
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    padding: 8px 0;
}

/* Nav Button in Right Group */
.nav-btn.pill-btn {
    margin-left: 0 !important;
    border-radius: 30px;
}

/* Mobile Overrides: Revert Pill to Bar */
@media screen and (max-width: 992px) {
    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 20px;
    }

    .nav-center-layout {
        justify-content: space-between;
        /* Logo left, toggle right */
    }

    /* Hide desktop groups */
    .nav-group {
        display: none;
    }

    /* Ensure Logo is visible and on left for mobile standard */
    .logo-center {
        margin: 0;
        order: 1;
    }

    .mobile-toggle {
        display: block !important;
        order: 2;
    }

    /* Mobile Menu Overlay Styles */
    .mobile-menu-overlay {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        /* Below navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px;
        gap: 25px;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-overlay a {
        font-size: 1.2rem;
        color: var(--color-white);
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--color-secondary);
    transition: width 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--color-secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    margin-left: 35px !important;
    padding: 10px 28px !important;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
    transition: 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}


/* Premium Logo Styling (PNG) */
.logo img {
    /* No mix-blend needed for PNG */
    filter: drop-shadow(0 0 5px rgba(100, 255, 218, 0.2));
    /* Subtle initial glow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.6));
    /* Stronger glow on hover */
    transform: scale(1.05) rotate(2deg);
    /* Creative pop */
}

/* Refactored Utility Classes (v3.0) */

/* Navigation Logo */
.nav-logo-img {
    height: 50px;
    /* Standardized height */
    width: auto;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-logo-img {
        height: 40px;
        /* Mobile adjustment */
    }
}

/* Footer Component Refactor */
.footer-base {
    background: #020c1b;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-blob {
    width: 400px;
    height: 400px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-logo-container {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    display: block;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.footer-nav-container {
    margin-bottom: 30px;
}

.footer-nav-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: var(--color-white);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--color-secondary);
}

.footer-contact-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-icon {
    color: var(--color-secondary);
    margin-right: 8px;
}

.footer-social-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icon-circle {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: var(--color-white);
}

.social-icon-circle:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin: 0;
}

/* Homepage Specifics */
.text-giant {
    font-size: 3.5rem;
    margin-bottom: 0;
    color: var(--color-white);
    line-height: 1;
}

@media (max-width: 768px) {
    .text-giant {
        font-size: 2.5rem;
    }
}

.text-spacing-wide {
    font-weight: 600;
    letter-spacing: 1px;
}

.digital-dera-stat-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    text-align: right;
}

.digital-dera-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #112240 0%, rgba(17, 34, 64, 0.4) 100%);
}

.pillar-check-icon {
    color: var(--color-secondary);
}

.operational-dot {
    color: #64ffda;
}

.operational-text {
    opacity: 0.7;
}

.empty-partners-card {
    text-align: center;
    padding: 40px;
}