/* ============================================================
   VIRAAM II – AI HOME | LIGHT PREMIUM REDESIGN
   StepsStone Promoters Pvt Ltd
   Color: Electric Indigo + Sky Blue + Deep Navy
   Font:  Syne (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ──────────── DESIGN TOKENS ──────────── */
:root {
  /* Primary Palette */
  --indigo: #3730A3;
  --indigo-mid: #4F46E5;
  --indigo-light: #6366F1;
  --sky: #0EA5E9;
  --sky-light: #38BDF8;
  --cyan: #06B6D4;
  --emerald: #10B981;

  /* Dark Navy sections */
  --navy: #0B1630;
  --navy-2: #0F1E42;
  --navy-3: #162456;

  /* Light background */
  --white: #FFFFFF;
  --off-white: #F8F9FF;
  --pale-blue: #EEF2FF;
  --border-light: #E0E7FF;

  /* Text */
  --text-dark: #0F172A;
  --text-mid: #334155;
  --text-muted: #64748B;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #3730A3 0%, #4F46E5 50%, #0EA5E9 100%);
  --grad-vibrant: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
  --grad-navy: linear-gradient(180deg, #0B1630 0%, #0F1E42 100%);
  --grad-hero: linear-gradient(135deg, rgba(11, 22, 48, 0.88) 0%, rgba(79, 70, 229, 0.25) 100%);

  /* Shadows */
  --shadow-indigo: 0 8px 40px rgba(79, 70, 229, 0.2);
  --shadow-sky: 0 8px 40px rgba(14, 165, 233, 0.2);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 16px 48px rgba(15, 23, 42, 0.14);

  /* Misc */
  --radius: 18px;
  --radius-sm: 10px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--indigo-mid);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--indigo-mid);
  border-radius: 4px;
}

/* ──────────── UTILITY CLASSES ──────────── */
.font-head {
  font-family: var(--font-head);
}

.text-indigo {
  color: var(--indigo-mid);
}

.text-sky {
  color: var(--sky);
}

.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-page {
  background: var(--off-white);
}

.bg-pale {
  background: var(--pale-blue);
}

/* Section tag pill */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--indigo-mid);
  padding: 6px 18px;
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 100px;
  background: rgba(79, 70, 229, 0.06);
  margin-bottom: 16px;
}

.section-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo-mid);
  animation: dot-pulse 1.6s infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* Headings */
.section-title {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}

.section-sub-title {
  font-style: italic;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
}


.section-title.on-dark {
  color: #fff;
}

.section-text {
  font-size: 16px;
  text-align: justify;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: var(--grad-vibrant);
  border-radius: 2px;
  margin: 14px 0 24px;
}

.divider-line.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* Buttons */
.btn-primary-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-indigo);
}

.btn-primary-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-main:hover::before {
  left: 100%;
}

.btn-primary-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(79, 70, 229, 0.4);
  color: #fff;
}

.btn-outline-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--indigo-mid);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: 2px solid var(--indigo-mid);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-main:hover {
  background: var(--indigo-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-indigo);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Card base */
.card-glass {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(79, 70, 229, 0.2);
}

/* Dark card */
.card-navy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.card-navy:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ──────────── PRELOADER ──────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s;
}

.pre-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pre-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--indigo-light);
  border-right-color: var(--sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pre-text {
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* ──────────── PARTICLES ──────────── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: pf var(--pd, 10s) var(--py, 0s) infinite ease-in-out;
}

@keyframes pf {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  20% {
    opacity: var(--po, 0.1);
  }

  80% {
    opacity: var(--po, 0.1);
  }

  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

/* ──────────── NAVBAR ──────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
}

.navbar-brand img {
  height: 45px;
  transition: height 0.3s;
}

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

.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-dark) !important;
  padding: 8px 15px !important;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--grad-vibrant);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

/* .nav-link:hover {
  color: var(--indigo-mid) !important;
} */

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 18px;
  background: var(--grad-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  box-shadow: var(--shadow-indigo);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

.nav-phone-link {
  background: var(--grad-primary);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-indigo);
  transition: all 0.3s ease;
}

.nav-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.navbar-toggler {
  border: 1.5px solid var(--indigo-mid) !important;
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234F46E5' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ──────────── RERA TICKER ──────────── */
.rera-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1001;
  display: none;
}

.rera-ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100vw)
  }

  100% {
    transform: translateX(-100%)
  }
}

/* ──────────── HERO ──────────── */
#hero {
  position: relative;
  margin-top: 75px;
  /* Height of the white navbar */
  min-height: calc(100vh - 75px);
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  z-index: 1;
  /* animation: hzoom 14s ease-in-out infinite alternate; */
}

@keyframes hzoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.1)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(11, 22, 48, 0.92) 0%,
      rgba(11, 22, 48, 0.80) 50%,
      rgba(15, 30, 66, 0.20) 100%);
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  z-index: 3;
}

.hero-content-fluid {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 80px;
}

.hero-form-abs {
  position: absolute;
  top: 5%;
  right: 5%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 420px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

@media(max-width:991.98px) {
  #hero {
    display: block;
    height: auto;
    min-height: auto;
    padding-bottom: 60px;
    margin-top: 60px;
    /* Adjusted for smaller navbar */
  }

  .hero-banner-img {
    position: relative;
    height: auto;
    z-index: 1;
  }

  .hero-form-abs {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: -30px auto 0;
    /* Slight overlap for a premium look */
    max-width: 90%;
    z-index: 10;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-light);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 6px;
}

.hero-title .brand-grad {
  background: linear-gradient(135deg, #6366F1, #38BDF8 50%, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.hs-item {
  border-left: 3px solid var(--indigo-light);
  padding-left: 14px;
}

.hs-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hs-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating badges on hero */
.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fbadge 4s ease-in-out infinite;
}

.hero-badge i {
  font-size: 1.4rem;
  color: var(--sky-light);
}

.hero-badge .hb-val {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.hero-badge .hb-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.hb1 {
  top: 22%;
  right: 4%;
  animation-delay: 0s;
}

.hb2 {
  bottom: 30%;
  right: 3%;
  animation-delay: 1.2s;
}

@keyframes fbadge {

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

  50% {
    transform: translateY(-10px)
  }
}

/* Hero lead form */
.hero-form {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: sticky;
  top: 100px;
}

.hero-form-abs .hf-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--indigo), var(--sky));
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hero-form-abs .hf-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hero-form-abs .hf-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.fc {
  background: var(--off-white) !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: var(--text-dark) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}

.fc::placeholder {
  color: var(--text-muted);
}

.fc:focus {
  border-color: var(--indigo-mid) !important;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12) !important;
  outline: none !important;
  background: #fff !important;
}

.fc option {
  background: #fff;
  color: var(--text-dark);
}

/* ──────────── OVERVIEW (LIGHT) ──────────── */
#overview {
  padding: 110px 0 80px;
  background: var(--white);
  position: relative;
}

.overview-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.overview-img-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Floating stat cards on image */
.img-stat {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: chip-float 1s ease-in-out infinite;
}

@keyframes chip-float {

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

  33% {
    transform: translateY(-3px) rotate(1deg);
  }

  66% {
    transform: translateY(3px) rotate(-1deg);
  }
}

.img-stat .is-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pale-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-stat .is-icon i {
  color: var(--indigo-mid);
  font-size: 1.1rem;
}

.img-stat .is-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.img-stat .is-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.img-stat-1 {
  bottom: 20px;
  left: 20px;
}

.img-stat-2 {
  top: 20px;
  right: 20px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.feature-pill:hover {
  background: var(--pale-blue);
  border-color: var(--indigo-mid);
}

.feature-pill i {
  color: var(--indigo-mid);
  width: 20px;
  font-size: 1rem;
}

.feature-pill span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ──────────── STATS STRIP ──────────── */

#stats {
  background: var(--grad-primary);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/ai-features-diagram.jpg') center/cover no-repeat;
  opacity: 0.04;
}

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

.stat-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  margin-bottom: 10px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
  margin: 0 auto;
}

/* ──────────── AI TECH (DARK SECTION) ──────────── */
#smart-tech {
  background: var(--grad-navy);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Parallax bg in tech section */
.tech-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../images/ai-about.jpg') center/cover no-repeat fixed;
  z-index: 1;
}

#smart-tech::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0b1630c9 0%, rgb(11 22 48 / 63%) 40%, rgba(11, 22, 48, 0.4) 75%, rgba(11, 22, 48, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.tc-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.tc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-vibrant);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.tc-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-6px);
}

.tc-card:hover::before {
  transform: scaleX(1);
}

.tc-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
}

.tc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}

.tc-card:hover .tc-icon {
  background: rgba(99, 102, 241, 0.28);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.tc-icon i {
  color: var(--sky-light);
  font-size: 1.2rem;
}

.tc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.tc-desc {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
  padding-left: 20px;
  margin-top: 15px;
  text-transform: lowercase;
  /* Force lowercase first so capitalize works on all-caps HTML */
}

.tc-desc li {
  margin-bottom: 10px;
  /* text-transform: capitalize; */
}

.tc-desc li::marker {
  color: var(--sky-light);
}

/* AI image showcase in tech section */
.ai-showcase-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.ai-showcase-img img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.ai-showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), transparent);
  border-radius: var(--radius);
}

/* ──────────── PARALLAX SECTION ──────────── */
.parallax-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 48, 0.88), rgba(79, 70, 229, 0.35));
}

/* ──────────── AMENITIES (3D SWIPER) ──────────── */
#amenities {
  padding: 110px 0;
  background: var(--white);
  overflow: hidden;
}

.amen-swiper {
  padding: 40px 0 100px;
  /* More bottom padding for dots */
  width: 100%;
  position: relative;
}

.amen-slide {
  width: 340px;
  max-width: calc(100vw - 40px);
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border: 4px solid #fff;
}

.amen-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(79, 70, 229, 0.15);
}

.amen-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: var(--indigo-mid) !important;
  transition: all 0.4s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
  font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--grad-primary);
  color: #fff !important;
  transform: scale(1.1);
}

/* Custom Pagination Dots */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(79, 70, 229, 0.06);
  opacity: 0.3;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background: var(--indigo-mid) !important;
  opacity: 1;
}

.amen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(11, 22, 48, 0.9), transparent);
  color: #fff;
  z-index: 2;
}

.amen-overlay h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.amen-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  z-index: 3;
}

.amen-slide:hover .amen-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.amen-zoom-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  border-radius: 20px;
}

/* ──────────── CONFIGURATIONS (Tabs) ──────────── */
#configurations {
  padding: 110px 0;
  background: var(--white);
}

.cfg-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.cfg-tab {
  padding: 12px 32px;
  border-radius: 50px;
  background: #fff;
  border: 2px solid var(--border-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: all 0.4s;
  cursor: pointer;
}

.cfg-tab.active {
  background: var(--indigo-mid);
  color: #fff;
  border-color: var(--indigo-mid);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.2);
}

.cfg-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.4s;
  border: 1px solid var(--border-light);
}

.cfg-img-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.cfg-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfe;
  padding: 10px;
}

.cfg-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.6s;
}

.cfg-img-card:hover .cfg-img-wrap img {
  transform: scale(1.05);
}

.cfg-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  z-index: 3;
}

.cfg-img-card:hover .cfg-overlay-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cfg-overlay-btn i {
  color: var(--indigo-mid);
  font-size: 1.4rem;
}

.cfg-info {
  padding: 24px;
  background: #fff;
  text-align: center;
}

.cfg-info h5 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cfg-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
}

/* ──────────── WALKTHROUGH ──────────── */
#walkthrough {
  padding: 110px 0;
  background: var(--navy-2);
  /* Deeper Dark Background */
  position: relative;
  overflow: hidden;
}

/* Subtle glow behind the video */
#walkthrough::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

#walkthrough .container {
  position: relative;
  z-index: 2;
}

.video-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.video-container:hover .video-poster {
  transform: scale(1.05);
}

.play-button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}

.play-btn-circle {
  width: 100px;
  height: 100px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(79, 70, 229, 0.4);
  position: relative;
  transition: all 0.4s;
}

.play-btn-circle::before,
.play-btn-circle::after {
  content: '';
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50%;
  inset: -10px;
  animation: pulse-border 2s linear infinite;
  opacity: 0;
}

.play-btn-circle::after {
  animation-delay: 1s;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.play-btn-circle i {
  color: #fff;
  font-size: 2.2rem;
  margin-left: 5px;
}

.video-container:hover .play-btn-circle {
  transform: scale(1.15);
  box-shadow: 0 0 70px rgba(79, 70, 229, 0.6);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 22, 48, 0.2), rgba(11, 22, 48, 0.6));
  z-index: 2;
}

.video-tagline {
  margin-top: 15px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ──────────── GALLERY (3D SLIDER) ──────────── */
#gallery-sec {
  padding: 110px 0;
  position: relative;
  background: url('../images/gallery-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  /* Parallax effect */
  overflow: hidden;
}

#gallery-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(11 22 48 / 61%) 0%, rgb(11 22 48 / 84%) 100%);
  z-index: 1;
}

#gallery-sec .container {
  position: relative;
  z-index: 2;
}

.gallery-swiper {
  width: 100%;
  padding: 30px 0 70px !important;
}

.gallery-swiper .swiper-slide {
  width: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.06);
}

.slide-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 22, 48, 0.92));
  padding: 24px 18px 16px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-swiper .swiper-slide:hover .slide-cap {
  opacity: 1;
}

.slide-cap-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.slide-cap-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--indigo-light) !important;
  background: rgba(11, 22, 48, 0.7);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.3);
  transition: all 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--indigo-mid);
  border-color: var(--indigo-mid);
  color: #fff !important;
}

.swiper-pagination-bullet {
  background: rgb(78, 70, 229) !important;
  opacity: 0.25 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--indigo-light) !important;
}

/* ──────────── LOCATION (LIGHT) ──────────── */
#location {
  padding: 110px 0;
  background: var(--white);
}

.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.loc-tab {
  padding: 7px 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.loc-tab.active,
.loc-tab:hover {
  background: var(--indigo-mid);
  border-color: var(--indigo-mid);
  color: #fff;
  box-shadow: var(--shadow-indigo);
}

.loc-list {
  display: none;
  min-height: 300px;
}

.loc-list.active {
  display: block;
}

.loc-list li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s;
}

.loc-dist {
  margin-left: auto;
  font-weight: 700;
  color: var(--indigo-mid);
  font-family: var(--font-head);
  font-size: 0.85rem;
  background: var(--pale-blue);
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

.loc-list li:hover {
  color: var(--indigo-mid);
  padding-left: 6px;
}

.loc-list li:hover .loc-dist {
  background: var(--indigo-mid);
  color: #fff;
  border-color: var(--indigo-mid);
}

.loc-list li i {
  color: var(--indigo-mid);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

.loc-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.lq-item {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}

.lq-item:hover {
  background: var(--pale-blue);
  border-color: var(--indigo-mid);
}

.lq-item i {
  color: var(--indigo-mid);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.lq-val {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.lq-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ──────────── CTA (DARK) ──────────── */
#cta {
  background: var(--grad-navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-parallax {
  position: absolute;
  inset: 0;
  background: url('../assets/images/ai-human-hand.jpg') center/cover no-repeat fixed;
  opacity: 0.07;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-card-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 70px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-vibrant);
}

/* ──────────── ABOUT (LIGHT) ──────────── */
#about {
  padding: 90px 0;
  background: var(--off-white);
}

.about-logo img {
  height: 55px;
  margin-bottom: 20px;
}

.about-feature {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: var(--indigo-mid);
  box-shadow: var(--shadow-indigo);
}

.about-feature i {
  color: var(--indigo-mid);
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.about-feature h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ──────────── FOOTER (DARK) ──────────── */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 32px;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
}

.footer-head {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 18px;
}

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

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--sky-light);
  padding-left: 4px;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--indigo-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--sky-light);
}

.footer-rera {
  padding: 14px 18px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  margin-top: 16px;
}

.footer-rera .r-label {
  font-size: 0.68rem;
  color: var(--indigo-light);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-rera .r-val {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-right: 8px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--indigo-mid);
  border-color: var(--indigo-mid);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.disclaimer {
  color: #ffffffc3;
  font-size: 12px;
  text-align: justify;
}

/* ──────────── STICKY MOBILE BAR ──────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  /* Above bootstrap modal but below modal backdrop? No, usually below modal. Bootstrap modal is 1055. */
  display: none;
  background: #fff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 4px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.mcta-call {
  background: var(--indigo-mid);
  color: #fff !important;
}

.mcta-enq {
  background: var(--sky);
  color: #fff !important;
}

.mobile-cta-bar i {
  font-size: 1rem;
}

/* ──────────── FLOAT WHATSAPP ──────────── */
.float-wa {
  position: fixed;
  bottom: 88px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  text-decoration: none;
  font-size: 1.55rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: wabounce 2.2s ease-in-out infinite;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes wabounce {

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

  50% {
    transform: translateY(-7px)
  }
}

/* ──────────── MODAL ──────────── */
.modal-content {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.modal-header {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 28px;
}

.modal-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text-dark);
}

.modal-body {
  padding: 28px;
}

/* ──────────── RESPONSIVE ──────────── */
@media(max-width:991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hb1,
  .hb2 {
    display: none;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-sub-title {
    font-size: 1.25rem;
  }

  section {
    overflow: hidden;
  }

  body {
    padding-bottom: 60px;
  }

  .float-wa {
    bottom: 76px;
    right: 14px;
  }

  .hero-form {
    position: relative;
    top: auto;
  }

  /* 
  .img-stat-1,
  .img-stat-2 {
    display: none;
  } */
}

@media(max-width:767.98px) {
  .footer-bottom {
    display: block;
  }

  .footer-bottom .copyrights {
    text-align: center;
  }

  .footer-bottom .marketing {
    text-align: center;
  }

  .nav-phone-link {
    font-size: 16px;
  }

  .tech-parallax-bg {
    background-position: left;
  }

  #stats {
    padding: 30px 0;
  }

  .stat-num {

    font-size: 30px;
  }

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

  #mainNav.scrolled .navbar-brand img {
    height: 30px;
  }

  .ai-mobile {
    width: 100%;
  }

  #hero {
    min-height: auto !important;
    display: block;
    height: auto;
    padding-bottom: 40px;
  }

  .hero-banner-img {
    position: relative;
    height: auto;
    width: 100%;
    display: block;
  }

  .hero-form-abs {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: 20px auto 0 !important;
    max-width: 92% !important;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
}

.selldof label,
.selldof .title {
  display: none !important;
}

.selldof .form-control,
.sell_do_form_control {
  height: 50px !important;
}

.selldof .btn,
.sell_do_ctc_btn,
.selldof .btn,
.sell_do_verify_btn {
  width: 100%;
  background: var(--grad-primary) !important;
  color: #fff !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-indigo);
  transition: all 0.3s ease;
}