* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


/* =======================================================
   1. ENABLE STICKY & REMOVE WHITE GAP
========================================================== */
html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  /* 100vw hata diya taaki scrollbar issue na kare */
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  /* Clip white gap ko rokega aur STICKY ko break nahi karega */
}

/* <!-- ======================== header =========================== --> */

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

  transition: 0.35s ease;
  z-index: 1000;
}

/* SCROLL EFFECT */
header.scrolled {
  padding: 5px 60px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* LOGO */
.logo img {
  height: 80px;
  width: 200px;

  transition: 0.3s ease;
}

header.scrolled .logo img {
  height: 60px;
  width: 150px;
}

/* NAV */
nav {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

/* LINKS */
.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;

  background: linear-gradient(90deg, #cd5593, #e7612d, #cfb42b) text;
  -webkit-text-fill-color: transparent;

  transition: 0.3s ease;
  z-index: 2;
}

.nav-link:hover {
  transform: translateY(-2px);
}

/* FLOATING INDICATOR */
.nav-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 38px;
  width: 80px;

  background: rgba(0, 218, 11, 0.274);
  border: 1px solid rgba(13, 132, 64, 0.25);
  border-radius: 999px;

  transition: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger div {
  width: 26px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

/* overlay */
.overlay {
  display: none;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

  header {
    padding: 14px 20px;
  }

  header.scrolled {
    padding: 10px 20px;
  }

  .hamburger {
    display: flex;
  }

  /* overlay background */
  .overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  .overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* SIDE DRAWER MENU */
  nav {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 260px;

    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    padding: 80px 20px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);

    transition: 0.4s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  .nav-indicator {
    display: none;
  }

  .nav-link {
    width: 100%;
    font-size: 16px;
    padding: 12px 10px;
  }

  /* hamburger X animation */
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* <!-- ======================== hero slider =========================== --> */
/* ===== SLIDER ===== */

.hero-slider {
  overflow: hidden;
  width: 100%;
}

.hero-slider {
  margin-top: 90px;
  width: 100%;
  height: 88vh;
  position: relative;
  overflow: hidden;
}


.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* DARK OVERLAY */
  z-index: 0;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;


  background: url("assets/hero-bg-img.png") center center no-repeat;
  background-size: cover;

  z-index: 0;

  /* ZOOM ANIMATION */
  animation: bgZoom 10s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-slider>* {
  position: relative;
  z-index: 1;
}


/* ===== SLIDE ===== */
.hero-slide {
  /* position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease;

  z-index: 1; */

  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease;

  z-index: 0;
  pointer-events: none;
  /* ADD THIS */
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);

  z-index: 2;
  pointer-events: auto;
}

/* ===== CONTENT ===== */
.hero-slide-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

/* ===== TEXT ===== */
.hero-text {
  flex: 1;
  opacity: 0;
  transform: translateY(60px);
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 999;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  line-height: 1;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #fff;
}

/* .hero-text button {
  font-size: 18px;
  margin-top: 20px;
  padding: 13px 25px;
  border: none;
  background: #e7612d;
  color: #fff;
  border-radius: 6px;
} */

.hero-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: #e7612d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #e7612d;
  transform: translateY(-3px);
}

/* ===== IMAGE AREA ===== */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* glow behind */
.hero-image::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 60%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  z-index: 0;

  background: radial-gradient(circle,
      rgba(205, 85, 147, 0.6),
      rgba(231, 97, 45, 0.5),
      rgba(207, 180, 43, 0.4),
      transparent 70%);

  filter: blur(35px);
  animation: glowPulse 3s ease-in-out infinite;
}

/* ===== IMAGE CARD (OUTER DIV FLOAT) ===== */
.hero-image-card {
  width: 600px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;

  opacity: 0;
  transform: translateY(-60px);

  /* FLOAT */
  animation: floatBox 4s ease-in-out infinite;

  /* SHADOW ADDED */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  background: #fff;
}

/* IMAGE */
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ACTIVE ANIMATION ===== */
.hero-slide.active .hero-text {
  animation: textUp 0.9s ease forwards;
}

.hero-slide.active .hero-image-card {
  animation:
    imageDown 0.9s ease forwards,
    floatBox 4s ease-in-out infinite 1s;
}

/* ===== KEYFRAMES ===== */
@keyframes textUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBox {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* ===== DOTS ===== */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;

  z-index: 10;
  /* ADD THIS */
}

.hero-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;

  pointer-events: auto;
}

.hero-dot.active {
  background: #e7612d;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .hero-slide-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-image-card {
    width: 300px;
    height: 300px;
  }
}


/* 2. Hero Section Fix */
/* Hero Section Fixes for Mobile */
@media(max-width: 768px) {
  .hero-slide-content {
    padding: 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-image-card {
    margin: 0 auto;
  }
}


/* 3. Hero Section Padding & Text Fix for tiny screens (like 320px) */
@media(max-width: 480px) {
  .hero-slide-content {
    padding: 10px !important;
    gap: 15px !important;
  }

  .hero-text h1 {
    font-size: 28px !important;
  }

  .hero-text p {
    font-size: 15px !important;
  }

  .hero-image-card {
    width: 100% !important;
    max-width: 250px !important;
    height: 250px !important;
  }

  /* Glow effect ko mobile par limit karna */
  .hero-image::before {
    width: 250px !important;
    height: 250px !important;
    right: -20px !important;
  }
}








/* ======================== smart benefits functionality =========================== */


/* SECTION */
.benefits-section {
  background: #cfb42b18;
  padding: 120px 10%;
  overflow: hidden;
}

/* HEADER */
.benefits-header {
  text-align: center;
  margin-bottom: 80px;

  opacity: 0;
  transform: translateY(40px);

  transition: 1.5s ease;

}

.benefits-header.show {
  opacity: 1;
  transform: translateY(0);
}

.benefits-header h2 {
  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

/* GRID */
.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;

  align-items: center;
}

/* CARD */
/* CARD */
.benefits-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #eee;
  overflow: hidden;

  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.05),
    0 15px 35px rgba(0, 0, 0, 0.08);

  transition:
    transform 1.8s cubic-bezier(.19, 1, .22, 1),
    opacity 1.5s ease;

  /* INITIAL STATE */
  opacity: 0;
}

/* INITIAL STACK STATE */
.benefits-card.stack {

  opacity: 1;

  transform-origin: center center;

  transform:
    translateY(120px) scale(0.5);

}

/* overlap effect */
.benefits-card.stack:nth-child(1) {
  margin-right: -180px;
  z-index: 1;
  rotate: -12deg;
}

.benefits-card.stack:nth-child(2) {
  margin-right: -180px;
  z-index: 2;
  rotate: 8deg;
}

.benefits-card.stack:nth-child(3) {
  margin-right: -180px;
  z-index: 3;
  rotate: -6deg;
}

.benefits-card.stack:nth-child(4) {
  z-index: 4;
  rotate: 5deg;
}

.benefits-card.show {
  opacity: 1;
  margin-right: 0;

  transform:
    translateY(0) scale(1);

  rotate: 0deg;
}




/* HOVER */
.benefits-card:hover {
  transform:
    translateY(-10px) scale(1.03) !important;
}


/* TOP LINE */
.benefits-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg,
      #cfb42b,
      #e7612d,
      #cd5593);
}

/* OVERLAY */
.benefits-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(207, 180, 43, 0.12),
      rgba(231, 97, 45, 0.12),
      rgba(205, 85, 147, 0.12));

  opacity: 0;
  transition: .5s ease;
}

/* HOVER */
.benefits-card:hover {
  transform: translateY(-12px) scale(1.03) !important;

  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.08),
    0 20px 45px rgba(0, 0, 0, 0.12);
}

.benefits-card:hover::after {
  opacity: 1;
}

/* ICON */
.benefits-icon {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  background: #f8f8f8;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  transition: .8s ease;
  transform-style: preserve-3d;
}

.benefits-icon svg {
  width: 42px;
  height: 42px;
}

.benefits-card:hover .icon {
  transform: rotateX(360deg);
}

/* TEXT */
.benefits-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefits-card p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}



/* RESPONSIVE */
@media(max-width:991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 38px;
  }
}

/* 3. Benefits Section (Overlap/Stack Fix) */
@media(max-width: 991px) {

  .benefits-card.stack,
  .benefits-card.show {
    margin-right: 0 !important;
    transform: none !important;
    rotate: 0deg !important;
    opacity: 1 !important;
  }
}

@media(max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* ======================== divider functionality =========================== */

.divider {
  max-width: 1200px;
  width: 100%;
  height: 3px;
  margin: 60px auto;
  border-radius: 50px;

  background: linear-gradient(90deg,
      #cfb42b,
      #e7612d,
      #cd5593,
      #cfb42b);

  background-size: 300% 100%;
  animation: gradientMove 3s linear infinite,
    float 3s ease-in-out infinite;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0.85;
}

/* gradient movement */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* floating effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}



/*   <!-- ======================== about =========================== --> */
.khus-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* ========== 1. HERO SECTION ========== */
.heroContainer {
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  border-radius: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 70px -20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  animation: fadeScaleUp 0.8s ease-out forwards;
  margin-bottom: 3rem;
  border: 1px solid rgba(207, 180, 43, 0.25);
}

@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.imageSide {
  flex: 1.1;
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 0;
  animation: slideInLeft 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mainImgBox {
  position: relative;
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
  z-index: 2;
  transition: transform 0.5s ease;
}

.mainImgBox:hover {
  transform: translateY(-8px);
}

.mainImg {
  width: 100%;
  height: auto;
  border-radius: 48px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(207, 180, 43, 0.3);
}

.smallCard {
  position: absolute;
  top: -20px;
  left: -68px;
  width: 135px;
  height: 135px;
  border-radius: 32px;
  border: 4px solid white;
  overflow: hidden;
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
  background: #fff;
  z-index: 12;
  animation: floatGlow 3s infinite ease-in-out;
  object-fit: contain;
}

.smallCard:hover {
  transform: scale(1.03) rotate(1deg);
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.smallCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Status Badge - Desktop only (hidden below 1000px) */
.statusBadge {
  position: absolute;
  bottom: 30px;
  left: -120px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
  z-index: 12;
  border: 1px solid rgba(207, 180, 43, 0.5);
  min-width: 220px;
  animation: badgeSlideUp 0.6s ease-out 0.5s both, softPulse 2.2s infinite 1s;
}

@keyframes badgeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPulse {
  0% {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
  }

  50% {
    box-shadow: 0 20px 40px -5px rgba(207, 180, 43, 0.3), 0 0 0 3px rgba(207, 180, 43, 0.2);
  }

  100% {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
  }
}

.iconCircle {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #cd5593, #e7612d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.6rem;
  animation: tickPop 0.8s ease 0.9s both;
}

@keyframes tickPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.badgeInfo b {
  display: block;
  font-size: 1rem;
  color: #1c2b3a;
  font-weight: 800;
}

.badgeInfo span {
  font-size: 0.78rem;
  color: #e7612d;
  font-weight: 600;
}

.textSide {
  flex: 1;
  padding-left: 20px;
  color: #1f2937;
  z-index: 2;
  animation: slideInRight 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.25s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.topLabel {
  background: rgba(205, 85, 147, 0.1);
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 28px;
  border: 1px solid rgba(207, 180, 43, 0.5);
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  color: #cd5593;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  animation: fadeInUp 0.7s ease-out 0.4s both;
  background: linear-gradient(135deg, #cd5593, #e7612d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.description {
  font-size: 1.07rem;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  opacity: 0.94;
  max-width: 90%;
  animation: fadeInUp 0.7s ease-out 0.55s both;
  color: #374151;
}

.primaryBtn {
  background: linear-gradient(105deg, #cfb42b 0%, #cd5593 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 22px -10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.7s ease-out 0.7s both;
  position: relative;
  overflow: hidden;
}

.primaryBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  transition: left 0.5s ease;
  z-index: 0;
}

.primaryBtn:hover::before {
  left: 100%;
}

.primaryBtn:hover {
  transform: translateY(-5px) scale(1.02);
}

.bgBlob1,
.bgBlob2 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.bgBlob1 {
  bottom: -100px;
  left: -70px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(205, 85, 147, 0.06) 0%, rgba(231, 97, 45, 0.02) 70%);
}

.bgBlob2 {
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(207, 180, 43, 0.06) 0%, rgba(205, 85, 147, 0.01) 70%);
}

/* ----- Hero Responsive (max-width: 1000px) ----- */
@media (max-width: 1000px) {
  .statusBadge {
    display: none !important;
  }

  .heroContainer {
    padding: 2rem 2rem;
  }

  .smallCard {
    display: none;
  }
}

@media (max-width: 900px) {
  .heroContainer {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .textSide {
    padding-left: 0;
    text-align: center;
  }

  .description {
    max-width: 100%;
  }

  .smallCard {
    left: -5px;
    top: -15px;
  }
}

@media (max-width: 680px) {
  .heroContainer {
    padding: 1.5rem;
  }

  .smallCard {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 480px) {
  .iconCircle {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .badgeInfo b {
    font-size: 0.85rem;
  }

  .badgeInfo span {
    font-size: 0.7rem;
  }
}


/*   <!-- ======================== process =========================== --> */


/* BACKGROUND */
.process-blob {
  max-width: 100% !important;
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.process-blob.one {
  top: -160px;
  left: -160px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 60%);
}

.process-blob.two {
  /* bottom: -160px;
  right: -160px; */
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }
}

/* HEADER */
.process-header {
  text-align: center;
  padding: 0px 20px 10px;
}

.process-header h2 {
  margin-top: 20px;
  /* font-size: 60px;
  margin-bottom: 10px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  opacity: 0;

  animation:
    slideInDown 1s ease .2s forwards;

  background:
    linear-gradient(90deg,
      #cd5593,
      #e7612d,
      #cfb42b);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-header p {
  color: #64748b;
  margin-top: 10px;
}

/* CONTAINER */
.process-container {
  position: relative;
  max-width: 1100px;
  margin: 0px auto;
  padding: 20px 20px;
}

/* CURVE */
.process-container svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: 200px;
  z-index: 0;
}

.process-path-base {
  stroke: #e2e8f0;
  stroke-width: 4;
  fill: none;
  opacity: 0.7;
}

/* MAIN PROGRESS LINE (GRADIENT FIX) */
.process-path-progress {
  stroke: url(#processGradient);
  stroke-width: 6;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;

  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.35));
}

/* STEP */
.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px 0;
  position: relative;

  opacity: 0.4;
  transform: scale(0.96) translateY(50px);
  transition: 0.7s cubic-bezier(.2, .9, .2, 1);
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step.active {
  opacity: 1;
  transform: scale(1.05) translateY(0);
}

/* CARD */
.process-card {
  width: 42%;
  padding: 30px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.06),
    0 40px 90px rgba(15, 23, 42, 0.08);

  transition: 0.5s ease;
  position: relative;
}

.process-step.active .process-card {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.12),
    0 80px 160px rgba(34, 197, 94, 0.15);
}

/* ICON */
.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 700;

  background: linear-gradient(135deg, #cd5593, #e7612d, #cfb42b);
  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  margin-bottom: 14px;

  transition: 0.5s ease;
}

.process-step.active .process-icon {
  transform: rotate(12deg) scale(1.08);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.20);
}

/* TEXT */
h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

p {
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.6;
}

/* BADGE */
.process-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cd5593, #e7612d, #cfb42b);
}

/* DOT */
.process-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;

  /* GRADIENT DOT */
  background: linear-gradient(135deg, #cd5593, #e7612d, #cfb42b);

  border-radius: 50%;
  border: 4px solid #fff;

  box-shadow:
    0 0 0 6px rgba(34, 197, 94, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ACTIVE DOT GLOW */
.process-step.active .process-dot {
  transform: translateX(-50%) scale(1.35);

  box-shadow:
    0 0 0 10px rgba(231, 97, 45, 0.18),
    0 0 25px rgba(205, 85, 147, 0.25);
}

/* MOBILE */
@media(max-width:768px) {
  .process-container svg {
    display: none !important;
    /* Mobile par line hide karein */
  }

.process-header h2{
  font-size: 25px;
}
  .process-step {
    flex-direction: column !important;
    padding-left: 20px !important;
    margin: 40px 0 !important;
    transform: none !important;
  }

  .process-card {
    width: 100% !important;
  }

  .process-step.active .process-card {
    transform: translateY(-5px) scale(1.02) !important;
  }

  .process-dot {
    left: 10px;
  }
}



/*   <!-- ======================== Achivements =========================== --> */
.achievements-section {
  padding: 5% 8%;
  /* Adjust spacing from edges */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}

/* Header & Paragraph Styling */
.achievements-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.achievements-header h2 {
  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

.achievements-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Container */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  /* Base height for rows */
  gap: 15px;
  /* Space between images */
  width: 100%;
}

/* Individual Grid Items */
.grid-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Animation properties */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease-out backwards;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures images fill the box without stretching */
  transition: transform 0.5s ease;
}

/* Hover Effects (Animation) */
.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Asymmetric Grid Layout (Matching your sketch logic) */
.item-1 {
  grid-column: span 2;
  grid-row: span 1;
  animation-delay: 0.1s;
}

.item-2 {
  grid-column: span 1;
  grid-row: span 2;
  animation-delay: 0.2s;
}

.item-3 {
  grid-column: span 2;
  grid-row: span 2;
  animation-delay: 0.3s;
}

.item-4 {
  grid-column: span 1;
  grid-row: span 2;
  animation-delay: 0.4s;
}

.item-5 {
  grid-column: span 2;
  grid-row: span 1;
  animation-delay: 0.5s;
}

.item-6 {
  grid-column: span 1;
  grid-row: span 2;
  animation-delay: 0.6s;
}

.item-7 {
  grid-column: span 2;
  grid-row: span 2;
  animation-delay: 0.7s;
}

.item-8 {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 0.8s;
}

.item-9 {
  grid-column: span 2;
  grid-row: span 1;
  animation-delay: 0.9s;
}

.item-10 {
  grid-column: span 2;
  grid-row: span 2;
  animation-delay: 1.0s;
}

.item-11 {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 1.1s;
}

.item-12 {
  grid-column: span 1;
  grid-row: span 1;
  animation-delay: 1.2s;
}

.item-13 {
  grid-column: span 2;
  grid-row: span 1;
  animation-delay: 1.3s;
}

/* Responsive (Mobile View) */
@media (max-width: 768px) {

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .grid-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive (Mobile View) */
@media (max-width: 500px) {
  .achievements-header h2 {
    font-size: 25px;
  }
}




/* <!-- ======================== let's work =========================== --> */

/* ==========================================================================
         [CSS] 2. COLLABORATION SECTION STYLES - START
         ========================================================================== */
.collaboration-section {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 2rem auto 4rem auto;
  background: transparent;
  border-radius: 60px;
  border: 1px solid rgba(207, 180, 43, 0.25);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.04);
  padding: 40px;
  overflow-x: hidden;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.interactive-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.main-circle {
  position: relative;
  width: 250px;
  height: 250px;
  background: rgba(0, 0, 0, 0.01);
  border: 2px dashed rgba(231, 97, 45, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateCircle 40s linear infinite;
}

.lic-hands {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #cd5593, #e7612d);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(231, 97, 45, 0.2);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  animation: counterRotate 40s linear infinite;
  white-space: nowrap;
  border: 1px solid rgba(207, 180, 43, 0.3);
}

.badge-1 {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-2 {
  bottom: 15px;
  left: -20px;
}

.badge-3 {
  bottom: 15px;
  right: -20px;
}

.floating-badge i {
  color: #cd5593;
}

.badge-2 i {
  color: #e7612d;
}

.badge-3 i {
  color: #cfb42b;
}

.text-side {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards 0.3s;
  color: #1e293b;
  transition: transform 0.1s ease-out;
}

.tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #cfb42b;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tagline::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #cfb42b, transparent);
}

.main-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0f172a;
}

.main-title .highlight {
  background: linear-gradient(135deg,
      #cd5593 0%,
      #e7612d 50%,
      #cfb42b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

.description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 35px;
  border-left: 3px solid #cd5593;
  padding-left: 20px;
}

.benefits-mini-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #cd5593, #e7612d);
  opacity: 0.5;
}

.mini-card i {
  font-size: 1.4rem;
  color: #e7612d;
  background: rgba(231, 97, 45, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.mini-card:nth-child(2) i {
  color: #cfb42b;
  background: rgba(207, 180, 43, 0.1);
}

.mini-card span {
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
}

.btn {
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 10px;
}

.btn-primary {
  background: linear-gradient(90deg, #cd5593, #e7612d, #cd5593);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 5px 25px rgba(205, 85, 147, 0.2);
  border: none;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1e293b;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  border-color: #cfb42b;
  color: #cfb42b;
  transform: translateY(-2px);
}

/* Animations for Collaboration Section Only */
@keyframes rotateCircle {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 30px rgba(231, 97, 45, 0.2);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 60px rgba(205, 85, 147, 0.4);
    transform: scale(1.03);
  }
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [CSS] COLLABORATION SECTION MEDIA QUERIES */
@media (max-width: 992px) {
  .collaboration-section {
    margin: 0;
    /* margin: 1.5rem auto 3rem auto; */
    width: calc(100% - 40px);
    /* max-width: 728px; */
    padding: 40px 24px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .visual-side {
    order: -1;
  }

  .tagline {
    justify-content: center;
  }

  .tagline::after {
    display: none;
  }

  .description {
    border-left: none;
    border-top: 2px solid #cd5593;
    padding-left: 0;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .benefits-mini-grid {
    justify-content: center;
  }
}

@media (max-width: 850px) {
  .main-circle {
    width: 210px;
    height: 210px;
  }

  .lic-hands {
    width: 130px;
    height: 130px;
    font-size: 3.2rem;
  }

  .floating-badge {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .badge-2 {
    left: -10px;
    bottom: 5px;
  }

  .badge-3 {
    right: -10px;
    bottom: 5px;
  }
}

@media (max-width: 576px) {
  .collaboration-section {
    border-radius: 30px;
    padding: 30px 15px;
    width: calc(100% - 30px);
  }

  .main-circle {
    width: 180px;
    height: 180px;
  }

  .lic-hands {
    width: 110px;
    height: 110px;
    font-size: 2.8rem;
  }

  .benefits-mini-grid {
    flex-direction: column;
    gap: 15px;
  }

  .mini-card {
    align-items: center;
    text-align: center;
    padding: 16px;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
}


/* <!-- ======================== Blog = popular insurance plan =========================== --> */

/* =========================
BACKGROUND
========================= */

.insurance-section-outer::before {
  content: "";

  position: fixed;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(circle, #cd559320, transparent 70%);

  top: -180px;
  left: -180px;

  z-index: -2;
}

.insurance-section-outer::after {
  content: "";

  position: fixed;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(circle, #e7612d20, transparent 70%);

  bottom: -180px;
  right: -180px;

  z-index: -2;
}

/* =========================
SECTION
========================= */

.insurance-section {
  position: relative;
  height: 400vh;
}

/* =========================
STICKY AREA
========================= */

.sticky-area {
  position: sticky;
  top: 0;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  padding: 30px 0;
}

/* =========================
HEADING
========================= */

.main-heading {

  text-align: center;

  margin-bottom: 20px;

  opacity: 0;

  transform:
    translateY(80px) scale(.95);

  transition:
    1.2s cubic-bezier(.19, 1, .22, 1);
}

.main-heading.show {

  opacity: 1;

  transform:
    translateY(0) scale(1);
}

.main-heading h2 {
  margin-top: 20px;
  /* font-size: 45px;
  margin-bottom: 10px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  opacity: 0;

  animation:
    slideInDown 1s ease .2s forwards;

  background:
    linear-gradient(90deg,
      #cd5593,
      #e7612d,
      #cfb42b);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;


}

.main-heading p {

  margin-top: 18px;

  color: #6b7280;

  font-size: 18px;

  opacity: 0;

  animation:
    fadeUp 1s ease .7s forwards;
}

/* =========================
DIVIDER
========================= */

.header-divider {

  width: 90px;
  height: 5px;

  border-radius: 50px;

  background:
    linear-gradient(90deg,
      #cd5593,
      #e7612d,
      #cfb42b);

  margin: 25px auto 30px;

  opacity: 0;

  position: relative;

  overflow: hidden;

  animation:
    slideInUp 1s ease .5s forwards;
}

.header-divider::before {

  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .9),
      transparent);

  animation:
    shine 3s linear infinite;
}

/* =========================
CONTENT WRAPPER
========================= */

.content-wrapper {

  width: 100%;
  max-width: 1380px;

  margin: auto;

  padding: 0 7%;

  display: grid;

  grid-template-columns: 520px 1fr;

  gap: 70px;

  align-items: center;
}

/* =========================
IMAGE SIDE
========================= */

.image-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
IMAGE CARD
========================= */

.image-card {

  width: 100%;
  max-width: 520px;

  height: 450px;

  position: relative;

  border-radius: 34px;

  overflow: visible;

  opacity: 0;

  transform:
    translateX(-120px) rotate(-5deg) scale(.9);

  transition:
    1.4s cubic-bezier(.19, 1, .22, 1);

  will-change: transform;
}

.image-card.show {

  opacity: 1;

  transform:
    translateX(0) rotate(0) scale(1);
}

.image-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  border-radius: 34px;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .14);

  transition:
    transform 1.3s cubic-bezier(.19, 1, .22, 1),
    filter 1s ease;

  transform: scale(1.12);

  filter: blur(12px);
}

.image-card.active img {

  transform: scale(1);

  filter: blur(0);
}

/* =========================
OVERLAY
========================= */

.image-overlay {
  position: absolute;
  inset: 0;

  border-radius: 34px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .88),
      rgba(0, 0, 0, .18),
      transparent);
}

/* =========================
OVERLAY CONTENT
========================= */

.overlay-content {

  position: absolute;

  left: 30px;
  bottom: 30px;

  z-index: 5;

  color: #fff;

  pointer-events: none;

  opacity: 0;

  transform: translateY(30px);

  transition:
    .7s cubic-bezier(.19, 1, .22, 1);
}

.image-card:hover .overlay-content {

  opacity: 1;

  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 34px;
  margin-bottom: 5px;
}

.overlay-content p {
  color: #d1d5db;
}

/* =========================
BADGE
========================= */

.badge {

  position: absolute;

  top: 40px;
  left: -55px;

  padding: 12px 18px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, .16);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255, 255, 255, .25);

  /* color: #fff; */
  color: #e7612d;

  z-index: 20;

  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .18);

  animation: float 4s ease-in-out infinite;
}

/* =========================
RIGHT SIDE
========================= */

.right-side {

  position: relative;

  min-height: 520px;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =========================
PLAN CONTENT
========================= */

.plan-content {

  width: 100%;

  position: relative;

  opacity: 0;

  transform:
    translateY(70px);

  filter: blur(8px);

  animation:
    contentReveal .9s cubic-bezier(.19, 1, .22, 1) forwards;
}

.plan-content.active {

  opacity: 1;

  transform:
    translateY(0);

  filter: blur(0);
}

/* =========================
TEXT
========================= */

.subtitle {

  color: #0d8440;

  letter-spacing: 2px;

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 18px;
}

.plan-title {

  margin-top: 20px;

  font-size: 55px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  margin-bottom: 18px;

  background:
    linear-gradient(135deg,
      #cd5593,
      #e7612d,
      #cfb42b);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 20px;
}

.plan-desc {

  color: #6b7280;

  line-height: 1.9;

  font-size: 18px;

  margin-bottom: 34px;

  max-width: 92%;
}

/* =========================
FEATURES
========================= */

.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {

  background:
    rgba(255, 255, 255, .78);

  backdrop-filter: blur(14px);

  border:
    1px solid rgba(255, 255, 255, .4);

  border-radius: 22px;

  padding: 20px 22px;

  display: flex;
  align-items: center;
  gap: 16px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .05);

  opacity: 0;

  transform: translateY(40px);

  animation:
    featureReveal .8s forwards;

  transition: .4s ease;
}

.feature:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .08);
}

.icon {

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: #ee3435;

  flex-shrink: 0;
}

/* =========================
PROGRESS
========================= */

.progress {

  position: absolute;

  right: -35px;
  top: 50%;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.progress span {

  width: 5px;
  height: 55px;

  border-radius: 20px;

  background: #d1d5db;

  transition: .5s ease;
}

.progress span.active {

  height: 100px;

  background:
    linear-gradient(60deg,
      #cd5593,
      #e7612d,
      #cfb42b);

  box-shadow:
    0 0 16px rgba(231, 97, 45, .45);
}

/* =========================
ANIMATIONS
========================= */

@keyframes float {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }

}

@keyframes slideInDown {

  from {
    opacity: 0;
    transform: translateY(-60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes slideInUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes shine {

  100% {
    left: 140%;
  }

}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes contentReveal {

  from {
    opacity: 0;
    transform:
      translateY(60px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
    filter: blur(0);
  }

}

@keyframes featureReveal {

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* =========================
TABLET
========================= */

@media(max-width:1024px) {

  .insurance-section {
    height: 430vh;
  }

  .content-wrapper {
    margin-top: -30px;

    grid-template-columns:
      420px 1fr;

    /*  gap:40px; */

    /*  padding:0 30px; */
  }

  .image-card {
    height: 430px;
  }

  .main-heading h2 {
    font-size: 52px;
    margin-top: 100px;
  }

  .main-heading p {
    font-size: 16px;
    margin-bottom: 100px;

  }

  .plan-title {
    font-size: 46px;
  }

  .badge {
    display: none;
  }

}

/* =========================
MOBILE
========================= */

@media(max-width:900px) {

  .insurance-section {
    height: 340vh !important;
    /* Wapas scroll space diya taaki slide ho sake */
  }

  .sticky-area {
    position: sticky !important;
    /* STICKY WAPAS CHALU KIYA! */
    top: 0;
    height: 100vh !important;
    padding: 90px 0 40px !important;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .image-card {
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
  }

  .plan-title {
    font-size: 32px;
  }


  .image-card {
    height: 300px;
  }

  .right-side {

    min-height: auto;

    justify-content: flex-start;
  }

  .main-heading {
    padding: 0 20px;
  }

  .main-heading h2 {
    font-size: 42px;
  }



  .plan-title {
    font-size: 38px;
  }

  .plan-desc {

    font-size: 16px;

    line-height: 1.7;

    max-width: 100%;
  }

  .progress {
    display: none;
  }

  .badge {
    left: 10px;
    top: -18px;
  }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:600px) {

  .content-wrapper {
    padding: 0 15px !important;
  }

  .plan-title {
    font-size: 26px !important;
  }

  .insurance-section {
    height: 300vh;
  }

  /* .main-heading h2 {
    font-size: 22px;
    line-height: 1.15;
  } */

  /* .main-heading p {
    display: none;
  } */

  .image-card img,
  .image-overlay {
    border-radius: 24px;
  }

  .overlay-content {

    left: 20px;
    bottom: 20px;
  }

  .overlay-content h4 {
    font-size: 24px;
  }

  .overlay-content p {
    font-size: 13px;
  }

  .badge {

    padding: 10px 14px;

    font-size: 12px;
  }

  .image-card {
    height: 220px;
  }

  .plan-desc {
    font-size: 15px;
  }

  .feature {

    padding: 16px;

    font-size: 14px;
  }

}


/* <!-- ======================== service  =========================== --> */
.services-container {
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 90px;
}

/* ==================== HEADER SECTION ==================== */
.services-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.header-top {
  display: inline-block;
  color: #e7612d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0;
  animation: slideInTop 0.8s ease 0.2s forwards;
}

.services-header h2 {
  /* font-size: 3.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: 0;
  animation: slideInDown 1s ease 0.4s forwards;
  background: linear-gradient(135deg, #cd5593, #e7612d, #cfb42b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */

  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

.header-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cd5593, #e7612d, #cfb42b);
  margin: 25px auto 30px;
  opacity: 0;
  animation: slideInUp 1s ease 0.6s forwards;
}

.services-header p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  perspective: 1200px;
  padding: 20px;
}

/* ==================== SERVICE CARD ==================== */
.service-card {
  background: #fcf9f9;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;

  /* CASCADE ANIMATION - Playing Cards Effect - HIDDEN INITIALLY */
  opacity: 0;
  transform: translateY(-150px) rotateX(35deg) rotateZ(-12deg) scale(0.7);
}

/* Animation class added by JavaScript */
.service-card.animate {
  animation: cascadeCards 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.service-card.animate:nth-child(1) {
  animation-delay: 0.0s;
}

.service-card.animate:nth-child(2) {
  animation-delay: 0.15s;
}

.service-card.animate:nth-child(3) {
  animation-delay: 0.30s;
}

.service-card.animate:nth-child(4) {
  animation-delay: 0.45s;
}

.service-card.animate:nth-child(5) {
  animation-delay: 0.60s;
}

.service-card.animate:nth-child(6) {
  animation-delay: 0.75s;
}

/* SHIMMER EFFECT */
.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 50%);
  transform: rotate(45deg);
  transition: all 0.8s ease;
  animation: shimmerPulse 3s ease-in-out infinite;
}

/* BOTTOM GRADIENT LINE */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #cd5593, #e7612d, #cfb42b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-20px) rotateX(5deg) scale(1.05);
  box-shadow: 0 30px 60px rgba(212, 56, 30, 0.2);
}

/* ==================== ICON CONTAINER ==================== */
.icon-wrapper {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #cd5593, #e7612d, #cfb42b);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 30px rgba(212, 56, 30, 0.25);
  overflow: hidden;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: iconShine 3s infinite;
}

.service-card:hover .icon-wrapper {
  transform: rotateY(360deg) rotateX(10deg) scale(1.2);
  box-shadow: 0 20px 50px rgba(212, 56, 30, 0.4);
}

.icon-wrapper i {
  font-size: 45px;
  color: white;
  transition: all 0.7s ease;
  z-index: 2;
  animation: iconPulse 2.5s ease-in-out infinite;
}

/* ==================== CARD CONTENT ==================== */
.service-card h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  font-weight: 700;
  transition: all 0.6s ease;
}

.service-card:hover h3 {
  color: #d4381e;
  transform: translateX(5px);
}

.service-card p {
  color: #666;
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: 0.98rem;
  transition: all 0.6s ease;
}

.service-card:hover p {
  color: #555;
  transform: translateX(3px);
}

/* ==================== READ MORE LINK ==================== */
.read-more {
  display: inline-flex;
  align-items: center;
  color: #d4381e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
}

.read-more::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4381e, #ff6b5b);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.read-more::after {
  content: '→';
  margin-left: 8px;
  display: inline-block;
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

.service-card:hover .read-more::before {
  width: 100%;
}

.service-card:hover .read-more {
  color: #d4381e;
  padding-left: 8px;
}

.service-card:hover .read-more::after {
  margin-left: 15px;
  transform: scale(1.3) translateX(5px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes cascadeCards {
  from {
    opacity: 0;
    transform: translateY(-150px) rotateX(35deg) rotateZ(-12deg) scale(0.7);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) rotateZ(0) scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px) scaleX(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmerPulse {

  0%,
  100% {
    top: -100%;
    left: -100%;
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .services-header h2 {
    font-size: 2.8rem;
  }

  .services-grid {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .service-card {
    padding: 40px 30px;
  }

  .icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .icon-wrapper i {
    font-size: 38px;
  }
}

@media (max-width: 768px) {

  .services-header {
    margin-bottom: 70px;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .services-grid {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 10px;
  }

  .service-card {
    padding: 35px 25px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 0.93rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 34px;
  }

  .header-top {
    font-size: 0.85rem;
  }

  .header-divider {
    width: 60px;
  }
}

@media (max-width: 480px) {


  .services-header {
    margin-bottom: 60px;
  }

  .services-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .services-header p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .services-grid {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .service-card {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .service-card p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .icon-wrapper i {
    font-size: 30px;
  }

  .read-more {
    font-size: 0.9rem;
  }

  .header-top {
    font-size: 0.8rem;
  }

  .header-divider {
    width: 50px;
    height: 3px;
  }
}

@media (max-width: 360px) {
  .services-header h2 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}


/* <!-- ======================== logo slider =========================== --> */

/* ===== Slider Wrapper ===== */
.logo-slider {
  width: 100%;
  overflow: hidden;
  background: white;
  padding: 40px 0;
  position: relative;
  border: 1px solid #cd5593;
}

/* ::-webkit-scrollbar {
  display: none;
} */

/* ===== Track ===== */
.logo-slide-track {
  display: flex;
  width: calc(200px * 12);
  animation: scroll 18s linear infinite;
}

/* ===== Logo Box ===== */
.logo-slide {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  width: 120px;
  height: auto;
  /* filter: grayscale(100%);
      opacity: 0.7;*/
  transition: 0.3s ease;
}

.logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ===== Animation ===== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media(max-width:768px) {
  .logo-slide {
    width: 140px;
  }

  .logo-slide img {
    width: 90px;
  }
}



/* <!-- ======================== TESTIMONIAL =========================== --> */
/* ========== 3. TESTIMONIAL SECTION (SCROLL SPREAD) ========== */
.spreadSection {
  max-width: 1280px;
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
  border-radius: 60px;
  background: #ffffff;
  border: 1px solid rgba(207, 180, 43, 0.25);
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.04);
}

.spreadInner {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.spreadSticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 2rem 1rem;
}

.spreadHeader {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  z-index: 20;
  position: relative;
}

.headerBadge {
  background: rgba(205, 85, 147, 0.1);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(207, 180, 43, 0.5);
  color: #cd5593;
}

.spreadHeader h2 {
  /* font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #cd5593, #e7612d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2; */

  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

/* Desktop Layout: absolute positioned cards with GSAP scroll animation */
.cardsStack {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premiumPod {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  background: #ffffff;
  backdrop-filter: blur(0px);
  border-radius: 56px;
  padding: 2rem 1.8rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
  border: 1px solid rgba(231, 97, 45, 0.15);
  box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.08);
  will-change: transform;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.premiumPod::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #cd5593, #cfb42b, #e7612d);
  opacity: 0.6;
}

.premiumPod:hover {
  background: #ffffff;
  border-color: #cfb42b;
  box-shadow: 0 30px 50px -12px rgba(205, 85, 147, 0.15);
}

.podOrnament {
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, #cd5593, #cfb42b);
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.quoteSymbol {
  font-size: 3.2rem;
  line-height: 1;
  font-family: serif;
  color: #cd5593;
  opacity: 0.4;
  margin-bottom: 0.2rem;
}

.starRating {
  margin: 0.7rem 0 1rem 0;
  color: #cfb42b;
  font-size: 1.2rem;
  letter-spacing: 3px;
  display: flex;
  gap: 4px;
}

.reviewText {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  font-weight: 450;
  color: #2d3a4b;
}

.reviewerRow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0.5rem;
}

.avatarInit {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #cd5593, #e7612d);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.1);
}

.reviewerDetails {
  flex: 1;
}

.reviewerName {
  font-weight: 800;
  font-size: 1.08rem;
  color: #1f1a36;
  letter-spacing: -0.2px;
}

.reviewerBadge {
  display: inline-block;
  background: rgba(207, 180, 43, 0.15);
  padding: 3px 8px;
  border-radius: 40px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #e7612d;
  margin-top: 4px;
}

/* ---------- RESPONSIVE: TABLET & MOBILE (≤768px) ---------- */
/* This media query overrides desktop absolute layout and disables all animations */

@media (max-width: 767px) {
  .spreadInner {
    min-height: auto !important;
  }

  .spreadSticky {
    position: relative !important;
    height: auto !important;
    padding: 2rem 1rem;
  }

  .cardsStack {
    position: relative !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.8rem !important;
    align-items: center !important;
  }

  .premiumPod {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 380px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out both;
  }

  .premiumPod:hover {
    transform: translateY(-6px) !important;
  }
}

@media (min-width: 769px) and (max-width: 1068px) {

  /* Override sticky container for static behavior */
  .spreadInner {
    min-height: auto !important;
  }

  .spreadSticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 2rem 1rem;
  }

  /* Cards container: Grid layout: first row 2 cards side by side, third card centered on next row */
  .cardsStack {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    min-height: auto !important;
    width: 100%;
    align-items: stretch;
    margin-top: 1rem;
  }

  /* Reset all premiumPod styles: no absolute, no transforms, static grid items */
  .premiumPod {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    animation: none !important;
    /* disable any CSS entry animations */
    transition: all 0.2s ease;
  }

  /* Third card (last child) spans full width, centered */
  .premiumPod:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 70% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }

  /* Remove any GSAP-driven transforms, opacity, or scroll animations */
  .premiumPod {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Disable hover scale effects that might feel like animations (optional but cleaner) */
  .premiumPod:hover {
    transform: translateY(-4px) !important;
  }

  /* Ensure no scroll-driven timeline can affect elements */
  .spreadSection {
    overflow: visible;
  }
}

/* Small screen fine-tuning for narrow devices (optional) */
@media (max-width: 600px) {
  .cardsStack {
    gap: 1.2rem;
  }

  .premiumPod:last-child {
    width: 85% !important;
  }

  .premiumPod {
    padding: 1.5rem;
  }

  .reviewText {
    font-size: 0.85rem;
  }

  .avatarInit {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* Additional tablet range: adjust card widths for better readability */
@media (min-width: 601px) and (max-width: 768px) {
  .premiumPod:last-child {
    width: 60% !important;
    max-width: 360px;
  }
}

/* <!-- ======================== faq =========================== --> */


/* ========== 2. FAQ SECTION ========== */
.faqSection {
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  border-radius: 60px;
  padding: 3rem 4rem;
  margin-bottom: 3rem;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(207, 180, 43, 0.25);
  transition: all 0.3s;
}

.faqTitle {
  /* text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #cd5593, #e7612d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem; */

  text-align: center;

  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;

}

.faqSub {
  text-align: center;
  color: #e7612d;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.faqGrid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faqItem {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: 1px solid rgba(205, 85, 147, 0.15);
}

.faqItem:hover {
  box-shadow: 0 15px 30px -12px rgba(205, 85, 147, 0.12);
  border-color: rgba(207, 180, 43, 0.4);
}

.faqQuestion {
  width: 100%;
  background: white;
  padding: 1.4rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #1e1b2e;
  transition: all 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.faqQuestion:hover {
  background: #fefaf7;
}

.faqIcon {
  font-size: 1.6rem;
  font-weight: 400;
  color: #cd5593;
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faqItem.active .faqIcon {
  transform: rotate(45deg);
  color: #e7612d;
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fefaf7;
  border-top: 1px solid transparent;
}

.faqItem.active .faqAnswer {
  max-height: 300px;
  border-top-color: rgba(207, 180, 43, 0.25);
}

.faqAnswer p {
  padding: 1.5rem 2rem;
  color: #4a4a6a;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .faqSection {
    padding: 2rem 2rem;
  }

  .faqQuestion {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .faqAnswer p {
    padding: 1.2rem 1.5rem;
  }

  .faqGrid {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .faqSection {
    padding: 2rem 1.5rem;
  }

  .faqQuestion {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ======================================= contact ======================================= */

/* =========================
   THEME GRADIENT
========================= */

:root {

  --contact-gradient:
    linear-gradient(135deg,
      #cd5593 0%,
      #e7612d 50%,
      #cfb42b 100%);

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 20px 20px;
  margin-bottom: 50px;

}

/* =========================
   FLOATING BLURS
========================= */

.contact-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  animation: contactFloat 8s ease-in-out infinite;
}


*/
/* =========================
   CONTAINER
========================= */

.contact-container {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =========================
   TOP AREA
========================= */

.contact-top {
  text-align: center;
  margin-bottom: 90px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 28px;
  border-radius: 100px;

  background: #fff;

  border: 1px solid rgba(205, 85, 147, .18);

  box-shadow:
    0 10px 30px rgba(205, 85, 147, .08);

  margin-bottom: 30px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;

  background-image: var(--contact-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   TITLE
========================= */

.contact-title {
  font-size: clamp(60px, 7vw, 88px);
  line-height: 1.05;
  font-weight: 800;

  margin-bottom: 30px;
  padding-bottom: 20px;

  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(to bottom,
      #cd5593,
      #e7612d,
      #cfb42b) text;

  -webkit-text-fill-color: transparent;
}

.contact-description {
  max-width: 860px;
  margin: auto;

  color: #4b5563;

  font-size: 18px;
  line-height: 1.9;
}


/* =========================
   GRID
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

/* =========================
   LEFT CARD
========================= */

.contact-info {
  position: relative;
  overflow: hidden;

  border-radius: 40px;
  padding: 50px;

  background: rgba(255, 255, 255, .88);

  border: 1px solid rgba(205, 85, 147, .12);

  backdrop-filter: blur(20px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .06),
    0 10px 25px rgba(205, 85, 147, .08);

  opacity: 0;
  transform: translateX(-120px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1);
}

.contact-info.contact-show {
  opacity: 1;
  transform: translateX(0);
}

.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(140deg,
      rgba(205, 85, 147, .08),
      transparent,
      rgba(231, 97, 45, .06));

  pointer-events: none;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 40px;

  background: var(--contact-gradient);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: .4;
  pointer-events: none;
}

.contact-info:hover {
  transform: translateY(-12px) !important;
}

/* =========================
   LEFT CONTENT
========================= */

.contact-info-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;

  background-image: var(--contact-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-text {
  color: #374151;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* =========================
   CONTACT CARD
========================= */

.contact-card {
  position: relative;
  overflow: hidden;

  display: flex;
  gap: 18px;
  align-items: flex-start;

  padding: 24px;
  border-radius: 26px;

  background: #ffffff;

  border: 1px solid rgba(205, 85, 147, .10);

  margin-bottom: 24px;

  transition: .45s;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, .04);
}

.contact-card::before {
  content: "";
  position: absolute;

  width: 120%;
  height: 100%;

  top: 0;
  left: -120%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .9),
      transparent);

  transition: .8s;
}

.contact-card:hover::before {
  left: 120%;
}

.contact-card:hover {

  transform: translateY(-10px);

  border-color: rgba(205, 85, 147, .25);

  box-shadow:
    0 25px 50px rgba(205, 85, 147, .12);

}

/* =========================
   ICON
========================= */

.contact-icon {
  width: 72px;
  min-width: 72px;
  height: 72px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: #fff;

  background: var(--contact-gradient);

  box-shadow:
    0 18px 35px rgba(205, 85, 147, .25);

  position: relative;
}

.contact-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: var(--contact-gradient);
  z-index: -1;
  filter: blur(15px);
  opacity: .7;
}

/* =========================
   CARD CONTENT
========================= */

.contact-card-content h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card-content p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
   FORM CARD
========================= */

.contact-form-wrapper {
  position: relative;
  overflow: hidden;

  border-radius: 40px;
  padding: 50px;

  background: #ffffff;

  border: 1px solid rgba(205, 85, 147, .12);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .07),
    0 10px 30px rgba(231, 97, 45, .08);

  opacity: 0;
  transform: translateX(120px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1);
}

.contact-form-wrapper.contact-show {
  opacity: 1;
  transform: translateX(0);
}

.contact-form-wrapper:hover {
  transform: translateY(-12px) !important;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: var(--contact-gradient);

  filter: blur(130px);

  opacity: .18;

  top: -90px;
  right: -90px;
}

.contact-form-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 40px;
  padding: 1px;

  background: var(--contact-gradient);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: .4;
  pointer-events: none;
}

/* =========================
   FORM CONTENT
========================= */

.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;

  background-image: var(--contact-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-text {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 38px;
}

/* =========================
   INPUT GRID
========================= */

.contact-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* =========================
   INPUTS
========================= */

.contact-input,
.contact-textarea {

  width: 100%;

  border: none;
  outline: none;

  padding: 20px 22px;

  border-radius: 18px;

  background: #fffaf7;

  border: 1px solid rgba(205, 85, 147, .12);

  font-size: 15px;
  color: #111827;

  transition: .4s;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

.contact-input:focus,
.contact-textarea:focus {

  background: #ffffff;

  border-color: #cd5593;

  box-shadow:
    0 0 0 5px rgba(205, 85, 147, .10);

  transform: translateY(-2px);
}

.contact-textarea {
  resize: none;
  min-height: 180px;
  margin-bottom: 30px;
}

/* =========================
   BUTTON
========================= */

.contact-btn {
  position: relative;
  overflow: hidden;

  border: none;
  outline: none;
  cursor: pointer;

  padding: 20px 44px;

  border-radius: 20px;

  font-size: 16px;
  font-weight: 700;

  color: #fff;

  background: var(--contact-gradient);

  transition: .45s;

  box-shadow:
    0 20px 40px rgba(205, 85, 147, .25);
}

.contact-btn::before {
  content: "";
  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, .35);

  transform: skewX(-25deg);

  transition: .8s;
}

.contact-btn::after {
  content: "";
  position: absolute;
  inset: -2px;

  border-radius: 22px;

  background: var(--contact-gradient);

  z-index: -1;

  filter: blur(18px);

  opacity: .8;
}

.contact-btn:hover::before {
  left: 130%;
}

.contact-btn:hover {

  transform: translateY(-6px) scale(1.02);

  box-shadow:
    0 30px 55px rgba(205, 85, 147, .35);

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

  .contact-section {
    padding: 90px 15px;
  }

  .contact-info,
  .contact-form-wrapper {

    padding: 32px 22px;

    border-radius: 30px;

    transform: translateY(80px);
  }

  .contact-info.contact-show,
  .contact-form-wrapper.contact-show {
    transform: translateY(0);
  }

  .contact-title {
    font-size: 48px;
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 32px;
  }

  .contact-input-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:480px) {

  .contact-title {
    font-size: 38px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }

  .contact-btn {
    width: 100%;
  }

}



/* ======================================= whatsaap ======================================= */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsive */
@media(max-width:768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}




/* ======================================= footer ======================================= */

.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom,
      #f1f5f9 0px,
      #f1f5f9 90px,
      #ffffff 90px,
      #ffffff 100%);
  padding: 80px 6% 25px 6%;
  box-shadow: 0 -20px 35px -12px rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-family: "Outfit", sans-serif;
  margin-top: auto;
}

.wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.04));
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.wave .shape-fill {
  fill: #ffffff;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

.circle1 {
  width: 250px;
  height: 250px;
  top: 5%;
  left: -100px;
  background: radial-gradient(circle,
      rgba(205, 85, 147, 0.1),
      rgba(231, 97, 45, 0.05));
}

.circle2 {
  width: 200px;
  height: 200px;
  bottom: 2%;
  right: -50px;
  background: radial-gradient(circle,
      rgba(207, 180, 43, 0.1),
      rgba(205, 85, 147, 0.05));
}

.circle3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 25%;
  background: linear-gradient(135deg,
      rgba(231, 97, 45, 0.08),
      rgba(207, 180, 43, 0.03));
}

.footer-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-left: 170px;
  padding-top: 40px;
}

.footer-logo h2 {
  color: #1a2c2f;
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.footer-logo span {
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.footer-logo p {
  color: #4a5562;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 95%;
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f3f4f6;
  color: #5a4b54;
  font-size: 18px;
  transition: 0.3s;
  border: 1px solid #edeff2;
}

.socials a:hover {
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  color: white;
  transform: translateY(-5px);
  border-color: transparent;
}


.footer-links h3 {
  font-size: 20px;
  margin-bottom: 22px;
  position: relative;
  font-weight: 700;
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3.5px;
  border-radius: 20px;
  background: #cfb42b;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #4b5565;
  font-weight: 500;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: translateX(6px);
}

.newsletter p {
  color: #4a5b6e;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.input-box {
  position: relative;
  width: 100%;
}

.input-box input {
  width: 100%;
  height: 54px;
  border: 1px solid #e2e8f0;
  outline: none;
  border-radius: 50px;
  padding: 0 75px 0 22px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.input-box input:focus {
  border-color: #cfb42b;
  box-shadow: 0 0 0 3px rgba(207, 180, 43, 0.15);
}

.input-box button {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  color: white;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-box button:hover {
  transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
  position: relative;
  z-index: 5;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid #edf2f7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #5b6b7c;
}

.footer-bottom p {
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #5b6b7c;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  background: linear-gradient(125deg, #cd5593, #e7612d, #cfb42b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Animations for Footer Only */
@keyframes gentleFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.circle1,
.circle2,
.circle3 {
  animation: gentleFloat 10s ease-in-out infinite;
}

.circle2 {
  animation-delay: 2.5s;
}

.circle3 {
  animation-delay: 6s;
}

@media (max-width: 1100px) {
  .footer-container {
    padding-left: 100px;
  }
}

/* [CSS] FOOTER SECTION MEDIA QUERIES */
@media (max-width: 1100px) and (min-width: 701px) {
  .footer-container {
    grid-template-columns: repeat(2, minmax(220px, 340px));
    gap: 50px 60px;
    justify-content: center;
    text-align: center;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .socials {
    justify-content: center;
  }

  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul li a {
    justify-content: center;
  }

  .footer-links ul li a:hover {
    transform: translateX(0) scale(1.05);
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 80px 5% 25px;
  }

  .wave {
    height: 80px;
  }
}


@media (max-width: 800px) {
  .footer-container {
    padding-left: 0px;
  }
}

@media (max-width: 700px) {
  .footer {
    padding: 70px 24px 25px;
  }

  .wave {
    height: 65px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .socials {
    justify-content: center;
  }

  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul li a {
    justify-content: center;
  }

  .footer-links ul li a:hover {
    transform: translateX(0) scale(1.05);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-top: 35px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}