:root {
    --primary-navy: #1a365d;
    --secondary-slate: #2c5282;
    --accent-muted-blue: #4a5568;
    --accent-soft-gold: #c5a059;
    /* Sophisticated Professional Gradient */
    --vibrant-gradient: linear-gradient(135deg, #0a192f 0%, #1a365d 50%, #0282C4 100%);
    --accent-gradient: linear-gradient(135deg, #00f2ff 0%, #0044ff 50%, #7000ff 100%);
    --bg-light-gray: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    letter-spacing: -0.01em;
}

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

/* Top Bar */
.top-bar {
    background: #0282C4;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: white;
}

/* Header/Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 0px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-navy) !important;
    letter-spacing: 0.5px;
}

.navbar-brand span {
    color: var(--secondary-slate);
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #0282C4;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding-bottom: 40px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #2c5282;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #1a365d;
    bottom: -50px;
    left: -50px;
}

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

.hero-content h1 {
    color: white;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 4;
}

.hero-img-main {
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Logo Scroller */
.logo-section {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 50px 0;
}

.logo-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    opacity: 0.6;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Refined Components */
.bg-vibrant {
    background: #f8fafc;
    color: var(--text-dark);
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 45px 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-navy);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
}

.feature-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #f1f5f9;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    color: var(--primary-navy);
    transition: all 0.3s;
}

.feature-card:hover .icon-wrapper {
    background: #0282c4;
    color: white !important;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-lumina {
    background: var(--primary-navy);
    color: white;
    border: none;
    padding: 16px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-lumina:hover {
    background: var(--secondary-slate);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 2.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-navy);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About */
h6.text-uppercase.fw-bold.mb-3 {
    color: #0282C4;
}

h6.text-uppercase.fw-bold.mb-2 {
    color: #0282C4;
}

/* Roadmap Styling - Updated for Decorative Vertical Line */
.roadmap-line {
    position: absolute;
    width: 6px;
    height: 100%;
    background: var(--accent-gradient);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 10px;
    opacity: 0.9;
}

.roadmap-dot {
    width: 32px;
    height: 32px;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.roadmap-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
}

/* Success Stories / Testimonials Refinement */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 60px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.quote-icon {
    color: #e2e8f0;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}


/* Footer */
footer {
    /* background: linear-gradient(135deg, #0a192f 0%, #1a365d 50%, #0282C4 100%); */
    background: linear-gradient(135deg, #0282C4 0%, #1a365d 50%, #0a192f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-img-main {
        margin-top: 40px;
    }

    .roadmap-line {
        left: 30px;
        transform: none;
    }

    .roadmap-dot {
        left: -1px;
    }
}