/* Modern CSS with variables */
:root {
  --primary: #0A2463;
  --secondary: #3E92CC;
  --accent: #2DE2E6;
  --dark: #0F1123;
  --light: #ffffff;
  --success: #2DD881;
  --warning: #FFB86C;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --glass: rgba(255, 255, 255, 0.15);
  --glass-dark: rgba(15, 17, 35, 0.9);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --neon-glow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --font-tech: 'Space Grotesk', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --navbar-bg: rgba(0, 31, 63, 0.98);
  --navbar-bg-transparent: rgba(0, 31, 63, 0.92);
  --navbar-height: 80px;
  --glow-color: rgba(93, 224, 230, 0.3);
  --text-glow: 0 0 10px var(--accent);
  --animate-speed: 0.3s;
  --hover-lift: translateY(-5px);
  --glow-spread: 15px;
  --pulse-scale: 1.05;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--primary));
  --glow: 0 0 20px rgba(45, 226, 230, 0.3);
  --hover-transform: translateY(-3px) scale(1.02);
}

/* Modern Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fix body width and overflow */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Fix container width */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: visible;
}

/* Mission & Vision Section */
.mission-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-section .section-title {
    color: var(--light);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem auto;
    max-width: 1100px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(45, 226, 230, 0.5);
}

.mission-card h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.mission-card p {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Mission Section Background Pattern */
.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E92CC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

@media (max-width: 768px) {
  .mission-section {
    padding: 4rem 1.5rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card {
    padding: 2.5rem 2rem;
  }

  .mission-card h3 {
    font-size: 1.8rem;
  }
}

/* Enhanced Navbar Styles */
.navbar {
    background: #001F3F;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(45, 226, 230, 0.1);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container for navbar content */
.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: transparent;
    gap: 2rem;
}

/* Enhanced Logo Area */
.nav-brand {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    margin-right: 2rem;
}

.nav-logo {
    height: 45px;
    filter: drop-shadow(0 0 8px var(--glow-color));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--accent));
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
    text-shadow: var(--text-glow);
    position: relative;
}

.brand-text span {
    color: var(--accent);
}

.brand-text::after {
    content: 'AI EDUCATION';
    position: absolute;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    bottom: -0.5rem;
    left: 2px;
    color: var(--accent);
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Enhanced Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-family: var(--font-tech);
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.85;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent);
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
    opacity: 1;
    text-shadow: 0 0 10px var(--accent);
}

.nav-cta {
    background: rgba(45, 226, 230, 0.1);
    color: var(--accent);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-tech);
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(45, 226, 230, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1001;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.8rem;
        width: 100%;
        font-size: 1.1rem;
        opacity: 0.8;
    }

    .nav-link:hover {
        opacity: 1;
    }

    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem !important;
    }

    /* Ensure navbar stays on top */
    .navbar {
        background: var(--dark);
    }

    /* Adjust logo size for mobile */
    .nav-logo {
        height: 35px;
    }

    .brand-text {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #001F3F, #0A2463);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg ... %3E"); /* Your tech pattern */
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-family: var(--font-display);
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(45, 226, 230, 0.3);
}

.hero-highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 10%);
    animation: particleFloat 20s linear infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1000px;
    padding: 0 2rem;
    opacity: 1;
    transform: none;
    animation: none;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.3s ease;
    animation: none;
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: var(--font-display);
    text-shadow: 0 0 20px var(--accent);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Remove unnecessary animations */
.hero-stats,
.stat-item {
    animation: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Modern Cards */
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: var(--hover-transform);
  border-color: var(--accent);
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse 3s ease-in-out infinite;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

/* Stats Section Styling */
.stats-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--accent));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    font-family: var(--font-display);
    text-shadow: 0 0 20px var(--accent);
}

/* For stats that should be solid color instead of gradient */
.stat-number.solid {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

/* For special stats like "24/7" that shouldn't have gradient */
.stat-number.special {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

.stat-label {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Modern Footer Design */
.footer {
    background: #001F3F;
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 45px;
    filter: drop-shadow(0 0 8px var(--glow-color));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 12px var(--accent));
    transform: scale(1.1) rotate(5deg);
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
    text-shadow: var(--text-glow);
    position: relative;
}

.footer-brand-text span {
    color: var(--accent);
}

.footer-brand-text::after {
    content: 'AI Education';
    position: absolute;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    bottom: -0.5rem;
    left: 2px;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-tech);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-link {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.8rem;
    color: var(--accent);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .footer-logo-container {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-brand-text {
        font-size: 1.6rem;
    }
}

/* Ensure content starts below navbar */
main, section {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* Container adjustments */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Adjust other sections */
.features-section,
.stats-section,
.about-section,
.team-section {
  position: relative;
  z-index: 300;
  background: var(--light);
  padding: 100px 0;
}

/* Content wrapper */
.content-wrapper {
  position: relative;
  z-index: 1;
  margin-top: var(--navbar-height);
}

/* AI-themed Section Decorations */
.section-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), transparent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.section-decoration.top-right {
  top: -100px;
  right: -100px;
}

.section-decoration.bottom-left {
  bottom: -100px;
  left: -100px;
}

/* Team Member Cards */
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.team-member::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-member:hover {
  transform: var(--hover-transform);
}

.team-member:hover::before {
  opacity: 0.1;
}

.team-member img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border: 3px solid var(--accent);
  box-shadow: var(--glow);
}

.team-member:hover img {
  transform: scale(1.1);
}

/* Enhanced Buttons */
.btn {
  border-radius: 50px;
  padding: 1rem 2rem;
  font-family: var(--font-tech);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--dark);
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  transform: var(--hover-transform);
  box-shadow: var(--glow);
}

/* Enhanced Features Section */
.features-detailed {
    padding: 6rem 0;
    background: var(--light);
}

.feature-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.feature-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Improved SMS numbers */
.sms-numbers-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.sms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.sms-card {
    background: rgba(45, 226, 230, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.carrier-label {
    background: rgba(45, 226, 230, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    white-space: nowrap;
}

.sms-number {
    color: var(--light);
    font-family: var(--font-tech);
    font-size: 1.1rem;
    white-space: nowrap;
}

.status-badge {
    color: var(--success);
    font-size: 0.8rem;
    margin-left: auto;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .feature-content.centered {
        max-width: 600px;
        padding: 0 2rem;
    }

    .highlight-title {
        font-size: 3rem;
    }

    .whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* General section padding */
    .highlight-block,
    .whatsapp-section,
    .features-detailed,
    .mission-section {
        padding: 4rem 1rem;
    }

    /* Start Learning Section */
    .feature-content.centered {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .highlight-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .highlight-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .learning-steps {
        width: 100%;
        padding: 0 1rem;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .step {
        padding: 1rem;
        gap: 1.2rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step p {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* SMS Numbers Container */
    .sms-numbers-container {
        width: 100%;
        padding: 0 1rem;
    }

    .sms-grid {
        gap: 1rem;
    }

    .sms-card {
        padding: 0.8rem 1rem;
    }

    .carrier-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        min-width: 45px;
    }

    .sms-number {
        font-size: 0.9rem;
    }

    /* Feature blocks */
    .feature-block {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    /* Mission cards */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* WhatsApp Stats - Mobile */
    .whatsapp-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-stats .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(45, 226, 230, 0.1);
    }

    .whatsapp-stats .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .whatsapp-stats .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    .whatsapp-stats .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .highlight-block {
        padding: 3rem 1rem;
    }

    .highlight-title {
        font-size: 2rem;
        padding: 0;
    }

    .highlight-subtitle {
        font-size: 1rem;
        padding: 0;
    }

    .learning-steps {
        padding: 0;
    }

    .step {
        padding: 0.8rem;
        gap: 1rem;
    }

    .sms-numbers-container {
        padding: 0;
    }

    .sms-card {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .carrier-label {
        min-width: 40px;
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .sms-number {
        font-size: 0.85rem;
        letter-spacing: 0;
    }

    .status-badge {
        font-size: 0.7rem;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .feature-content.centered {
        padding: 0 0.8rem;
    }

    .highlight-title {
        font-size: 1.8rem;
    }

    .step {
        padding: 0.7rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

    .sms-card {
        padding: 0.7rem;
    }
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* WhatsApp Stats Styling */
.whatsapp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.whatsapp-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.whatsapp-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(45, 226, 230, 0.15);
}

.whatsapp-stats .stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(45, 226, 230, 0.3));
}

.whatsapp-stats .stat-number {
    font-size: 2rem;
    color: var(--accent);
    font-family: var(--font-tech);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.whatsapp-stats .stat-label {
    color: var(--light);
    font-size: 1rem;
    opacity: 0.9;
    font-family: var(--font-display);
}

.platform-card {
    background: rgba(45, 226, 230, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(45, 226, 230, 0.1);
    box-shadow: 0 10px 30px rgba(45, 226, 230, 0.1);
}

.platform-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--accent));
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.platform-features {
    display: grid;
    gap: 1rem;
}

.platform-features li {
    color: var(--light);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.platform-features li::before {
    content: '→';
    color: var(--accent);
}

/* Enhanced Section Styling */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(45, 226, 230, 0.5);
    position: relative;
}

.section-subtitle {
    display: block;
    font-family: var(--font-tech);
    font-size: 1rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Enhanced Feature Blocks */
.features-grid {
    display: grid;
    gap: 4rem;
    margin-top: 4rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.highlight-block {
    background: var(--dark);
    padding: 6rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-content.centered {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-title {
    color: var(--light);
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.highlight-subtitle {
    color: var(--light);
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    text-align: center;
}

.learning-steps {
    max-width: 500px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--light);
    padding: 0.8rem;
    background: rgba(45, 226, 230, 0.02);
    border-radius: 12px;
    width: 100%;
}

.step-icon {
    width: 45px;
    height: 45px;
    background: rgba(45, 226, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.step-title {
    color: var(--light);
    font-size: 1.2rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--light);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.demo-videos-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.video-card {
    background: rgba(45, 226, 230, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--light);
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .demo-videos-section {
        padding: 4rem 0;
    }

    .videos-grid {
        padding: 0 1rem;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    .video-info p {
        font-size: 0.9rem;
    }
}

/* Achievement Hero Section */
.achievement-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.achievement-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.achievement-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.achievement-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 17, 35, 0.7),
        rgba(15, 17, 35, 0.9)
    );
}

.achievement-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.achievement-hero .hero-title {
    font-size: 4.5rem;
    font-family: var(--font-display);
    color: var(--light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(45, 226, 230, 0.3);
}

.achievement-hero .hero-highlight {
    color: var(--accent);
}

.achievement-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--light);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: rgba(45, 226, 230, 0.05);
    border: 1px solid rgba(45, 226, 230, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(45, 226, 230, 0.1);
}

.achievement-icon {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.achievement-content h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.achievement-event {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
}

.achievement-desc {
    color: var(--light);
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Gallery Section */
.awards-gallery {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: var(--light);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.gallery-date {
    font-size: 0.9rem;
    opacity: 0.7;
    font-family: var(--font-tech);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-family: var(--font-tech);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 50px;
    max-width: 80%;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 226, 230, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(45, 226, 230, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-tech);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.4rem;
}

/* Smooth reveal animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    animation: gentleFadeIn 1.5s ease-out forwards;
    animation-delay: 0.2s;
}

.stat-item {
    animation: gentleFadeIn 1.5s ease-out forwards;
}

/* Subtle sequential delays */
.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }

/* Replace the aggressive fadeInUp with gentler fadeIn */
@keyframes gentleFadeIn {
    0% { 
        opacity: 0;
        transform: translateY(10px); /* Reduced from 20px */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove any scaling animations from stats */
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    font-family: var(--font-display);
    text-shadow: var(--glow);
    /* Remove pulse animation */
    animation: none;
}

/* Remove pulse animation */
@keyframes pulse {
    0%, 100% { transform: none; }
}

/* Team Section Styling */
.team-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 226, 230, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(45, 226, 230, 0.1);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    background: rgba(15, 17, 35, 0.95);
}

.member-info h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.member-role {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
    opacity: 0.9;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    color: var(--light);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.member-social a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .member-image {
        height: 240px;
    }

    .member-info {
        padding: 1.2rem;
    }

    .member-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 2rem auto 0;
    }

    .member-image {
        height: 300px;
    }
}

/* Enhanced Story Section */
.story-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark), #000810);
    position: relative;
    overflow: hidden;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.story-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
}

.story-content .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent);
}

.section-text {
    color: var(--light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    padding-left: 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(45, 226, 230, 0.05);
    padding: 2rem;
    border-radius: 0 20px 20px 0;
}

/* Enhanced Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E92CC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(45, 226, 230, 0.1),
        transparent
    );
    transition: 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(45, 226, 230, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(45, 226, 230, 0.5));
}

.value-card h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.value-card p {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-section,
    .values-section {
        padding: 6rem 0;
    }

    .story-content .section-title {
        font-size: 2.8rem;
        text-align: center;
    }

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

    .section-text {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .value-card {
        padding: 2.5rem 1.5rem;
    }

    .value-card h3 {
        font-size: 1.6rem;
    }
}

/* Enhanced Contact Page Styles */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark), #000810);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E92CC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 8rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 226, 230, 0.1), transparent);
    transition: 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(45, 226, 230, 0.15);
}

.contact-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(45, 226, 230, 0.5));
}

.contact-card h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.contact-card p {
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: var(--font-tech);
}

.contact-link:hover {
    color: var(--light);
    text-shadow: 0 0 15px var(--accent);
}

/* Enhanced Platform Section */
.platforms-section {
    margin-bottom: 8rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.4s ease;
}

.platform-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(45, 226, 230, 0.5));
}

.platform-card h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.platform-card p {
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sms-numbers {
    display: grid;
    gap: 1rem;
}

.sms-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 226, 230, 0.05);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sms-number:hover {
    background: rgba(45, 226, 230, 0.1);
    transform: translateX(10px);
}

.carrier {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(45, 226, 230, 0.1);
    border-radius: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Enhanced Social Section */
.social-section {
    margin-bottom: 6rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(45, 226, 230, 0.15);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 15px rgba(45, 226, 230, 0.5));
}

.social-card span {
    font-size: 1.1rem;
    font-family: var(--font-tech);
}

/* Privacy Page Styles */
.privacy-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark), #000810);
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E92CC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(45, 226, 230, 0.1);
    transition: all 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(45, 226, 230, 0.15);
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(45, 226, 230, 0.5));
}

.policy-card h2 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.policy-card p {
    color: var(--light);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.policy-list li {
    color: var(--light);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.policy-list li strong {
    color: var(--accent);
    font-family: var(--font-tech);
}

.contact-info {
    text-align: center;
}

.contact-info .contact-link {
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none;
    font-family: var(--font-tech);
    transition: all 0.3s ease;
}

.contact-info .contact-link:hover {
    color: var(--light);
    text-shadow: 0 0 15px var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 6rem 0;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-card h2 {
        font-size: 1.8rem;
    }

    .policy-list li {
        font-size: 1rem;
    }
} 