/* ============================================================
   NovaPulse Digital — Global Styles
   ============================================================ */

   :root {
    --bg-deep:    #0d0a2e;
    --bg-mid:     #241050;
    --purple:     #3d1e6e;
    --gold:       #ff9500d4;
    --gold-light: #ffcc55dc;
    --blue-orb:   #3355ee;
    --white:      #ffffff;
    --white-60:   rgba(255,255,255,0.6);
    --white-20:   rgba(255,255,255,0.12);
    --glass-bg:   rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.18);
    --accent:     #ff9500e2;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
  }
  
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--white);
    overflow-x: hidden;
  }
  .align-right{
    margin-right:auto;
    text-align: right;
  }
  /* ============================================================
     FIXED NAV
     ============================================================ */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,10,46,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow 0.3s;
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: -5px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; 
   
  
  }
 
  .nav-links {
    list-style: none;
    display: flex; gap: 20px;
    align-items: center;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--white); }
  .nav-links .sep { color: rgba(255,255,255,0.25); font-size: 12px; }
  .nav-cta {
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,149,0,0.4);
  }
  
  /* ============================================================
     SECTION BASE
     ============================================================ */
  .section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
    background: radial-gradient(ellipse at 55% 50%, var(--purple) 0%, var(--bg-mid) 40%, var(--bg-deep) 100%);
  }
  
  /* ============================================================
     BLOBS
     ============================================================ */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    animation: floatBlob 7s ease-in-out infinite;
    pointer-events: none;
  }
  .blob-gold-tl {
    width: 200px; height: 200px;
    background: radial-gradient(circle at 40% 40%, var(--gold-light), var(--gold));
    top: -56px; left: 150px;
    border-radius: 60% 60% 60% 60% / 50% 60% 40% 50%;
    animation-duration: 8s; animation-delay: -1s;
  }
  .blob-gold-tr {
    width: 160px; height: 160px;
    background: radial-gradient(circle at 40% 40%, var(--gold-light), #ff8c00);
    top: -20px; right: 80px;
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation-duration: 9s; animation-delay: -3s;
  }
  .blob-gold-br {
    width: 220px; height: 160px;
    background: radial-gradient(circle at 40% 50%, var(--gold-light), var(--gold));
    bottom: -40px; right: -20px;
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    animation-duration: 10s; animation-delay: -2s;
  }
  .blob-gold-bl {
    width: 160px; height: 130px;
    background: radial-gradient(circle at 40% 50%, var(--gold-light), var(--gold));
    bottom: 20px; left: 10px;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    animation-duration: 7.5s; animation-delay: -4s;
  }
  .blob-blue-left {
    width: 100px; height: 100px;
    background: radial-gradient(circle at 35% 35%, #5577ff, #1a33cc);
    top: 40%; left: -15px;
    animation-duration: 6s; animation-delay: -0.5s;
  }
  .blob-blue-right {
    width: 100px; height: 100px;
    background: radial-gradient(circle at 35% 35%, #5577ff, #1a33cc);
    top: 50%; right: -15px;
    animation-duration: 6s; animation-delay: -1.5s;
  }
  
  /* Squiggle */
  .squiggle {
    position: absolute;
    top: 10px; left: 180px;
    animation: floatBlob 9s ease-in-out infinite;
    animation-delay: -2s;
    pointer-events: none;
  }
  .squiggle svg { width: 90px; height: 100px; }
  .squiggle-right { left: auto; right: 180px; transform: scaleX(-1); }
  
  /* ============================================================
     GLASS CARD
     ============================================================ */
  .glass-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 50px rgba(0,0,0,0.35);
    padding: 44px 52px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.8s ease;
  }
  .glass-card.in-view { opacity: 1; transform: translateY(0); }
  
  /* ============================================================
     COMMON TEXT ELEMENTS
     ============================================================ */
  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .section-title.centered { text-align: center; }
  .accent-text { color: var(--gold); }
  .section-sub {
    text-align: center;
    font-size: 13px;
    color: var(--white-60);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }
  
  /* Buttons */
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), #ff6b00);
    color: var(--bg-deep);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,149,0,0.45);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    padding: 11px 26px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
  }
  .btn-full { width: 100%; }
  
  /* Section dots */
  .section-dots {
    position: absolute;
    bottom: 28px;
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.2s;
  }
  .dot.active { background: var(--white); }
  
  /* Orb */
  .orb {
    position: absolute;
    width: 110px; height: 110px;
    left: 80px; top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #aabbff, var(--blue-orb) 50%, #0a1a88 100%);
    box-shadow: 0 0 50px 12px rgba(80,120,255,0.4);
    animation: orbFloat 5.5s ease-in-out infinite;
    z-index: 6;
    pointer-events: none;
  }
  .orb::before, .orb::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(100,150,255,0.3);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: ringPulse 3s ease-in-out infinite;
  }
  .orb::before { width: 150px; height: 150px; }
  .orb::after  { width: 195px; height: 195px; animation-delay: 0.6s; }
   .orb-home { left: auto; right: 100px; top: 50%; }
  
  /* ============================================================
     HOME SECTION
     ============================================================ */
  .home-card {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .home-tagline {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: 76px;
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  }
  .hero-body {
    margin-top: 16px;
    font-size: 14px;
    color: var(--white-60);
    max-width: 420px;
    line-height: 1.7;
  }
  .hero-btns {
    display: flex; gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .home-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    border-top: 1px solid var(--glass-border);
    padding-top: 28px;
  }
  .stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold);
    letter-spacing: 1px;
  }
  .stat-label { font-size: 11px; color: var(--white-60); letter-spacing: 0.5px; }
  .stat-divider {
    width: 1px; height: 40px;
    background: var(--glass-border);
  }
  
  /* ============================================================
     ABOUT SECTION
     ============================================================ */
  .about-section {
    background: radial-gradient(ellipse at 40% 50%, #2a1a6a 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
  }
  .about-card { padding: 44px 52px; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 8px;
  }
  .about-body {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.75;
  }
  .about-body em { color: var(--gold); font-style: normal; font-weight: 500; }
  .about-right { display: flex; justify-content: center; }
  .about-orb-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
  
  }
  .about-orb {
    width: 180px; height: 180px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #aabbff, var(--blue-orb) 50%, #0a1a88 100%);
    box-shadow: 0 0 60px 15px rgba(80,120,255,0.35);
    
  }
  .about-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    margin: 10px;
    white-space: nowrap;
  }
 
  
  /* ============================================================
     SERVICES SECTION
     ============================================================ */
  .services-section {
    background: radial-gradient(ellipse at 50% 60%, #321870 0%, var(--bg-mid) 40%, var(--bg-deep) 100%);
  }
  .services-card { padding: 44px 52px; }
  .orb-services { left: auto; right: 60px; top: 40%; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 8px;
  }
  
  /* Service Card */
  .service-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(24px);
  }
  .service-card.in-view { opacity: 1; transform: translateY(0); }
  .service-card:nth-child(2) { transition-delay: 0.15s; }
  .service-card:nth-child(3) { transition-delay: 0.3s; }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(255,149,0,0.4);
  }
  .featured-card {
    border-color: rgba(255,149,0,0.5);
    box-shadow: 0 0 30px rgba(255,149,0,0.15);
  }
  .featured-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--gold);
    color: var(--bg-deep);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 30px;
  }
  
  /* Service image area */
  .service-img-wrap { width: 100%; }
  .service-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  /* Make card relative for positioning */
.service-card {
  position: relative;
}

/* Text button */
.explore-text {
  position: absolute;
  bottom: 10px;
  right: 15px;
  top:auto;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  opacity: 0.7;
  text-decoration: none;

  transition: 0.3s;
}

/* Hover effect */
.explore-text:hover {
  opacity: 1;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}
  /* Reels image */
  .reels-img {
    background: linear-gradient(135deg, #1a0a2e 0%, #3b1060 100%);
    flex-direction: column;
    gap: 14px;
  }
  .reels-bars {
    display: flex; align-items: flex-end; gap: 5px; height: 50px;
  }
  .rbar {
    width: 10px;
    background: linear-gradient(to top, #f09433, #dc2743, #bc1888);
    border-radius: 3px;
    animation: barPulse 1.2s ease-in-out infinite alternate;
  }
  .rbar:nth-child(1) { animation-delay: 0s; }
  .rbar:nth-child(2) { animation-delay: 0.2s; }
  .rbar:nth-child(3) { animation-delay: 0.4s; }
  .rbar:nth-child(4) { animation-delay: 0.1s; }
  .rbar:nth-child(5) { animation-delay: 0.3s; }
  
  /* Website image */
  .websites-img {
    background: linear-gradient(135deg, #0a1a2e 0%, #0d3060 100%);
    padding: 14px;
    align-items: flex-start;
  }
  .browser-mock {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .browser-bar {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.08);
    padding: 7px 10px;
  }
  .bb-dot { width: 7px; height: 7px; border-radius: 50%; }
  .bb-url {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-left: 6px;
    letter-spacing: 0.5px;
  }
  .browser-content { padding: 10px; }
  .bc-hero {
    width: 100%; height: 40px;
    background: linear-gradient(90deg, rgba(255,149,0,0.3), rgba(51,85,238,0.3));
    border-radius: 5px;
    margin-bottom: 8px;
  }
  .bc-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
  .bc-line {
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
  }
  .bc-cards { display: flex; gap: 5px; }
  .bc-card {
    flex: 1; height: 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
  }
  
  /* Video image */
  .video-img {
    background: linear-gradient(135deg, #0a1a0a 0%, #0d3020 100%);
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }
  .video-timeline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
  }
  .vt-row {
    display: flex; gap: 3px; height: 16px;
  }
  .vt-clip {
    border-radius: 3px;
    height: 100%;
  }
  .vt-playhead {
    position: absolute;
    left: 38%;
    top: -4px; bottom: -4px;
    width: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
  }
  .vt-playhead::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: white;
  }
  .play-btn-wrap {
    display: flex; justify-content: center;
  }
  .play-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .play-btn:hover { background: rgba(255,255,255,0.25); }
  
  /* Service info */
  .service-info { padding: 20px; }
  .service-heading {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--white);
  }
  .service-sub {
    font-size: 12px;
    color: var(--white-60);
    line-height: 1.65;
  }

  /* Common image styles */
.service-img {
  position: relative;
  height: 160px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Meta Ads */
.meta-img {
  background: linear-gradient(135deg, #1877F2, #0d47a1);
}
.meta-graph {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 5px;
}
.meta-graph .bar {
  width: 6px;
  background: white;
  border-radius: 3px;
}

/* Poster */
.poster-img {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
}
.poster-lines div {
  height: 4px;
  background: white;
  margin: 5px;
  border-radius: 2px;
}

/* Content */
.content-img {
  background: linear-gradient(135deg, #6C63FF, #3f3d9e);
}
.content-waves .wave {
  width: 80px;
  height: 6px;
  background: white;
  margin: 6px;
  border-radius: 3px;
}
  
  /* ============================================================
     CONTACT SECTION
     ============================================================ */
  .contact-section {
    background: radial-gradient(ellipse at 45% 55%, #2a1a6a 0%, var(--bg-mid) 40%, var(--bg-deep) 100%);
  }
  .contact-card { padding: 44px 52px; }
  .orb-contact { left: auto; right: 60px; top: 35%; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 44px;
    align-items: start;
    margin-top: 8px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
  .form-group label { font-size: 11px; letter-spacing: 0.8px; color: var(--white-60); }
  .form-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input:focus { border-color: var(--gold); }
  .form-input option { background: var(--bg-deep); color: var(--white); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
  }
  .contact-item {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .contact-icon { font-size: 22px; line-height: 1; }
  .contact-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 3px;
  }
  .contact-val { font-size: 13px; color: var(--white); }
  .contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
  .social-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 30px;
    transition: background 0.2s, border-color 0.2s;
  }
  .social-pill:hover {
    background: rgba(255,149,0,0.15);
    border-color: rgba(255,149,0,0.5);
  }
  
  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--glass-border);
    padding: 20px 32px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--white-60);
  }
  /* Social icons container */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base icon style */
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);

  transition: 0.3s;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Hover glow effects */
.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Platform-specific glow */
.social-icon.ig:hover {
  box-shadow: 0 0 15px rgba(255, 0, 150, 0.6);
}

.social-icon.wa:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.social-icon.yt:hover {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}
/* Footer base */
.site-footer {
  position: relative;
  margin-top: 80px;
  padding: 40px 20px 20px;
  color: white;
  overflow: hidden;
}

/* Glow background */
.footer-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff7a00, transparent);
  filter: blur(80px);
  bottom: -100px;
  right: -50px;
  z-index: 0;
}

/* Glass container */
.footer-inner {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  padding: 25px 30px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Logo */
.logo {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #ff7a00, #ff00cc);
  border-radius: 50%;
}

/* Tagline */
.footer-tag {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 5px;
}

/* Links */
.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Social dots (minimal style like your UI) */
.footer-socials span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  transition: 0.3s;
}

.footer-socials span:hover {
  transform: scale(1.4);
  opacity: 1;
}

/* Bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.6;
}
  /* ============================================================
     KEYFRAME ANIMATIONS
     ============================================================ */
  @keyframes floatBlob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-14px) rotate(5deg); }
    66%       { transform: translateY(9px) rotate(-4deg); }
  }
  @keyframes orbFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%       { transform: translateY(calc(-50% - 12px)) translateX(5px); }
  }
  @keyframes ringPulse {
    0%, 100% { opacity: 0.25; transform: translate(-50%,-50%) scale(1); }
    50%       { opacity: 0.55; transform: translate(-50%,-50%) scale(1.07); }
  }
  @keyframes barPulse {
    from { transform: scaleY(0.6); }
    to   { transform: scaleY(1); }
  }
  
  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 900px) {
    .glass-card { padding: 28px 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-right { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 38px; }
    .nav-links { display: none; }
    .orb { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ============================================================
       ADDITIONAL ANIMATIONS & ENHANCEMENTS
       ============================================================ */

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.85); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes badgePop {
      0%   { opacity: 0; transform: scale(0.6) translateX(30px); }
      60%  { transform: scale(1.05) translateX(-4px); }
      100% { opacity: 1; transform: scale(1) translateX(0); }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,149,0,0.4); }
      50%       { box-shadow: 0 0 0 10px rgba(255,149,0,0); }
    }
    @keyframes floatBadge {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-6px); }
    }
    @keyframes growBar {
      from { transform: scaleY(0); }
      to   { transform: scaleY(1); }
    }
    @keyframes playheadScan {
      0%, 100% { left: 20%; }
      50%       { left: 75%; }
    }
    @keyframes waveExpand {
      0%   { width: 40px; opacity: 0.8; }
      100% { width: 120px; opacity: 0.3; }
    }
    @keyframes posterLinePulse {
      0%, 100% { opacity: 0.5; }
      50%       { opacity: 1; }
    }

    /* ============================================================
       NAV
       ============================================================ */
    .site-nav { animation: slideDown 0.6s ease forwards; }
    .logo { animation: fadeInLeft 0.7s ease 0.2s both; }
    .nav-links { animation: fadeInUp 0.7s ease 0.4s both; }
    .nav-cta { animation: scaleIn 0.5s ease 0.7s both; }

    /* ============================================================
       HOME ANIMATIONS
       ============================================================ */
    .home-tagline { animation: fadeInLeft 0.7s ease 0.4s both; }
    .hero-title { animation: fadeInUp 0.9s ease 0.55s both; }
    .hero-body { animation: fadeInUp 0.8s ease 0.75s both; }
    .hero-btns { animation: fadeInUp 0.8s ease 0.9s both; }

    .accent-text {
      background: linear-gradient(90deg, #ff9500, #ffcc55, #ff6b00, #ffcc55, #ff9500);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite;
    }

    .btn-primary { animation: pulseGlow 2.5s ease-in-out 2s infinite; }


    /* GLASS ENTRY ANIMATION */
@keyframes glassEnter {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-card {
  animation: glassEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-tagline {
  opacity: 0;
  animation: fadeInLeft 0.7s ease 1s forwards;
}

.hero-title {
  opacity: 0;
  animation: fadeInUp 0.9s ease 1.2s forwards;
}

.hero-body {
  opacity: 0;
  animation: fadeInRight 0.8s ease 1.4s forwards;
}

.hero-btns {
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.6s forwards;
}
/* GLOBAL GLASS ENTRY */
@keyframes glassEnter {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Default delay for sections */
.glass-card {
  opacity: 0;
  animation: glassEnter 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* HOME */
.home-card { animation-delay: 0.2s; }

/* ABOUT */
.about-card { animation-delay: 1.5s; }

/* SERVICES */
.services-card { animation-delay: 2.8s; }

/* CONTACT */
.contact-card { animation-delay: 4.2s; }

.home-tagline { animation: fadeInLeft 0.7s ease 1s forwards; }
.hero-title   { animation: fadeInUp   0.9s ease 1.2s forwards; }
.hero-body    { animation: fadeInRight 0.8s ease 1.4s forwards; }
.hero-btns    { animation: fadeInUp   0.8s ease 1.6s forwards; }

.about-card .section-label {
  opacity: 0;
  animation: fadeInLeft 0.7s ease 1.8s forwards;
}

.about-card .section-title {
  opacity: 0;
  animation: fadeInUp 0.9s ease 2s forwards;
}

.about-body {
  opacity: 0;
  animation: fadeInRight 0.8s ease 2.2s forwards;
}

.about-badge {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.about-badge:nth-child(1) { animation-delay: 2.4s; }
.about-badge:nth-child(2) { animation-delay: 2.6s; }
.about-badge:nth-child(3) { animation-delay: 2.8s; }

.services-card .section-label {
  opacity: 0;
  animation: fadeInLeft 0.7s ease 3.1s forwards;
}

.services-card .section-title {
  opacity: 0;
  animation: fadeInUp 0.9s ease 3.3s forwards;
}

.section-sub {
  opacity: 0;
  animation: fadeInUp 0.8s ease 3.5s forwards;
}

/* Cards stagger */
.service-card {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 3.7s; }
.service-card:nth-child(2) { animation-delay: 3.9s; }
.service-card:nth-child(3) { animation-delay: 4.1s; }
.service-card:nth-child(4) { animation-delay: 4.3s; }
.service-card:nth-child(5) { animation-delay: 4.5s; }
.service-card:nth-child(6) { animation-delay: 4.7s; }

.contact-card .section-label {
  opacity: 0;
  animation: fadeInLeft 0.7s ease 4.5s forwards;
}

.contact-card .section-title {
  opacity: 0;
  animation: fadeInUp 0.9s ease 4.7s forwards;
}

.contact-card .section-sub {
  opacity: 0;
  animation: fadeInUp 0.8s ease 4.9s forwards;
}

.contact-form {
  opacity: 0;
  animation: fadeInLeft 0.8s ease 5.1s forwards;
}

.contact-info {
  opacity: 0;
  animation: fadeInRight 0.8s ease 5.3s forwards;
}
.hero-title { animation: fadeInUp 0.9s ease 0.55s both; }