* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(120deg, #b4dcde 0%, #eaf6ff 100%);
            color: #222;
            margin: 0;
            padding: 0;
        }

        html, body {
    overflow-x: hidden;
    width: 100%;
}

#main-content {
    max-width: 100vw;
    overflow-x: hidden;
}

        /* Extended Header */
header {
    background: transparent;
    color: #222;
    padding: 1rem 0 2rem;
    position: relative;
    width: 100%;
    box-shadow: none;
    overflow: hidden;
}

header::before {
    content: none;
}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 10px 0 10px;
            position: relative;
            z-index: 2;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 10px 0 10px;
            position: relative;
            z-index: 2;
            background: none;
            box-shadow: none;
            border-radius: 0;
        }

        .logo {
            height: 160px;
            width: 360px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .logo-img {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: 160px;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            padding: 0;
            display: block;
            object-fit: contain;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 22px;
            align-items: center;
            margin-left: auto;
            padding: 4px 10px;
            background: rgba(255,255,255,0.08); /* glassmorphism effect, very subtle */
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(90,173,226,0.04);
            backdrop-filter: blur(8px);
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: #222;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.04em;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 7px;
            transition: color 0.2s, background 0.2s, box-shadow 0.2s;
            box-shadow: 0 1px 4px rgba(90,173,226,0.06);
            display: inline-block;
            background: none;
        }

        .nav-links a:hover, .nav-links a:focus {
            color: #fff;
            background: linear-gradient(90deg, #5dade2 0%, #48c9b0 100%);
            box-shadow: 0 2px 12px rgba(90,173,226,0.12);
            outline: none;
        }

        .nav-links a.active {
            color: #fff;
            background: linear-gradient(90deg, #5dade2 0%, #48c9b0 100%);
            box-shadow: 0 2px 12px rgba(90,173,226,0.18);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: none;
            color: #5dade2;
            padding-bottom: 0;
            position: relative;
            margin-bottom: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.0); /* No overlay, let image show through */
            z-index: 1;
        }

        .hero-content {
            max-width: 700px;
            margin: 80px auto 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.1;
            color: #222;
            text-shadow: 0 2px 8px rgba(255,255,255,0.15);
        }

        .hero-content p {
            color: #222;
            font-size: 1.3rem;
            margin-bottom: 32px;
            text-shadow: 0 2px 8px rgba(255,255,255,0.15);
        }

        .cta-btn {
            background: #5dade2;
            color: #fff;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: background 0.2s;
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover {
            background: #4a9bc7;
            color: #fff;
        }

        /* Services Section - Adjusted top padding */
        .services {
            background: transparent;
            padding-top: 0;
            padding-bottom: 60px;
            margin-top: 0;
            text-align: center;
        }

        .services h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .service-cards {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .card {
            background: #f7f9fb;
            border-radius: 18px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            padding: 32px 24px;
            max-width: 320px;
            flex: 1 1 280px;
            text-align: left;
            transition: box-shadow 0.2s;
        }

        .card:hover {
            box-shadow: 0 6px 24px rgba(90,173,226,0.18);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 18px;
            border-radius: 8px;
            object-fit: cover;
        }

        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .card p {
            font-size: 1rem;
            color: #444;
        }

        /* About Section */
        .about {
            background: transparent;
            padding: 60px 0;
            text-align: center;
        }

        .about-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .about h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .about p {
            font-size: 1.1rem;
            margin-bottom: 24px;
            color: #222;
        }

        .values {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 32px;
            font-size: 1rem;
            color: #0a2540;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            background: transparent;
            padding: 60px 0;
            text-align: center;
        }
        .contact h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .contact-content {
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-content p {
            margin-bottom: 24px;
            font-size: 1.15rem;
            color: #222;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
            max-width: 400px;
            margin: 0 auto 24px auto;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #dbeafe;
            font-size: 1rem;
            font-family: inherit;
        }

        .contact-form textarea {
            min-height: 80px;
            resize: vertical;
        }

        .contact-form button {
            background: #0a2540;
            color: #fff;
            font-weight: 700;
            border: none;
            border-radius: 30px;
            padding: 12px 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .contact-form button:hover {
            background: #5dade2;
        }

        .contact-info {
            font-size: 1rem;
            color: #222;
        }

        /* Footer */
        footer {
            background: rgba(10,37,64,0.85) !important;
            color: #fff;
            padding: 32px 0 16px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        /* Customer Stories Section */
        .customer-stories {
            background: linear-gradient(120deg, #b4dcde 0%, #eaf6ff 100%);
            padding: 64px 0 48px 0;
            text-align: center;
        }

        .customer-stories .section-header h2 {
            font-family: 'Inter', 'Montserrat', Arial, sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: #222;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .customer-stories .section-subtitle {
            font-family: 'Inter', 'Montserrat', Arial, sans-serif;
            font-size: 1.15rem;
            color: #3a7ca5;
            font-weight: 500;
            margin-bottom: 0;
            letter-spacing: 0.5px;
            font-style: italic;
        }

        .customer-stories .scrollable-card-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            padding: 0 12px;
        }

        .customer-stories .modern-card-grid {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 24px 0;
        }

        .customer-stories .modern-card {
            background: rgba(255,255,255,0.85);
            border-radius: 22px;
            box-shadow: 0 6px 32px 0 rgba(90,173,226,0.12), 0 1.5px 8px 0 rgba(90,173,226,0.08);
            backdrop-filter: blur(8px);
            min-width: 320px;
            max-width: 340px;
            flex: 0 0 auto;
            padding: 36px 28px 28px 28px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
            font-family: 'Inter', 'Montserrat', Arial, sans-serif;
            color: #222;
            position: relative;
            border: 1px solid rgba(90,173,226,0.08);
        }

        .customer-stories .modern-card:hover {
            box-shadow: 0 12px 40px 0 rgba(90,173,226,0.18), 0 2px 12px 0 rgba(90,173,226,0.10);
            transform: translateY(-6px) scale(1.03);
            background: rgba(255,255,255,0.95);
        }

        .customer-stories .modern-card-icon {
            width: 72px;
            height: 72px;
            margin-bottom: 18px;
            border-radius: 14px;
            object-fit: cover;
            box-shadow: 0 2px 12px rgba(90,173,226,0.13);
            background: rgba(180,220,222,0.12);
        }

        .customer-stories .card-title {
            font-size: 1.32rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: #1a4d6b;
            letter-spacing: -0.5px;
            font-family: 'Inter', 'Montserrat', Arial, sans-serif;
        }

        .customer-stories .card-quote {
            font-size: 1.08rem;
            color: #444;
            font-style: italic;
            margin-bottom: 18px;
            margin-top: 0;
            line-height: 1.6;
            border-left: 3px solid #b4dcde;
            padding-left: 14px;
            background: rgba(180,220,222,0.07);
            border-radius: 6px;
        }

        .customer-stories .industry-badge {
            background: linear-gradient(90deg, #eaf6ff 60%, #b4dcde 100%);
            color: #3a7ca5;
            font-size: 0.97em;
            padding: 5px 16px;
            border-radius: 14px;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 0.6px;
            box-shadow: 0 1px 6px rgba(90,173,226,0.10);
        }

        .customer-stories .metrics-bar {
            display: flex;
            gap: 20px;
            margin-top: 14px;
            font-size: 1.05em;
            color: #1a4d6b;
            font-family: 'Inter', 'Montserrat', Arial, sans-serif;
            font-weight: 600;
        }

        .customer-stories .metrics-bar strong {
            color: #3a7ca5;
            font-weight: 800;
        }

        .customer-stories .card-accent {
            width: 36px;
            height: 10px;
            border-radius: 5px;
            margin-bottom: 18px;
            opacity: 0.85;
        }

        .customer-stories .card-accent.healthcare { background: #b3ffe0; }
.customer-stories .card-accent.retail { background: #ffe0b3; }
.customer-stories .card-accent.manufacturing { background: #e0b3ff; }

.customer-stories .scroll-btn {
    background: #3a7ca5;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.6em;
    cursor: pointer;
    margin: 0 12px;
    box-shadow: 0 2px 8px rgba(90,173,226,0.12);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-stories .scroll-btn:hover {
    background: #b4dcde;
    color: #1a4d6b;
    transform: scale(1.08);
}

/* --- Our Solutions Professional Styling --- */
.solutions {
    background: linear-gradient(120deg, #b4dcde 0%, #eaf6ff 100%);
    padding: 64px 0 48px 0;
    text-align: center;
}
.solutions .section-header h2 {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.solutions .section-subtitle {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    color: #3a7ca5;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-style: italic;
}
.solutions .scrollable-card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 12px;
}
.solutions .modern-card-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 24px 0;
}
.solutions .modern-card {
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(90,173,226,0.12), 0 1.5px 8px 0 rgba(90,173,226,0.08);
    backdrop-filter: blur(8px);
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 auto;
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    color: #222;
    position: relative;
    border: 1px solid rgba(90,173,226,0.08);
}
.solutions .modern-card:hover {
    box-shadow: 0 12px 40px 0 rgba(90,173,226,0.18), 0 2px 12px 0 rgba(90,173,226,0.10);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255,255,255,0.95);
}
.solutions .modern-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(90,173,226,0.13);
    background: rgba(180,220,222,0.12);
}
.solutions .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a4d6b;
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
}
.solutions .card-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.5;
}
.solutions .card-accent {
    width: 36px;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 18px;
    opacity: 0.85;
}
.solutions .card-accent.cloud { background: #b3e0ff; }
.solutions .card-accent.ai { background: #ffe0b3; }
.solutions .card-accent.automation { background: #e0ffb3; }
.solutions .card-accent.data { background: #e0b3ff; }
.solutions .card-accent.devops { background: #ffd6e0; }
.solutions .scroll-btn {
    background: #3a7ca5;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.6em;
    cursor: pointer;
    margin: 0 12px;
    box-shadow: 0 2px 8px rgba(90,173,226,0.12);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solutions .scroll-btn:hover {
    background: #b4dcde;
    color: #1a4d6b;
    transform: scale(1.08);
}

.contact-section .section-header {
    padding: 0 20px;
    max-width: 400px;
    margin: 0 auto 24px auto;
}

.contact-section .section-header h2 {
    text-align: center;
}


@media (max-width: 900px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .values {
        flex-direction: column;
        gap: 12px;
    }
    .navbar {
        flex-direction: column;
        gap: 18px;
        padding: 18px 8px 0 8px;
        border-radius: 0;
        background: none;
        box-shadow: none;
    }
    .nav-links {
        flex-direction: column;
        gap: 12px;
        padding: 12px 8px;
        border-radius: 12px;
        background: rgba(255,255,255,0.08);
        box-shadow: 0 2px 8px rgba(90,173,226,0.04);
        backdrop-filter: blur(8px);
    }
    .nav-links a {
        font-size: 1.08rem;
        padding: 10px 12px;
        border-radius: 8px;
        background: none;
    }
    
    /* Container must allow scrolling */
    .scrollable-card-container {
        overflow-x: auto !important;
        overflow-y: visible !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    /* Grid must NOT overflow - let container handle it */
    .modern-card-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        padding: 24px 20px !important;
        width: max-content !important;
        overflow: visible !important;
        scroll-behavior: smooth;
    }
    
    /* Cards with proper sizing */
    .modern-card {
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
        flex: 0 0 280px !important;
        margin: 0 !important;
        padding: 32px 24px !important;
        min-height: 320px !important;
        scroll-snap-align: center;
        box-sizing: border-box;
    }
    
    .modern-card:first-child {
        margin-left: 0 !important;
    }
    
    .modern-card:last-child {
        margin-right: 0 !important;
    }
    
    /* Adjust content proportions */
    .modern-card-icon {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 16px !important;
    }
    
    .card-title {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    .card-desc, .card-quote {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Scrollbar styling */
    .scrollable-card-container::-webkit-scrollbar {
        height: 8px;
        background: #eaf6ff;
        border-radius: 8px;
    }
    .scrollable-card-container::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #5dade2 0%, #48c9b0 100%);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(90,173,226,0.18);
    }
    .scrollable-card-container::-webkit-scrollbar-track {
        background: #eaf6ff;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    body, html {
        font-size: 15px;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 4px 0 4px;
        max-width: 100vw;
    }
    .logo {
        height: 60px;
        width: 140px;
    }
    .nav-links {
        flex-direction: column;
        gap: 8px;
        padding: 8px 4px;
        border-radius: 8px;
        width: 100%;
        align-items: flex-start;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 8px 10px;
        border-radius: 8px;
        width: 100%;
        text-align: left;
    }
    .hero-content {
        margin: 40px auto 0 auto;
        padding: 0 8px;
        max-width: 98vw;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .cta-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 2rem !important;
    }
    .contact-form {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .contact-card {
        min-width: 90vw !important;
        max-width: 98vw !important;
        padding: 20px 10px 16px 10px !important;
    }
    .footer-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 8px;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
    }
    .footer-links a {
        font-size: 1rem;
        padding: 8px 0;
        width: 100%;
        text-align: left;
    }
    .scroll-btn {
        position: static;
        margin: 10px 0;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .section-header h2 {
        font-size: 1.3rem !important;
    }
    .contact-form {
        padding: 0 1vw;
    }
}

/* Fancy horizontal scrollbar */
.modern-card-grid {
    scrollbar-width: thin;
    scrollbar-color: #5dade2 #eaf6ff;
}
.modern-card-grid::-webkit-scrollbar {
    height: 10px;
    background: #eaf6ff;
    border-radius: 8px;
}
.modern-card-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #5dade2 0%, #48c9b0 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(90,173,226,0.18);
    border: 2px solid #eaf6ff;
}
.modern-card-grid::-webkit-scrollbar-track {
    background: #eaf6ff;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .contact-section .section-header {
        padding: 0 20px;
        max-width: 400px;
        margin: 0 auto 24px auto;
    }
}
