 /* Global Styles */
        :root {
            --primary: #4CAF50;
            --secondary: #2196F3;
            --accent: #FF9800;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            --gradient: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            --gradient-vibrant: linear-gradient(135deg, #ff00cc, #3333ff, #00ccff);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        .emergency-services h2{
            text-align: center;
        }
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: auto;
            background: var(--gradient-vibrant);
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }
/* ======================== Call For Help Section ======================== */
.crisis-support-section {
    background-image: url('../images/depressed.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 20px;
  height: auto;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.crisis-support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 0;
}

.crisis-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 2.5rem;
}

.image-wrapper {
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.support-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.7) contrast(1.1);
}

.crisis-content h2 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  position: relative;
  display: inline-block;
}

.crisis-content h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.tagline {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.highlight {
  color: #FFD166;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.highlight:hover {
  text-decoration: none;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 3rem 0;
}

.emergency-btn, .whatsapp-btn {
  padding: 8px;
  width: 50%;
  align-items: center;
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: left;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  margin: 0 auto;
}

.emergency-btn {
  background: linear-gradient(145deg, rgba(255, 107, 107, 0.9) 0%, rgba(255, 61, 61, 0.9) 100%);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.9) 0%, rgba(18, 140, 126, 0.9) 100%);
  color: white;
}

.btn-icon {
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.btn-text {
  line-height: 1.4;
}

.btn-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.emergency-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 59, 59, 0.4);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.assurance {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.assurance i {
  margin-right: 5px;
  color: #4ecdc4;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .crisis-support-section {
    min-height: 700px;
    padding: 30px 20px;
  }
  
  .crisis-content {
    padding: 2rem;
  }
  
  .image-wrapper {
    height: 300px;
  }
  
  .crisis-content h2 {
    font-size: 2.4rem;
  }
  
  .tagline {
    font-size: 1.15rem;
  }
  
  .emergency-btn, .whatsapp-btn {
    width:51%;
  }
  
  .btn-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .btn-number {
    font-size: 1.1rem;
  }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
  .crisis-support-section {
    min-height: auto;
    padding: 20px 15px;
    height: auto;
  }
  
  .crisis-content {
    padding: 1.5rem;
  }
  
  .image-wrapper {
    height: 220px;
    margin-bottom: 1.5rem;
  }
  
  .crisis-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .crisis-content h2:after {
    height: 2px;
    bottom: -5px;
  }
  
  .tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-buttons {
    grid-template-columns: 1fr;
    margin: 2rem 0;
    gap: 15px;
  }
  
  .emergency-btn, .whatsapp-btn {
    width: 51%;
    padding: 6px;
    border-radius: 14px;
  }
  
  .btn-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .btn-label {
    font-size: 0.8rem;
  }
  
  .btn-number {
    font-size: 1rem;
  }
  
  .assurance {
    flex-direction: row;
    justify-content: center;
    font-size: 0.9rem;
    gap: 10px;
    margin-top: 1.5rem;
  }
  
  .assurance span {
    white-space: nowrap;
    padding: 0 5px;
  }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
  .crisis-content {
    padding: 1rem;
  }
  
  .image-wrapper {
    height: 180px;
  }
  
  .crisis-content h2 {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 0.95rem;
  }
  
  .emergency-btn, .whatsapp-btn {
    width: 95%;
  }
  
  .assurance {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  
  .btn-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
/* ======================== Emergency Services ======================== */
.emergency-services {
    padding: 4rem 2rem;
    background: #1A1A2E;
    color: white;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    min-height: 350px;
}

/* Tablet Layout (2 rows) */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        min-height: 300px;
    }
}

/* Mobile Layout (1 column) */
@media (max-width: 640px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
    }
}

/* Rest of your existing styles... */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #9d00ff);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9));
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255,255,255,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f2ff, #ff00f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.5));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.7));
}

.service-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, white, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00f2ff, #9d00ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #9d00ff, #00f2ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4);
}

.service-btn:hover::before {
    opacity: 1;
}

/* Individual card colors */
#disaster-response::before {
    background: conic-gradient(transparent, transparent, transparent, #ff00f2);
}
#medical-emergency::before {
    background: conic-gradient(transparent, transparent, transparent, #00f2ff);
}
#search-rescue::before {
    background: conic-gradient(transparent, transparent, transparent, #ff9900);
}
#refugee-support::before {
    background: conic-gradient(transparent, transparent, transparent, #4CAF50);
}
#public-health::before {
    background: conic-gradient(transparent, transparent, transparent, #9d00ff);
}

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

.floating { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2s; }
        /* Programs Section */
        .programs {
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
            padding: 30px 20px;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .program-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 50%;
            color: white;
            font-size: 32px;
        }
        
        .program-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .program-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Courses Section */
        .courses {
            background-color: #f8f9fa;
        }
        
        .courses-carousel {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        
        .course-card {
            min-width: 300px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            scroll-snap-align: start;
        }
        
        .course-image {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        
        .course-content {
            padding: 20px;
        }
        
        .course-badge {
            display: inline-block;
            padding: 5px 10px;
            background-color: var(--primary);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        
        .course-level {
            display: inline-block;
            padding: 5px 10px;
            background-color: #eee;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 10px;
        }
        
        .course-level.beginner {
            background-color: #e3f2fd;
            color: var(--secondary);
        }
        
        .course-level.intermediate {
            background-color: #fff8e1;
            color: var(--accent);
        }
        
        .course-level.advanced {
            background-color: #ffebee;
            color: #f44336;
        }
        
        .course-card h3 {
            font-size: 1.3rem;
            margin: 10px 0;
        }
        
        .course-card p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .course-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        /* Events Section */
        .events {
            background-color: white;
        }
        
        .events-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            display: flex;
        }
        
        .event-date {
            min-width: 80px;
            background: var(--gradient);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
            text-align: center;
        }
        
        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        .event-content {
            padding: 20px;
            flex-grow: 1;
        }
        
        .event-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .event-location {
            display: flex;
            align-items: center;
            color: #666;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .event-location i {
            margin-right: 5px;
        }
        
        .event-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        /* Impact Section */
        .impact {
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item {
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #3333ff;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
        }
        @media (max-width: 480px) {
  .stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    margin-top: 4px;
    padding: 0 4px;
    text-align: center;
  }

  .stat-item {
    flex: 1;
  }
.stat-label{font-size: 12px;}
  .stat-number {
    font-size: 1rem;
    font-weight: bold;
    color: yellow;
    margin-bottom: 2px;
  }
}

        
        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
        }
        
        .cta-form input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }
        
        .cta-form button {
            border-radius: 0 30px 30px 0;
            padding: 15px 30px;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #eee;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            margin-bottom: 10px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: #ccc;
        }
        
        .newsletter button {
            width: 100%;
            border: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .logo{ height: 30px; width: 30px; border-radius: 50%;}
        .partners {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .partner-logo {
            height: 40px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
                           /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
          
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
      
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
            }
            
            .cta-form {
                flex-direction: column;
            }
            
            .cta-form input {
                border-radius: 30px;
                margin-bottom: 8px;
            }
            
            .cta-form button {
                border-radius: 30px;
            }
                 h2, h3, h4 {
            margin-bottom: 14px;
            
        }
        }


   .animated-word {
  display: inline-block;
  min-width: 7ch; /* Enough space for the longest word */
  height: 1.5em;   /* Reserve vertical space to avoid jump on drop */
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0.3rem;
  vertical-align: bottom; /* Keep baseline alignment */
  text-align: center;
}

.sentence{
   margin-bottom: 2rem;
}
  .letter {
  opacity: 0;
  transform: translateY(-30px);
  display: inline-block;
  animation: drop 0.4s forwards;
  line-height: 1.2;
  will-change: transform, opacity;
}

    @keyframes drop {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .word-0 .letter { color: #e74c3c; }  /* Red */
    .word-1 .letter { color: #3498db; }  /* Blue */
    .word-2 .letter { color: #2ecc71; }  /* Green */
    .word-3 .letter { color: #f1c40f; }  /* Yellow */
    .word-4 .letter { color: #9b59b6; }  /* Purple */
    .social-links a{
        text-decoration: none;
    }