/* Enhanced main.css for BQSongs */

/* === CSS Variables === */
:root {
    /* Core Colors */
    --primary-color: #3b82f6; /* Blue 500 */
    --primary-dark: #1e40af; /* Blue 800 */
    --primary-light: #93c5fd; /* Blue 300 */
    
    --secondary-color: #4f46e5; /* Indigo 600 */
    --secondary-dark: #3730a3; /* Indigo 800 */
    --secondary-light: #a5b4fc; /* Indigo 300 */
    
    --accent-color: #f59e0b; /* Amber 500 */
    --accent-dark: #d97706; /* Amber 600 */
    
    --success-color: #10b981; /* Emerald 500 */
    --warning-color: #f59e0b; /* Amber 500 */
    --error-color: #ef4444; /* Red 500 */
    
    /* Text Colors */
    --text-dark: #1f2937; /* Gray 800 */
    --text-medium: #4b5563; /* Gray 600 */
    --text-light: #9ca3af; /* Gray 400 */
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-gradient-start: #1e3a8a; /* Blue 900 */
    --bg-gradient-end: #312e81; /* Indigo 900 */
    --bg-light: #f9fafb; /* Gray 50 */
    --bg-white: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-card-hover: rgba(255, 255, 255, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem;  /* 8px */
    --spacing-md: 1rem;    /* 16px */
    --spacing-lg: 1.5rem;  /* 24px */
    --spacing-xl: 2rem;    /* 32px */
    --spacing-2xl: 3rem;   /* 48px */
    --spacing-3xl: 4rem;   /* 64px */
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;  /* 4px */
    --radius-md: 0.5rem;   /* 8px */
    --radius-lg: 1rem;     /* 16px */
    --radius-full: 9999px;
  }
  
  /* === Reset & Base Styles === */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(145deg, var(--bg-gradient-start), var(--bg-gradient-end));
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-light);
  }
  
  ul, ol {
    list-style: none;
  }
  
  /* === Typography === */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
  }
  
  h1 {
    font-size: var(--text-5xl);
  }
  
  h2 {
    font-size: var(--text-4xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
  
  h4 {
    font-size: var(--text-xl);
  }
  
  h5 {
    font-size: var(--text-lg);
  }
  
  h6 {
    font-size: var(--text-base);
  }
  
  p {
    margin-bottom: var(--spacing-md);
    font-size: var(--text-base);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    padding-bottom: var(--spacing-md);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
  }
  
  /* === Layout === */
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
  }
  
  section {
    padding: var(--spacing-3xl) 0;
    position: relative;
  }
  
  /* === Components === */
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: var(--text-base);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
  }
  
  .btn-small {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.25);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
  }
  
  /* Glow Button Effect */
  .btn-glow {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
      #ff0066, #ff00cc, #3b82f6, #10b981, #3b82f6, #ff00cc, #ff0066
    );
    background-size: 400% 400%;
    z-index: -1;
    border-radius: calc(var(--radius-md) + 2px);
    animation: glowingBorder 6s ease-in-out infinite;
    opacity: 0.7;
  }
  
  .btn-glow::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
      #ff0066, #ff00cc, #3b82f6, #10b981, #3b82f6, #ff00cc, #ff0066
    );
    background-size: 400% 400%;
    z-index: -2;
    border-radius: calc(var(--radius-md) + 4px);
    filter: blur(8px);
    animation: glowingBorder 6s ease-in-out infinite;
    animation-delay: -3s;
    opacity: 0.4;
  }
  
  .btn-glow:hover::before {
    opacity: 0.9;
    filter: brightness(1.2);
  }
  
  .btn-glow:hover::after {
    opacity: 0.7;
    filter: blur(12px) brightness(1.2);
  }
  
  @keyframes glowingBorder {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  /* === Header Scroll Effects === */
  
  /* Base header styles */
/* Fixed header with proper sticky behavior */
.site-header {
  position: fixed; /* Keep it fixed at the top */
  top: 0;
  left: 0;
  right: 0;
  height: 80px; /* Fixed height */
  z-index: 1000; /* Ensure it stays above other content */
  display: flex;
  align-items: center;
  background: rgba(30, 58, 138, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 70px; /* Smaller height when scrolled */
  background: rgba(17, 24, 39, 0.98);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 160px; /* Control logo size */
  width: auto;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

.site-header.scrolled .logo img {
  max-height: 160px; /* Smaller logo when scrolled */
}

/* For the scrolled state */
.site-header.scrolled {
  height: 70px; /* Slightly smaller height when scrolled */
}

.site-header.scrolled .logo img {
  max-height: 50px; /* Smaller logo when scrolled */
}
  
  /* Navigation adjustments on scroll */
  .site-header .nav-item > a {
    transition: padding 0.3s ease, color 0.3s ease;
  }
  
  .site-header.scrolled .nav-item > a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 2rem;
  }
  
  .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text-white);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .auth-buttons {
    display: flex;
    gap: 1rem;
  }
  
  /* Button adjustments on scroll */
  .site-header .btn {
    transition: all 0.3s ease;
  }
  
  .site-header.scrolled .btn {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  
  /* Mobile menu toggle adjustments on scroll */
  .site-header .mobile-menu-toggle {
    transition: transform 0.3s ease;
  }
  
  .site-header.scrolled .mobile-menu-toggle {
    transform: scale(0.9);
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .mobile-menu-toggle:hover {
    transform: scale(1.1);
  }
  
  /* Animation for the header on page load */
  @keyframes headerSlideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .site-header {
    animation: headerSlideDown 0.5s ease forwards;
  }
  
  /* Testimonials */
  .testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
  }
  
  .testimonial:hover::before {
    transform: translateY(0);
  }
  
  .stars {
    color: var(--accent-color);
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-md);
  }
  
  .quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: 0 var(--spacing-sm);
    flex-grow: 1;
  }
  
  .quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -5px;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  /* Author information */
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
  }
  
  .author-info {
    flex-grow: 1;
  }
  
  .author-name {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0;
  }
  
  .author-title {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  
  /* CTA Section */
  .cta-section {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(79, 70, 229, 0.3));
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern-overlay.png');
    opacity: 0.05;
    z-index: 0;
  }
  
  .cta-section .container {
    position: relative;
    z-index: 1;
  }
  
  .cta-section h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
  }
  
  .cta-section p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
  }
  
  /* Footer */
  .site-footer {
    background: rgba(17, 24, 39, 0.7);
    color: var(--text-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
  }
  
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.2), transparent);
    z-index: 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
  }
  
  .footer-brand .logo {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-brand .logo img {
    height: 196px;
  }
  
  .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
  }
  
  .footer-links h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
  }
  
  .footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    font-size: var(--text-sm);
  }
  
  .footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: var(--spacing-xs);
  }
  
  .footer-contact h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
  }
  
  .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
  }
  
  .footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-sm);
  }
  
  .footer-contact a {
    color: var(--primary-light);
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--spacing-md);
  }
  
  .social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    position: relative;
    z-index: 1;
  }
  
  .footer-legal {
    display: flex;
    gap: var(--spacing-lg);
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
  }
  
  .footer-legal a:hover {
    color: var(--text-white);
  }
  
  /* Card styles */
  .card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    margin-bottom: var(--spacing-xl);
  }
  
  .card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Grids */
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
  
  /* Media Queries */
  @media (max-width: 1200px) {
    .container {
      max-width: 960px;
    }
    
    .hero-title {
      font-size: var(--text-5xl);
    }
  }
  
  @media (max-width: 992px) {
    .container {
      max-width: 720px;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .feature-grid.reverse {
      grid-template-columns: 1fr;
    }
    
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      row-gap: var(--spacing-2xl);
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .nav-links {
      display: none;
    }
    
    .nav-links.active {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(30, 58, 138, 0.95);
      padding: var(--spacing-md) 0;
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      box-shadow: var(--shadow-lg);
    }
    
    .auth-buttons {
      display: none;
    }
    
    .auth-buttons.active {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: var(--spacing-sm);
      padding: var(--spacing-md);
    }
    
    .grid-2, .grid-3 {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --text-5xl: 2.5rem;
      --text-4xl: 2rem;
      --text-3xl: 1.75rem;
    }
    
    .container {
      max-width: 540px;
    }
    
    .hero-title {
      font-size: calc(var(--text-4xl) + 0.5rem);
    }
    
    .hero-subtitle {
      font-size: var(--text-lg);
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .hero-buttons .btn {
      width: 100%;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: var(--spacing-md);
      text-align: center;
    }
    
    .footer-legal {
      justify-content: center;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .cta-buttons .btn {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      width: 100%;
      padding: 0 1rem;
    }
    
    .hero {
      min-height: 80vh;
    }
    
    .hero-title {
      font-size: calc(var(--text-4xl) - 0.5rem);
    }
    
    .section-title {
      font-size: var(--text-3xl);
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Utility Classes */
  .animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
  }
  
  .animate-pulse {
    animation: pulse 2s ease-in-out infinite;
  }
  
  .rounded-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .shadow-lg {
    box-shadow: var(--shadow-lg);
  }
  
  .text-gradient {
    background: linear-gradient(to right, #93c5fd, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  /* Feature Announcement in Hero */
.hero-container {
    padding-top: 6rem; /* Add space for fixed header */
}

.feature-announcement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 10;
    position: relative;
}

.announcement-card {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 340px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                0 0 15px rgba(59, 130, 246, 0.3);
    text-align: center;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    margin-right: 2rem;
    flex-shrink: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.announcement-badge {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 1rem;
}

.announcement-card h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.2;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Add a subtle glow effect to the card */
.announcement-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
    z-index: -1;
    border-radius: var(--radius-lg);
    filter: blur(10px);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

/* Hero content adjustments */
.hero-content {
    flex: 1;
    min-width: 0; /* Allow proper flex behavior */
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .announcement-card {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .announcement-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .feature-announcement {
        flex-direction: column;
        align-items: center;
    }
    
    .announcement-card {
        max-width: 100%;
        width: 100%;
        margin: 0 0 3rem 0;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .announcement-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding-top: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .announcement-card {
        padding: 1.25rem;
    }
}
.step-phone-image {
  max-height: 350px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 30px; /* If you want rounded corners */
  transform: rotate(-5deg); /* Slight tilt for visual interest */
}
/* These styles should be included in your CSS file */
.map-container {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #151f52;
}

.map-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../assets/us-map-blue.png'); /* Path to your map image */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.map-overlay-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.map-center-counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  z-index: 10;
  background: rgba(21, 31, 82, 0.7);
  backdrop-filter: blur(8px);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.map-center-counter .counter-box {
  text-align: center;
  min-width: 150px;
}

.map-center-counter .counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.map-center-counter .counter-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.traveling-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 6;
  filter: blur(8px);
  opacity: 0.8;
  animation: travel-path 15s infinite ease-in-out;
  pointer-events: none;
}

@keyframes travel-path {
  0% {
    left: 70%;
    top: 85%;
    opacity: 0.3;
    width: 80px;
    height: 80px;
  }
  10% {
    opacity: 0.8;
    width: 120px;
    height: 120px;
  }
  25% {
    left: 60%;
    top: 60%;
    opacity: 0.6;
    width: 100px;
    height: 100px;
  }
  40% {
    left: 50%;
    top: 45%;
    opacity: 0.8;
    width: 130px;
    height: 130px;
  }
  55% {
    left: 40%;
    top: 35%;
    opacity: 0.7;
    width: 110px;
    height: 110px;
  }
  70% {
    left: 30%;
    top: 25%;
    opacity: 0.9;
    width: 140px;
    height: 140px;
  }
  85% {
    left: 20%;
    top: 15%;
    opacity: 0.6;
    width: 90px;
    height: 90px;
  }
  100% {
    left: 70%;
    top: 85%;
    opacity: 0.3;
    width: 80px;
    height: 80px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }
  
  .map-center-counter {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  
  .map-center-counter .counter-box {
    min-width: unset;
  }
  
  .map-center-counter .counter-value {
    font-size: 2rem;
  }
  
  .traveling-glow {
    width: 70px;
    height: 70px;
  }
  
  @keyframes travel-path {
    0% { left: 70%; top: 85%; width: 60px; height: 60px; }
    10% { opacity: 0.8; width: 90px; height: 90px; }
    25% { left: 60%; top: 60%; width: 70px; height: 70px; }
    40% { left: 50%; top: 45%; width: 100px; height: 100px; }
    55% { left: 40%; top: 35%; width: 80px; height: 80px; }
    70% { left: 30%; top: 25%; width: 100px; height: 100px; }
    85% { left: 20%; top: 15%; width: 70px; height: 70px; }
    100% { left: 70%; top: 85%; width: 60px; height: 60px; }
  }
}
/* TARGETED MOBILE MENU FIX - Add this to the END of your main.css */
/* This preserves your header alignment while fixing the mobile menu */

/* First, ensure mobile toggle is visible on mobile */
@media (max-width: 992px) {
  /* Show the hamburger button */
  .mobile-menu-toggle {
      display: block !important;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      margin-left: auto; /* Push to the right */
  }
  
  /* Make main-nav a flex container on mobile */
  .main-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
  }
  
  /* Hide navigation links by default */
  .nav-links {
      display: none;
      position: fixed; /* Use fixed positioning */
      top: 80px; /* Adjust based on your header height */
      left: 0;
      right: 0;
      background: rgba(30, 58, 138, 0.98);
      flex-direction: column;
      padding: 1rem 0;
      z-index: 999;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
  }
  
  /* Show nav when active */
  .nav-links.active {
      display: flex !important;
  }
  
  /* Style nav items for mobile */
  .nav-links li {
      width: 100%;
      margin: 0;
  }
  
  .nav-links a {
      display: block;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
  }
  
  .nav-links a:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
  }
  
  /* Hide auth buttons by default */
  .auth-buttons {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(30, 58, 138, 0.98);
      padding: 1rem;
      flex-direction: column;
      gap: 0.5rem;
      z-index: 998;
  }
  
  /* Show auth buttons when active */
  .auth-buttons.active {
      display: flex !important;
  }
  
  .auth-buttons .btn {
      width: 100%;
      text-align: center;
  }
}

/* Desktop - ensure everything is visible */
@media (min-width: 993px) {
  .mobile-menu-toggle {
      display: none !important;
  }
  
  .nav-links {
      display: flex !important;
      position: static !important;
      flex-direction: row !important;
      padding: 0 !important;
      background: none !important;
      overflow: visible !important;
      max-height: none !important;
  }
  
  .nav-links li {
      margin: 0 1rem !important;
      width: auto !important;
  }
  
  .nav-links a {
      padding: 0.5rem 0 !important;
      border: none !important;
  }
  
  .auth-buttons {
      display: flex !important;
      position: static !important;
      flex-direction: row !important;
      padding: 0 !important;
      background: none !important;
  }
}