﻿/* ============================================
   CYBORG Solutions - Premium CSS Styles
   Modern, High-End IT Solutions Website
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #00f0ff;
    --primary-dark: #00c4cc;
    --primary-light: #7df9ff;
    /* Secondary Colors */
    --secondary: #7c3aed;
    --secondary-dark: #5b21b6;
    --secondary-light: #a78bfa;
    /* Accent Colors */
    --accent: #f43f5e;
    --accent-glow: rgba(244, 63, 94, 0.5);
    /* Dark Theme Colors */
    --dark-900: #0a0a0f;
    --dark-800: #0f0f1a;
    --dark-700: #151525;
    --dark-600: #1a1a2e;
    --dark-500: #252540;
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #f43f5e 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #151525 100%);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.3);
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--dark-900);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark-900);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-cyber {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-900);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-normal);
    z-index: 1;
}

    .btn-cyber::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: var(--transition-slow);
        z-index: -1;
    }

    .btn-cyber:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-glow);
        color: var(--dark-900);
    }

        .btn-cyber:hover::before {
            left: 100%;
        }

.btn-outline-cyber {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

    .btn-outline-cyber:hover {
        background: var(--primary);
        color: var(--dark-900);
        transform: translateY(-3px);
        box-shadow: var(--shadow-glow);
    }

/* Section Styling */
.section-padding {
    padding: 120px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

.loader {
    text-align: center;
}

.cyber-loader {
    width: 80px;
    height: 80px;
    border: 3px solid var(--dark-600);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 5px;
    animation: pulse 1.5s ease infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 20px 0;
    transition: var(--transition-normal);
    background: transparent;
}

    .navbar.scrolled {
        padding: 15px 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    color: var(--dark-900);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.brand-sub {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-left: -5px;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    padding: 10px 20px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: var(--transition-normal);
        transform: translateX(-50%);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.toggler-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .toggler-icon span {
        width: 100%;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: var(--transition-normal);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-900);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, var(--primary), transparent), radial-gradient(2px 2px at 40px 70px, var(--secondary), transparent), radial-gradient(1px 1px at 90px 40px, var(--primary-light), transparent), radial-gradient(2px 2px at 130px 80px, var(--primary), transparent), radial-gradient(1px 1px at 160px 120px, var(--secondary-light), transparent);
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
    opacity: 0.5;
}

@keyframes particles {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.cyber-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid;
}

    .cyber-circle.outer {
        width: 400px;
        height: 400px;
        border-color: rgba(0, 240, 255, 0.2);
        animation: rotate 30s linear infinite;
    }

    .cyber-circle.middle {
        width: 300px;
        height: 300px;
        border-color: rgba(124, 58, 237, 0.3);
        animation: rotate 20s linear infinite reverse;
    }

    .cyber-circle.inner {
        width: 200px;
        height: 200px;
        border-color: rgba(0, 240, 255, 0.4);
        animation: rotate 15s linear infinite;
    }

.cyber-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-900);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
    animation: pulse-core 3s ease infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-core {
    0%, 100% {
        box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 80px rgba(0, 240, 255, 0.8);
    }
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 255, 0.2);
}

.orbit-1 {
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    animation: orbit 10s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    animation: orbit 15s linear infinite reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    animation: orbit 20s linear infinite;
}

.orbit-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--dark-700);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

    .scroll-indicator a {
        text-decoration: none;
        color: var(--text-secondary);
    }

.mouse {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--dark-800);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-image-main img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--dark-800);
    box-shadow: var(--shadow-md);
}

    .about-image-secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--gradient-primary);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-900);
}

.exp-text {
    font-size: 0.85rem;
    color: var(--dark-700);
    font-weight: 600;
}

.about-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.about-content {
    padding-left: 50px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-content h4 {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    position: relative;
    background: var(--dark-900);
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.service-card {
    position: relative;
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition-normal);
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: var(--transition-normal);
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 240, 255, 0.3);
        box-shadow: var(--shadow-glow);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

    .service-card.featured {
        background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
        border-color: var(--primary);
    }

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .icon-glow {
    opacity: 1;
}

.service-title {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

        .service-features li i {
            color: var(--primary);
            font-size: 1rem;
        }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

    .service-link:hover {
        color: var(--primary-light);
        gap: 15px;
    }

/* ============================================
   WORKS/PORTFOLIO SECTION
   ============================================ */
.works-section {
    background: var(--dark-800);
}

.works-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .filter-btn:hover,
    .filter-btn.active {
        color: var(--dark-900);
        background: var(--gradient-primary);
        border-color: transparent;
    }

.work-card {
    background: var(--dark-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

    .work-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .work-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-slow);
    }

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-900);
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.work-card:hover .work-link {
    transform: translateY(0);
}

.work-link:hover {
    background: var(--text-primary);
}

.work-content {
    padding: 25px;
}

.work-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.work-title {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.work-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.work-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .work-tech span {
        padding: 5px 12px;
        font-size: 0.75rem;
        background: var(--dark-600);
        border-radius: 20px;
        color: var(--text-secondary);
    }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    position: relative;
    background: var(--dark-900);
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
}

.testimonial-card {
    position: relative;
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    transition: var(--transition-normal);
}

    .testimonial-card:hover {
        border-color: rgba(0, 240, 255, 0.3);
        transform: translateY(-5px);
    }

.testimonial-stars {
    margin-bottom: 20px;
}

    .testimonial-stars i {
        color: #fbbf24;
        font-size: 1rem;
        margin-right: 3px;
    }

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

/* Client Logos */
.clients-logos {
    text-align: center;
    border-top: 1px solid var(--dark-600);
    padding-top: 50px;
}

.clients-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    padding: 15px 30px;
    background: var(--dark-700);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .logo-item:hover {
        background: var(--dark-600);
    }

    .logo-item span {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: var(--text-secondary);
        letter-spacing: 2px;
    }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--dark-800);
}

.contact-info {
    height: 100%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--dark-700);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

    .contact-card:hover {
        background: var(--dark-600);
        transform: translateX(10px);
    }

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-900);
}

.contact-details h4 {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--dark-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

    .social-link:hover {
        background: var(--gradient-primary);
        color: var(--dark-900);
        transform: translateY(-5px);
    }

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-700);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 0;
}

    .form-group label {
        display: block;
        font-family: var(--font-subheading);
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 10px;
    }

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--dark-800);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300f0ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-800) 0%, transparent 30%, transparent 70%, var(--dark-900) 100%);
    pointer-events: none;
    z-index: 1;
}

.map-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(10, 10, 15, 0.9);
    padding: 30px 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-500);
    z-index: 2;
    pointer-events: auto;
}

    .map-content h3 {
        font-family: var(--font-subheading);
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .map-content p {
        color: var(--text-secondary);
        margin: 0;
    }

.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
    }

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: var(--dark-900);
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--dark-600);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-secondary);
    max-width: 300px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        background: var(--dark-700);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition-normal);
    }

        .footer-social a:hover {
            background: var(--gradient-primary);
            color: var(--dark-900);
            transform: translateY(-3px);
        }

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

    .footer-links h4::after,
    .footer-newsletter h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient-primary);
    }

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .footer-links a:hover {
        color: var(--primary);
        padding-left: 10px;
    }

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 12px 20px;
}

.newsletter-form .btn-cyber {
    padding: 12px 20px;
}

.footer-certifications {
    margin-top: 25px;
}

    .footer-certifications span {
        display: block;
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 10px;
    }

.cert-badges {
    display: flex;
    gap: 15px;
}

    .cert-badges i {
        font-size: 1.8rem;
        color: var(--primary);
    }

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
}

    .footer-bottom-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: var(--transition-normal);
    }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-900);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow);
        color: var(--dark-900);
    }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-visual {
        width: 350px;
        height: 350px;
    }

    .cyber-circle.outer {
        width: 350px;
        height: 350px;
    }

    .cyber-circle.middle {
        width: 260px;
        height: 260px;
    }

    .cyber-circle.inner {
        width: 170px;
        height: 170px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        padding: 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar .btn-cyber {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        padding-left: 0;
        margin-top: 80px;
    }

    .about-image-secondary {
        right: 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .about-image-main img {
        height: 350px;
    }

    .experience-badge {
        top: auto;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .works-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .map-content {
        width: 90%;
        padding: 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-sub {
        display: none;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .logos-wrapper {
        gap: 20px;
    }

    .logo-item {
        padding: 10px 20px;
    }

        .logo-item span {
            font-size: 1rem;
        }

    .footer-social {
        justify-content: center;
    }
}

/* Work Items Animation for Filter */
.work-item {
    transition: all 0.4s ease;
}

    .work-item.hide {
        display: none;
    }

/* Form Success/Error States */
.form-control.is-valid {
    border-color: #10b981;
}

.form-control.is-invalid {
    border-color: var(--accent);
}

/* Loading State for Buttons */
.btn-cyber.loading {
    pointer-events: none;
    opacity: 0.8;
}

    .btn-cyber.loading span {
        visibility: hidden;
    }

    .btn-cyber.loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border: 2px solid transparent;
        border-top-color: var(--dark-900);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }






.map-info {
    margin-top: 15px;
    text-align: left;
    background: rgba(10, 10, 15, 0.8);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

    .map-info p {
        margin: 8px 0;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .map-info i {
        color: var(--primary);
        margin-right: 10px;
    }

/* Customize map appearance */
.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(30%) contrast(110%) brightness(90%);
    }



/*MODAL AND ITS DESIGN*/
/* ============================================
   CYBER PROJECT MODAL
   Clean & Organized Styles
   ============================================ */

/* Center the modal perfectly */
/* Modal Container */
/* Modal Container */
#projectModal .modal-dialog {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 auto;
}

.cyber-modal-content {
    background: var(--dark-800);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 240, 255, 0.1);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

/* Modal Header */
.cyber-modal-header {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(21, 21, 37, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.modal-header-content {
    flex: 1;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cyber-modal-header .modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
}

.cyber-modal-header .btn-close {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--primary);
    opacity: 1;
   padding-bottom:15px;
      transition: var(--transition-normal);
}

/*    .cyber-modal-header .btn-close:hover {
        background: var(--primary);
        color: var(--dark-900);
        transform: rotate(90deg);
    }*/

/* Gallery Styles */
.cyber-gallery-wrapper {
    background: var(--dark-700);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.main-gallery-image {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--dark-900);
}

#mainGalleryImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-gallery-image:hover #mainGalleryImage {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 15, 0.9));
    padding: 2rem;
    padding-top: 5rem;
}

.gallery-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--dark-900);
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.image-title {
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.gallery-counter {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
}

    .gallery-counter .divider {
        color: rgba(255, 255, 255, 0.3);
        margin: 0 0.5rem;
    }

.gallery-nav {
    display: flex;
    gap: 0.75rem;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

    .gallery-btn:hover {
        background: var(--primary);
        color: var(--dark-900);
        transform: translateY(-2px);
    }

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    position: relative;
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

    .thumbnail.active {
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 240, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: var(--dark-900);
    font-size: 1.25rem;
}

/* Project Details Sidebar */
.project-details-sidebar {
    background: var(--dark-700);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
    height: 100%;
}

.details-section {
    margin-bottom: 2rem;
}

    .details-section .section-title {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: var(--font-subheading);
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

        .details-section .section-title i {
            font-size: 1.1rem;
        }

/* Tech Stack */
.tech-stack-grid {
    display: grid;
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .tech-item:hover {
        background: rgba(0, 240, 255, 0.1);
        transform: translateX(5px);
    }

.tech-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.tech-info {
    display: flex;
    flex-direction: column;
}

.tech-name {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tech-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li i {
            color: var(--primary);
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }

        .features-list li span {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .stat-box:hover {
        background: rgba(0, 240, 255, 0.1);
        transform: translateY(-3px);
    }

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

    .action-buttons .btn {
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

/* Modal Footer */
.cyber-modal-footer {
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

    .info-item i {
        color: var(--primary);
        font-size: 0.9rem;
    }

.footer-buttons {
    display: flex;
    gap: 0.75rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

    .icon-btn:hover {
        background: var(--primary);
        color: var(--dark-900);
        transform: translateY(-2px);
    }

/* Responsive Styles */
@media (max-width: 991.98px) {
    .cyber-gallery-wrapper,
    .project-details-sidebar {
        padding: 1.25rem;
    }

    .main-gallery-image {
        height: 350px;
    }

    .gallery-thumbnails {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .thumbnail {
        flex-shrink: 0;
    }
}

@media (max-width: 767.98px) {
    .cyber-modal-header {
        padding: 1.5rem;
    }

        .cyber-modal-header .modal-title {
            font-size: 1.5rem;
        }

    .main-gallery-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .project-info {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .main-gallery-image {
        height: 250px;
    }

    .gallery-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTENT CONTAINER STYLES
   ============================================ */

.content-container {
    background: var(--dark-700);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.content-section {
    margin-bottom: 2.5rem;
}

    .content-section:last-child {
        margin-bottom: 0;
    }

.content-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-subheading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

    .content-title i {
        font-size: 1.1rem;
    }

.content-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-paragraph {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

    .content-paragraph:last-child {
        margin-bottom: 0;
    }

    .content-paragraph strong {
        color: var(--primary-light);
        font-weight: 600;
    }

/* Responsive adjustments for content */
@media (max-width: 991.98px) {
    .content-container {
        padding: 1.5rem;
    }

    .content-title {
        font-size: 1.1rem;
    }

    .content-paragraph {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .content-container {
        padding: 1.25rem;
    }

    .content-section {
        margin-bottom: 2rem;
    }
}
/*MODAL AND ITS DESIGN*/
/* ============================================
   CLIENTS LOGOS SECTION
   ============================================ */



.overlay-content h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-900);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.overlay-content p {
    font-size: 0.9rem;
    color: var(--dark-700);
    margin-bottom: 10px;
    font-weight: 500;
}

.project-count {
    display: inline-block;
    padding: 6px 15px;
    background: var(--dark-900);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Client Stats */
.client-stats {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding-top: 3rem;
    margin-top: 3rem;
}

    .client-stats .stat-box {
        text-align: center;
        padding: 2rem 1rem;
        background: rgba(0, 240, 255, 0.05);
        border: 1px solid rgba(0, 240, 255, 0.1);
        border-radius: var(--radius-lg);
        transition: var(--transition-normal);
    }

        .client-stats .stat-box:hover {
            background: rgba(0, 240, 255, 0.1);
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
        }

    .client-stats .stat-number {
        display: block;
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 10px;
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }

    .client-stats .stat-label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 768px) {
    .client-logo-card {
        height: 160px;
        padding: 1.5rem;
    }

    .client-logo {
        max-height: 60px;
    }

    .overlay-content h5 {
        font-size: 1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
    }

    .client-stats .stat-box {
        padding: 1.5rem 0.5rem;
    }

    .client-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .logos-grid .row {
        row-cols: 2 !important;
    }

    .client-logo-card {
        height: 140px;
        padding: 1.25rem;
    }

    .client-logo {
        max-height: 50px;
    }

    .client-stats .row {
        row-cols: 2 !important;
    }
}

/* ============================================
   MODAL 3 - PRO FLOW SPECIFIC STYLES
   Extending your existing modal design
   ============================================ */

/* Thumbnail Groups */
.thumbnail-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

    .thumbnail-group:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.thumbnail-group-label {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Features Grid for Modal 3 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 5px;
}

.feature-item-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .feature-item-mini:hover {
        background: rgba(0, 240, 255, 0.1);
        transform: translateX(3px);
        border-color: var(--primary);
    }

    .feature-item-mini i {
        color: var(--primary);
        font-size: 1rem;
    }

    .feature-item-mini span {
        color: var(--text-secondary);
        font-size: 0.85rem;
        font-weight: 500;
    }

/* Cyber Accordion for Modal 3 */
.cyber-accordion .accordion-item {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.cyber-accordion .accordion-button {
    background: rgba(0, 240, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    box-shadow: none;
}

    .cyber-accordion .accordion-button:not(.collapsed) {
        background: rgba(0, 240, 255, 0.08);
        color: var(--primary);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cyber-accordion .accordion-button::after {
        filter: invert(1) hue-rotate(180deg);
        opacity: 0.8;
    }

    .cyber-accordion .accordion-button i {
        margin-right: 10px;
        color: var(--primary);
    }

.cyber-accordion .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Module Features List */
.module-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 0.85rem;
        color: var(--text-secondary);
    }

        .module-features-list li i {
            color: var(--primary);
            font-size: 0.8rem;
            margin-top: 3px;
        }

/* Tech Stack Mini */
.tech-stack-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
}

    .tech-tag:hover {
        background: var(--primary);
        color: var(--dark-900);
        border-color: var(--primary);
    }

/* Stats Grid Mini */
.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.stat-box-mini {
    text-align: center;
    padding: 15px 5px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

    .stat-box-mini:hover {
        background: rgba(0, 240, 255, 0.1);
        transform: translateY(-3px);
        border-color: var(--primary);
    }

    .stat-box-mini .stat-value {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 5px;
    }

    .stat-box-mini .stat-label {
        display: block;
        font-size: 0.65rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* Responsive adjustments for Modal 3 */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail-group {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .thumbnail-group-label {
        width: 100%;
    }
}

/* ============================================
   FIXED: Thumbnail Group Row Display
   ============================================ */
.thumbnail-group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

    .thumbnail-group-row .thumbnail {
        flex: 0 0 calc(20% - 8px); /* 5 thumbnails per row with gap */
        min-width: 80px;
        height: 60px;
    }

@media (max-width: 768px) {
    .thumbnail-group-row .thumbnail {
        flex: 0 0 calc(33.333% - 7px); /* 3 thumbnails per row on mobile */
    }
}

@media (max-width: 576px) {
    .thumbnail-group-row .thumbnail {
        flex: 0 0 calc(50% - 5px); /* 2 thumbnails per row on small mobile */
    }
}




/* ============================================
   CLIENTS SECTION - REDESIGNED
   Clean, Modern, Full Color, No Text
   ============================================ */
.clients-section {
    position: relative;
    background: var(--dark-800);
    overflow: hidden;
    padding: 100px 0;
}

/* Cyber Background Effects */
.clients-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.clients-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Infinite Scrolling Logos */
.logos-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    mask-image: linear-gradient( to right, transparent, black 20%, black 80%, transparent );
    -webkit-mask-image: linear-gradient( to right, transparent, black 20%, black 80%, transparent );
}

.logos-scroll-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollLogos 35s linear infinite;
    width: fit-content;
}

.logos-scroll-container:hover .logos-scroll-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .logo-item {
        width: 140px;
        height: 90px;
        padding: 15px;
    }

    .client-logo {
        max-height: 50px;
    }

    .logos-scroll-track {
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .clients-section {
        padding: 70px 0;
    }

    .logo-item {
        width: 120px;
        height: 80px;
        padding: 12px;
    }

    .client-logo {
        max-height: 40px;
    }

    .logos-scroll-track {
        gap: 30px;
        animation: scrollLogos 25s linear infinite;
    }
}

@media (max-width: 575.98px) {
    .logo-item {
        width: 100px;
        height: 70px;
        padding: 10px;
    }

    .client-logo {
        max-height: 35px;
    }

    .logos-scroll-track {
        gap: 20px;
    }
}

/* Optional: Grid Layout Alternative (Uncomment to use instead of scrolling) */

.logos-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .logos-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .logos-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}






/* ============================================
   CYBER CLIENTS SECTION - BRAND NEW - NO CONFLICTS
   All class names are unique - nothing will interfere
   ============================================ */
.cyber-clients-section {
    position: relative;
    background: var(--dark-800);
    overflow: hidden;
    padding: 100px 0;
}

/* Background Effects */
.cyber-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cyber-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: cyberOrbPulse 8s ease-in-out infinite;
}

@keyframes cyberOrbPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Scrolling Container */
.cyber-logos-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.cyber-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: cyberScroll 35s linear infinite;
    width: fit-content;
}

.cyber-logos-scroll:hover .cyber-logos-track {
    animation-play-state: paused;
}

@keyframes cyberScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Brand Item Container - NO CONFLICTS with old classes */
.cyber-brand-item {
    position: relative;
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .cyber-brand-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .cyber-brand-item:hover::before {
        left: 100%;
    }

    .cyber-brand-item:hover {
        border-color: var(--primary);
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
        transform: translateY(-5px);
    }

/* Glow Effect */
.cyber-brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    opacity: 0;
}

.cyber-brand-item:hover .cyber-brand-glow {
    width: 120px;
    height: 120px;
    opacity: 1;
}

/* BRAND LOGOS - FULL COLOR, NO FILTERS, NO CONFLICTS */
.cyber-brand-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* IMPORTANT: NO grayscale, NO filters - pure original colors */
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.cyber-brand-item:hover .cyber-brand-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)) !important;
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .cyber-brand-item {
        width: 140px;
        height: 90px;
        padding: 15px;
    }

    .cyber-brand-logo {
        max-height: 50px;
    }

    .cyber-logos-track {
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .cyber-clients-section {
        padding: 70px 0;
    }

    .cyber-brand-item {
        width: 120px;
        height: 80px;
        padding: 12px;
    }

    .cyber-brand-logo {
        max-height: 40px;
    }

    .cyber-logos-track {
        gap: 30px;
        animation: cyberScroll 25s linear infinite;
    }
}

@media (max-width: 575.98px) {
    .cyber-brand-item {
        width: 100px;
        height: 70px;
        padding: 10px;
    }

    .cyber-brand-logo {
        max-height: 35px;
    }

    .cyber-logos-track {
        gap: 20px;
    }
}
/* ============================================
   PREMIUM CLIENTS SECTION - ULTRA MODERN
   Single source of truth. No conflicts. Maximum luxury.
   ============================================ */

.clients-premium-section {
    position: relative;
    background: var(--dark-900);
    padding: 140px 0 100px;
    overflow: hidden;
}

/* ----- AMBIENT BACKGROUND (Subtle, expensive) ----- */
.premium-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 240, 255, 0.02) 0%, transparent 40%), radial-gradient(ellipse at 30% 70%, rgba(124, 58, 237, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.premium-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.3;
}

/* ----- MINIMAL HEADER (Whisper quiet, very high-end) ----- */
.premium-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 5;
}

.premium-tag {
    display: inline-block;
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0 15px;
    position: relative;
}

.premium-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.premium-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
}

/* ----- PRIMARY SHOWCASE CARDS (Hero partners) ----- */
.premium-showcase {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.premium-partner-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.85;
    cursor: pointer;
}

.partner-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1);
    overflow: hidden;
}

/* Glow effect on hover */
.partner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 1;
}

.premium-partner-card:hover .partner-glow {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* Logo wrapper - perfect centering */
.partner-logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.partner-logo {
    max-width: 80%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.premium-partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4)) !important;
}

/* Hover info - clean, minimal metadata */
.partner-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
    z-index: 10;
}

.premium-partner-card:hover .partner-hover-info {
    transform: translateY(0);
}

.partner-since,
.partner-projects {
    font-family: var(--font-subheading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.partner-projects {
    color: var(--primary);
}

/* Featured partner badge */
.premium-featured {
    position: relative;
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--dark-900);
    font-family: var(--font-subheading);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 20;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Card border effect on hover */
.partner-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, transparent, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-partner-card:hover .partner-card-inner::after {
    opacity: 0.6;
}

/* ----- ELEGANT MARQUEE (Seamless infinite scroll) ----- */
.premium-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-bottom: 80px;
    mask-image: linear-gradient( to right, transparent, black 15%, black 85%, transparent );
    -webkit-mask-image: linear-gradient( to right, transparent, black 15%, black 85%, transparent );
}

.premium-marquee {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: premiumScroll 40s linear infinite;
    width: fit-content;
}

.premium-marquee-container:hover .premium-marquee {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-logo {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    transition: all 0.3s ease;
}

    .marquee-logo img {
        max-width: 100%;
        max-height: 50px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: none !important;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

.marquee-item:hover .marquee-logo img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3)) !important;
}

@keyframes premiumScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ----- IMPACT STATS (Clean typography, no visual noise) ----- */
.premium-impact {
    position: relative;
    z-index: 10;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.06);
}

.impact-stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.stat-trend {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

    .stat-trend.positive {
        color: #10b981;
    }

/* ----- RESPONSIVE REFINEMENTS ----- */

/* Large Desktop */
@media (max-width: 1400px) {
    .premium-marquee {
        gap: 40px;
    }

    .marquee-logo {
        width: 120px;
    }
}

/* Desktop */
@media (max-width: 1199.98px) {
    .premium-showcase .col-lg-3 {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 991.98px) {
    .clients-premium-section {
        padding: 100px 0 80px;
    }

    .premium-marquee {
        gap: 30px;
    }

    .marquee-logo {
        width: 100px;
        height: 70px;
    }

        .marquee-logo img {
            max-height: 40px;
        }
}

/* Tablet Portrait */
@media (max-width: 767.98px) {
    .premium-header {
        margin-bottom: 50px;
    }

    .premium-tag {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }

    .premium-title {
        font-size: 2rem;
    }

    .premium-showcase {
        margin-bottom: 50px;
    }

    .premium-marquee-container {
        margin-bottom: 50px;
    }

    .premium-marquee {
        gap: 25px;
        animation: premiumScroll 30s linear infinite;
    }

    .marquee-logo {
        width: 90px;
        height: 60px;
    }

        .marquee-logo img {
            max-height: 35px;
        }

    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .clients-premium-section {
        padding: 80px 0 60px;
    }

    .premium-tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .premium-title {
        font-size: 1.8rem;
    }

    .premium-partner-card {
        aspect-ratio: 1 / 0.9;
    }

    .partner-logo {
        max-height: 50px;
    }

    .premium-marquee {
        gap: 20px;
    }

    .marquee-logo {
        width: 80px;
        height: 55px;
    }

        .marquee-logo img {
            max-height: 30px;
        }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Ultra small devices */
@media (max-width: 380px) {
    .premium-showcase .col-6 {
        padding: 0 8px;
    }

    .premium-partner-card {
        aspect-ratio: 1 / 0.95;
    }

    .partner-logo {
        max-height: 40px;
    }

    .marquee-logo {
        width: 70px;
        height: 50px;
    }

        .marquee-logo img {
            max-height: 25px;
        }
}



