/* CSS Variables */
:root {
    --primary-color: #3a86ff;
    --primary-dark: #2667cc;
    --primary-light: #e3f2fd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #ffffff;
    --grey-color: #6c757d;
    --dark-grey: #343a40;
    --light-grey: #f8f9fa;
    --neon-blue: #00d4ff;
    --neon-purple: #9d4edd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.7;
    transition: var(--transition);
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--grey-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--grey-color);
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Glass Shapes Background */
.glass-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 25s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 10%;
    animation: float 15s infinite ease-in-out;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 30%;
    right: 10%;
    animation: float 22s infinite ease-in-out reverse;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 80%;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 20px);
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    transition: var(--transition);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-main {
    color: var(--dark-color);
}

.logo-highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-domain {
    color: var(--grey-color);
    font-size: 14px;
    font-weight: 400;
    margin-left: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 12px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}

.navbar-nav .nav-link i {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: 8px;
    margin: 2px 0;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    transform: translateX(5px);
}

.nav-buttons .btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.nav-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(58, 134, 255, 0.3);
}

.nav-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border: none;
    color: white;
}

.nav-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

/* Section Common Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    color: var(--grey-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgb(27 22 110 / 62%) 0%, rgb(140 0 255 / 88%) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 50px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-light) 60%, var( --neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 35px;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.hero-buttons .btn i {
    margin-right: 10px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--glass-bg), var(--neon-purple));
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    background: var(--glass-bg);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.hero-stats {
    border-top: 1px solid rgba(58, 134, 255, 0.1);
    padding-top: 40px;
    margin-top: 40px;
    max-width: 600px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--grey-color);
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
}

.ai-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    animation: pulse 4s infinite ease-in-out;
    box-shadow: 0 0 80px rgba(58, 134, 255, 0.5);
    z-index: 2;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(58, 134, 255, 0.3);
    opacity: 0.3;
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation: rotate 25s linear infinite reverse;
}

.ring-3 {
    width: 340px;
    height: 340px;
    animation: rotate 30s linear infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 24px;
    width: 200px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    z-index: 3;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(58, 134, 255, 0.2);
}

.floating-card:hover::before {
    opacity: 1;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float-card 6s infinite ease-in-out;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation: float-card 8s infinite ease-in-out 1s;
}

.card-3 {
    bottom: 10%;
    left: 35%;
    animation: float-card 7s infinite ease-in-out 0.5s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
}

.floating-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.about-content h3 {
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.3);
}

.feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.7;
}

.mission-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-card .card-header i {
    color: var(--primary-color);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card .card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--dark-color);
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-color);
    margin-bottom: 0;
}

/* Core Values Section */
.core-values-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.3);
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 1rem;
    color: var(--grey-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.3);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 1.05rem;
    color: var(--grey-color);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
}

.service-link:hover {
    color: var(--neon-blue);
    transform: translateX(10px);
}

.service-link i {
    transition: var(--transition);
    margin-left: 5px;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Documentation Section */
.documentation-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.doc-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.doc-card.main-doc {
    padding: 40px 35px;
    min-height: 500px;
}

.doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(58, 134, 255, 0.15);
    border-color: var(--primary-color);
}

.doc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.doc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.8rem;
}

.doc-icon.mini {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.doc-card h3, .doc-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.doc-card h3 {
    font-size: 1.8rem;
}

.doc-description {
    color: var(--grey-color);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.doc-content {
    margin: 25px 0;
}

.doc-content h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.doc-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--grey-color);
}

.doc-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.doc-meta {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.meta-item i {
    color: var(--primary-color);
}

.doc-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.doc-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
    color: white;
}

.doc-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: var(--transition);
}

.doc-link:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.doc-categories {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.category-card:hover {
    background: rgba(58, 134, 255, 0.1);
    transform: translateY(-5px);
}

.category-card h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.category-card h5 i {
    color: var(--primary-color);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 0;
}

/* API Reference Section */
.api-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.api-overview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
}

.api-overview-card h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.api-description {
    color: var(--grey-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.api-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.api-stat {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey-color);
}

.api-quickstart {
    margin-top: 30px;
}

.api-quickstart h5 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.api-quickstart pre {
    background: rgba(30, 30, 40, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.api-quickstart code {
    color: #e1e4e8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.api-endpoints {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
}

.endpoint-group {
    margin-bottom: 30px;
}

.endpoint-group h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.endpoint-group h5 i {
    color: var(--primary-color);
}

.endpoint-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.endpoint-card:hover {
    background: rgba(58, 134, 255, 0.1);
    transform: translateX(5px);
}

.endpoint-method {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
}

.endpoint-method.get {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.endpoint-method.post {
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.endpoint-method.put {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.endpoint-path {
    font-family: 'Courier New', monospace;
    color: var(--dark-color);
    font-weight: 500;
    margin-right: 15px;
    flex: 1;
}

.endpoint-desc {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.api-features .feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.api-features .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.api-features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.api-features .feature-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.api-features .feature-card p {
    color: var(--grey-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.featured-case-study {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
}

.case-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-case-study h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.case-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.case-challenge, .case-solution {
    margin-bottom: 25px;
}

.case-challenge h5, .case-solution h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.case-challenge p, .case-solution p {
    color: var(--grey-color);
    line-height: 1.7;
}

.case-results {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--grey-color);
    font-weight: 500;
}

.case-study-visual {
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.05) 0%, 
        rgba(157, 78, 221, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-graph {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.graph-header h6 {
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.graph-header span {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.graph-visual {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 200px;
    padding: 20px 0;
}

.graph-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--neon-blue));
    border-radius: 8px 8px 0 0;
    position: relative;
    min-height: 40px;
    transition: height 1s ease;
}

.graph-bar span {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--grey-color);
    font-weight: 500;
}

.case-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-purple));
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
}

.case-quote p {
    color: white;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.quote-author h6 {
    color: white;
    margin-bottom: 5px;
}

.quote-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(58, 134, 255, 0.15);
    border-color: var(--primary-color);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.case-category {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-category.crypto {
    background: rgba(247, 147, 26, 0.1);
    color: #f7931a;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.case-category.forex {
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.case-category.arbitrage {
    background: rgba(157, 78, 221, 0.1);
    color: var(--neon-purple);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.case-duration {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.case-study-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.case-description {
    color: var(--grey-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.case-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.case-metrics .metric {
    text-align: center;
    flex: 1;
}

.case-metrics .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.case-metrics .metric-label {
    font-size: 0.85rem;
    color: var(--grey-color);
}

.case-client {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.client-info h6 {
    margin-bottom: 3px;
    color: var(--dark-color);
}

.client-info span {
    color: var(--grey-color);
    font-size: 0.85rem;
}

.case-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.case-link:hover {
    color: var(--neon-blue);
}

.case-study-stats .stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.case-study-stats .stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.case-study-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.case-study-stats .stat-label {
    color: var(--grey-color);
    font-size: 1rem;
}

/* White Papers Section */
.whitepapers-section {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.featured-whitepaper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.paper-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.paper-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.paper-date, .paper-category {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.paper-date {
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.paper-category {
    background: rgba(157, 78, 221, 0.1);
    color: var(--neon-purple);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.featured-whitepaper h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.paper-abstract {
    color: var(--grey-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.paper-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-color);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--primary-color);
}

.paper-sections {
    margin-bottom: 30px;
}

.paper-sections h5 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.paper-sections ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 30px;
}

.paper-sections li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--grey-color);
    font-size: 0.95rem;
    break-inside: avoid;
}

.paper-sections li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.paper-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.paper-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    height: 100%;
}

.whitepaper-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.whitepaper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(58, 134, 255, 0.15);
    border-color: var(--primary-color);
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.paper-category.crypto {
    background: rgba(247, 147, 26, 0.1);
    color: #f7931a;
}

.paper-category.risk {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.paper-category.forex {
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
}

.paper-category.stock {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.whitepaper-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.paper-excerpt {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.paper-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.paper-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--grey-color);
}

.paper-stats .stat i {
    color: var(--primary-color);
}

.paper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.paper-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.paper-link:hover {
    color: var(--neon-blue);
}

.paper-pages {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.research-topics {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.topic-card {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.topic-card:hover {
    background: rgba(58, 134, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.topic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.3rem;
}

.topic-card h5 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.topic-count {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive Design for Resource Sections */
@media (max-width: 1200px) {
    .paper-sections ul {
        column-count: 1;
    }
    
    .featured-case-study h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .doc-card.main-doc {
        min-height: auto;
        margin-bottom: 30px;
    }
    
    .api-stats {
        flex-wrap: wrap;
    }
    
    .api-stat {
        flex: 0 0 calc(50% - 10px);
    }
    
    .case-results {
        flex-wrap: wrap;
    }
    
    .result-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 15px;
    }
    
    .featured-whitepaper,
    .whitepapers-grid {
        margin-bottom: 30px;
    }
    
    .paper-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .doc-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .endpoint-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .endpoint-path {
        margin-right: 0;
        font-size: 0.9rem;
    }
    
    .graph-visual {
        height: 150px;
    }
    
    .paper-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .doc-categories {
        padding: 20px;
    }
    
    .api-overview-card,
    .api-endpoints,
    .featured-case-study,
    .featured-whitepaper,
    .case-study-card {
        padding: 25px 20px;
    }
    
    .result-item {
        flex: 0 0 100%;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .research-topics {
        padding: 25px 20px;
    }
}

/* Technology Section */
.technology-section {
      padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-purple));
    position: relative;
    overflow: hidden;
}


.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.05"/></svg>');
    background-size: cover;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.tech-orb {
    position: relative;
    width: 320px;
    height: 320px;
}

.tech-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(58, 134, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.tech-layer:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(58, 134, 255, 0.1);
}

.layer-1 {
    width: 270px;
    height: 270px;
    animation: rotate 30s linear infinite;
}

.layer-2 {
    width: 200px;
    height: 200px;
    animation: rotate 25s linear infinite reverse;
}

.layer-3 {
    width: 140px;
    height: 140px;
    animation: rotate 20s linear infinite;
}

.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0 40px rgba(58, 134, 255, 0.5);
    animation: pulse 4s infinite ease-in-out;
}

.tech-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.tech-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--grey-color);
}

.tech-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.tech-features .feature-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-features .feature-item i {
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.tech-features .feature-item h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.tech-features .feature-item p {
    font-size: 0.95rem;
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(58, 134, 255, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.advantage-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.advantage-card p {
    font-size: 1rem;
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-highlight:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.feature-highlight:hover::before {
    opacity: 1;
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.feature-highlight h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-highlight p {
    font-size: 1rem;
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.7;
}


/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(58, 134, 255, 0.2);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--grey-color);
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.03) 0%, 
        rgba(157, 78, 221, 0.03) 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-align: center;
}

.partner-logo:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.partner-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo span {
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-purple));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.05"/></svg>');
    background-size: cover;
}

.cta-card {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.cta-card .btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-card .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-card .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-card .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%, 
        rgba(30, 30, 40, 0.95) 100%);
    z-index: -1;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 25px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Modal Styles */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    color: var(--dark-color);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 30px 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.modal-body {
    padding: 30px;
}

.btn-close {
    filter: invert(0.5);
    opacity: 0.7;
    transition: var(--transition);
}

.btn-close:hover {
    filter: invert(0.3);
    opacity: 1;
}

/* Form Controls */
.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background: white;
    border-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.1);
}

.form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        text-align: center;
    }
    
    .cta-card .btn {
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ai-orb {
        width: 280px;
        height: 280px;
    }
    
    .orb-core {
        width: 100px;
        height: 100px;
    }
    
    .floating-card {
        width: 180px;
        padding: 20px;
    }
    
    .navbar-nav {
        padding: 20px 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        margin-top: 20px;
        padding: 20px;
    }
    
    .nav-buttons {
        margin-top: 20px;
        text-align: center;
    }
    
    .nav-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }
    

    
    .floating-card {
        width: 160px;
        padding: 18px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-stats .col-4 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .floating-card {
        width: 140px;
        padding: 15px;
    }
    
    .service-card,
    .feature-card,
    .value-card,
    .resource-card,
    .advantage-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .modal-dialog {
        margin: 20px;
    }
}



/* Enhanced Roadmap Section Styles */
.roadmap-timeline-nav {
    text-align: center;
}

.timeline-years {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.year-btn {
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--grey-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.year-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    color: white;
    box-shadow: 0 5px 20px rgba(58, 134, 255, 0.3);
}

.year-btn:hover:not(.active) {
    color: var(--primary-color);
    background: rgba(58, 134, 255, 0.1);
}

.timeline-year {
    display: none;
    animation: fadeIn 0.6s ease;
}

.timeline-year.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.roadmap-card.expanded {
    padding: 30px;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.roadmap-date {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(58, 134, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
}

.roadmap-status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-status.completed {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.roadmap-status.active {
    background: rgba(58, 134, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.roadmap-status.upcoming {
    background: rgba(108, 117, 125, 0.1);
    color: var(--grey-color);
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.roadmap-card.expanded h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.roadmap-details {
    flex: 1;
}

.roadmap-details > p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.6;
}

.roadmap-details > p strong {
    color: var(--primary-color);
}

.roadmap-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.roadmap-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--grey-color);
    line-height: 1.5;
}

.roadmap-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.roadmap-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--grey-color);
    margin-top: 5px;
}

.progress-container {
    margin-top: 20px;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 8px;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 4px;
    animation: progress-animation 2s ease;
}

@keyframes progress-animation {
    from { width: 0; }
}

.roadmap-milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.milestone {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--grey-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--neon-purple);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.partnership-badge i {
    width: 24px;
    height: 24px;
}

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(58, 134, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.marketplace-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.stat i {
    color: var(--primary-color);
}

.institutional-features,
.expansion-map,
.research-partners,
.global-coverage,
.network-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature,
.region,
.partner,
.coverage-item,
.network-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--grey-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.network-stat {
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--grey-color);
}

.vision-statement {
    padding: 15px;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-statement i {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.vision-statement p {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 0;
    font-style: italic;
}

/* Roadmap Summary */
.roadmap-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-card {
    height: 100%;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--neon-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.summary-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--grey-color);
    line-height: 1.5;
}

.summary-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design for Roadmap */
@media (max-width: 1200px) {
    .roadmap-card.expanded {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .roadmap-card.expanded {
        min-height: auto;
    }
    
    .timeline-years {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .year-btn {
        padding: 8px 20px;
        margin: 4px;
    }
}

@media (max-width: 768px) {
    .roadmap-summary {
        padding: 30px 20px;
    }
    
    .roadmap-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .roadmap-metrics,
    .marketplace-stats,
    .institutional-features,
    .expansion-map {
        flex-direction: column;
        gap: 10px;
    }
    
    .metric,
    .network-stat {
        text-align: left;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .metric-value,
    .stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .roadmap-card.expanded {
        padding: 20px;
    }
    
    .timeline-years {
        width: 100%;
    }
    
    .year-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .roadmap-features li {
        font-size: 0.85rem;
    }
}



