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

/* Layout variables */
:root {
    /* Approx navbar total height (logo 65px + vertical paddings/shadows) */
    --nav-height: 96px;
}
@media (max-width: 768px) {
    :root { --nav-height: 76px; }
}

/* Global navbar offset and hero removal */
html {
    scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
    padding-top: var(--nav-height);
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: block !important;
}

.company-overview .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.company-overview #tsparticles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.overview-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937 !important;
    margin-bottom: 24px;
    line-height: 1.2;
}

.overview-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563 !important;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .company-overview {
        padding: 60px 0 40px;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .overview-text p {
        font-size: 1.1rem;
    }
}

/* Hide hero/intro sections across pages */
.industries-hero,
.perfect-about-hero,
.solutions-hero {
    display: none !important;
}

/* Show hero only on index page */
.hero {
    display: none !important;
}

/* Industries & Platforms */
.industries-hero {
    padding: 110px 0 24px;
    background: #ffffff;
}

.industries-hero .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.industries-hero .section-header h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    margin-bottom: 8px;
}

.industries-hero .section-header p {
    font-size: 1.02rem;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
}

.industries {
    padding: 40px 0 100px;
    background: #ffffff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

/* When preview is inserted inside the grid, make it span the full row */
.platform-grid > #dataPreview {
    grid-column: 1 / -1;
    width: 100%;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f9fbff;
    border: 1px solid rgba(59,130,246,0.14);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.08);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.platform-card:hover {
    transform: translateY(-2px);
    background: #f3f7ff;
    box-shadow: 0 10px 22px rgba(59,130,246,0.14);
}

.platform-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: inset 0 0 12px rgba(255,255,255,0.25);
}

/* Ensure image logos align with icon size */
.platform-card img.platform-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid rgba(59,130,246,0.14);
    padding: 4px;
}

.platform-card .name {
    font-weight: 600;
    color: #111827;
    flex: 1; /* push actions to the right */
}

/* Platform action buttons aligned right */
.platform-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.platform-actions .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.platform-actions .btn i {
    font-size: 16px;
}

.data-preview {
    margin-top: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    /* Ensure when scrolled into view, it appears below the fixed navbar */
    scroll-margin-top: calc(var(--nav-height) + 12px);
}

.data-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.data-toolbar .left,
.data-toolbar .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-toolbar input[type="search"] {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
}

.data-toolbar button,
.data-toolbar .download-link {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(59,130,246,0.2);
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    text-decoration: none;
}

.data-table-wrapper {
    width: 100%;
    overflow: auto;
    max-height: 60vh;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.data-table thead th {
    position: sticky;
    top: 0;
    background: #f3f4f6;
    z-index: 5;
}

table.data-table th,
table.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    white-space: nowrap;
}

.data-empty {
    padding: 20px;
    color: #6b7280;
}

/* Solutions Section */
.solutions {
    padding: 60px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 60vh; /* room for bubbles to rise */
}

/* Solutions page hero */
.solutions-hero {
    padding: 110px 0 24px; /* account for fixed navbar, tighter bottom space */
    background: #ffffff;
}

.solutions-hero .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solutions-hero .section-header h2 {
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    margin-bottom: 8px;
}

.solutions-hero .section-header p {
    font-size: 1.02rem;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #1f2937;
    font-size: 0.92rem;
    border: 1px solid rgba(59,130,246,0.18);
    box-shadow: 0 2px 6px rgba(59,130,246,0.08);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover {
    background: #e9f0ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(59,130,246,0.15);
}

.category-pill.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(99,102,241,0.25);
}

.solution-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.18);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem;
    color: #333;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.usecase-list {
    list-style: none;
    margin-top: 0.5rem;
}

.usecase-list li {
    position: relative;
    padding-left: 28px;
    margin: 0.4rem 0;
    color: #4b5563;
}

.usecase-list li::before {
    content: "\f00c"; /* Font Awesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
}

/* 3D glare highlight on cards */
.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.35) 60%, rgba(255,255,255,0) 70%);
    transform: translateZ(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Stronger icon capsule for Solutions */
.solution-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25), inset 0 0 12px rgba(255,255,255,0.25);
    transform: translateZ(30px);
}

/* White background floating bubbles */
.bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubbles span {
    position: absolute;
    bottom: -120px;
    width: var(--size, 20px);
    height: var(--size, 20px);
    left: var(--left, 50%);
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(255,255,255,0.7) 45%, rgba(147,197,253,0.22) 65%, rgba(147,197,253,0.08) 85%, rgba(255,255,255,0));
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.15);
    filter: blur(var(--blur, 0.2px));
    opacity: var(--opacity, 0.5);
    animation: bubbleRise var(--duration, 18s) linear infinite;
    animation-delay: var(--delay, 0s);
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.12), inset 0 0 12px rgba(255,255,255,0.6);
}

@keyframes bubbleRise {
    0% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-60vh) translateX(20px) scale(1.05); }
    100% { transform: translateY(-120vh) translateX(-20px) scale(1.1); }
}

/* Ensure content sits above bubbles */
.solutions .container {
    position: relative;
    z-index: 2;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

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: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    gap: 10px;
}

.nav-logo span {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    position: relative;
}

.nav-logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    transition: width 0.3s ease;
}

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

.logo-image {
    height: 65px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 15px rgba(37, 99, 235, 0.5));
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

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

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

.nav-link:hover {
    color: #2563eb;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1428 0%, #1e3a8a 30%, #1e40af 60%, #3b82f6 100%);
    position: relative;
    display: flex;
    align-items: center;
    /* Leave clear space below fixed navbar */
    padding-top: calc(var(--nav-height) + 24px);
    color: white;
    overflow: hidden;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(-45deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 60px 60px;
    z-index: 1;
    animation: movePattern 20s linear infinite;
    transform: translateZ(0);
}

/* 3D Floating Elements */
.hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: float3D 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes movePattern {
    0% { transform: translate(0, 0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translate(15px, 15px) rotateX(5deg) rotateY(5deg); }
    50% { transform: translate(30px, 30px) rotateX(0deg) rotateY(10deg); }
    75% { transform: translate(45px, 45px) rotateX(-5deg) rotateY(5deg); }
    100% { transform: translate(60px, 60px) rotateX(0deg) rotateY(0deg); }
}

@keyframes float3D {
    0%, 100% { 
        transform: translateZ(0) rotateX(0deg) rotateY(0deg);
        filter: blur(0px);
    }
    25% { 
        transform: translateZ(20px) rotateX(2deg) rotateY(3deg);
        filter: blur(1px);
    }
    50% { 
        transform: translateZ(40px) rotateX(0deg) rotateY(-2deg);
        filter: blur(2px);
    }
    75% { 
        transform: translateZ(20px) rotateX(-2deg) rotateY(1deg);
        filter: blur(1px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 16ch;
    margin-right: auto;
    transform: translateZ(30px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: titleFloat 8s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateZ(30px) rotateX(0deg); }
    50% { transform: translateZ(50px) rotateX(2deg); }
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transform: translateZ(20px);
    animation: descFloat 10s ease-in-out infinite;
}

/* Index hero-specific description readability tweaks */
.hero .hero-description {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 62ch;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    margin-bottom: 1rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-description:last-of-type {
    margin-bottom: 2rem;
}

@keyframes descFloat {
    0%, 100% { transform: translateZ(20px) rotateY(0deg); }
    50% { transform: translateZ(35px) rotateY(1deg); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    transform: translateZ(25px);
    animation: buttonFloat 12s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% { transform: translateZ(25px) rotateX(0deg); }
    50% { transform: translateZ(40px) rotateX(-1deg); }
}

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

.btn-primary {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Modal (Download form) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none; /* toggled via inline style */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 16px;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.modal-close {
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.modal-body {
    padding: 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.form-row label {
    font-weight: 600;
    color: #374151;
}

.form-row input[type="text"],
.form-row input[type="email"] {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.form-row input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-error {
    color: #b91c1c;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 8px 10px;
    margin: 6px 0 10px;
    display: none; /* shown via JS when error */
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}

/* Button variants used in modal */
.btn.primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    border: 1px solid rgba(59,130,246,0.2);
}

.btn.primary:hover {
    filter: brightness(1.05);
}

/* Mobile navigation improvements */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: absolute;
        top: 64px; /* below navbar */
        right: 12px;
        left: 12px;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 8px; /* tighter container padding on mobile */
        gap: 2px; /* even tighter vertical spacing on mobile */
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        display: none;
        z-index: 1500;
    }
    .nav-menu.active { display: flex; }
    .nav-link { display: block; }
    /* Ensure compact spacing overrides apply inside the mobile menu */
    .nav-menu .nav-item { margin: 0 !important; }
    .nav-menu .nav-link { padding: 8px 10px !important; line-height: 1.25; }
}

/* Financial Chart Container */
.financial-chart-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0a1428 0%, #1e3a8a 50%, #1e40af 100%);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Hero Visual Wrapper */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(15px);
}

/* Chart Background Layers */
.chart-background {
    position: absolute;
    inset: 0;
}

/* Subtle grid lines */
.chart-grid { position: absolute; inset: 0; }
.grid-line-h {
    position: absolute;
    left: 0; right: 0;
    top: var(--pos);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
}
.grid-line-v {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--pos);
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}

/* Animated bars at the bottom */
.blue-bars {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 40px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 180px;
}
.blue-bar {
    width: 28px;
    height: var(--height, 60%);
    background: linear-gradient(180deg, #60a5fa, #2563eb 70%, #1d4ed8);
    border-radius: 8px 8px 3px 3px;
    box-shadow: 0 8px 20px rgba(59,130,246,0.35), inset 0 -4px 8px rgba(0,0,0,0.25);
    transform-origin: bottom;
    transform: scaleY(0);
    animation: growBar 1.1s ease-out calc(0.3s + var(--delay, 0s)) forwards;
}
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Growth arrow line overlay */
.growth-arrow-svg {
    position: absolute;
    inset: 0;
}
.growth-arrow-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 2.2s ease-out 0.8s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* Floating currency symbols */
.financial-symbols { position: absolute; inset: 0; }
.symbol {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.9);
    text-shadow: 0 6px 18px rgba(0,0,0,0.35), 0 0 16px rgba(59,130,246,0.35);
    font-size: 1.1rem;
    animation: floatSymbol 6s ease-in-out infinite;
}
.symbol.chart-icon { font-size: 1.4rem; }
@keyframes floatSymbol {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); opacity: 0.8; }
    50%      { transform: translate(-50%, -50%) translateY(-6px); opacity: 1; }
}

/* Sparkling data points */
.data-points { position: absolute; inset: 0; }
.data-point {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: radial-gradient(circle, #93c5fd 0%, #3b82f6 60%, rgba(59,130,246,0.12) 70%);
    box-shadow: 0 0 12px rgba(147,197,253,0.85), 0 0 28px rgba(59,130,246,0.5);
    animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

/* Blog */
.blog-section { padding: 40px 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.blog-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-meta { padding: 10px 14px 0 14px; color: #6b7280; font-size: 13px; }
.blog-title { padding: 4px 14px; font-size: 18px; }
.blog-excerpt { padding: 2px 14px 12px 14px; color: #374151; }
.blog-excerpt { line-height: 1.7; }
.blog-actions { padding: 12px 14px 16px 14px; margin-top: auto; }

.blog-detail { max-width: 900px; margin: 0 auto; }
.blog-article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.article-hero img { width: 100%; height: 360px; object-fit: cover; display: block; }
.article-body { padding: 18px; }
.article-body p { line-height: 1.85; margin: 0 0 12px; color: #1f2937; }
.article-body h1 { margin: 10px 0 12px; font-size: 28px; }
.article-meta { color: #6b7280; font-size: 14px; }
.article-actions { margin-top: 16px; }

/* Careers */
.career-section { padding: 40px 0; }
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 992px) { .career-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .career-grid { grid-template-columns: 1fr; } }

.career-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}
.career-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.career-card-header h3 { margin: 0; font-size: 18px; }
.career-card .badge { background: #eef2ff; color: #3730a3; border: 1px solid #c7d2fe; padding: 4px 8px; border-radius: 999px; font-size: 12px; }
.career-meta { color: #6b7280; font-size: 13px; display: flex; gap: 14px; margin: 8px 0; flex-wrap: wrap; }
.career-requirement { color: #374151; line-height: 1.7; margin: 6px 0 12px; }
.career-actions { margin-top: auto; }

/* Modal overrides for careers */
.modal .modal-content { max-width: 640px; }
.modal .modal-header { padding: 14px 16px; border-bottom: 1px solid #e5e7eb; }
.modal .modal-body { padding: 16px; }
.modal .form-row { margin-bottom: 14px; }
.modal .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .modal .two-col { grid-template-columns: 1fr; } }
.form-message { margin-top: 10px; font-size: 14px; color: #2563eb; }

/* Inputs & labels */
.modal label { display: block; font-size: 14px; color: #111827; margin-bottom: 6px; }
.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
}
.modal input::file-selector-button { 
    margin-right: 12px; padding: 8px 12px; border: 1px solid #e5e7eb; background: #f9fafb; border-radius: 8px; cursor: pointer; 
}
.modal input:focus { outline: none; border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(59,130,246,0.25); }

/* Error states */
.form-error { color: #b91c1c; font-size: 12px; margin-top: 6px; }
.modal input[aria-invalid="true"] { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }

/* Buttons */
.btn.primary.loading { opacity: 0.75; pointer-events: none; }

.chart-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-line-h {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(59, 130, 246, 0.2);
    top: var(--pos);
    animation: gridFade 3s ease-in-out infinite;
}

.grid-line-v {
    position: absolute;
    height: 100%;
    width: 1px;
    background: rgba(59, 130, 246, 0.2);
    left: var(--pos);
    animation: gridFade 3s ease-in-out infinite;
}

@keyframes gridFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.blue-bars {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 25px;
    height: 200px;
    z-index: 2;
}

.blue-bar {
    width: 35px;
    height: var(--height);
    background: linear-gradient(180deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: barGrowUp 2s ease-out forwards;
    animation-delay: var(--delay);
    transform: scaleY(0);
    transform-origin: bottom;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

@keyframes barGrowUp {
    to { transform: scaleY(1); }
}

.growth-arrow-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.growth-arrow-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawArrowLine 3s ease-out forwards;
    animation-delay: 1s;
}

@keyframes drawArrowLine {
    to { stroke-dashoffset: 0; }
}

.financial-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.symbol {
    position: absolute;
    left: var(--x);
    top: var(--y);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: bold;
    animation: symbolFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--x) * 0.01s);
}

.symbol.chart-icon {
    font-size: 1.5rem;
    animation: symbolPulse 3s ease-in-out infinite;
}

@keyframes symbolFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes symbolPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    animation: pointGlow 2s ease-in-out infinite;
    animation-delay: calc(var(--x) * 0.02s);
}

@keyframes pointGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 25px rgba(255, 255, 255, 1);
    }
}

/* Continuous Progress Line */
.progress-line-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    z-index: 4;
}

.progress-line {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
    border-radius: 6px;
    filter: blur(4px);
    animation: progressGlowPulse 2s ease-in-out infinite;
}

.progress-runner {
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 255, 0.8), 
        rgba(255, 255, 255, 1), 
        rgba(0, 255, 255, 0.8), 
        transparent
    );
    border-radius: 4px;
    animation: progressRun 3s linear infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

@keyframes progressGlowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes progressRun {
    0% { left: -40px; }
    100% { left: 100%; }
}

.holo-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: gridPulse 3s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    top: var(--pos);
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    left: var(--pos);
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.holo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px var(--color);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    25% { 
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
    50% { 
        transform: translateY(-40px) scale(1);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) scale(0.8);
        opacity: 0.6;
    }
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.trend-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.trend-period {
    display: flex;
    gap: 0.5rem;
}

.trend-period span {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.trend-period span.active {
    background: linear-gradient(45deg, #10b981, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.growth-chart {
    position: relative;
    height: 300px;
    margin-bottom: 1.5rem;
}

.chart-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-horizontal {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
}

.grid-horizontal:nth-child(1) { top: 20%; }
.grid-horizontal:nth-child(2) { top: 40%; }
.grid-horizontal:nth-child(3) { top: 60%; }
.grid-horizontal:nth-child(4) { top: 80%; }

.grid-vertical {
    position: absolute;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
}

.grid-vertical:nth-child(5) { left: 25%; }
.grid-vertical:nth-child(6) { left: 50%; }
.grid-vertical:nth-child(7) { left: 75%; }
.grid-vertical:nth-child(8) { left: 100%; }

.growth-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.growth-area {
    animation: areaGlow 4s ease-in-out infinite;
}

.growth-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawGrowthLine 3s ease-out forwards, lineGlow 2s ease-in-out infinite 3s;
}

.data-dot {
    opacity: 0;
    animation: dotAppear 0.5s ease-out forwards;
}

.data-dot:nth-child(3) { animation-delay: 0.5s; }
.data-dot:nth-child(4) { animation-delay: 0.7s; }
.data-dot:nth-child(5) { animation-delay: 0.9s; }
.data-dot:nth-child(6) { animation-delay: 1.1s; }
.data-dot:nth-child(7) { animation-delay: 1.3s; }
.data-dot:nth-child(8) { animation-delay: 1.5s; }
.data-dot:nth-child(9) { animation-delay: 1.7s; }
.data-dot:nth-child(10) { animation-delay: 1.9s; }
.data-dot:nth-child(11) { animation-delay: 2.1s; }
.data-dot:nth-child(12) { animation-delay: 2.3s; }

.growth-indicator {
    animation: indicatorPulse 2s ease-in-out infinite;
}

.growth-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.3rem;
    animation: countUp 2s ease-out forwards;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    left: var(--x);
    top: var(--y);
    animation: floatAround 6s ease-in-out infinite;
    animation-delay: var(--delay);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes drawGrowthLine {
    to { stroke-dashoffset: 0; }
}

@keyframes lineGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)); }
}

@keyframes areaGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes dotAppear {
    from { 
        opacity: 0; 
        transform: scale(0); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes indicatorPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
    }
    50% { 
        transform: scale(1.2);
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8));
    }
}

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

@keyframes floatAround {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Animated Stars Background */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: starTwinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.star::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: starGlow var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.star::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translate(-50%, -50%);
    animation: starSparkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    25% { 
        opacity: 0.8;
        transform: scale(1.2);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
    75% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes starGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.8;
        transform: scale(2);
    }
}

@keyframes starSparkle {
    0%, 100% { 
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
    }
    25% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) rotate(90deg) scaleX(1.5);
    }
    75% { 
        opacity: 0.4;
        transform: translate(-50%, -50%) rotate(135deg) scaleX(0.8);
    }
}

/* Data Visualization */
.data-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(40px);
    animation: chartFloat 14s ease-in-out infinite;
}

@keyframes chartFloat {
    0%, 100% { transform: translateZ(40px) rotateY(0deg) rotateX(0deg); }
    25% { transform: translateZ(60px) rotateY(5deg) rotateX(2deg); }
    50% { transform: translateZ(80px) rotateY(0deg) rotateX(-2deg); }
    75% { transform: translateZ(60px) rotateY(-5deg) rotateX(1deg); }
}

/* 3D Line Chart */
.chart-3d-container {
    width: 350px;
    height: 250px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.line-chart-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: chart3DRotate 20s ease-in-out infinite;
}

@keyframes chart3DRotate {
    0%, 100% { transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg); }
    25% { transform: rotateX(15deg) rotateY(10deg) rotateZ(2deg); }
    50% { transform: rotateX(5deg) rotateY(0deg) rotateZ(-2deg); }
    75% { transform: rotateX(20deg) rotateY(-10deg) rotateZ(1deg); }
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: gridPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.grid-line:nth-child(1) { top: 20%; }
.grid-line:nth-child(2) { top: 35%; }
.grid-line:nth-child(3) { top: 50%; }
.grid-line:nth-child(4) { top: 65%; }
.grid-line:nth-child(5) { top: 80%; }

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.8; transform: scaleX(1.2); }
}

.line-chart-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.chart-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 4s ease-in-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 300; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -300; }
}

.data-point {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.8));
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 6; opacity: 0.7; }
}

.chart-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #60a5fa, transparent);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateZ(0) scale(1);
        opacity: 0;
    }
    25% { 
        transform: translateZ(20px) scale(1.5);
        opacity: 1;
    }
    50% { 
        transform: translateZ(40px) scale(1);
        opacity: 0.8;
    }
    75% { 
        transform: translateZ(20px) scale(0.8);
        opacity: 0.6;
    }
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Home Industries Section */
.home-industries {
    padding: 90px 0;
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(99, 102, 241, 0.08), transparent 60%),
        radial-gradient(1000px 380px at 110% 120%, rgba(59, 130, 246, 0.08), transparent 60%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.home-industries::before,
.home-industries::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-industries::before {
    top: -60px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(99,102,241,0.25), transparent 60%);
    filter: blur(10px);
}

.home-industries::after {
    bottom: -60px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
    filter: blur(14px);
}

.home-industries .section-header h2 {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.home-industries .section-header h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    box-shadow: 0 0 16px rgba(99,102,241,0.35);
}

.home-industries .container { position: relative; z-index: 1; }
.home-industries .container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99,102,241,0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.home-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.25rem 2.75rem 1.25rem 1.5rem; /* room for arrow */
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), #fff);
    border: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 20%, transparent 40%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    opacity: 0;
}

.industry-card:hover::before {
    transform: translateX(120%);
    opacity: 1;
}

.industry-card i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.35);
    position: relative;
}

.industry-card i::before,
.industry-card i::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(99,102,241,0.25);
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.industry-card:hover i::before {
    opacity: 0.7;
    transform: scale(1.1);
}

.industry-card:hover i::after {
    opacity: 0.35;
    transform: scale(1.25);
}

.industry-card:hover i {
    transform: translateY(-2px) scale(1.05);
}

.industry-card span {
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.2px;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), #fff);
}

.industry-card::after {
    content: "→";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    opacity: 0;
    transition: all 0.25s ease;
    font-weight: 700;
}

.industry-card:hover::after {
    right: 12px;
    opacity: 1;
}

.industry-card:focus-visible {
    outline: 3px solid rgba(99,102,241,0.35);
    outline-offset: 2px;
}

/* Per-industry color variants */
.industry-card.ecom { border-color: rgba(99,102,241,0.18); }
.industry-card.ecom:hover { border-color: rgba(99,102,241,0.4); }
.industry-card.ecom i { background: linear-gradient(135deg, #3b82f6, #6366f1); }

.industry-card.realestate { border-color: rgba(16,185,129,0.18); }
.industry-card.realestate:hover { border-color: rgba(16,185,129,0.4); }
.industry-card.realestate i { background: linear-gradient(135deg, #10b981, #06b6d4); }

.industry-card.food { border-color: rgba(245,158,11,0.22); }
.industry-card.food:hover { border-color: rgba(245,158,11,0.45); }
.industry-card.food i { background: linear-gradient(135deg, #ef4444, #f59e0b); }

.industry-card.grocery { border-color: rgba(34,197,94,0.22); }
.industry-card.grocery:hover { border-color: rgba(34,197,94,0.45); }
.industry-card.grocery i { background: linear-gradient(135deg, #22c55e, #84cc16); }

.industry-card.social { border-color: rgba(168,85,247,0.22); }
.industry-card.social:hover { border-color: rgba(168,85,247,0.45); }
.industry-card.social i { background: linear-gradient(135deg, #a855f7, #ec4899); }

.industry-card.hospitality { border-color: rgba(244,63,94,0.22); }
.industry-card.hospitality:hover { border-color: rgba(244,63,94,0.45); }
.industry-card.hospitality i { background: linear-gradient(135deg, #f43f5e, #f59e0b); }

.industry-card.travel { border-color: rgba(14,165,233,0.22); }
.industry-card.travel:hover { border-color: rgba(14,165,233,0.45); }
.industry-card.travel i { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }

/* Staggered fade-up animation on load */
.home-industries .industry-card {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s ease-out forwards;
}
.home-industries .industry-card:nth-child(1) { animation-delay: 0.00s; }
.home-industries .industry-card:nth-child(2) { animation-delay: 0.05s; }
.home-industries .industry-card:nth-child(3) { animation-delay: 0.10s; }
.home-industries .industry-card:nth-child(4) { animation-delay: 0.15s; }
.home-industries .industry-card:nth-child(5) { animation-delay: 0.20s; }
.home-industries .industry-card:nth-child(6) { animation-delay: 0.25s; }
.home-industries .industry-card:nth-child(7) { animation-delay: 0.30s; }

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

@media (max-width: 768px) {
    .home-industries {
        padding: 70px 0;
    }
    .home-industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    .industry-card {
        padding-right: 2.25rem; /* slightly less arrow room on mobile */
    }
}

.industries-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Progress Chart */
.progress-chart-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.progress-chart {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
    border-radius: 20px;
    animation: progressGrow 3s ease-out forwards, progressPulse 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.progress-bar[data-target="85"] .progress-fill { width: 85%; animation-delay: 0s, 0s; }
.progress-bar[data-target="92"] .progress-fill { width: 92%; animation-delay: 0.2s, 0.5s; }
.progress-bar[data-target="78"] .progress-fill { width: 78%; animation-delay: 0.4s, 1s; }
.progress-bar[data-target="96"] .progress-fill { width: 96%; animation-delay: 0.6s, 1.5s; }
.progress-bar[data-target="100"] .progress-fill { width: 100%; animation-delay: 0.8s, 2s; }

.progress-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: waveMove 2s ease-in-out infinite;
    animation-delay: 3s;
}

.progress-percent {
    font-weight: 700;
    color: #3b82f6;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: right;
}

@keyframes progressGrow {
    from { width: 0%; }
    to { width: var(--target); }
}

@keyframes progressPulse {
    0%, 100% { 
        transform: scaleY(1);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% { 
        transform: scaleY(1.1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

@keyframes waveMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Continuous up/down animation for progress bars */
.progress-bar[data-target="85"] .progress-fill {
    animation: progressGrow 3s ease-out forwards, 
               progressFloat1 6s ease-in-out infinite 3s;
}

.progress-bar[data-target="92"] .progress-fill {
    animation: progressGrow 3s ease-out forwards, 
               progressFloat2 7s ease-in-out infinite 3.2s;
}

.progress-bar[data-target="78"] .progress-fill {
    animation: progressGrow 3s ease-out forwards, 
               progressFloat3 5s ease-in-out infinite 3.4s;
}

.progress-bar[data-target="96"] .progress-fill {
    animation: progressGrow 3s ease-out forwards, 
               progressFloat4 8s ease-in-out infinite 3.6s;
}

.progress-bar[data-target="100"] .progress-fill {
    animation: progressGrow 3s ease-out forwards, 
               progressFloat5 6.5s ease-in-out infinite 3.8s;
}

@keyframes progressFloat1 {
    0%, 100% { width: 85%; }
    25% { width: 88%; }
    50% { width: 82%; }
    75% { width: 87%; }
}

@keyframes progressFloat2 {
    0%, 100% { width: 92%; }
    30% { width: 95%; }
    60% { width: 89%; }
    80% { width: 94%; }
}

@keyframes progressFloat3 {
    0%, 100% { width: 78%; }
    20% { width: 82%; }
    70% { width: 75%; }
    90% { width: 80%; }
}

@keyframes progressFloat4 {
    0%, 100% { width: 96%; }
    40% { width: 98%; }
    65% { width: 93%; }
    85% { width: 97%; }
}

@keyframes progressFloat5 {
    0%, 100% { width: 100%; }
    35% { width: 98%; }
    55% { width: 100%; }
    75% { width: 99%; }
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8fafc;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bio {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group:last-of-type {
    flex-direction: column;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(4px 4px at 20px 30px, #3b82f6, transparent),
        radial-gradient(3px 3px at 40px 70px, #6366f1, transparent),
        radial-gradient(2px 2px at 90px 40px, #8b5cf6, transparent),
        radial-gradient(3px 3px at 130px 80px, #3b82f6, transparent),
        radial-gradient(4px 4px at 160px 30px, #6366f1, transparent),
        radial-gradient(2px 2px at 200px 60px, #8b5cf6, transparent),
        radial-gradient(4px 4px at 240px 90px, #3b82f6, transparent),
        radial-gradient(2px 2px at 280px 20px, #6366f1, transparent),
        radial-gradient(3px 3px at 320px 50px, #8b5cf6, transparent),
        radial-gradient(2px 2px at 360px 80px, #3b82f6, transparent);
    background-repeat: repeat;
    background-size: 400px 100px;
    animation: starfield 6s linear infinite;
    z-index: 1;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    gap: 12px;
}

.footer-logo span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.footer-logo i {
    margin-right: 10px;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3b82f6;
}

.footer-section ul li a:hover {
    color: #60a5fa;
    padding-left: 25px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
        .nav-item {
        margin: 0;
        padding: 0.5rem 1rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0.75rem; /* reduce padding to tighten item height */
        display: block;
        color: #333;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    .hero-content { align-items: center; }
    .hero-visual { margin-top: 0.5rem; }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Financial Chart Mobile */
    .financial-chart-container {
        height: 280px;
        margin: 1.5rem 0;
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .blue-bars {
        bottom: 35px;
        gap: 12px;
        height: 140px;
        justify-content: center;
    }
    
    .blue-bar {
        width: 22px;
    }
    
    .growth-arrow-svg {
        display: none;
    }
    
    .financial-symbols .symbol {
        font-size: 1rem;
    }
    
    .financial-symbols .symbol.chart-icon {
        font-size: 1.2rem;
    }
    
    .data-point {
        width: 6px;
        height: 6px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Financial Chart Extra Small Mobile */
    .financial-chart-container {
        height: 220px;
        margin: 1rem 0;
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .blue-bars {
        bottom: 25px;
        gap: 8px;
        height: 110px;
        justify-content: center;
    }
    
    .blue-bar {
        width: 18px;
    }
    
    .growth-arrow-svg {
        display: none;
    }
    
    .financial-symbols .symbol {
        font-size: 0.8rem;
    }
    
    .financial-symbols .symbol.chart-icon {
        font-size: 1rem;
    }
    
    .data-point {
        width: 4px;
        height: 4px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .team-member {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Splash Intro - Enhanced */
.splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f1f 0%, #1a1f3a 25%, #2a2f5a 50%, #1a1f3a 75%, #0a0f1f 100%);
    z-index: 3000;
    opacity: 1;
    overflow: hidden;
}

/* Animated background particles */
.splash::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99,102,241,0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(147,197,253,0.1) 0%, transparent 50%);
    animation: splashRotate 8s linear infinite;
}

/* Glowing orbs */
.splash::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, rgba(99,102,241,0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: splashPulseOrb 3s ease-in-out infinite;
}

.splash-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.splash-logo {
    width: min(45vw, 220px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(59,130,246,0.6)) drop-shadow(0 0 20px rgba(99,102,241,0.4));
    animation: splashDramaticEntry 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    position: relative;
    z-index: 2;
}

.splash-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    animation: splashTextReveal 0.8s ease-out 0.6s both;
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96,165,250,0.5);
}

/* Enhanced animations */
@keyframes splashDramaticEntry {
    0% { 
        transform: scale(0.3) rotate(-180deg); 
        opacity: 0;
        filter: drop-shadow(0 0 0 transparent) blur(10px);
    }
    50% { 
        transform: scale(1.15) rotate(-45deg); 
        opacity: 0.8;
        filter: drop-shadow(0 20px 40px rgba(59,130,246,0.8)) blur(2px);
    }
    75% { 
        transform: scale(0.95) rotate(10deg); 
        opacity: 1;
        filter: drop-shadow(0 15px 35px rgba(59,130,246,0.6)) blur(0px);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
        filter: drop-shadow(0 15px 35px rgba(59,130,246,0.6)) drop-shadow(0 0 20px rgba(99,102,241,0.4));
    }
}

@keyframes splashTextReveal {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.8);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

@keyframes splashRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes splashPulseOrb {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.6; 
    }
}

@keyframes splashFadeOut {
    0% { 
        opacity: 1; 
        transform: scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: scale(1.1); 
        visibility: hidden; 
    }
}

/* Perfect Splash Intro Styles */
.perfect-splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
}

.perfect-splash-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splash-particle {
    position: absolute;
    width: 80px;
    height: 80px;
    left: var(--x);
    top: var(--y);
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(99,102,241,0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: splashParticleFloat 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes splashParticleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-40px) translateX(30px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(-35px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-50px) translateX(15px) scale(1.1); opacity: 0.7; }
}

.perfect-splash-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
}

.perfect-splash-logo-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.perfect-splash-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(59,130,246,0.6)) drop-shadow(0 0 30px rgba(99,102,241,0.4));
    animation: perfectLogoEntry 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes perfectLogoEntry {
    0% { 
        transform: scale(0.2) rotate(-360deg); 
        opacity: 0;
        filter: drop-shadow(0 0 0 transparent) blur(20px);
    }
    30% { 
        transform: scale(0.8) rotate(-180deg); 
        opacity: 0.5;
        filter: drop-shadow(0 15px 30px rgba(59,130,246,0.4)) blur(10px);
    }
    70% { 
        transform: scale(1.1) rotate(-45deg); 
        opacity: 0.9;
        filter: drop-shadow(0 20px 40px rgba(59,130,246,0.6)) blur(2px);
    }
    90% { 
        transform: scale(0.98) rotate(10deg); 
        opacity: 1;
        filter: drop-shadow(0 25px 50px rgba(59,130,246,0.6)) blur(0px);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1;
        filter: drop-shadow(0 25px 50px rgba(59,130,246,0.6)) drop-shadow(0 0 30px rgba(99,102,241,0.4));
    }
}

.perfect-splash-text {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: perfectTextReveal 1s ease-out 0.8s both;
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #fbbf24, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: perfectTextReveal 1s ease-out 0.8s both, gradientShift 3s ease-in-out infinite 1.5s;
}

.perfect-splash-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    animation: perfectTextReveal 0.8s ease-out 1.2s both;
}

@keyframes perfectTextReveal {
    0% { 
        opacity: 0; 
        transform: translateY(40px) scale(0.8);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.perfect-splash-loader {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    animation: perfectTextReveal 0.6s ease-out 1.6s both;
}

.loader-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #3b82f6, #6366f1);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

@keyframes loaderBounce {
    0%, 80%, 100% { 
        transform: scale(0.8); 
        opacity: 0.6; 
    }
    40% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

@keyframes perfectSplashExit {
    0% { 
        opacity: 1; 
        transform: scale(1); 
        filter: blur(0px);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05); 
        filter: blur(2px);
    }
    100% { 
        opacity: 0; 
        transform: scale(1.2); 
        filter: blur(10px);
        visibility: hidden; 
    }
}

/* Clean About Page Styles */
.perfect-about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 24px) 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    left: var(--x);
    top: var(--y);
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, rgba(99,102,241,0.03) 50%, transparent 70%);
    border-radius: 50%;
    animation: cleanFloat 25s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes cleanFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(-20px) translateX(15px) scale(1.1); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-20px) scale(0.9); opacity: 0.3; }
    75% { transform: translateY(-25px) translateX(8px) scale(1.05); opacity: 0.5; }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
}

.mission-highlight {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 2rem;
}

.mission-highlight h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mission-text {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.3rem;
}

.hero-stats .stat-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

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

.company-logo-showcase {
    position: relative;
    width: clamp(220px, 65vw, 300px);
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-logo {
    width: min(250px, 90%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.2));
    animation: logoFloat 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(99,102,241,0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.perfect-about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #475569;
}

.story-section {
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-text-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.about-text-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    filter: drop-shadow(0 1px 4px rgba(59, 130, 246, 0.2));
}

.about-text-card h3 i {
    color: #3b82f6;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.4));
    transition: all 0.3s ease;
}

.about-text-card:hover h3 i {
    color: #60a5fa;
    transform: scale(1.1);
}

.about-text-card p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.05rem;
}

.about-text-card p:last-child {
    margin-bottom: 0;
}

.services-showcase {
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Tag chips inside service cards (About page) */
.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.service-tags span {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-showcase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.service-showcase-card:hover {
    transform: translateY(-3px);
}

.service-showcase-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.2);
}

.service-showcase-card .service-icon i {
    font-size: 1.6rem;
    color: white;
}

.service-showcase-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-showcase-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-features span {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-info h2, .contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.team-info p, .contact-info p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.05rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.choice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.choice-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.choice-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 1px 4px rgba(59, 130, 246, 0.2));
}

.choice-item p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-details .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.contact-details .contact-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-details .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.contact-details .contact-item strong {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.contact-details .contact-item span {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

/* Responsive Design for Perfect About Page */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-text {
        grid-template-columns: 1fr;
    }
    
    .story-section,
    .services-showcase,
    .team-contact-section {
        padding: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .team-contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-skills {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .showcase-logo {
        max-width: 200px;
        width: 85%;
    }
    
    .story-section,
    .services-showcase,
    .team-contact-section {
        padding: 1.5rem;
    }
    
    .mission-highlight {
        padding: 1rem;
    }
    
    .company-logo-showcase {
        width: clamp(180px, 70vw, 240px);
    }
    
    .about-text-card,
    .service-card {
        padding: 1.5rem;
    }
}



.perfect-splash-container.small {
    transform: scale(0.75);
  }
  .perfect-splash-logo.small {
    width: 120px; /* smaller logo */
  }
  .perfect-splash-text.small {
    font-size: 1.5rem;
  }
  .perfect-splash-loader.small {
    transform: scale(0.7);
  }
  
