/* Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9;
    --dark: #1e293b;
    --light: #f8fafc;
    --grey-light: #e2e8f0;
    --grey: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    min-width: 160px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

/* Header & Navigation */
.modern-header {
    position: relative;
    min-height: 90vh;
    background: #1a1f2c;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f2c 0%, #2d3748 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.15) 0%, rgba(14, 165, 233, 0.15) 30%, transparent 70%);
}

.nav-container {
    position: relative;
    z-index: 10;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.modern-hero {
    position: relative;
    z-index: 1;
    min-height: calc(90vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 0 2rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.modern-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.benefit-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: #fff;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.6;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.visual-container:hover {
    transform: scale(1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.visual-container:hover .glow-effect {
    width: 130%;
    height: 130%;
    opacity: 1;
    filter: blur(25px);
}

.main-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.2));
    transition: all 0.5s ease;
    animation: gentle-float 8s ease-in-out infinite;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-grid {
    display: flex;
    gap: 30px;
    padding: 20px 40px;
    margin: 0 -40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    cursor: grab;
}

.service-grid:active {
    cursor: grabbing;
}

/* Service Scroll Gradients */
.service-scroll-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.service-scroll-gradient.left {
    left: 0;
    background: linear-gradient(90deg, var(--light) 0%, rgba(248, 250, 252, 0) 100%);
}

.service-scroll-gradient.right {
    right: 0;
    background: linear-gradient(-90deg, var(--light) 0%, rgba(248, 250, 252, 0) 100%);
}

.service-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: white;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-image {
    margin-bottom: 30px;
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 16px;
    padding: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    position: relative;
}

.service-content h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--primary);
}

.service-content p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-card .btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.7s ease;
}

.service-card:hover .btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.service-card:hover .btn::before {
    left: 100%;
}

/* Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grey-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 300px;
        padding: 30px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Floating elements in background */
.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 15s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-duration: 25s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-duration: 20s;
}

.floating-element:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-duration: 22s;
}

.floating-element:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1f2c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-image {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-study-image:hover {
    transform: translateY(-10px);
}

.case-study-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(56, 189, 248, 0.2));
}

.case-study-content {
    padding: 2rem;
}

.industry-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.case-study-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-study-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.achievement-list {
    list-style: none;
    margin-bottom: 2rem;
}

.achievement-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
}

.achievement-text {
    flex: 1;
}

.case-study .btn {
    margin-top: 1rem;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border: none;
    color: white;
    padding: 1rem 2rem;
}

.case-study .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
}

@media (max-width: 768px) {
    .case-study {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-content {
        padding: 1rem;
    }

    .case-study-content h3 {
        font-size: 1.75rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: white;
    border: 2px solid rgba(99, 102, 241, 0.2);
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1f2c 0%, #2d3748 100%);
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    max-width: 400px;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

/* Animations */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .modern-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-hero h1 {
        font-size: 3rem;
    }

    .benefit-list li {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .case-study {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modern-hero h1 {
        font-size: 2.5rem;
    }

    .benefit-list li {
        font-size: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Popup */
.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.service-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-detail {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-overlay.active .service-detail {
    transform: translateY(0);
    opacity: 1;
}

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-header {
    margin-bottom: 2rem;
    position: relative;
}

.service-detail-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail-close:hover {
    background: var(--grey-light);
    transform: rotate(90deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn:hover span {
    background: var(--primary);
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1f2c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.clients-section .section-header {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-section .section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clients-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.clients-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.client-logo {
    flex: 0 0 280px;
    height: 160px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5 - 2rem * 5));
    }
}

/* Header Transition Cards */
.header-transition-cards {
    display: flex;
    justify-content: space-between;
    margin: -3rem auto 0;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.transition-card {
    width: 23%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.transition-card:nth-child(1) {
    width: 22%;
    background: linear-gradient(90deg, #4338ca 0%, #6366f1 100%);
}

.transition-card:nth-child(2) {
    width: 15%;
    background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
    margin-top: -3px;
}

.transition-card:nth-child(3) {
    width: 28%;
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
    margin-top: 3px;
}

.transition-card:nth-child(4) {
    width: 20%;
    background: linear-gradient(90deg, #38bdf8 0%, #7dd3fc 100%);
    margin-top: -4px;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 31, 44, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

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

    .service-detail-content {
        padding: 1.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll-text {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.scroll-arrow {
    position: relative;
    width: 24px;
    height: 24px;
    animation: bounceRight 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Hide scroll indicator after user has scrolled */
.service-grid.scrolled .scroll-indicator-wrapper {
    display: none;
} 