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

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

/* Base responsive rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure text wraps properly */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    --primary-blue: #0066ff;
    --light-blue: #00aaff;
    --dark-blue: #002244;
    --darker-blue: #001122;
    --text-main: #1a2b3c;
    --text-secondary: #4a5b6c;
    --bg-light: #f0f4f8;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 102, 255, 0.1);
    --glow-blue: rgba(0, 170, 255, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(0, 102, 255, 0.03), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(0, 170, 255, 0.04), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-attachment: fixed;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    /* Start hidden */
}

/* Premium Shadows */
:root {
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px -12px rgba(0, 102, 255, 0.12);
    --shadow-hover: 0 32px 64px -12px rgba(0, 102, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 32px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    font-weight: 500;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 12px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-md);
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
    pointer-events: none;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-blue);
}

.contact-btn {
    background: var(--primary-blue);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.contact-btn:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

/* Main Content Styles */
main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.main-content {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
}

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

.left-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-heading {
    font-size: 56px;
    font-weight: 800;
    color: var(--darker-blue);
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.description strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.demo-btn {
    background: #ffffff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.demo-btn:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}

/* Right Section - Demo Area */
.right-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-visual {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 102, 255, 0.1);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 10px 18px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--primary-blue);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.solutions-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
    background: #ffffff;
}

.solutions-page-hero {
    padding: 100px 0 80px;
    text-align: left;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.solutions-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.solutions-page-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.solutions-page-hero .eyebrow {
    color: var(--light-blue);
    background: rgba(0, 170, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 170, 255, 0.2);
    margin-bottom: 24px;
}

.solutions-page-hero .solutions-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 800px;
    margin: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    font-weight: 700;
}

.solutions-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solutions-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-visual img {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: block;
}

.solutions-hero h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--darker-blue);
}

.solutions-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
}

.solutions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solutions-list li {
    line-height: 1.5;
    color: var(--text-main);
}

.solutions-list li::before {
    content: '✔';
    color: var(--primary-blue);
    margin-right: 10px;
    font-weight: bold;
}

.solutions-panel {
    border-radius: 24px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.solutions-panel-standalone {
    margin-top: 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f4f8 100%);
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.mission-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.commitment-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.commitment-intro {
    margin-top: 20px;
    color: var(--text-secondary);
}

.commitment-list {
    margin-top: 16px;
}

.analytics-intro {
    margin-bottom: 30px;
}

.analytics-text h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--darker-blue);
}

.analytics-text p {
    color: var(--text-secondary);
    max-width: 720px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.capability-card {
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.capability-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.capability-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.analytics-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.highlight-content {
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.highlight-content h2 {
    margin-bottom: 14px;
    color: var(--darker-blue);
}

.highlight-content ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.highlight-panel {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
    color: var(--text-main);
}

.impact-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.panel-title {
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 700;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.panel-grid div {
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.panel-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--darker-blue);
}

.expertise-section {
    margin-bottom: 60px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.expertise-card {
    padding: 0;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.expertise-card h3 {
    font-size: 20px;
    margin: 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
    color: #ffffff;
    border-radius: 20px 20px 0 0;
}

.expertise-card p {
    color: var(--text-secondary);
    margin: 0;
    padding: 20px 24px 12px;
}

.expertise-card ul {
    list-style: disc;
    padding: 0 24px 24px 42px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.usecases-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.usecases-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usecases-list li {
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    color: var(--text-main);
}

.usecases-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.2em;
}

.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-main);
    font-style: italic;
}

.testimonial span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.partners-section {
    padding: 40px 0 60px;
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f4f8 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

.partners-label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 700;
}

.partners-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: partnersDrift 8s ease-in-out infinite alternate;
    will-change: transform;
}

.partner-card {
    padding: 28px 48px;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    height: 48px;
    width: auto;
    filter: none;
    /* Removed brightness filter for light mode */
}

@keyframes partnersDrift {
    0% {
        transform: translateX(-24px);
    }

    50% {
        transform: translateX(24px);
    }

    100% {
        transform: translateX(-24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-logos {
        animation: none;
    }
}

.demo-form-section {
    padding: 80px 0 100px;
    position: relative;
    z-index: 5;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px),
        radial-gradient(circle at 20% 50%, rgba(255, 200, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    overflow: hidden;
}

/* Decorative orange graphics - Large circles */
.demo-form-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatOrange 8s ease-in-out infinite;
}

.demo-form-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatOrange 10s ease-in-out infinite reverse;
}

/* Floating animation for decorative elements */
@keyframes floatOrange {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* Add subtle pattern overlay to container */
.demo-form-section .container {
    position: relative;
    z-index: 1;
}

.demo-form-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 1fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
}

.demo-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-form label {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

.demo-form input,
.demo-form textarea {
    background: #f8faff;
    border: 1px solid #d0dbe7;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: #a0b0c0;
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    background: #ffffff;
}

.demo-form .full-width {
    grid-column: span 2;
}

.form-note {
    grid-column: span 2;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.submit-btn {
    grid-column: span 2;
    justify-self: flex-start;
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 102, 255, 0.35);
}

.contact-info-panel {
    padding: 32px;
    border-radius: 24px;

    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.contact-logo {
    width: 180px;
    max-width: 100%;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--light-blue);
}

.contact-divider {
    width: 60%;
    height: 1px;
    background: rgba(0, 102, 255, 0.2);
    margin: 6px auto 4px;
}

.contact-heading {
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
}

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

.contact-text.copyright {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.8;
}

.under-construction {
    text-align: center;
    padding: 100px 20px 140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.under-construction .eyebrow {
    letter-spacing: 0.4em;
}

.under-construction h1 {
    font-size: 42px;
}

.under-construction .description {
    max-width: 640px;
}

.careers-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f4f8 100%);
}

.careers-header {
    text-align: center;
    margin-bottom: 40px;
}

.careers-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.careers-header p {
    color: var(--text-secondary);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.career-card {
    padding: 26px 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.career-card h3 {
    font-size: 20px;
}

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

.career-card ul {
    list-style: disc;
    padding-left: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.career-cta {
    margin-top: 8px;
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.career-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 170, 255, 0.55);
}

.aboutus-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.aboutus-header {
    text-align: center;
    margin-bottom: 40px;
}

.aboutus-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.aboutus-header p {
    color: var(--text-secondary);
}

.aboutus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.aboutus-card {
    padding: 26px 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aboutus-card h3 {
    font-size: 20px;
}

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

.aboutus-card ul {
    list-style: disc;
    padding-left: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.aboutus-cta {
    margin-top: 8px;
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.aboutus-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 170, 255, 0.55);
}

.managed-services-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.managed-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.managed-services-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.managed-services-header p {
    color: var(--text-secondary);
}

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

.managed-services-card {
    padding: 26px 24px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.managed-services-card h3 {
    font-size: 20px;
}

.managed-services-card ul {
    list-style: disc;
    padding-left: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.managed-services-cta {
    margin-top: 8px;
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, var(--light-blue), var(--primary-blue));
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.managed-services-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 170, 255, 0.55);
}

@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .demo-form {
        grid-template-columns: 1fr;
    }

    .demo-form .full-width,
    .form-note,
    .submit-btn {
        grid-column: span 1;
    }

    .submit-btn {
        justify-self: stretch;
        text-align: center;
    }

    .contact-info-panel {
        text-align: left;
        align-items: flex-start;
    }
}

/* Footer Styles */
.footer {
    padding: 40px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

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

.footer-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-icon {
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 600;
}

.footer-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 170, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.footer-shape {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(10px);
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particleCanvas {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-heading {
        font-size: 36px;
    }

    .tagline {
        font-size: 28px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .solutions-hero,
    .usecases-section,
    .analytics-highlight {
        grid-template-columns: 1fr;
    }

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

    .under-construction {
        padding: 80px 20px 100px;
    }

    .under-construction h1 {
        font-size: 36px;
    }

    .solutions-page-hero h1 {
        font-size: 36px;
    }

    .careers-header h2,
    .aboutus-header h2,
    .managed-services-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-image {
        height: 40px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }

    .main-heading {
        font-size: 32px;
    }

    .tagline {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 28px;
    }

    .content-wrapper {
        gap: 40px;
    }

    .solutions-hero {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .main-heading {
        font-size: 40px;
    }

    .tagline {
        font-size: 30px;
    }

    .data-visual,
    .solutions-visual img {
        max-width: 420px;
    }

    .expertise-grid,
    .managed-services-grid,
    .aboutus-grid,
    .careers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .solutions-page-hero h1 {
        font-size: 40px;
    }

    .solutions-hero h2 {
        font-size: 32px;
    }

    .analytics-text h2 {
        font-size: 28px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .expertise-card h3,
    .capability-card h3 {
        font-size: 19px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 18px;
    }

    .main-content,
    .solutions-section,
    .careers-section,
    .aboutus-section,
    .managed-services-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 32px;
    }

    .tagline {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }

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

    .solutions-list li,
    .capability-card p,
    .expertise-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .partner-card {
        width: 100%;
    }

    .demo-form,
    .contact-info-panel {
        padding: 24px;
    }

    .solutions-page-hero h1 {
        font-size: 32px;
    }

    .solutions-hero h2 {
        font-size: 28px;
    }

    .expertise-card h3,
    .capability-card h3,
    .career-card h3,
    .aboutus-card h3,
    .managed-services-card h3 {
        font-size: 18px;
    }

    .highlight-content,
    .highlight-panel,
    .solutions-panel {
        padding: 24px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .data-visual,
    .solutions-visual img {
        max-width: 100%;
    }

    .under-construction {
        padding: 60px 16px 80px;
    }

    .under-construction h1 {
        font-size: 28px;
    }

    .under-construction .description {
        font-size: 14px;
    }

    .solutions-page-hero h1 {
        font-size: 28px;
    }

    .careers-header h2,
    .aboutus-header h2,
    .managed-services-header h2 {
        font-size: 24px;
    }

    .analytics-text h2 {
        font-size: 24px;
    }
}

/* Additional responsive rules for better scaling */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .main-heading {
        font-size: 28px;
    }

    .tagline {
        font-size: 20px;
    }

    .solutions-page-hero h1 {
        font-size: 28px;
    }

    .solutions-hero h2 {
        font-size: 24px;
    }

    .demo-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .contact-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .partner-card {
        padding: 20px 32px;
    }

    .expertise-card,
    .capability-card,
    .career-card,
    .aboutus-card,
    .managed-services-card {
        padding: 20px;
    }

    .highlight-content,
    .highlight-panel,
    .solutions-panel {
        padding: 20px;
    }

    .panel-grid {
        gap: 16px;
    }

    .panel-grid div {
        padding: 14px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .demo-form,
    .contact-info-panel {
        padding: 20px;
    }

    .visual-caption {
        bottom: 16px;
        left: 16px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .under-construction {
        padding: 50px 16px 70px;
    }

    .under-construction h1 {
        font-size: 24px;
    }

    .solutions-page-hero h1 {
        font-size: 24px;
    }

    .careers-header h2,
    .aboutus-header h2,
    .managed-services-header h2 {
        font-size: 22px;
    }

    .analytics-text h2 {
        font-size: 22px;
    }

    .solutions-hero h2 {
        font-size: 22px;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Tablet landscape optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .content-wrapper {
        gap: 50px;
    }

    .solutions-hero {
        gap: 32px;
    }

    .expertise-grid,
    .managed-services-grid,
    .aboutus-grid,
    .careers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Interactivity Animations */

/* Typing Effect Cursor */
.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary-blue);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Button Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

.demo-btn {
    animation: pulse 2s infinite;
}

/* Hero Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.main-heading {
    animation: fadeInDown 1s ease-out forwards;
}