/* ======================================
   REVENUE ARCHITECTS - STYLE.CSS
   Clean, organized, and optimized styles
   ====================================== */

/* ===== BASE STYLES ===== */
* {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
#preloader, .preloader, [class*="preload"], [id*="preload"] {
    display: none !important;
}

body {
font-family: "Audiowide", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Audiowide", sans-serif;
}
.nav-gradient {
  position: fixed !important;
 
 border-bottom: 2px solid white;
  
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;

  background: transparent; /* default (before scroll) */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* Header color changes on scroll */
.nav-gradient.scrolled {
  background: linear-gradient(135deg, #0a0a23 0%, #1b1b5e 50%, #2d2d80 100%);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

/* Menu links */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px #06b6d4;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
background-image: url('https://images.unsplash.com/photo-1563206767-5b18f218e8de?w=1920&q=80');


    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

/* ===== BUTTONS ===== */
.glow-btn {
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
    background-size: 200%;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    transition: all 0.4s ease;
}

.glow-btn:hover {
    background-position: right;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.6);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); 
    }
    50% { 
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.9); 
    }
}

/* ===== FORM CARD ===== */
.form-card {
        background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
   margin-top: -150px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== INPUT WITH ICON ===== */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6366f1;
    font-size: 1.1rem;
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 45px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* ===== PHASE CARDS ===== */
.phase-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phase-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ===== FLOATING ICON ANIMATION ===== */
.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

/* ===== MUSIC CONTROLS ===== */
.music-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 12px;
}

.music-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.music-btn.playing {
    background: linear-gradient(135deg, #10b981, #059669);
}

.music-btn.muted {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.mobile-menu.open {
    transform: translateY(0);
}

/* ===== DIGITAL TEXT ===== */
#digitalText {
    display: inline-block;
    letter-spacing: 1.5px;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .music-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .music-btn {
        width: 48px;
        height: 48px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .form-card h2 {
        font-size: 1.5rem;
    }
    
    .glow-btn {
        font-size: 1rem;
    }
}