:root {
    --primary: #7C3AED;
    --secondary: #00D4FF;
    --dark-bg: #0F1419;
    --dark-card: #1A1F2E;
    --dark-border: #2D3748;
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
 
    --gradient: linear-gradient(135deg, #00D4FF 5%, #7C3AED 80%);
}

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

html, body {
    scroll-behavior: smooth;
}

:root {
    --primary: #7C3AED;
    --secondary: #00D4FF;
    --text-muted: #9CA3AF;

    --gradient: linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
}

/* Stats wrapper */
.stats {
    display: flex;
    gap: 32px;
    padding-top: 16px;
}

/* Each stat box */
.stat-item {
    text-align: center;
}

/* Number */
.stat-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

/* Label */
.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Gradient text (same as hero heading) */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Fixed Navbar */

/* Navbar Glass Effect */
.custom-navbar {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}

/* Brand Gradient */
.brand-text {
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav Links */
.navbar .nav-link {
  color: #aaa !important;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff !important;
}

/* Gradient underline (active) */
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  border-radius: 10px;
}

/* CTA Button */
.btn-gradient {
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124,58,237,0.35);
  color: #fff;
}


.navbar {
    background: rgba(15, 20, 25, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0 !important;
    top: 0 !important;
    z-index: 1030 !important;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(15, 20, 25, 0.9) 100%);
}

/* Wrapper */
.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Image */
.hero-image {
    width: 100%;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* Glow behind image */
.hero-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(80px);
    transform: scale(1.1);
    z-index: 1;
    border-radius: 50%;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-gradient {
    background: var(--gradient);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    color: rgb(255, 255, 255);
}

.btn-outline-light {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-desc {
  color: #6b7280;
  font-size: 1.1rem;
}

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

/* Service Card */
.service-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(99,102,241,0.25);
}

/* Gradient glow background */
.service-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

/* Gradient Variants */
.gradient-blue .service-bg {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.gradient-purple .service-bg {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.gradient-pink .service-bg {
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.gradient-green .service-bg {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

/* Content */
.service-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #cbd5f5;
  line-height: 1.6;
}

/* Image */
.service-image {
  width: 160px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.service-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.service-card:hover img {
  opacity: 1;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.05) 100%);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.why-choose-us {
  position: relative;
  padding: 120px 0;
  background: #0f1419;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(124, 58, 237, 0.08),
    transparent
  );
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.why-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  font-size: 13px;
  margin-bottom: 20px;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.why-header p {
  color: #9ca3af;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.features-grid.center {
  max-width: 600px;
  margin: 0 auto 80px;
}

.feature-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid #2d3748;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-card p {
  color: #9ca3af;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 28px;
  text-align: center;
  border-radius: 16px;
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid #2d3748;
}

.client-logo {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-img {
    max-width: 100%;
    height: 50px;
    object-fit: contain;
}


.stat-value {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  color: #9ca3af;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.why-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
}

.why-item h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--text-secondary);
}

#networkCanvas {
    border-radius: 1.2rem;
    border: 1px solid var(--dark-border);
}

/* Clients Section */
.clients-section {
    padding: 5rem 0;
}

.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
}

.review-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.review-stars {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    color: var(--text-primary);
    font-weight: 600;
}

.review-company {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.page-header {
    padding-top: 100px !important;
}

.section-category {
    color: var(--text-primary);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

.team-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.team-card-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    border: 2px solid var(--dark-border);
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0%;
    aspect-ratio: 1;
    margin: auto;
    padding: 0px;
    box-sizing: content-box;
}

.team-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-card-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.team-card-label {
    color: var(--secondary);
    font-weight: 600;
}

.projects-btn {
    align-self: flex-start;
}

.team-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #2D3748;
  background: transparent;
  color: #9CA3AF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #00D4FF, #7C3AED);
  color: #fff;
  border-color: transparent;
}


/* Section */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

/* Backgrounds */
.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  opacity: 0.1;
}

.bg-blur-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  filter: blur(200px);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.cta-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeUp 0.6s ease forwards;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #6366f1;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Heading */
.heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

/* Description */
.description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
}

.btn-primary:hover {
  background: #4f46e5;
}

.btn-outline {
  border: 2px solid #6366f1;
  color: #6366f1;
}

.btn-outline:hover {
  background: #6366f1;
  color: #fff;
}

/* Animation (Framer Motion replacement) */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Projects Page */
.member-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    padding: 2rem;
}

.member-image-lg {
    width: 100%;
    height: 250px;
    border-radius: 1rem;
    border: 2px solid var(--dark-border);
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.member-detail {
    margin-bottom: 1.5rem;
}

.member-detail-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.member-detail-value {
    color: var(--text-primary);
}

.project-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.project-title {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-client {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.project-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateX(5px);
}

/* Contact Section */
.contact-input {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-primary) !important;
}

.contact-input:focus {
    background: rgba(0, 212, 255, 0.05) !important;
    border-color: var(--secondary) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-social-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 1rem;
    padding: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icon:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: scale(1.1);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

/* Footer */
.site-footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
  color: #cbd5f5;
}

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

/* Brand */
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99,102,241,0.3);
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Columns */
.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #94a3b8;
}

.footer-col ul li a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #6366f1;
}

/* Contact */
.contact-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Social */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(99,102,241,0.15);
  transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .why-item {
        align-items: center;
    }

    #networkCanvas {
        display: none;
    }
}
