/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    overflow-x: hidden;
}

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Gradient Backgrounds */
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.gradient-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gradient-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.gradient-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.gradient-emerald { background: linear-gradient(135deg, #10b981, #047857); }
.gradient-rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.gradient-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gradient-fuchsia { background: linear-gradient(135deg, #d946ef, #c026d3); }
.gradient-lime { background: linear-gradient(135deg, #65a30d, #84cc16); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    justify-items: center;
   
}

.brand-accent {
    color: #3b82f6;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
    z-index: 10;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.4));
}





.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}



.hero-globe {
    font-size: 4rem;
    color: #3b82f6;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-icons h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

.header-icons i {
    font-size: 3rem;
    color: #3b82f6;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 0 auto;
    border-radius: 2px;
}

.section-divider-wide {
    width: 8rem;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    margin: 0 auto;
    border-radius: 3px;
}

/* About Section Enhanced */
.about-section {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.5);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.infographic-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6), rgba(71, 85, 105, 0.4));
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.infographic-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 3s infinite;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 0 1.5rem 0 100%;
}

.stats-infographic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
}

.stat-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.stat-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-purple .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-purple .stat-number {
    color: #8b5cf6;
}

.stat-label {
    color: #cbd5e1;
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    padding-inline: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-features::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.5));
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.feature-card:hover {
    background: rgba(71, 85, 105, 0.5);
    transform: translateX(10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-icon {
    padding: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card span {
    font-weight: 500;
    color: white;
}

/* Problem Section Enhanced */
.problem-section {
    padding: 5rem 0;
    background: rgba(15, 23, 42, 0.5);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #1e293b, #1e40af, #7c3aed, #0f172a, #059669);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    opacity: 0.1;
}

.problem-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-icon {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.problem-icon i {
    font-size: 3rem;
    color: #ef4444;
}

.problem-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

.problem-infographic {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-visual {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.problem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
    z-index: 10;
}

.problem-center i {
    font-size: 2rem;
    color: white;
}






.problem-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.problem-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.2), transparent);
    border-radius: 0 1.5rem 0 100%;
}

.problem-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

/* Solution Section Enhanced */
.solution-section {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.solution-brain {
    animation: pulse 2s infinite;
}

.solution-infographic {
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: rgba(51, 65, 85, 0.3);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-content p {
    color: #cbd5e1;
}

.benefit-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 0 1.5rem 0 80%;
}

/* Functions Section Enhanced */
.functions-section {
    padding: 5rem 0;
    background: rgba(15, 23, 42, 0.7);
    position: relative;
    overflow: hidden;
}

.functions-bg {
    position: absolute;
    inset: 0;
}

.functions-bg::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.functions-bg::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.functions-icon {
    animation: pulse 2s infinite;
}

.functions-infographic {
    position: relative;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.function-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.function-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 5%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 20px 20px;
}

.function-card:hover {
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.function-animation {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin 12s linear infinite;
}

.function-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 10;
}

.function-card:hover .function-icon {
    transform: scale(1.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.function-icon i {
    font-size: 2.2rem;
    color: white;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.particle-1 {
    top: -4px;
    right: -4px;
    animation: bounce 2s infinite;
}

.particle-2 {
    bottom: -4px;
    left: -4px;
    animation: bounce 2s infinite;
    animation-delay: 0.5s;
}

.function-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.function-card:hover h3 {
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.function-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.function-card:hover p {
    color: #e2e8f0;
}

.function-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03), transparent);
    border-radius: 0 0 2rem 60px;
}

/* Technology Section Enhanced */
.technology-section {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
}

.tech-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite;
}

.tech-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s infinite;
    animation-delay: 1s;
}

.tech-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.tech-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.tech-particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.tech-particle:nth-child(3) { top: 70%; left: 30%; animation-delay: 2s; }
.tech-particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 3s; }
.tech-particle:nth-child(5) { top: 80%; left: 70%; animation-delay: 4s; }

.tech-icon-wrapper {
    position: relative;
}

.tech-icon {
    font-size: 3.5rem;
    color: #3b82f6;
    animation: glow 2s ease-in-out infinite alternate;
}

.icon-pulse {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1rem;
    height: 1rem;
    background: #3b82f6;
    border-radius: 50%;
    animation: ping 2s infinite;
}

.tech-infographic {
    position: relative;
}

.tech-ecosystem {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
}

.core-ring {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    border-radius: 50%;
    animation: spin 12s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.core-ring::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #0f172a;
    border-radius: 50%;
}

.core-center {
    width: 6rem;
    height: 6rem;
    background: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.core-center i {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

.core-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: ping 3s infinite;
}

.core-label {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
}

.connection-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.connection-line {
    animation: pulse 3s infinite;
    stroke-dasharray: 5,5;
    stroke-dashoffset: 0;
    animation: dash 2s linear infinite;
}

.data-particle {
    opacity: 0.8;
}

.tech-nodes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tech-node {
    position: absolute;
    transition: all 0.7s ease;
    z-index: 10;
    width: 160px;
    height: auto;
}

.tech-node[data-position="top-left"] { 
    top: 5%; 
    left: 15%; 
    transform: translate(0, 0);
}
.tech-node[data-position="top-right"] { 
    top: 5%; 
    right: 15%; 
    transform: translate(0, 0);
}
.tech-node[data-position="middle-left"] { 
    top: 45%; 
    left: 2%; 
    transform: translate(0, -50%);
}
.tech-node[data-position="middle-right"] { 
    top: 45%; 
    right: 2%; 
    transform: translate(0, -50%);
}
.tech-node[data-position="bottom-left"] { 
    bottom: 15%; 
    left: 15%; 
    transform: translate(0, 0);
}
.tech-node[data-position="bottom-right"] { 
    bottom: 15%; 
    right: 15%; 
    transform: translate(0, 0);
}

.tech-node:hover {
    transform: scale(1.05);
    z-index: 30;
}

.tech-node[data-position="middle-left"]:hover {
    transform: translate(0, -50%) scale(1.05);
}
.tech-node[data-position="middle-right"]:hover {
    transform: translate(0, -50%) scale(1.05);
}

.node-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.7s ease;
    filter: blur(2rem);
}

.tech-node:hover .node-glow {
    opacity: 0.3;
}

.node-content {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.4);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.node-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    animation: shimmer 2s infinite;
}

.tech-node:hover .node-content {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.node-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.node-rings {
    position: absolute;
    inset: -8px;
}
.node-rings .orbit-ring {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: spin 15s linear infinite;
}

.orbit-ring-2 {
    position: absolute;
    inset: -16px;
    border: 1px dotted rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: spin 20s linear infinite reverse;
}

.node-icon i {
    font-size: 1.8rem;
    color: white;
}

.node-info {
    position: relative;
}

.node-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.tech-node:hover .node-category {
    transform: scale(1.05);
    background: rgba(59, 130, 246, 0.2);
}

.node-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}

.tech-node:hover h3 {
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.node-stats {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-dot.active {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Audience Section Enhanced */
.audience-section {
    padding: 5rem 0;
    background: rgba(15, 23, 42, 0.5);
    position: relative;
}

.audience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.audience-infographic {
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.audience-card {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.5), rgba(71, 85, 105, 0.5));
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-card:hover::before {
    opacity: 0.1;
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.5s ease;
}

.audience-card:hover h3 {
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 0 1.5rem 0 60px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #1e293b, #1e40af, #7c3aed, #0f172a, #059669);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    opacity: 0.2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-icon {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #0f172a;
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 0;
    border-top: 1px solid rgba(51, 65, 85, 0.7);
    position: relative;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 2rem;
    color: #3b82f6;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: #9ca3af;
}




.footer-content p a {
    color: #3b82f6; /* Tailwind blue-500 or any color you like */
    font-weight: 500;
    text-decoration: underline;
}

.footer-content p a:hover {
    color: #60a5fa; /* Lighter blue on hover */
}


/* Enhanced Animations */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 50% 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    to { box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.4); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes dash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -10; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-infographic {
        grid-template-columns: 1fr;
    }
    
    .problem-infographic {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-visual {
        width: 250px;
        height: 250px;
    }
    
    .functions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .tech-ecosystem {
        height: 400px;
    }
    
    .tech-nodes .tech-node {
        position: relative !important;
        transform: none !important;
        display: inline-block;
        margin: 1rem;
    }
    
    .tech-nodes {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .infographic-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-bottom: 1rem;
    }
}






















.footer1 {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 40px;
  background-color: #fff;
  color: #333;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

.footer-section {
  max-width: 300px;
}

.footer-section h3 {
  margin: 0 0 10px;
  font-weight: 500;
}

.footer-section a {
  color: #0078d7;
  text-decoration: none;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.icon {
  font-size: 20px;
  color: #2f6fa2;
  margin-right: 10px;
  margin-top: 4px;
}

.social {
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  padding: 10px;
  background-color: #1877f2; /* Default FB color */
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 16px;
}

.social-icons a:nth-child(2) {
  background-color: #000000;/* Twitter */
}

.social-icons a:nth-child(3) {
  background-color: 0077b5; /* LinkedIn-like color in image */
}

.social-icons a:nth-child(4) {
   background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  )
}








/* Contact Page */
.contact-page-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-page-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(71, 85, 105, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.6);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-details p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
}

.contact-details a:hover {
    color: #60a5fa;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: #e4405f;
}

.contact-cta {
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}








/* Demo Page */
.demo-page-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.demo-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.demo-page-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
}

.benefit-item .benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item .benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.demo-form-container {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.demo-form-container h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 1.5rem;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #3b82f6;
}

.checkbox-group label {
    color: #cbd5e1;
    font-size: 0.9rem;
    cursor: pointer;
}

.next-steps {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.step-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
}

.demo-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}


/* Video Page */

.video-player {
  position: relative;
}



.video-page-section {
    min-height: 100vh;
    padding: 100px 0 50px;
}

.video-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.video-page-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.video-player-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.video-player {
    aspect-ratio: 15/9;
    background: rgba(51, 65, 85, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.2));
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.3));
}

.play-button {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 0.25rem;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.video-placeholder p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-card {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
}

.highlight-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-card p {
    color: #cbd5e1;
}

.learning-section {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
}

.learning-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.check-icon i {
    font-size: 0.8rem;
    color: white;
}

.learning-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.video-cta {
    text-align: center;
}

.video-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.video-cta p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}








@media (max-width: 768px) {

    .tech-nodes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tech-node {
    position: absolute;
    transition: all 0.7s ease;
    z-index: 10;
    width: 160px;
    height: auto;
}

.tech-node[data-position="top-left"] { 
    top: -30%; 
    left: 0%; 
    transform: translate(0, 0);
}
.tech-node[data-position="top-right"] { 
    top: -30%; 
    right: 0%; 
    transform: translate(0, 0);
}
.tech-node[data-position="middle-left"] { 
    top: -55%; 
    left: -20%; 
    transform: translate(0, -50%);
}
.tech-node[data-position="middle-right"] { 
    top: -55%; 
    right: -20%; 
    transform: translate(0, -50%);
}
.tech-node[data-position="bottom-left"] { 
    bottom: 80%; 
    left: 0%; 
    transform: translate(0, 0);
}
.tech-node[data-position="bottom-right"] { 
    bottom: 80%; 
    right: 0%; 
    transform: translate(0, 0);
}

.tech-node:hover {
    transform: scale(1.05);
    z-index: 30;
}

.tech-node[data-position="middle-left"]:hover {
    transform: translate(0, -50%) scale(1.05);
}
.tech-node[data-position="middle-right"]:hover {
    transform: translate(0, -50%) scale(1.05);
}

}





.partner.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
}

.partner.logo strong {
    font-size: 1.2rem;
}

.partner.logo img {
    max-width: 100%;
    height: auto;
    width: auto;
}

/* Tablet (≤ 786px) */
@media (max-width: 786px) {
    .partner.logo strong {
        font-size: 1.1rem;
    }

    .partner.logo img {
        width: 100%;
    }
}

/* Mobile (≤ 408px) */
@media (max-width: 408px) {
    .partner.logo strong {
        font-size: 1rem;
    }
}