/* =========================================================
   HERO SECTION – NIRVANA (ONLY HERO)
   Compatible with your existing HTML
========================================================= */

/* ---------- HERO WRAPPER ---------- */
.hero-advanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(600px at 15% 30%, rgba(60,120,255,0.25), transparent 60%),
    radial-gradient(500px at 85% 70%, rgba(120,180,255,0.18), transparent 65%),
    linear-gradient(135deg, #070b18, #0b1430);
}

/* ---------- FLOATING BACKGROUND ---------- */
.hero-bg-elements span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: heroFloat 16s ease-in-out infinite;
}

.float-circle.one {
  width: 280px;
  height: 280px;
  background: #3c78ff;
  top: 10%;
  left: 5%;
}

.float-circle.two {
  width: 220px;
  height: 220px;
  background: #7bb0ff;
  bottom: 15%;
  right: 8%;
  animation-duration: 20s;
}

.float-circle.three {
  width: 160px;
  height: 160px;
  background: #ffffff;
  top: 45%;
  right: 30%;
  animation-duration: 24s;
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-35px); }
  100% { transform: translateY(0); }
}

/* ---------- HERO GRID ---------- */
.hero-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---------- HERO TEXT ---------- */
.hero-text h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

.hero-text h1 span {
  opacity: 0;
  transform: translateY(35px);
  animation: heroTextUp 0.8s ease forwards;
}

.hero-text h1 span:nth-child(1) { animation-delay: 0.1s; }
.hero-text h1 span:nth-child(2) { animation-delay: 0.25s; }
.hero-text h1 span:nth-child(3) {
  animation-delay: 0.4s;
  color: #7bb0ff;
}

@keyframes heroTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text p {
  margin: 26px 0 36px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: #cbd3ff;
}

/* ---------- HERO BUTTONS ---------- */
.hero-actions {
  display: flex;
  gap: 22px;
}

.btn-primary {
  padding: 14px 34px;
  background: linear-gradient(135deg, #3c78ff, #6fa2ff);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(60,120,255,0.45);
}

.btn-ghost {
  padding: 14px 28px;
  color: #cbd3ff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  transition: all .3s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* ---------- HERO VISUAL CARDS ---------- */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.visual-card {
  padding: 36px;
  border-radius: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(160deg, #0e1b3a, #0a1430);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  cursor: pointer;
  transition: transform .45s ease, box-shadow .45s ease;
}

.visual-card.active {
  transform: scale(1.04);
}

.visual-card:hover {
  transform: translateY(-14px) scale(1.07);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.55),
    0 0 60px rgba(60,120,255,0.45);
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  display: block;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: heroScroll 1.6s infinite;
}

@keyframes heroScroll {
  0% { opacity: 0; top: 8px; }
  30% { opacity: 1; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    justify-content: center;
    font-size: 42px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   WHAT WE HELP YOU WITH – SECTION
========================================================= */

.what-we-do {
  width: 100%;
  padding: 120px 0;
  background: #f6f8ff;
  text-align: center;
  position: relative;
}

/* ---------- SECTION TITLE ---------- */
.what-we-do h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1430;
  margin-bottom: 18px;
}

.what-we-do h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #3c78ff, #6fa2ff);
  border-radius: 10px;
}

/* ---------- SERVICES GRID ---------- */
.interactive-services {
  width: 88%;
  max-width: 1200px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ---------- SERVICE CARD ---------- */
.service-item {
  position: relative;
  padding: 38px 30px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  cursor: pointer;
  overflow: hidden;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;
}

/* soft glow background */
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(200px at top left, rgba(60,120,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

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

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.15);
}

/* ---------- SERVICE TITLE ---------- */
.service-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1430;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* ---------- HIDDEN TEXT ---------- */
.service-item .hidden-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5b647e;

  opacity: 0;
  max-height: 0;
  overflow: hidden;

  transition:
    opacity .4s ease,
    max-height .45s ease,
    transform .45s ease;

  transform: translateY(10px);
  position: relative;
  z-index: 2;
}

.service-item:hover .hidden-text {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
  margin-top: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .interactive-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .what-we-do {
    padding: 90px 0;
  }

  .what-we-do h2 {
    font-size: 32px;
  }

  .interactive-services {
    grid-template-columns: 1fr;
    width: 90%;
  }
}


/* =========================================================
   WHY BRANDS CHOOSE NIRVANA
========================================================= */

.why-nirvana {
  width: 100%;
  padding: 120px 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

/* ---------- SECTION TITLE ---------- */
.why-nirvana h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1430;
  margin-bottom: 18px;
}

.why-nirvana h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #3c78ff, #6fa2ff);
  border-radius: 10px;
}

/* ---------- GRID ---------- */
.reason-grid {
  width: 88%;
  max-width: 1200px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ---------- CARD ---------- */
.reason-card {
  position: relative;
  padding: 42px 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f6f8ff);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  overflow: hidden;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;
}

/* gradient glow */
.reason-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px at top right, rgba(60,120,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

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

.reason-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.15);
}

/* ---------- NUMBER ---------- */
.reason-card span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #3c78ff;
  position: relative;
  z-index: 2;
}

/* ---------- TITLE ---------- */
.reason-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1430;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* ---------- TEXT ---------- */
.reason-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5b647e;
  position: relative;
  z-index: 2;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-nirvana {
    padding: 90px 0;
  }

  .why-nirvana h2 {
    font-size: 32px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    width: 90%;
  }
}


/* =========================================================
   HOW WE WORK – PROCESS TIMELINE
========================================================= */

.process-timeline {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(180deg, #f6f8ff, #ffffff);
  text-align: center;
  position: relative;
}

/* ---------- SECTION TITLE ---------- */
.process-timeline h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1430;
  margin-bottom: 18px;
}

.process-timeline h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #3c78ff, #6fa2ff);
  border-radius: 10px;
}

/* ---------- TIMELINE GRID ---------- */
.timeline {
  width: 88%;
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* connector line */
.timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(60,120,255,0.2),
    rgba(60,120,255,0.6),
    rgba(60,120,255,0.2)
  );
  z-index: 0;
}

/* ---------- STEP CARD ---------- */
.timeline-step {
  position: relative;
  padding: 42px 28px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  z-index: 1;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    box-shadow .45s ease;
}

.timeline-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.15);
}

/* ---------- STEP NUMBER ---------- */
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 20px;

  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #3c78ff, #6fa2ff);
  box-shadow: 0 12px 30px rgba(60,120,255,0.45);
}

/* ---------- TITLE ---------- */
.timeline-step h4 {
  font-size: 19px;
  font-weight: 700;
  color: #0b1430;
  margin-bottom: 10px;
}

/* ---------- TEXT ---------- */
.timeline-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #5b647e;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-timeline {
    padding: 90px 0;
  }

  .process-timeline h2 {
    font-size: 32px;
  }

  .timeline {
    grid-template-columns: 1fr;
    width: 90%;
  }
}



/* =========================================================
   VIDEO PORTFOLIO – FINAL LOCKED CSS
   Slider removed | BG height fixed | Video focus only
========================================================= */


/* ================= SECTION WRAPPER ================= */
/* BG height ka main control yahin se hota hai */
.video-portfolio {
  width: 100%;
  padding: 60px 0 50px;   /* 🔥 upar aur niche dono tight */
  text-align: center;

  /* simple dark bg – no over-spread */
  background: #0b1020;
}


/* ================= SECTION TITLE ================= */
.video-portfolio h2 {
  font-size: 38px;  
  font-weight: 800;
  color: #ffffff;
  margin-top: -25px;     /* 🔥 yahin se word upar aayega */
  margin-bottom: 30px;
}


/* =========================================================
   🔴 SLIDER COMPLETELY NEUTRALIZED
   (HTML reh sakta hai, height / movement nahi)
========================================================= */

/* slider wrapper height neutral */
.video-slider {
  height: auto;
  margin: 0;
  padding: 0;
}

/* window wrapper koi extra height na de */
.video-window {
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
}

/* arrows bilkul gayab */
.video-slider .arrow {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* slider JS ka koi transform effect nahi */
#videoTrack {
  transform: none !important;
}


/* ================= VIDEO GRID ================= */
/* Yahin se video ka REAL visible size control hota hai */
.video-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 80%;              /* 🔹 yahin se overall video size control hota hai
                              (kam = chhoti, zyada = badi videos) */

  max-width: 1500px;       /* 🔹 large screens par limit */

  margin: -10px auto 0;    /* 🔥 IMPORTANT
                              -30px = videos upar shift hongi
                              auto = center me rahega
                              bottom margin 0 = niche extra space nahi */

  gap: 44px;               /* 🔹 videos ke beech spacing */

  padding: 0;              /* 🔹 koi fake space nahi */

  align-items: stretch;    /* 🔹 har card same height me rahe */
}


/* ================= VIDEO CARD ================= */
/* Sirf card scale hoga, BG nahi */
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;

  background: #000;
  cursor: pointer;

  /* normal state shadow */
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease;
}


/* ❌ koi extra blue layer / glow nahi */
.video-card::before {
  content: none !important;
}


/* ---------- HOVER (sirf lift, size same) ---------- */
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.75);
}


/* ---------- CLICK ACTIVE (REAL VIDEO BIG) ---------- */
/* Yahin se video badi hoti hai */
.video-card.is-active {
  transform: scale(1.15);          /* 🔥 sirf video visually badi */
  z-index: 5;

  box-shadow:
    0 40px 90px rgba(0,0,0,0.9);   /* focus shadow */
}


/* ================= VIDEO TAG ================= */
/* Video kabhi cut nahi hogi */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;             /* ❌ no crop */
  background: #000;

  pointer-events: none;             /* click card handle kare */
}


/* ================= VIEW ALL BUTTON ================= */
.video-portfolio .view-all {
  display: inline-block;
  margin-top: 70px;
  padding: 14px 46px;

  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  border-radius: 50px;
  background: linear-gradient(135deg, #3c78ff, #6fa2ff);

  box-shadow: 0 18px 45px rgba(60,120,255,0.45);

  transition: transform .3s ease, box-shadow .3s ease;
}

.video-portfolio .view-all:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(60,120,255,0.65);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .video-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 650px) {
  .video-track {
    grid-template-columns: 1fr;
  }

  .video-portfolio h2 {
    font-size: 32px;
  }
}




/*Graphic start */


/* =========================================================
   GRAPHICS PORTFOLIO – FINAL STABLE VERSION
   No black | FLIP zoom | Viewport safe
========================================================= */

.graphics-portfolio {
  width: 100%;
  padding: 40px 0 65px;
  text-align: center;
  background: #0b1020;
}

/* ---------- TITLE ---------- */
.graphics-portfolio h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 28px;
}

/* ---------- GRID ---------- */
.graphics-grid {
  width: 82%;
  max-width: 1350px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* =========================================================
   GRAPHIC CARD (NORMAL)
========================================================= */

.graphic-card {
  position: relative;
  aspect-ratio: 3 / 3.7;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  cursor: pointer;

  box-shadow: 0 10px 28px rgba(0,0,0,0.55);

  transition:
    transform .9s cubic-bezier(.16,1,.3,1),
    box-shadow .6s ease;
}

/* IMAGE SAFE */
.graphic-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ---------- HOVER ---------- */
.graphic-card:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(0,0,0,0.75);
}

/* =========================================================
   ACTIVE – FULLSCREEN STYLE (NO FLIP)
========================================================= */

.graphic-card.is-active {
  position: fixed;
  inset: auto;
  z-index: 999;

  width: min(82vw, 620px);
  height: auto;
  aspect-ratio: 3 / 3.7;

  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
}

/* =========================================================
   GRAPHIC CLONE – FINAL STABLE STYLE
========================================================= */

.graphic-clone {
  position: fixed;
  z-index: 1000;

  aspect-ratio: 3 / 3.7;
  background: #000;
  border-radius: 16px;
  overflow: hidden;

  /* 🔥 VIEWPORT SAFE (NO SIDE CUT) */
  max-width: 92vw;
  max-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 45px 120px rgba(0,0,0,0.9);
}

.graphic-clone img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  background: #000;
}

/* ---------- REAL BLUR BACKDROP ---------- */
.graphics-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;

  background: rgba(5, 8, 20, 0.65);
  backdrop-filter: blur(14px);
}

/* =========================================================
   VIEW ALL BUTTON – FINAL RESTORE
========================================================= */

.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 45px;
  padding: 14px 46px;

  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  border-radius: 50px;
  background: linear-gradient(135deg, #3c78ff, #6fa2ff);

  box-shadow: 0 18px 45px rgba(60,120,255,0.45);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

/* hover effect */
.view-all:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 60px rgba(60,120,255,0.65);
}

/* ensure button stays above blur/backdrop */
.graphics-portfolio .view-all {
  position: relative;
  z-index: 10;
}



/* =========================================================
   CLIENTS WE’VE WORKED WITH – FINAL NEUTRAL PANEL
========================================================= */

.clients-section {
  width: 100%;
  padding: 65px 0 60px;   /* 🔥 height reduced */
  text-align: center;

  /* 🔥 NEUTRAL DARK (NO BLUE) */
  background: linear-gradient(
    180deg,
    #0f1115 0%,
    #151820 100%
  );

  /* subtle separation */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(255,255,255,0.04);
}

/* ---------- TITLE ---------- */
.clients-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 45px;   /* 🔥 tighter */
}

/* ---------- MARQUEE ---------- */
.clients-marquee {
  width: 100%;
  overflow: hidden;
}

/* ---------- TRACK ---------- */
.marquee-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;

  width: fit-content;
  gap: 60px;
  padding: 10px 0;

  animation: clients-scroll 46s linear infinite; /* 🔥 slow & calm */
}

/* ---------- LOGOS ---------- */
.marquee-track img {
  height: 62px;
  width: auto;

  flex-shrink: 0;
  opacity: 0.78;

  /* dull but premium */
  filter: grayscale(40%) brightness(0.95);

  transition:
    transform .35s ease,
    filter .35s ease,
    opacity .35s ease;

  background: transparent;
  border: none;
  box-shadow: none;
}

/* ---------- HOVER ---------- */
.marquee-track img:hover {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* pause on hover */
.clients-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ---------- SCROLL ---------- */
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .clients-section {
    padding: 55px 0 50px;
  }

  .clients-section h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .marquee-track {
    gap: 42px;
    animation-duration: 55s;
  }

  .marquee-track img {
    height: 48px;
  }
}


/* =========================================================
   CTA INTERACTIVE – PREMIUM WHITE THEME
========================================================= */

.cta-interactive {
  width: 100%;
  min-height: 500px;
  
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Elegant geometric background pattern */
.cta-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(47, 107, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(47, 107, 255, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, transparent 45%, rgba(47, 107, 255, 0.02) 45%, rgba(47, 107, 255, 0.02) 55%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(47, 107, 255, 0.02) 45%, rgba(47, 107, 255, 0.02) 55%, transparent 55%);
  background-size: 300px 300px, 300px 300px, 100px 100px, 100px 100px;
  opacity: 0.8;
  pointer-events: none;
}

/* Floating accent circles */
.cta-interactive::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.04) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatCircle 20s ease-in-out infinite alternate;
}

@keyframes floatCircle {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

.cta-interactive > * {
  position: relative;
  z-index: 2;
}

/* ---------- HEADING ---------- */
.cta-interactive h2 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0b1020;
  max-width: 700px;
  letter-spacing: -0.5px;
}

.cta-interactive h2 strong {
  position: relative;
  color: #2f6bff;
  font-weight: 800;
  display: inline-block;
}

.cta-interactive h2 strong::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(47, 107, 255, 0.15);
  z-index: -1;
  border-radius: 3px;
}

/* ---------- PARAGRAPH ---------- */
.cta-interactive p {
  font-size: 1.125rem;
  color: #5a6c91;
  max-width: 500px;
  line-height: 1.6;
  margin: 0 auto 3rem auto;
  font-weight: 400;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 1.5rem;
}

.cta-interactive p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2f6bff, transparent);
}

/* ---------- BUTTON GROUP ---------- */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* =========================================================
   PRIMARY BUTTON – PREMIUM GRADIENT
========================================================= */

.cta-actions .btn-primary {
  position: relative;
  padding: 1.125rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #2f6bff 0%, #6fa2ff 100%);
  border: none;
  box-shadow:
    0 10px 30px rgba(47, 107, 255, 0.25),
    0 4px 12px rgba(47, 107, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.cta-actions .btn-primary::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.7s ease;
}

.cta-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(47, 107, 255, 0.35),
    0 8px 20px rgba(47, 107, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #2a60e8 0%, #5a95ff 100%);
}

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

.cta-actions .btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* =========================================================
   SECONDARY BUTTON – PREMIUM OUTLINE
========================================================= */

.cta-actions .btn-outline {
  padding: 1.0625rem 2.375rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #2f6bff;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #2f6bff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.cta-actions .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-actions .btn-outline:hover {
  background: rgba(47, 107, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(47, 107, 255, 0.15);
  color: #2a60e8;
}

.cta-actions .btn-outline:hover::before {
  opacity: 1;
}

.cta-actions .btn-outline:active {
  transform: translateY(-1px);
}

/* Add subtle badge effect */
.cta-actions .btn-outline::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #2f6bff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-actions .btn-outline:hover::after {
  opacity: 0.2;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .cta-interactive {
    min-height: 450px;
    padding: 80px 20px;
  }
  
  .cta-interactive h2 {
    font-size: 2.75rem;
  }
  
  .cta-interactive::after {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -125px;
  }
}

@media (max-width: 768px) {
  .cta-interactive {
    min-height: 400px;
    padding: 70px 20px;
  }
  
  .cta-interactive h2 {
    font-size: 2.25rem;
    padding: 0 15px;
  }
  
  .cta-interactive p {
    font-size: 1rem;
    padding: 0 20px 1.5rem 20px;
    margin-bottom: 2.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  .cta-interactive::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-interactive {
    padding: 60px 20px;
  }
  
  .cta-interactive h2 {
    font-size: 2rem;
  }
  
  .cta-interactive p {
    font-size: 0.9375rem;
  }
  
  .cta-interactive::before {
    background-size: 200px 200px, 200px 200px, 80px 80px, 80px 80px;
  }
}


