/* ============================================================
   A P BIRD NETTING — style.css
   ------------------------------------------------------------
   All colours live as CSS variables below so the theme can be
   changed in one place.
============================================================ */

/* ---------- THEME VARIABLES (edit colours here) ---------- */
:root {
  /* Brand theme colours */
  --primary: #667EEA;
  /* main brand purple-blue */
  --secondary: #764CA3;
  /* deeper brand purple    */
  --brand-gradient: linear-gradient(135deg, #667EEA 0%, #764CA3 100%);

  /* Button gradient (hover state) */
  --btn-1: #F08EEE;
  /* pink  */
  --btn-2: #F45C79;
  /* coral */
  --btn-gradient: linear-gradient(135deg, #F08EEE 0%, #F45C79 100%);

  /* Neutrals / surfaces */
  --ink: #1e2140;
  /* primary text          */
  --ink-soft: #5b6079;
  /* muted text            */
  --bg: #ffffff;
  /* base background       */
  --bg-alt: #f5f6ff;
  /* soft tinted section   */
  --bg-tint: #eef0ff;
  /* slightly stronger tint*/
  --line: #e7e9f7;
  /* borders               */
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(102, 126, 234, .10);
  --shadow-md: 0 12px 34px rgba(102, 126, 234, .16);
  --shadow-lg: 0 24px 60px rgba(118, 76, 163, .22);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Typography */
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- RESET / BASE ---------- */
* {
  box-sizing: border-box;
}

html,
body {
  /* clip (not hidden) keeps sticky header working while stopping x-scroll */
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color .3s var(--ease);
}

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

/* Text gradient helpers */
.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  background: var(--btn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- SECTION SPACING & HEADINGS ---------- */
.section {
  padding: 92px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 40px;
  background: var(--bg-tint);
  margin-bottom: 16px;
}

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-title.text-start {
  text-align: left;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.lead-muted {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* ============================================================
   BUTTONS — default = brand purple, hover = pink gradient
============================================================ */
.btn-brand {
  --bs-btn-color: #fff;
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(102, 126, 234, .30);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-brand::before {
  /* hover gradient layer fades in on top */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-gradient);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 0;
}

.btn-brand>* {
  position: relative;
  z-index: 1;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(244, 92, 121, .40);
}

.btn-brand:hover::before {
  opacity: 1;
}

/* Ghost / outline button */
.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .65);
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all .35s var(--ease);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--secondary);
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   1. TOP BAR
============================================================ */
.topbar {
  background: var(--brand-gradient);
  color: rgba(255, 255, 255, .92);
  font-size: .86rem;
  padding: 8px 0;
}

.topbar a {
  color: rgba(255, 255, 255, .92);
}

.topbar a:hover {
  color: #fff;
}

.topbar-contact a {
  margin-right: 4px;
}

.topbar-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.topbar-social a:hover {
  background: rgba(255, 255, 255, .30);
  transform: translateY(-2px);
}

/* ============================================================
   2. STICKY HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(30, 33, 64, .06);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 14px 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}

.brand-text strong {
  color: var(--secondary);
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  position: relative;
}

/* animated underline hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--btn-gradient);
  transition: width .35s var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

/* custom toggler */
.navbar-toggler {
  border: none;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* ============================================================
   3. HERO CAROUSEL — side-aligned content
============================================================ */
.hero {
  position: relative;
}

.hero .carousel-item {
  height: min(88vh, 720px);
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* darker on the left where the text sits */
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.301) 45%, rgba(0, 0, 0, 0.068) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 620px;
}

/* content stays on the side, not centered */

.hero-eyebrow {
  display: inline-block;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  margin-bottom: 20px;
}

.hero-inner h1,
.hero-inner .hero-h {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .30);
}

.hero-lead {
  color: rgba(255, 255, 255, .92);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* carousel controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 6%;
  opacity: .7;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, .16);
  border-radius: 50%;
  background-size: 45%;
}

.hero .carousel-indicators {
  margin-bottom: 22px;
}

.hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .5);
  transition: all .3s var(--ease);
}

.hero .carousel-indicators .active {
  width: 32px;
  border-radius: 8px;
  background: #fff;
}

/* ============================================================
   4. MARQUEE (rAF driven — see script.js)
============================================================ */
.marquee {
  background: var(--brand-gradient);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  will-change: transform;
}

.marquee-item {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.marquee-item i {
  color: var(--btn-1);
}

/* ============================================================
   5. ABOUT US
============================================================ */
.about {
  background: var(--bg);
}

.about-media {
  position: relative;
  padding: 10px 10px 40px 0;
}

.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 44%;
  border-radius: var(--radius-sm);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: floatY 5s ease-in-out infinite;
}

.about-badge {
  position: absolute;
  left: -8px;
  top: 24px;
  background: var(--brand-gradient);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.about-badge-num span {
  font-size: 1.2rem;
}

.about-badge-label {
  font-size: .78rem;
  opacity: .9;
}

.about-ticks {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.about-ticks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about-ticks i {
  color: var(--primary);
  font-size: 1.15rem;
}

/* Counters */
.counters {
  margin-top: 64px;
}

.counter-box {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.counter,
.counter-plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-box p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================================
   6. SERVICES + colour-wave (blink one-by-one, left to right)
============================================================ */
.services {
  background: var(--bg-alt);
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}

/* top accent bar animates across the grid, one card after another */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--btn-gradient);
  transform: scaleX(0);
  transform-origin: left;
  /* staggered wave: each card delayed by its --i index */
  animation: waveBlink 6s var(--ease) infinite;
  animation-delay: calc(var(--i) * .35s);
}

@keyframes waveBlink {

  0%,
  100% {
    transform: scaleX(0);
    opacity: .4;
  }

  8% {
    transform: scaleX(1);
    opacity: 1;
  }

  22% {
    transform: scaleX(1);
    opacity: 1;
  }

  32% {
    transform: scaleX(0);
    opacity: .4;
    transform-origin: right;
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 26px 24px 28px;
  position: relative;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--bg-tint);
  color: var(--primary);
  font-size: 1.5rem;
  margin: -54px 0 16px;
  /* overlaps image edge */
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--btn-gradient);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-body h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.service-body p {
  color: var(--ink-soft);
  font-size: .97rem;
  margin-bottom: 16px;
}

.service-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform .3s var(--ease);
}

.service-link:hover {
  color: var(--btn-2);
}

.service-link:hover i {
  transform: translateX(5px);
}


/* ============================================================
   7. WHY CHOOSE US (dark split section)
============================================================ */
.why {
  background: var(--brand-gradient);
  position: relative;
  overflow: hidden;
}

.why::after {
  /* subtle decorative glow */
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 142, 238, .32), transparent 70%);
  pointer-events: none;
}

.why .section-title,
.why h3 {
  color: #fff;
}

.why-intro {
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
}

.why-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 16px 18px;
  border-radius: 14px;
  margin: 22px 0;
  backdrop-filter: blur(6px);
}

.why-highlight-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--btn-gradient);
  color: #fff;
  font-size: 1.4rem;
}

.why-highlight strong {
  color: #fff;
  display: block;
}

.why-highlight span {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.why-item {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 26px 22px;
  height: 100%;
  transition: transform .4s var(--ease), background .4s var(--ease);
}

.why-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .16);
}

.why-ico {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: background .4s var(--ease), transform .4s var(--ease);
}

.why-item:hover .why-ico {
  background: var(--btn-gradient);
  transform: scale(1.1);
}

.why-item h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.why-item p {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  margin-bottom: 0;
}

/* ============================================================
   8. HOW IT WORKS — horizontal numbered timeline
============================================================ */
.how {
  background: var(--bg-alt);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.timeline-line {
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--btn-1), var(--btn-2));
  border-radius: 3px;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}

.step:hover .step-num {
  background: var(--btn-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-6px) scale(1.05);
}

.step-body h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.step-body p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 0;
}

/* ============================================================
   VIDEO SHOWCASE
============================================================ */
.video-showcase {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  opacity: .9;
}

.video-showcase .container {
  position: relative;
  z-index: 1;
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, .2);
}

.video-frame video {
  display: block;
}

.video-poster {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #2a2c50;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 33, 64, .38);
}

.video-play {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: var(--btn-gradient);
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(244, 92, 121, .55);
  animation: pulse 2s infinite;
  transition: transform .3s var(--ease);
}

.video-play:hover {
  transform: scale(1.08);
}

/* ============================================================
   10. GALLERY
============================================================ */
.gallery {
  background: var(--bg);
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  background: linear-gradient(transparent, rgba(30, 33, 64, .85));
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px; /* agar pehle se hai to rehne do */
    aspect-ratio: 1 / 1; /* square gallery */
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
}
.gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================================
   11. FAQ ACCORDION
============================================================ */
.faq {
  background: var(--bg-alt);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  background: #fff;
  padding: 20px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--bg-tint);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\002B";
  /* plus */
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  width: auto;
  height: auto;
  color: var(--secondary);
  transform: none;
  transition: transform .3s var(--ease);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\2212";
  /* minus */
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  color: var(--ink-soft);
  padding: 0 22px 22px;
}

/* ============================================================
   12. TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  opacity: .95;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 6px;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
}

.testi-stars {
  color: #f7b500;
  margin-bottom: 12px;
  font-size: .95rem;
}

.testi-card blockquote {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card figcaption img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-card figcaption span {
  display: flex;
  flex-direction: column;
  font-size: .88rem;
  color: var(--ink-soft);
}

.testi-card figcaption strong {
  color: var(--ink);
  font-family: var(--font-head);
}

.testi-indicators {
  position: static;
  margin-top: 30px;
}

.testi-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: 0;
}

.testi-indicators .active {
  width: 30px;
  border-radius: 8px;
  background: #fff;
}

/* ============================================================
   14. CONTACT
============================================================ */
.contact {
  background: var(--bg);
}

.contact-info {
  background: var(--brand-gradient);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 24px;
}

.contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-ico {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.15rem;
}

.contact-line strong {
  display: block;
  font-family: var(--font-head);
  margin-bottom: 2px;
}

.contact-line a,
.contact-line span {
  color: rgba(255, 255, 255, .88);
}

.contact-line a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.contact-socials a:hover {
  background: var(--btn-gradient);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  margin-bottom: 22px;
}

.form-label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
}

.form-control,
.form-select {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .96rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, .12);
}

.form-note {
  font-size: .9rem;
  margin: 6px 0 0;
  font-weight: 500;
}

.form-note.ok {
  color: #1a9d55;
}

.form-note.err {
  color: var(--btn-2);
}

.contact-map {
  margin-top: 46px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.contact-map iframe {
  display: block;
}

/* ============================================================
   15. FOOTER
============================================================ */
.site-footer {
  background: #14162e;
  color: rgba(255, 255, 255, .72);
  padding: 64px 0 0;
}

.footer-brand .brand-text,
.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand .brand-text strong {
  color: var(--btn-1);
}

.footer-about {
  margin: 18px 0;
  font-size: .95rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.footer-social a:hover {
  background: var(--btn-gradient);
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}

.footer-links a:hover {
  color: var(--btn-1);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .92rem;
}

.footer-contact i {
  color: var(--btn-1);
  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, .72);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: .88rem;
}

.footer-bottom p {
  margin: 0;
}

/* ============================================================
   13. FLOATING BUTTONS + BACK TO TOP
============================================================ */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease);
}

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

.float-whatsapp {
  left: 26px;
  background: #25d366;
  animation: pulseGreen 2s infinite;
}

.float-call {
  right: 26px;
  background: var(--btn-gradient);
  animation: pulse 2s infinite;
}

.back-top {
  position: fixed;
  right: 26px;
  bottom: 94px;
  z-index: 1039;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary);
}

/* ============================================================
   SCROLL REVEAL (IntersectionObserver adds .in-view)
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   KEYFRAMES (non-marquee decorative animations only)
============================================================ */
@keyframes floatY {

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 92, 121, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(244, 92, 121, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 92, 121, 0);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .hero .carousel-item {
    height: 78vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(30, 33, 64, .78), rgba(30, 33, 64, .58));
  }

  .section-title.text-start {
    text-align: center;
  }

  .about .section-title.text-start {
    text-align: left;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .timeline-line {
    display: none;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .section {
    padding: 64px 0;
  }

  .about-ticks {
    grid-template-columns: 1fr;
  }

  .about-img-float {
    width: 46%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .about-badge {
    left: 0;
    padding: 12px 16px;
  }

  .about-badge-num {
    font-size: 1.6rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Accessibility: keyboard focus visibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(102, 126, 234, .45);
  outline-offset: 2px;
}