/* =============================================
       HERO SECTION
    ============================================= */
#hero {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 50%, #2a0845 100%);
  padding: 150px 40px 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

/* Animated background pattern */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%,
      rgba(199, 0, 126, 0.18) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(30, 57, 143, 0.3) 0%,
      transparent 50%),
    radial-gradient(circle at 60% 80%,
      rgba(199, 0, 126, 0.1) 0%,
      transparent 40%);
  animation: heroBg 10s ease-in-out infinite alternate;
}

@keyframes heroBg {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.7;
  }
}

/* Floating grid lines */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1300px;
  margin: auto;
  padding: 20px 40px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 0, 126, 0.2);
  border: 1px solid rgba(199, 0, 126, 0.4);
  color: #f9a8d4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #f9a8d4;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-h1 span {
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-pill i {
  color: var(--gold);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}

/* Hero right — floating card */
.hero-right {
  position: relative;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 36px;
  position: relative;
}

.hero-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color:#fff;
  margin-bottom: 28px;
}

.hero-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(199, 0, 126, 0.3);
  animation: avatarPop 0.8s 0.5s ease both;
}

@keyframes avatarPop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.hero-avatar-info h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: "DM Sans";
  font-weight: 600;
}

.hero-avatar-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  margin-top: 2px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hstat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s;
}

.hstat:hover {
  transform: translateY(-4px);
  background: rgba(199, 0, 126, 0.1);
}

.hstat .num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  margin-top: 4px;
}

/* Floating badge on card */
.hero-float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gold);
  color: #0d1a3a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(240, 180, 41, 0.4);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-hint .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
       SERVICES SECTION
    ============================================= */
#services {
  background: var(--offwhite);
  position: relative;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .sc-icon,
.service-card:hover .sc-title,
.service-card:hover .sc-desc,
.service-card:hover .sc-link {
  color: #fff;
}

.service-card:hover .sc-icon {
  background: rgba(255, 255, 255, 0.2);
}

.sc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1e398f 0%, #c7007e 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 18px;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.sc-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.sc-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.sc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

/* =============================================
       WHY CHOOSE / STATS SECTION
    ============================================= */
#why {
  background: #fff;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--gradient-main);
  border-radius: var(--radius);
  padding: 28px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: scale(1.04);
}

.stat-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.stat-card.alt {
  background: var(--gradient-rev);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  display: inline-block;
}

.stat-label {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 4px;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--pink);
  transition: all 0.3s;
}

.usp-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(6px);
}

.usp-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.usp-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "DM Sans";
}

.usp-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
       CERTIFICATIONS
    ============================================= */
#certifications {
  background: var(--offwhite);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.cert-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-pink);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.08),
      rgba(199, 0, 126, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.cert-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
       NRI SECTION
    ============================================= */
#nri {
  background: linear-gradient(135deg, #0d1a3a 0%, #1e398f 60%, #2a0845 100%);
  position: relative;
}

#nri::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%,
      rgba(199, 0, 126, 0.2),
      transparent 60%);
}

.nri-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nri-content .section-tag {
  color: #f9a8d4;
  -webkit-text-fill-color: unset;
  background: none;
}

.nri-content .section-title {
  color: #fff;
}

.nri-content .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.nri-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.nri-feat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all 0.3s;
}

.nri-feat:hover {
  background: rgba(199, 0, 126, 0.15);
  transform: translateY(-4px);
}

.nri-feat i {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
  color: var(--gold);
}

.nri-feat h4 {
  color: #fff;
  font-size: 0.88rem;
  font-family: "DM Sans";
  font-weight: 600;
}

.nri-feat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  margin-top: 4px;
}

/* NRI Map Card */
.nri-map-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 36px;
}

.nri-map-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "DM Sans";
  font-weight: 600;
}

.dest-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.dest-item:hover {
  background: rgba(199, 0, 126, 0.2);
  transform: translateX(6px);
}

.dest-item .flag {
  font-size: 1.3rem;
}

/* =============================================
       BRANCHES
    ============================================= */
#branches {
  background: #fff;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.branch-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  border: 2px solid transparent;
}

.branch-card:hover {
  background: #fff;
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: translateY(-8px);
}

.branch-card .b-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 auto 14px;
}

.branch-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: "DM Sans";
}

.branch-card .b-hq {
  font-size: 0.68rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.branch-card p {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
}

/* =============================================
       TESTIMONIALS
    ============================================= */
#testimonials {
  background: var(--offwhite);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s;
  border: 1px solid rgba(199, 0, 126, 0.1);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
}

.testi-quote {
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content : center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author h5 {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "DM Sans";
}

.testi-author p {
  font-size: 0.75rem;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* =============================================
       FINAL CTA
    ============================================= */
#cta {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

#cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 40px;
  max-width: 800px;
  margin: auto;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--blue);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    max-width: 480px;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .nri-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .topbar {
    padding: 6px 20px;
    font-size: 0.72rem;
  }

  .topbar .tb-left span.hide-mob {
    display: none;
  }

  .section-inner {
    padding: 60px 20px;
  }

  .hero-inner {
    padding: 20px 1px 60px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nri-features {
    grid-template-columns: 1fr;
  }

  .branches-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
       PARALLAX LAYER (JS driven)
    ============================================= */
.parallax-layer {
  will-change: transform;
}

/* =============================================
       SECTION WAVE DIVIDERS
    ============================================= */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.wave-divider1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider1 svg {
  display: block;
  width: 100%;
}
/*.wave-divider2 {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 3;*/
/*  line-height: 0;*/
/*}*/

/*.wave-divider1 svg {*/
/*  display: block;*/
/*  width: 100%;*/
/*}*/