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

:root {
    /* Nexgensis Professional Brand Colors */
    --primary: #1E40AF;        /* Deep Professional Blue */
    --secondary: #06B6D4;      /* Cyan/Teal - Tech & Innovation */
    --accent: #F59E0B;         /* Amber/Orange - Warmth & Energy */
    --dark: #0F172A;           /* Slate 900 - Deep Background */
    --light: #F8FAFC;          /* Slate 50 - Clean White */
    --success: #10B981;        /* Emerald - Success & Growth */
    --nexgen: #1E40AF;         /* Primary Blue */
    /* --gradient-1: linear-gradient(135deg, #1E40AF 0%, #06B6D4 100%);
    --gradient-2: linear-gradient(135deg, #06B6D4 0%, #1E40AF 100%);
    --gradient-3: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --gradient-4: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1E40AF 100%); */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #FFFFFF;
    overflow: hidden;
}


/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 2rem;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

/* Optional dark background class - add this class to any element that needs the dark background */
.with-dark-bg {
    background: rgba(26, 26, 46, 0.95);
}

.nav.scrolled {
    padding:0.8rem 1.8rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.nav-login-btn {
    background: linear-gradient(135deg, var(--nexgen), var(--primary));
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.35);
    background: linear-gradient(135deg, var(--primary), var(--nexgen));
}

@media (min-width: 1280px) {
    .nav-container {
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .nav-container {
        max-width: 1400px;
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 45px;

}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nexgen);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--nexgen);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: #FFFFFF;
}

.hero-content {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1280px) {
    .hero-content {
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .hero-content {
        max-width: 1400px;
    }
}


@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30,64,175,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(30,64,175,0); }
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
    max-width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, var(--nexgen), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: rgba(15, 23, 42, 0.75);
    /* max-width: 900px; */
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.value-card {
    background: rgba(30, 64, 175, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.value-desc {
    color: rgba(15, 23, 42, 0.75);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.6;
}

/* Section Styles */
section {
    display: block;
    unicode-bidi: normal;
}

.section {
    padding: 3rem 0;
    position: relative;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Responsive container widths */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(30, 64, 175, 0.12);
    border: 1px solid var(--nexgen);
    border-radius: 50px;
    color: var(--nexgen);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: rgba(15, 23, 42, 0.7);
    /* max-width: 800px; */
    margin: 0 auto;
    line-height: 1.6;
}

/* Integration Diagram */
.integration-visual {
    background: rgba(30, 64, 175, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Horizontal Flow Layout */
.horizontal-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
    max-width: 100%;
}

.flow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    flex-shrink: 1;
}

.flow-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--nexgen);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modules-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
    max-width: 100%;
}

.module-box {
    background: rgba(30, 64, 175, 0.08);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    flex-shrink: 0;
}

.module-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    border-color: var(--nexgen);
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrow-right {
    font-size: 1.5rem;
    color: var(--nexgen);
    animation: pulse 2s infinite;
}

.flow-connection-label {
    font-size: 0.625rem;
    color: var(--nexgen);
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.main-system {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.08);
}

.intelligence-layer {
    border-color: var(--nexgen);
    background: rgba(30, 64, 175, 0.1);
}

.diagram-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.diagram-box {
    background: rgba(30, 64, 175, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.25);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 160px;
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 1;
}

.diagram-box:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.4);
}

.diagram-box-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.diagram-box-subtitle {
    font-size: 0.75rem;
    color: rgba(15, 23, 42, 0.7);
}

.arrow {
    font-size: 2.5rem;
    color: var(--nexgen);
    animation: pulse 2s infinite;
}

.arrow-down {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;

}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: #FFFFFF;
    border: 2px solid rgba(0, 200, 180, 0.3);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Professional Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(30, 64, 175, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Firefox Scrollbar */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(30, 64, 175, 0.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-header {
    padding: 3rem;
    background: rgba(26, 26, 46, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #FFFFFF;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FFFFFF;
}

.modal-body {
    padding: 2.5rem;
}

.modal-section {
    margin-bottom: 3rem;
}

.modal-section h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-section h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.modal-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.modal-features li {
    background: rgba(30, 64, 175, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: all 0.3s;
}

.modal-features li:hover {
    background: rgba(30, 64, 175, 0.1);
    border-color: rgba(6, 182, 212, 0.4);
    border-left-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.modal-features li::before {
    content: '⚡';
    font-size: 1.5rem;
    flex-shrink: 0;
}

.modal-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.modal-benefit-item {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(6, 182, 212, 0.08));
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.modal-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.modal-benefit-item:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15), rgba(6, 182, 212, 0.15));
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.2);
}

.modal-benefit-item:hover::before {
    opacity: 1;
}

.modal-benefit-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.modal-benefit-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.capability-card {
    cursor: pointer;

    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}


.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.35);
}

.capability-header {
    padding: 1rem;
    background: rgba(30, 64, 175, 0.08);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.capability-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.capability-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.capability-subtitle {
    font-size: 0.875rem;
    color: rgba(15, 23, 42, 0.7);
}

.capability-body {
    padding: 1rem;
    background: #FFFFFF;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.2s ease;
    color: rgba(15, 23, 42, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-list li:hover {
    padding-left: 0.5rem;
    color: var(--nexgen);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '⚡';
    color: var(--nexgen);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.benefit-item {
    background: rgba(30, 64, 175, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
    background: rgba(30, 64, 175, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.3);
}

.benefit-number {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--nexgen), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.benefit-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.benefit-desc {
    color: rgba(15, 23, 42, 0.75);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.6;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    gap: 3rem;
    margin-top: 1rem;
}

.use-case {
    background: rgba(30, 64, 175, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.15);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.use-case:hover {
    border-color: rgba(30, 64, 175, 0.35);
    background: rgba(30, 64, 175, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(30, 64, 175, 0.15);
}

.use-case-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 64, 175, 0.08);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.use-case-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.use-case-title {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--dark);
}

.use-case-tag {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background: rgba(30, 64, 175, 0.15);
    border: 1px solid var(--nexgen);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--nexgen);
    font-weight: 600;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.use-case-section {
    background: transparent;
    padding: 1.5rem 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(30, 64, 175, 0.1);
}

.use-case-section:last-child {
    border-right: none;
}

.use-case-section:hover {
    background: rgba(30, 64, 175, 0.03);
}

.use-case-section h4 {
    color: var(--nexgen);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
}

.use-case-section h4::before {
    display: none;
}

.use-case-section p {
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.6;
    font-size: 0.875rem;
    flex-grow: 1;
}

.use-case-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-section ul li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: rgba(15, 23, 42, 0.75);
    font-size: 0.875rem;
    line-height: 1.5;
}

.use-case-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding:2rem 2rem;
    text-align: center;
    background: rgba(30, 64, 175, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-desc {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: rgba(15, 23, 42, 0.75);
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    margin: 0 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nexgen), var(--primary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.35);
}

.btn-secondary {
    background: transparent;
    border-color: var(--light);
    color: var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 2.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(30, 64, 175, 0.2);
    position: relative;
}

/* .footer-content {
    max-width: 1400px;
    margin: 0 auto;
} */

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;

}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding-left: 0;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item span:first-child {
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Scroll Progress */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--nexgen), var(--primary));
    z-index: 10000;
    transition: width 0.1s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;

}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
