:root {
    --primary-blue: #014AAC;
    --primary-yellow: #EBC31D;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --gradient-1: linear-gradient(135deg, var(--primary-blue), #0266d8);
    --gradient-2: linear-gradient(135deg, var(--primary-yellow), #f5d547);
    --gradient-accent: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.15s ease, opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-glow {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(235, 195, 29, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--primary-blue);
}

.cursor-glow.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: radial-gradient(circle, rgba(1, 74, 172, 0.4) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-glow {
        display: none;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-placeholder {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 12px 30px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(1, 74, 172, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(1, 74, 172, 0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav.active {
        right: 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--glass-bg);
    backdrop-filter: blur(50px);
    border: 1px solid var(--glass-border);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-blue);
    top: -20%;
    right: -20%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-yellow);
    bottom: -20%;
    left: -10%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 0 30px rgba(1, 74, 172, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(1, 74, 172, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(235, 195, 29, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(235, 195, 29, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: var(--darker-bg);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(235, 195, 29, 0.3);
}

.founder-card {
    grid-column: span 1;
}

.team-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.team-icon {
    font-size: 48px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-yellow);
    font-size: 14px;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Journey Timeline */
.journey {
    background: var(--dark-bg);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding: 40px 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-yellow);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(235, 195, 29, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.3);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        text-align: left !important;
    }
}

/* Services Section */
.services {
    background: var(--darker-bg);
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Results Section */
.results {
    background: var(--dark-bg);
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.metric-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(235, 195, 29, 0.3);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.metric-suffix {
    font-size: 36px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 16px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.3);
}

.case-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.case-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.case-metric {
    display: flex;
    flex-direction: column;
}

.metric-change {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-yellow);
}

.metric-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.case-preview {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-btn:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

/* Portfolio Section */
.portfolio {
    background: var(--darker-bg);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary-blue);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(235, 195, 29, 0.3);
}

.portfolio-image {
    height: 250px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    font-size: 72px;
}

.portfolio-info {
    padding: 30px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.portfolio-cat {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Process Section */
.process {
    background: var(--dark-bg);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
    margin: 60px 0;
    position: relative;
}

.process-connector::after {
    content: '\2192';
    position: absolute;
    right: -15px;
    top: -12px;
    font-size: 24px;
    color: var(--primary-yellow);
}

@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 60px;
        margin: 30px 0;
    }

    .process-connector::after {
        content: '\2193';
        right: -11px;
        bottom: -20px;
        top: auto;
    }
}

/* Why Choose Us */
.why-choose {
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: var(--dark-bg);
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 320px;
    }
}

/* Consultation Section */
.consultation {
    background: var(--gradient-1);
    padding: 100px 0;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consultation-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.consultation-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-benefits {
    list-style: none;
}

.consultation-benefits li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.consultation-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-yellow);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-input {
    border-radius: 20px;
    resize: vertical;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.btn-block {
    width: 100%;
}

@media (max-width: 968px) {
    .consultation-content {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
}

.contact-map {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.map-icon {
    font-size: 72px;
    margin-bottom: 15px;
}

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

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px 40px;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   CLIENTS SECTION (Replaces Portfolio)
   ============================================ */

.clients {
    background: var(--darker-bg);
    overflow: hidden;
}

.clients-marquee {
    margin-top: 60px;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--darker-bg), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--darker-bg), transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(1, 74, 172, 0.4);
}

.client-placeholder {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    padding: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 40px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .client-logo {
        width: 160px;
        height: 100px;
    }
    
    .client-placeholder {
        font-size: 14px;
    }
    
    .clients-track {
        gap: 30px;
    }
    
    .clients-marquee::before,
    .clients-marquee::after {
        width: 80px;
    }
}

/* Remove old portfolio styles to avoid conflicts */
.portfolio {
    display: none;
}

.portfolio-filters,
.portfolio-grid,
.portfolio-item,
.filter-btn {
    display: none;
}


/* ============================================
   CLIENT LOGO IMAGE STYLING
   ============================================ */

.client-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.client-logo:hover .client-img {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Specific adjustments for logos with white backgrounds */
.client-logo img[src*="kbc"],
.client-logo img[src*="super-dancer"],
.client-logo img[src*="funtoons"],
.client-logo img[src*="gharchi"],
.client-logo img[src*="sra"],
.client-logo img[src*="tpe"] {
    filter: none;
}

.client-logo:hover img[src*="kbc"],
.client-logo:hover img[src*="super-dancer"],
.client-logo:hover img[src*="funtoons"],
.client-logo:hover img[src*="gharchi"],
.client-logo:hover img[src*="sra"],
.client-logo:hover img[src*="tpe"] {
    filter: brightness(1.1);
}


/* ============================================
   FIX FOR SELECT DROPDOWN VISIBILITY
   ============================================ */

/* Style the select dropdown options */
select.form-input option {
    background: var(--primary-blue);
    color: white;
    padding: 10px;
    font-size: 16px;
}

/* Style when option is focused/hovered */
select.form-input option:hover,
select.form-input option:focus,
select.form-input option:checked {
    background: #0266d8;
    color: white;
}

/* Ensure select text is visible */
select.form-input {
    color: white !important;
}

/* Style the default/placeholder option */
select.form-input option[value=""] {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   AGGRESSIVE DROPDOWN FIX
   Add this to your styles.css at the end
   ============================================ */

/* Force select element styling */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.15) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    color: white !important;
    cursor: pointer;
    padding-right: 50px !important;
}

/* Force option styling - this works in most browsers */
select.form-input option {
    background-color: #014AAC !important;
    color: white !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    border: none !important;
}

/* Hover state for options */
select.form-input option:hover {
    background-color: #0266d8 !important;
}

/* Selected option */
select.form-input option:checked {
    background-color: #0266d8 !important;
    font-weight: 600;
}

/* First option (placeholder) styling */
select.form-input option:first-child {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* For Firefox */
@-moz-document url-prefix() {
    select.form-input option {
        background: #014AAC;
        color: white;
    }
}

/* For WebKit browsers (Chrome, Safari, Edge) */
select.form-input::-webkit-scrollbar {
    width: 10px;
}

select.form-input::-webkit-scrollbar-track {
    background: #0a0e27;
}

select.form-input::-webkit-scrollbar-thumb {
    background: #014AAC;
    border-radius: 5px;
}

/* Focus state */
select.form-input:focus {
    outline: none !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--primary-yellow) !important;
}

/* When dropdown is open (some browsers support this) */
select.form-input[size]:focus,
select.form-input[multiple]:focus,
select.form-input:active {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   FIX CTA BUTTON AS LINK
   ============================================ */

a.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(1, 74, 172, 0.3);
    text-decoration: none;
    line-height: 1;
}

a.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(1, 74, 172, 0.5);
    color: white !important;
}


/* ============================================
   FORCE CUSTOM CURSOR VISIBILITY
   ============================================ */

body {
    cursor: none !important;
}

.cursor-dot,
.cursor-glow {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Make sure cursor shows on all clickable elements */
a, button, input, textarea, select,
.service-card, .portfolio-item, .case-study-card,
.team-card, .nav-link, .btn, .cta-btn {
    cursor: none !important;
}

/* Re-enable cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto !important;
    }
    
    a, button, input, textarea, select,
    .service-card, .portfolio-item, .case-study-card,
    .team-card, .nav-link, .btn, .cta-btn {
        cursor: pointer !important;
    }
    
    .cursor-dot,
    .cursor-glow {
        display: none !important;
    }
}

/* ============================================
   COMPREHENSIVE FIX FOR ALL ISSUES
   Add this to the END of your CSS file
   ============================================ */

/* FIX 1: STICKY HEADER (stays at top) */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

/* Add padding to body so content doesn't hide under fixed header */
body {
    padding-top: 80px;
}

/* FIX 2: CUSTOM CURSOR - More aggressive approach */
* {
    cursor: none !important;
}

.cursor-dot {
    position: fixed !important;
    width: 8px !important;
    height: 8px !important;
    background: #EBC31D !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 99999 !important;
    display: block !important;
    opacity: 1 !important;
    mix-blend-mode: difference !important;
}

.cursor-glow {
    position: fixed !important;
    width: 40px !important;
    height: 40px !important;
    background: radial-gradient(circle, rgba(235, 195, 29, 0.5) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 99998 !important;
    display: block !important;
    opacity: 1 !important;
}

/* Re-enable normal cursor on mobile */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    
    .cursor-dot,
    .cursor-glow {
        display: none !important;
    }
}

/* FIX 3: Ensure counter numbers are visible */
.stat-number,
.metric-number {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FIX 4: CTA button styling when it's a link */
a.cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}


/* ============================================
   MOBILE HEADER BUTTON FIX
   ============================================ */

@media (max-width: 1024px) {
    /* Make header CTA button smaller on mobile */
    .header-content a.cta-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
    
    /* Hide the header CTA button on very small screens */
    @media (max-width: 640px) {
        .header-content .cta-btn {
            display: none !important;
        }
    }
    
    /* Make sure mobile menu button is visible */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Adjust header spacing on mobile */
    .header-content {
        gap: 10px;
    }
    
    /* Make logo smaller on mobile */
    .logo-placeholder {
        font-size: 18px !important;
    }
}

/* For tablets - medium size button */
@media (min-width: 641px) and (max-width: 1024px) {
    .header-content a.cta-btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* ============================================
   AGGRESSIVE iOS FIX FOR HEADER BUTTON
   ============================================ */

/* Target all mobile devices including iOS */
@media only screen and (max-width: 1024px) {
    /* Force button to be smaller on tablets */
    .header .cta-btn,
    .header-content .cta-btn,
    a.cta-btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        min-width: auto !important;
        max-width: 120px !important;
    }
}

/* Hide button on small phones (iOS and Android) */
@media only screen and (max-width: 640px) {
    .header .cta-btn,
    .header-content .cta-btn {
        display: none !important;
        visibility: hidden !important;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    /* This targets iOS Safari specifically */
    @media only screen and (max-width: 1024px) {
        .header .cta-btn,
        .header-content .cta-btn {
            padding: 8px 14px !important;
            font-size: 11px !important;
            line-height: 1.2 !important;
            -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
        }
    }
    
    @media only screen and (max-width: 640px) {
        .header .cta-btn,
        .header-content .cta-btn {
            display: none !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
    }
}

/* Ensure mobile menu button is visible */
@media only screen and (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Adjust header layout for better spacing */
    .header-content {
        justify-content: space-between !important;
        gap: 8px !important;
    }
    
    /* Make logo responsive */
    .logo-placeholder {
        font-size: 16px !important;
    }
}

/* iPad and tablet specific */
@media only screen 
  and (min-width: 641px) 
  and (max-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .header .cta-btn,
    .header-content .cta-btn {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
}

/* iPhone specific (all sizes) */
@media only screen 
  and (max-width: 640px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .header .cta-btn,
    .header-content .cta-btn {
        display: none !important;
    }
}

/* ================================================
   CONTINUOUS INFINITE CAROUSEL CSS
   Add this to your styles-final.css (or replace existing carousel CSS)
   ================================================ */

/* Clients Section */
.clients {
    background: var(--darker-bg);
    padding: 100px 0;
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.clients-track:hover {
    animation-play-state: paused;
}

/* Individual logo container */
.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(235, 195, 29, 0.3);
}

/* Logo image */
.client-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.client-logo:hover .client-img {
    filter: grayscale(0%) brightness(1);
}

/* Smooth infinite scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .client-logo {
        width: 160px;
        height: 100px;
        padding: 15px;
    }
    
    .clients-track {
        gap: 30px;
        animation: scroll-left 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .client-logo {
        width: 140px;
        height: 90px;
        padding: 12px;
    }
    
    .clients-track {
        gap: 20px;
        animation: scroll-left 25s linear infinite;
    }
}
/* ================================================
   COMPLETE FIX FOR ALL ISSUES
   Add this to the END of your styles-final.css
   ================================================ */

/* FIX 1: SOLID HEADER - Not transparent */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(10, 14, 39, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

/* FIX 2: CLIENT LOGOS - Show in COLOR (not grayscale) */
.client-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none !important; /* Remove grayscale */
    transition: transform 0.3s ease;
}

.client-logo:hover .client-img {
    transform: scale(1.1);
    filter: none !important;
}

/* FIX 3: COUNTER NUMBERS - Make visible and animate */
.stat-number,
.metric-number {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    background: var(--gradient-accent) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Ensure body has padding for fixed header */
body {
    padding-top: 80px !important;
}

/* Make sure sections are visible */
.about,
.results,
.clients {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force stats to show */
.stats-grid {
    display: grid !important;
}

.stat-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force results metrics to show */
.results-metrics {
    display: grid !important;
}

.metric-card {
    opacity: 1 !important;
    visibility: visible !important;
}

