/* Aurora Background Section Component */
.aurora-background-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* margin-top: 20px; */
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #0a2e2b 0%, #1a3d3a 50%, #2d4f4c 100%);
    color: #e2e8f0;
    transition: background 0.3s ease;
    overflow: hidden;
    /* padding:30px 5%; */
}

/* Aurora Overlay Effect */
.aurora-background-section .aurora-overlay {
    position: absolute;
    inset: -10px;
    overflow: hidden;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 300% 200%, 200% 100%;
    background-position: 50% 50%, 50% 50%;
    opacity: 0.5;
    filter: blur(10px) invert(1);
    will-change: transform;
    animation: aurora-animation 20s ease-in-out infinite;
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

.aurora-background-section .aurora-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(100deg, #fff 0%, #fff 7%, transparent 10%, transparent 12%, #fff 16%),
        repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    background-size: 200% 100%;
    background-attachment: fixed;
    mix-blend-mode: difference;
    animation: aurora-animation-reverse 25s ease-in-out infinite;
}

/* Content Wrapper */
.aurora-background-section .aurora-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

/* Typography */
.aurora-background-section .aurora-main-heading {
    /* font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.4;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px; */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 84px;
    font-weight: 550;
    line-height: 84px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fffef3;
    letter-spacing: -0.72px;
    /* margin: 50px; */
}

.aurora-background-section .aurora-sub-heading {
    /* font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9; */
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 24px;
    color: #fffef3;
    margin-bottom: 20px;
    line-height: 100%;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* CTA Button */
.aurora-background-section .aurora-cta-button {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.aurora-background-section .aurora-cta-button:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.aurora-background-section .aurora-cta-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes aurora-animation {
    0%, 100% {
        background-position: 50% 50%, 50% 50%;
        transform: rotate(0deg);
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 100%;
        transform: rotate(180deg);
    }
    75% {
        background-position: 0% 0%, 50% 50%;
    }
}

@keyframes aurora-animation-reverse {
    0%, 100% {
        background-position: 100% 0%, 0% 100%;
    }
    25% {
        background-position: 0% 100%, 100% 0%;
    }
    50% {
        background-position: 50% 50%, 50% 50%;
    }
    75% {
        background-position: 100% 100%, 0% 0%;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    
    .aurora-background-section .aurora-main-heading {
        margin-bottom: 1.5rem;
    }
    
    .aurora-background-section .aurora-sub-heading {
        margin-bottom: 2.5rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .aurora-background-section .aurora-content-wrapper {
        padding: 2rem 0.75rem;
    }
    
    .aurora-background-section .aurora-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .aurora-background-section .aurora-overlay {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
        filter: blur(10px);
    }
    
    .aurora-background-section .aurora-overlay::after {
        background-image: 
            repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
            repeating-linear-gradient(100deg, #ffcaa3 10%, #7bc8c4 15%, #5bb5b2 20%, #f8f0e5 25%, #4da5b0 30%);
    }
    
    .aurora-background-section .aurora-cta-button {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        color: #1e293b;
        border-color: rgba(30, 41, 59, 0.2);
    }
    
    .aurora-background-section .aurora-cta-button:hover {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        border-color: rgba(30, 41, 59, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .aurora-background-section .aurora-overlay {
        animation: none !important;
    }
    
    .aurora-background-section .aurora-content-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 992px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 770px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 2.5rem 1rem;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 42px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .aurora-background-section .aurora-cta-button {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 25px;   /* balanced for smaller screens */
    line-height: 1.9;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 350px) {
  .aurora-background-section .aurora-content-wrapper {
    padding: 30px 5%;
    gap: 1.2rem;
    text-align: center;
  }

  .aurora-background-section .aurora-main-heading {
    font-size: 24px;   /* balanced for smaller screens */
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .aurora-background-section .aurora-sub-heading {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}

.gradient-btn {
      background: linear-gradient(90deg, #2e9e96, #ffffff, #f7a36f);
      border: none;
      padding: 10px 28px;
      border-radius: 25px;
      font-size: 22px;
      font-weight: 500;
      cursor: pointer;
      text-align: center;
      display: flex;
      align-items: center;
      gap: 12px;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      line-height: 1.2;
    }
    .gradient-btn svg.arrow-icon {
      vertical-align: middle;
      margin-left: 8px;
      width: 1.2em;
      height: 1.2em;
      transition: transform 0.2s;
    }
    .gradient-btn:hover svg.arrow-icon {
      transform: translateX(6px) scale(1.1);
    }
    .gradient-btn:focus {
      outline: 2px solid #ffa163;
      outline-offset: 2px;
    }
    .gradient-btn-container {
      background: #1a1a1a;
      padding: 6px 36px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
/* Tablets and small laptops */
@media (max-width: 992px) {
  .cta-button,
  .gradient-btn {
    font-size: 16px;
    padding: 12px 24px;
    min-height: 44px;    /* keeps button tall enough */
    border-radius: 40px;
  }
}

/* Small phones up to 480px */
@media (max-width: 480px) {
  .cta-button,
  .gradient-btn {
    font-size: 15px;
    padding: 9px 16px;
    width: 100%;       /* full width for small phones */
    max-width: 280px;  /* keeps it from being too wide */
    margin: 0 auto;    /* center align */
    display: block;
  }
}

/* Extra small screens (iPhone SE / fold ~375px) */
@media (max-width: 375px) {
  .cta-button,
  .gradient-btn {
    font-size: 14px;
    padding: 8px 14px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
