:root {
  --navy: #0b1626;
  --navy2: #0f1e35;
  --navy3: #142440;
  --orange: #f7941d;
  --orange2: #e07b00;
  --orange3: #ff9f2f;
  --white: #ffffff;
  --muted: #8a9bb5;
  --card-bg: #111f38;
  --border: rgba(247, 148, 29, 0.18);
  --glow: 0 0 30px rgba(247, 148, 29, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo 2", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ─── UTILITY ─── */
.text-orange {
  color: var(--orange) !important;
}

.sec-pad {
  padding: 90px 0;
}

.sec-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 1px;
}

.sec-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.orange-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
  margin: 12px auto 0;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(247, 148, 29, 0.35);
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--orange3), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 148, 29, 0.5);
  color: #fff;
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

/* ─── NAVBAR ─── */
#mainNav {
  background: rgba(11, 22, 38, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(11, 22, 38, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 48px;
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange) !important;
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-toggler-icon {
  filter: invert(60%) sepia(100%) saturate(500%) hue-rotate(10deg);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%,
      rgba(247, 148, 29, 0.08) 0%,
      transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid var(--border);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--orange);
}

.hero-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 22px 0 36px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.h-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  font-family: "Rajdhani", sans-serif;
}

.h-stat span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-ring {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(247, 148, 29, 0.15) 0%,
      transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 3s ease-in-out infinite;
}

.hero-glow-ring img {
  width: 240px;
  filter: drop-shadow(0 0 40px rgba(247, 148, 29, 0.6));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(247, 148, 29, 0.2),
      0 0 0 30px rgba(247, 148, 29, 0.08);
  }

  50% {
    box-shadow:
      0 0 0 30px rgba(247, 148, 29, 0.08),
      0 0 0 60px rgba(247, 148, 29, 0.03);
  }
}


/* ─── COUNTER ─── */
.counter-section {
  background: linear-gradient(135deg, var(--orange2), var(--orange));
  padding: 56px 0;
}

.c-stat {
  text-align: center;
}

.c-stat strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.c-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Divider */
.sec-divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 12px auto 0;
}

@media (max-width: 768px) {
  .step-line {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .h-stat strong {
    font-size: 1.6rem;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .btn-outline-orange {
    padding: 5px 9px;
  }
}

/* ─── SERVICES ─── */
#services {
  background: var(--navy2);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(247, 148, 29, 0.06),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: rgba(247, 148, 29, 0.45);
}

.service-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.1);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--orange);
  transition: all 0.3s;
}

.service-card:hover .svc-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1);
}

.service-card h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── WHY CHOOSE US ─── */
#why {
  background: var(--navy);
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
  height: 100%;
}

.why-card:hover {
  border-color: rgba(247, 148, 29, 0.4);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.why-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(247, 148, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
}

.why-card h6 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── HOW IT WORKS ─── */
#how {
  background: var(--navy2);
}

.steps-wrap {
  position: relative;
}

.step-line {
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(247, 148, 29, 0.1));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.4);
}

.step-card h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

#banks {
  background: var(--navy);
  overflow: hidden;
}

.marquee-wrap {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track2 {
  animation-direction: reverse;
  animation-duration: 20s;
  margin-top: 20px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.bank-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.bank-chip i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* ─── FAQ ─── */
#faq {
  background: var(--navy2);
}

.accordion-item {
  background: var(--card-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: var(--card-bg) !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--orange) !important;
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
  background: var(--card-bg) !important;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  padding-top: 0;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--navy);
}

/* center full content */
#contact .row {
  justify-content: center;
}

#contact .col-lg-5 {
  width: 100%;
  max-width: 850px;
}

/* remove old form css if no form */
.contact-card,
.form-control,
.form-select,
.form-control:focus,
.form-select:focus,
.form-control::placeholder,
.form-label {
  display: none;
}

/* contact box */
.contact-details-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
}

/* little glow effect */
.contact-details-wrapper::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(247, 148, 29, 0.07);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.contact-details-wrapper::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(247, 148, 29, 0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.3);
}

.ci-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.ci-text span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* social */
.social-links {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-4px);
}

/* responsive */
@media (max-width: 768px) {
  .contact-details-wrapper {
    padding: 30px 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info-item {
    padding: 18px;
  }
}

/* ─── FOOTER ─── */
footer {
  background: #080f1c;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
  text-align: center;
}

/* desktop pe center alignment */
@media (min-width: 992px) {
  .footer-brand {
    padding-left: 10px;
  }

  .footer-links {
    text-align: left;
  }
}

/* ─── BACK TO TOP ─── */
#backTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(247, 148, 29, 0.45);
  cursor: pointer;
  transition: all 0.3s;
}

#backTop:hover {
  background: var(--orange2);
  transform: translateY(-3px);
}

#backTop.show {
  display: flex;
}

/* ─── TICKER ─── */
.ticker-bar {
  background: linear-gradient(90deg,
      var(--orange2),
      var(--orange),
      var(--orange2));
  padding: 8px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 32px;
}

.ticker-item i {
  opacity: 0.7;
}