:root {
  --royal-blue-dark: #081a2b;
  --royal-blue: #0b2540;
  --gold: #d4af37;
  --gold-light: #f5e3a1;
  --text-soft: #e8dcc0;

  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

* {
  box-sizing: border-box;
}
/* Prevent overflow issues */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make icons & buttons tappable */
a, button, .menu-toggle {
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--royal-blue-dark), var(--royal-blue));
  color: var(--gold);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/footer-logo.png"); /* your logo path */
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: 380px;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--royal-blue-dark);
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Header */
header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background: rgba(8, 26, 43, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0px 0px 40px 40px;
  border-bottom: 1px solid rgba(212,175,55,0.35);
}


header.fixed {
  position: fixed;
  top: 0px;
  background: rgba(8, 26, 43, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: auto;          /* adjust if needed */
  width: auto;
  display: block;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-link {
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.call-link i {
  color: var(--gold);
}

/* CTA Button */
.cta-btn {
  position: relative;
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 12px 35px rgba(212,175,55,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

/* Glow Effect */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
  opacity: 0;
  transition: box-shadow 0.6s ease, opacity 0.6s ease;
  z-index: -1;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.55);
}

.cta-btn:hover::after {
  box-shadow: 0 0 0 14px rgba(212,175,55,0);
  opacity: 1;
}


/* Menu Toggle Button */
.menu-toggle {
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--royal-blue-dark);
  padding: 24px;
  transition: right 0.35s ease;
  z-index: 9999;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.sidebar-header h3 {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
}

.close-btn {
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}

.sidebar nav a:hover {
  color: var(--gold);
}
.galaxy{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.galaxy i{
  position:absolute;
  color:rgba(212,175,55,.35);
  font-size:32px;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.35));
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  opacity:.15;
}
/* Service‑specific grouping */
.galaxy .marketing{ color:rgba(212,175,55,.55); }
.galaxy .web{ color:rgba(245,227,161,.45); }
.galaxy .app{ color:rgba(212,175,55,.4); }

/* Active section emphasis */
.galaxy i.active{
  opacity:.65;
  filter: drop-shadow(0 0 22px rgba(212,175,55,.85));
  transform: scale(1.35);
}
.galaxy i{
  animation-duration:35s;
  filter:drop-shadow(0 0 26px rgba(255,200,100,.9));
}
section[data-galaxy="marketing"]{--galaxy-hue:rgba(212,175,55,.8)}
section[data-galaxy="web"]{--galaxy-hue:rgba(245,227,161,.8)}
section[data-galaxy="app"]{--galaxy-hue:rgba(212,175,55,.6)}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Banner Section */
.banner {
  padding: 90px 16px;
  padding-top: 210px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 60%);
}
.banner-subtext {
  font-size: 0.9rem;
  color: #efda8f; /* adjust according to background */
  margin-top: 0px;
  line-height: 1.4;
}
.banner-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
#subtitle {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#subtitle.show {
  opacity: 1;
  transform: translateY(0);
}

/* Paragraph animation */
#description {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
}

#description.show {
  opacity: 1;
  transform: translateY(0);
}

/* Typewriter cursor */
#typewriter::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
.banner-content h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.banner-content h1 span {
  color: var(--gold-light);
}

.banner-content h2 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

/* Banner Button */
.banner-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 12px 35px rgba(212,175,55,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0px
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.55);
}

/* Banner Form */
.banner-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 18px;
  padding: 36px;
  transform: translateY(-20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.banner-form:hover {
  transform: translateY(-26px);
}

.banner-form h3 {
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--gold);
}

.banner-form input,
.banner-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.3);
  background: transparent;
  color: var(--text-soft);
  font-family: inherit;
}

.banner-form input::placeholder,
.banner-form textarea::placeholder {
  color: rgba(232,220,192,0.6);
}

/* =====================
   Select Field Styling
===================== */
.banner-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-family: inherit;
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
}

/* Custom Dropdown Arrow */
.banner-form select {
  background-image: 
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* Focus State */
.banner-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

/* Disabled / Placeholder Option */
.banner-form select option[disabled] {
  color: rgba(232, 220, 192, 0.6);
}

/* Optgroup Styling */
.banner-form optgroup {
  color: var(--gold);
  font-weight: 600;
  background: var(--royal-blue-dark);
}

.banner-form option {
  color: var(--text-soft);
  background: var(--royal-blue-dark);
}

.banner-form button {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}
.banner-form {
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.banner-form form {
  margin-top: 20px;
}


/* Services & Packages */
.services {
  padding: 0px 16px;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.services-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.services-header p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* Cards Grid */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  font-size: .7rem;
  letter-spacing: 1px;
  border-radius: 20px;
  background: rgba(212,175,55,.15);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,.45);
}

/* Service Card */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  background: radial-gradient(circle at top, rgba(212,175,55,.15), transparent 60%),
  linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  backdrop-filter: blur(10px);
  transition: transform .45s ease, box-shadow .45s ease;
}

.service-btn {
  margin-top: auto;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* Popular Badge */
.service-card.popular {
  box-shadow: 0 0 0 1px rgba(212,175,55,.6), 0 40px 90px rgba(212,175,55,.25);
}
.service-badge.premium {
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  color: #081a2b;
}
/* Card Text */
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Price */
.price {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.price span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
  padding-left: 22px;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Button */
.service-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212,175,55,0.55);
}
/* Case Studies */
.case-studies {
  padding: 15px 16px;
}

.case-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.case-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.case-header p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid */
.case-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.case-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 26px;
  padding: 0px 30px 31px;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* Text */
.case-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.case-sub {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

/* Points */
.case-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.case-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.case-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Button */
.case-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 34px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212,175,55,0.55);
}
/* Testimonials */
.testimonials {
  padding: 15px;
  max-width: 1200px;
  margin: auto;
}

.testimonials-header {
  text-align: center;
  margin: 0 auto 40px;
}

.testimonials-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.testimonials-header p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* Wrapper with hidden overflow */
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

/* Track slides horizontally */
.testimonial-track {
  display: flex;
  transition: transform 1s ease;
}

/* Single card */
.testimonial-card {
  flex: 0 0 32.6%; /* 3 visible at a time */
  padding: 10px 35px 0;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 26px;
  margin-right: 10px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}
/* FAQ Section */
.faq-section {
  padding: 15px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin: 0 auto 40px;
}

.faq-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.faq-header p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* FAQ Items */
.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.55);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* Icon */
.faq-question i {
  transition: transform 0.35s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 26px;
}

.faq-answer p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* Active State */
.faq-item.active {
  border-color: rgba(212,175,55,0.6);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 24px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
/* Footer */
.site-footer {
  margin-top: 50px;
  background: radial-gradient(circle at top, rgba(212,175,55,0.15), transparent 60%), linear-gradient(180deg, #050f1c, #081a2b);
  border-top: 1px solid rgba(212,175,55,0.35);
  padding: 25px 0px 0px;
  border-radius: 40px 40px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 16px 7px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left */

.footer-about {
  text-align: center;
}
.footer-logo {
  height: auto;
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 360px;
}
.footer-text{
  text-align: center;
  margin-bottom: 40px;
}
/* Middle */
.footer-contact {
  text-align: center;
}
.footer-contact h4,
.footer-cta h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--gold);
}

.contact-item {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-item i {
  color: var(--gold);
  font-size: 1rem;
}

.contact-item a {
  color: var(--text-soft);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-light);
}

/* Right */
.footer-cta {
  text-align: right;
}

.footer-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 12px 35px rgba(212,175,55,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.55);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(232,220,192,0.6);
  border-top: 1px solid rgba(212,175,55,0.12);
}
.footer-quote {
  max-width: 1500px; /* Set desired width */
  margin: 18px auto 0; /* Center horizontally */
  padding: 20px 18px 9px;
  border-top: 1px solid rgba(212,175,55,.45);
  background: radial-gradient(circle at top, rgba(212,175,55,.15), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 28px;
  opacity: 0.9;
  position: relative;
  text-align: center;
  font-style: italic;
}

.footer-quote .left {
  font-size: 2.5rem;
  vertical-align: middle;
  color: var(--gold);
  margin-right: 8px;
}

.footer-quote .right {
  font-size: 2.5rem;
  vertical-align: middle;
  color: var(--gold);
  margin-left: 8px;
}
@keyframes floatGalaxyDesktop{
  0%{transform:translateY(0) translateX(0) scale(1);}
  50%{transform:translateY(-120px) translateX(60px) scale(1.2);}
  100%{transform:translateY(-260px) translateX(-60px) scale(.95);}
}

@keyframes floatGalaxyMobile{
  0%{transform:translateY(0) scale(1);}
  100%{transform:translateY(-160px) scale(1.1);}
}
  100%{transform:translateY(-180px) scale(1.1);}
}
  50%{transform:translateY(-120px) translateX(40px) scale(1.2);opacity:.45}
  100%{transform:translateY(-260px) translateX(-40px) scale(.9);opacity:.15}
}
.fade-text {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-text.show {
  opacity: 1;
  transform: translateY(0);
}
.form-message {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  display: block;
}

.error-text {
  color: #ff6b6b;
  font-size: 0.8rem;
}

.form-message {
  margin: 0 0 9px;
  font-size: 0.9rem;
}

.form-message.success {
  color: #4caf50;
}

.form-message.error {
  color: #ff6b6b;
}

#verifyOtpBtn{
  margin-bottom: 10px;
}

/* Floating Icon */
    .chat-float-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--gold), var(--gold-light));
      box-shadow:
      0 0 0 8px rgba(212,175,55,.12),
      0 20px 45px rgba(212,175,55,.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      animation: pulse 2.8s infinite;
    }
    .chat-bubble {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--gold), var(--gold-light));
      box-shadow:
      0 0 0 8px rgba(212,175,55,.12),
      0 20px 45px rgba(212,175,55,.55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      animation: pulse 2.8s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(212,175,55,.4); }
      70% { box-shadow: 0 0 0 14px rgba(212,175,55,0); }
    }

    .chat-overlay {
      position: fixed;
      inset: 10px;
      display: flex;
      flex-direction: column;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(11,37,64,.92), rgba(8,26,43,.96));
      box-shadow: 0 60px 120px rgba(0,0,0,.75);

      transform: translateY(20px) scale(.9);
      opacity: 0;
      pointer-events: none;
      transition: all .35s ease;
    }

    .chat-overlay.open {
      transform: translateY(0) scale(1);
      opacity: 1;
      pointer-events: auto;
      z-index: 9999;
    }

    .chat-header {
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--gold-light);
      font-size: 20px;
    }

    .hero {
      margin: 0 24px 10px;
      padding: 22px;
      border-radius: 20px;
      background:
      radial-gradient(circle at top left, rgba(212,175,55,.25), transparent 60%),
      rgba(255,255,255,.04);
      color: var(--text-soft);
      box-shadow: inset 0 0 0 1px rgba(212,175,55,.2);
    }

    .hero h2 {
      margin: 0 0 8px;
      color: var(--gold-light);
    }

    .chat-body {
      flex: 1;
      overflow-y: auto;
      padding: 0px 20px;
      scroll-behavior: smooth;
    }

    .message {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      animation: rise .4s ease;
      margin-bottom: 10px;
    }

    @keyframes rise {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; }
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--royal-blue-dark);
    }

    .bubble {
      max-width: 72%;
      padding: 12px 14px;
      border-radius: 16px;
      background:
      linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
      color: var(--text-soft);
      box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.18),
      0 20px 40px rgba(0,0,0,.35);
    }

    .user .bubble {
      background: linear-gradient(145deg, var(--gold), var(--gold-light));
      color: var(--royal-blue-dark);
      font-weight: 600;
      margin-left: auto;
    }

/* Spacer */
.spacer {
  height: calc(100% - 60px);
}

/* Footer */
.chat-footer {
  padding: 24px;
}

.chat-footer input,
.chat-footer textarea {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: rgba(255,255,255,.08);
  color: var(--text-soft);
  outline: none;
}

.chat-footer button {
  margin-top: 14px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  font-weight: 700;
  cursor: pointer;
}

.service-btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212,175,55,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  margin: 5px;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212,175,55,0.55);
}

.html-bubble h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--gold-light);
}

.html-bubble p {
  margin: 0 0 8px;
  line-height: 1.55;
}

.html-bubble ol {
  padding-left: 18px;
  margin: 6px 0;
}
.bubble .back-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.back-btn {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  font-weight: 700;
  cursor: pointer;
  color: var(--royal-blue-dark);
}
.summary-text::after { content:""; animation: blink 1s infinite; }

.pricing-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  box-shadow: 0 12px 35px rgba(212,175,55,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0px;
  width: 70%;
}

.pricing-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.price-stack{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  background: radial-gradient(circle at top, rgba(212,175,55,.15), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  backdrop-filter: blur(10px);
  transition: transform .45s ease, box-shadow .45s ease;
}

.price-card h4 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--gold);
}

.price-amount {
  font-size: 1.7rem;
  margin: 10px 0;
  color: var(--gold);
}

.price-card ul {
  padding-left: 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.price-card ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-soft);
  position: relative;
  padding-left: 22px;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.price-card button {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #081a2b;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212,175,55,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  margin: 5px;
}
.otp-actions{
  display: flex;
  gap: 15px;
}