/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #051450 !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    position: relative;
}

/* Responsive Navigation */
@media (max-width: 1600px) {
    .nav-container {
        max-width: 1200px;
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-logo-img {
        height: 45px;
    }
    
    /* Stats layout for medium screens - 2 on top, 1 below */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-item:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Fix mobile overflow issues */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
        justify-content: space-between;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #051450;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .nav-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 3px 0;
        transition: all 0.3s ease-in-out;
        background-color: #fff;
        border-radius: 2px;
    }
    
    .nav-logo-img {
        height: 45px;
    }
    
    /* Fix hero section mobile overflow */
    .hero {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        padding: 0 !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Fix all sections mobile overflow */
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix grid layouts */
    .grid, .stats-grid {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix any potential text overflow */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Force remove any background from nav-toggle */
    .navbar .nav-container .nav-toggle,
    #mobile-menu {
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
}

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    padding: 8px;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    outline: none !important;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6366f1;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    opacity: 0.95;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.4s forwards;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.6s forwards;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}



/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    align-items: start;
}

.stat-item {
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #6366f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

.about-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-images {
    position: relative;
    height: 400px;
    width: 100%;
}

.image-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.placeholder-image {
    color: white;
    font-size: 60px;
}

.insights-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 160px;
}

.insights-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.insights-text {
    font-weight: 600;
    color: #1e293b;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Mobile Services Carousel */
.services-mobile-carousel {
    display: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.service-slide {
    min-width: 100%;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-slide .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-slide .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.service-slide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-slide p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-tags span {
    background: #f1f5f9;
    color: #6366f1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #6366f1;
    transform: scale(1.2);
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #6366f1;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Mobile Why Choose Features */
.why-choose-mobile {
    display: none;
}

.mobile-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.mobile-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.mobile-feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

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

.services-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-left,
.services-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-right {
    margin-top: 80px;
}

.service-block {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0.3;
    transform: translateY(50px);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

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

.service-primary {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-secondary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.service-secondary:hover {
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.6;
    z-index: 2;
}

.service-primary .service-number {
    color: #6366f1;
}

.service-secondary .service-number {
    color: rgba(255, 255, 255, 0.7);
}

.service-icon-large,
.service-icon-medium {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon-large::before,
.service-icon-medium::before {
    content: "🎨";
    font-size: 32px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon-large lottie-player:not([src*="assets"]) + ::before,
.service-icon-medium lottie-player:not([src*="assets"]) + ::before {
    opacity: 1;
}

.service-icon-large {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    width: 88px;
    height: 88px;
}

.service-primary .service-icon-large {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.service-icon-medium {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 72px;
    height: 72px;
    backdrop-filter: blur(10px);
}

.service-secondary .service-icon-medium {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-content-large h3,
.service-content-medium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-primary h3 {
    color: #1e293b;
}

.service-secondary h3 {
    color: white;
}

.service-content-large p,
.service-content-medium p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-primary p {
    color: #64748b;
}

.service-secondary p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.service-features span {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.service-secondary .service-features span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover animations */
.service-block:hover .service-icon-large,
.service-block:hover .service-icon-medium {
    transform: scale(1.1) rotate(5deg);
}

.service-block:hover h3 {
    transform: translateX(5px);
}

/* Staggered animations */
.service-block:nth-child(1) { animation-delay: 0.1s; }
.service-block:nth-child(2) { animation-delay: 0.3s; }

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-item span {
    color: #64748b;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.2;
    transform: translateY(40px) scale(0.95);
}

.feature-box:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-5px);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: white;
    color: #6366f1;
}

.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.feature-box:hover h4 {
    color: white;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
}

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


.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-content .btn {
    background: white;
    color: #6366f1;
    font-size: 18px;
    padding: 18px 40px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo h3 {
    color: #6366f1;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-logo span {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer-address {
    margin-top: 20px;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #6366f1;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.contact-info i {
    margin-right: 10px;
    color: #6366f1;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    color: white;
}


/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(99, 102, 241, 0.2);
        color: #6366f1;
    }

    .nav-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
        background: rgba(0, 0, 0, 0.3);
        padding: 15px;
        border-radius: 10px;
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-images {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .image-card {
        width: 100%;
        height: 200px;
        position: relative;
        top: 0;
        left: 0;
    }

    .insights-card {
        position: relative;
        margin-top: 20px;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-showcase {
        display: none;
    }

    .services-mobile-carousel {
        display: block;
    }

    .why-choose-features {
        display: none;
    }

    .why-choose-mobile {
        display: block;
    }

    .service-block {
        padding: 25px 20px;
    }

    .service-content-large,
    .service-content-medium {
        text-align: center;
    }

    .service-content-large h3,
    .service-content-medium h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-content-large p,
    .service-content-medium p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .service-icon-large,
    .service-icon-medium {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-features {
        justify-content: center;
        gap: 8px;
    }

    .service-features span {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .service-number {
        font-size: 0.9rem;
        width: 30px;
        height: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .stat-item {
        padding: 25px 15px;
        min-height: 120px;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .services-section {
        padding: 60px 0;
    }

    .about-section,
    .why-choose-section {
        padding: 60px 0;
    }

    .stats-section {
        padding: 50px 0;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.case-study-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.case-study-card.featured::before {
    background: rgba(255, 255, 255, 0.3);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-number {
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 20px;
}

.case-study-card.featured .case-study-number {
    color: rgba(255, 255, 255, 0.8);
}

.case-study-metric {
    margin-bottom: 20px;
}

.metric-number {
    font-size: 48px;
    font-weight: 800;
    color: #6366f1;
    display: block;
    line-height: 1;
}

.case-study-card.featured .metric-number {
    color: white;
}

.metric-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.case-study-card.featured .metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.case-study-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.case-study-card.featured h3 {
    color: white;
}

.case-study-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.case-study-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-study-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.case-study-card.featured .case-study-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.case-study-card.featured .featured-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-card.featured .featured-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-studies-cta {
    text-align: center;
    margin-top: 60px;
}





.client-logos {
    margin-top: 80px;
    text-align: center;
}

.client-logos .section-label {
    margin-bottom: 30px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

/* CTA Section Updates */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-study-card {
        padding: 30px;
    }
    
    .metric-number {
        font-size: 36px;
    }
    
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* End of file */
