:root {
--pink-1: #f02a97;
--purple-1: #5b0db8;
--dark-1: #231b2f;
--muted: rgba(255, 255, 255, 0.85);
}
* {
box-sizing: border-box
}
body {
  font-family: "Poppins", "Mukta", system-ui;
  font-family: "Poppins", "Mukta", sans-serif;
  margin: 0;
  padding-top: 95px;
  overflow-x: hidden;


/*background: linear-gradient(110deg,#44107a 0%,#e83e8c 100%);*/
}



/* ===========================
   COLOR GRADIENT WRAP
=========================== */
/*.color-gradient {
  /*background: linear-gradient(160deg, #b30438 40%, #e00038 60%);*/
}*/

/* ===========================
   BACKGROUND HOLDER
=========================== */
.sthal-back-img {
  position: relative;
  min-height: 7vh;
  color: #fff;
}

/* ===========================
   LOGO
=========================== */
.logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.25));
}

/* ===========================
   NAV LINKS
=========================== */
.nav-center .nav-link {
  color: rgba(255,255,255,.95);
  font-weight: 600;
}

/* ===========================
   BUTTON
=========================== */
.btn-custom {
  background: #F25912;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 70px;
  transition: .3s ease;
}

.btn-custom:hover {
  background: linear-gradient(#FF4F0F);
}

/* ===========================
   STICKY FIXED NAVBAR
=========================== */

.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #DC6B19;
/*background: #DD0303;*/
background: linear-gradient(175deg, rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  transition: all .3s ease;
}

.main-navbar.scrolled {
  box-shadow: 0 6px 25px rgba(0,0,0,.35);
}




/*Carousal Hero Slide*/


.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Bootstrap carousel fix */
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

/* Each slide */
.hero-slider .carousel-item {
  position: relative;
}

/* Images */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLACK BOTTOM SHADOW */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* TEXT CENTER */
.hero-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  text-align: center;
  z-index: 2;
  animation: heroFadeUp 1.1s ease;
}

/* Heading */
.hero-caption h1 {
  font-size: 3.6rem;
  font-weight: 700;
  text-shadow: 0 6px 25px rgba(0,0,0,0.6);
  line-height: 1.25;
  letter-spacing: 0.3px;
}

/* Sub */
.hero-caption p {
  font-size: 1.2rem;
  margin-top: 12px;
}

/* Buttons */
.hero-btns {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* FADE UP */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%,40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%,0);
  }
}


/* =====================
   MOBILE FIX
===================== */

@media (max-width: 768px) {

  .hero-slider {
    height: 92vh;
  }

  .hero-caption h1 {
    font-size: 2rem;
  }

  .hero-caption p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

}



/*Carousal Hero Slide*/





/* ================================
   WHY CHOOSE US 
================================ */

.why-unique {
  position: relative;
  padding: 120px 20px;
  /*background: linear-gradient(180deg,#fff1f4 0%,#ffffff 65%);*/
  background-color: #fff;
  overflow: hidden;
}


/* HEADER */
.why-header {
  position: relative;
  z-index: 2;
}

.why-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
}

.why-header p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #666;
}

/* GRID */
.why-unique-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.why-glass-card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);

  border-radius: 26px;
  padding: 52px 38px;
  text-align: center;

  box-shadow: 0 25px 55px rgba(179,4,56,.18);

  position: relative;
  overflow: hidden;
  transition: all .45s ease;
}

.why-glass-card:hover {
  transform: translateY(-14px);
  background: linear-gradient(257deg,rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
}

/* hover gradient */
.why-glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
background: linear-gradient(356deg,rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  opacity: 0;
  transition: .4s;
}

.why-glass-card:hover::after {
  opacity: 1;
}

.why-glass-card * {
  position: relative;
  z-index: 1;
}

/* ICON CIRCLE */
.why-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;

  border-radius: 50%;
background: linear-gradient(175deg, rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
}

/* TEXT */
.why-glass-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-glass-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
}

.why-glass-card:hover h4,
.why-glass-card:hover p {
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){

  .why-header h2 {
    font-size: 2.3rem;
  }

  .why-glass-card {
    padding: 38px 26px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .why-unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-unique-grid {
    grid-template-columns: 1fr;
  }
}


/*WHY CHOOSE US*/




/* Services */
.bg-light-custom {
background: rgba(255, 255, 255, 0.04);
}
.service-card {
border: none;
background: transparent;
color: #fff;
}
.service-icon {
font-size: 2.2rem;
color: var(--pink-1);
}
/* Plans */
.plan-card {
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.06);
background: rgba(255, 255, 255, 0.02);
}
.plan-price {
font-size: 1.5rem;
font-weight: 800;
}
.plan-card.recommended {
border: 1px solid rgba(255, 255, 255, 0.15);
transform: scale(1.02);
}
/* Testimonials */
.testimonial-card {
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.04);
background: transparent;
}


/*FOOTER SECTION*/

/* =========================
   FOOTER – PREMIUM DESIGN
========================= */

.sthal-footer {
  background: linear-gradient(356deg,rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  padding-top: 0px;
  position: relative;
  overflow: hidden;
}

/* soft light overlay */
.sthal-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right bottom,
    rgba(255,255,255,0.08),
    transparent 60%);
}

/* decorative glow wave */
.sthal-footer::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -10%;
  width: 120%;
  height: 220px;
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,0.25),
    transparent 70%);
  opacity: .25;
}

/* =========================
   INNER WRAPPER
========================= */

.footer-inner {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================
   ROW LAYOUT
========================= */

.footer-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

/* =========================
   LEFT CONTENT
========================= */

.footer-left {
  width: 70%;
  color: #fff;
  padding-bottom: 40px;
  animation: fadeUp 1s ease forwards;
}

/* =========================
   RIGHT IMAGE
========================= */

.footer-right {
  text-align: right;
  animation: fadeRight 1.2s ease forwards;
}

.footer-couple-img {
  max-height: 400px;
  width: auto;
  margin: 40px 40px;
  border-radius: 50px;
  filter:
    drop-shadow(0 35px 60px rgba(0,0,0,0.45))
    drop-shadow(0 0 25px rgba(255,120,150,0.35));
  transition: transform .5s ease;
}

.footer-couple-img:hover {
  transform: scale(1.04);
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-columns {
  psdisplay:flex;
  display: flex;
  gap: 70px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 16px;
  position: relative;
}

/* animated underline */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg,#ffd3dd,#fff);
  border-radius: 20px;
  transition: width .4s ease;
}

.footer-col h4:hover::after {
  width: 70px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.social-icons a {
  width: 44px;
  height: 44px;

  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  border: 1px solid rgba(255,255,255,0.35);

  transition: all .4s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #b81a41;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 30px rgba(255,255,255,.45);
}

/* =========================
   TEXT CONTENT
========================= */

.footer-desc {
  font-size: 14px;
  line-height: 1.9;
  max-width: 98%;
  opacity: .95;
}

.footer-copy {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 13.5px;
}

.footer-credit {
  font-size: 13.5px;
  opacity: .9;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    display: none;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

}

@media (max-width: 576px) {

  .footer-inner {
    width: 90%;
  }

  .footer-col h4 {
    font-size: 18px;
  }

}


/*FOOTER SECTION*/


/* COMMON SIDE BUTTON */
.side-action-btn {
position: fixed;
right: 0;
z-index: 1000;
background: linear-gradient(175deg, rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
color: #fff;
writing-mode: vertical-rl;
transform: rotate(180deg);
font-size: 15px;
padding: 10px 15px;
border-radius: 12px 0 0 12px;
font-weight: 600;
text-decoration: none;
line-height: 1.2;
text-align: center;
}
.side-download-btn {
top: 25%;
height: 25%;
}
.side-biodata-btn {
top: 55%;
height: 35%;
}
/* SMALL MOBILE */
@media (max-width: 400px) {
.side-download-btn {
top: 25%;
}
.side-biodata-btn {
top: calc(46% + 100px);
}
}


/*COUNTER*/
.counter-section {
  background-color: #fdeaf3;
  padding: 150px 150px;
}

.counter-box {
  position: relative;
  margin-bottom: 20px;
}

.counter-number {
  font-size: 60px;
  font-weight: 700;
  color: #FF4F0F;
  transition: all 0.3s ease;
}

.counter-text {
  margin-top: 10px;
  font-size: 18px;
  color: #F25912;
}

/* Optional: Add a subtle hover/scale effect */
.counter-box:hover .counter-number {
  transform: scale(1.1);
  color: #FF6500;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-number {
    font-size: 48px;
  }
  .counter-text {
    font-size: 16px;
  }
}


/*CAROUSAL SECTION*/
.video-carousel-section {
background: #fff;
}
.video-thumb {
position: relative;
display: inline-block;
width: 80%;
max-width: 920px;
}
.video-thumb img {
width: 100%;
}
.play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 70px;
height: 70px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.play-btn i {
font-size: 40px;
color: #b0002c;
}
.custom-video-arrow {
width: 60px;
height: 60px;
background: #fff;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
border: 2px solid #b0002c;
}
.carousel-control-prev.custom-video-arrow {
left: 100px;
}
.carousel-control-next.custom-video-arrow {
right: 100px;
}
.custom-video-arrow span {
font-size: 30px;
color: #b0002c;
}

/* Smooth slide transition */
.carousel-item {
  transition: transform 0.8s ease-in-out, opacity 0.6s ease-in-out;
}

/* Video thumbnail styling */
.video-thumb {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
}

.video-thumb:hover {
  transform: scale(1.02);
}

/* Thumbnail image zoom */
.video-thumb img {
  transition: transform 0.6s ease;
}

.video-thumb:hover img {
  transform: scale(1.02);
}

/* Play button pulse animation */
.play-btn {
  animation: pulsePlay 2s infinite;
  box-shadow: 0 0 0 rgba(176, 0, 44, 0.5);
}

@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 0, 44, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(176, 0, 44, 0);
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(176, 0, 44, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}


/* Arrow hover animation */
.custom-video-arrow {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.custom-video-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 20px rgba(176, 0, 44, 0.3);
}

/* Arrow icon pulse */
.custom-video-arrow span {
  transition: transform 0.3s ease;
}

.custom-video-arrow:hover span {
  transform: scale(1.2);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .carousel-control-prev.custom-video-arrow {
    left: 10px;
  }
  .carousel-control-next.custom-video-arrow {
    right: 10px;
  }

  .video-thumb {
    width: 100%;
  }
}





/*FEATURED MODEL*/


.simple-featured-head {
  margin-bottom: 40px;
}

.simple-featured-head h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #F25912;
  letter-spacing: 0.5px;
}

.simple-featured-head p {
  margin-top: 8px;
  font-size: 1.05rem;
  color: #666;
}

/* small gradient line above */
.featured-line {
  display: block;
  width: 70px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(160deg,#b30438,#e00038);
}

/* MOBILE */
@media(max-width:768px){
  .simple-featured-head h2 {
    font-size: 2.1rem;
  }
}


.featured-marquee {
  /*padding: 100px 0;*/
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: visible;
}

/* WRAP */
.marquee-wrap {
  margin-top: 60px;
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 30px;
  align-items: center;

  width: max-content;

  animation: marqueeMove 22s linear infinite;
}

/* pause on hover */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* TRUE INFINITE LOOP */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CARD */
.featured-card {
  min-width: 240px;
  background: #fff;
  border-radius: 26px;
  padding: 34px 26px;
  text-align: center;

  box-shadow: 0 18px 45px rgba(179,4,56,.18);

  position: relative;
  z-index: 5;

  transition: transform .4s ease,
              box-shadow .4s ease;
}

.featured-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 75px rgba(179,4,56,.32);
}

/* BADGE */
.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;

background: linear-gradient(257deg,rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  color: #fff;

  font-size: .7rem;
  padding: 6px 12px;
  border-radius: 40px;
}

/* AVATAR */
.featured-avatar {
  width: 84px;
  height: 84px;
  margin: 12px auto 16px;
  border-radius: 50%;
  background: linear-gradient(175deg, rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(224,0,56,.4);
}

/* TEXT */
.featured-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.featured-card p {
  color: #666;
  font-size: .9rem;
}

/* MOBILE SPEED */
@media(max-width:768px){
  .marquee-track {
    animation-duration: 18s;
  }
}


/*FEATURED MODEL*/




/* PROCESS SECTION */
.process-section {
  background: #fff;
  padding: 5% 0 10%;
}

/* IMAGE CIRCLE */
.process-img-circle {
  width: 400px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Heading */
.process-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
}

.process-title {
  color: #b0002c;
  font-weight: 700;
  margin-top: 10px;
  font-size: 2.5rem;
}

.process-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  color: #444;
  font-size: 1rem;
}

/* Rows */
.process-row {
  margin-top: 40px;
}

/* Text */
.process-text h2 {
  color: #444;
  font-size: 1.8rem;
}

.process-text p {
  color: #999;
  max-width: 420px;
  font-size: 1rem;
}

/* Arrow */
.arrow-wrap {
  margin: 20px 0;
}

.arrow-img {
  max-width: 140px;
  animation: arrowBounce 5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* IMAGE HOVER EFFECT */
.process-img-circle:hover .process-img {
  transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .process-img-circle {
    width: 300px;
    height: 250px;
  }
  .process-text h2 {
    font-size: 1.5rem;
  }
  .process-text p {
    font-size: 0.95rem;
  }
  .arrow-img {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 5% 5% 10%;
  }
  .process-img-circle {
    width: 250px;
    height: 200px;
  }
  .process-text h2 {
    font-size: 1.3rem;
  }
  .process-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .process-img-circle {
    width: 200px;
    height: 160px;
  }
  .process-text h2 {
    font-size: 1.2rem;
  }
  .process-text p {
    font-size: 0.85rem;
  }
}

/*MEMBERSHIP PLAN*/
/* ===========================
   MEMBERSHIP CTA SECTION
=========================== */

.custom-plan-section {
  position: relative;
  min-height: 550px;

  background: url("assets/img/parallax-2.jpg") center center / cover no-repeat;

  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.custom-plan-section .overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.35)
  );

  z-index: 1;
}

/* CONTENT AREA */
.custom-plan-section .content-area {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER WRAP */
.custom-plan-section .center-wrap {
  max-width: 720px;
  text-align: center;
}

/* HEADING */
.custom-plan-section h2 {
  font-size: 2.3rem;
  line-height: 1.35;
}

/* PARAGRAPH */
.custom-plan-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5e5e5;
}

/* BUTTON */
.membership-btn {
  background-color: #F25912;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all .3s ease;
}

.membership-btn:hover {
  background: linear-gradient(356deg,rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  color: #fff;
  transform: translateY(-3px);

}

/* MOBILE */
@media (max-width: 991px) {

  .custom-plan-section {
    padding: 14% 8%;
  }

  .custom-plan-section h2 {
    font-size: 1.9rem;
  }

}

/*MEMBERSHIP PLAN*/

/*success-stories*/
.success-stories-section {
padding: 5em 0;
background: #fff;
}
.section-label {
font-size: 1.4rem;
font-weight: 500;
color: #E6501B;
text-transform: uppercase;
display: inline-block;
margin-bottom: 20px;
}
.section-title {
font-size: 40px;
font-weight: 600;
color: #FF4F0F;
line-height: 1.2;
margin-bottom: 20px;
}
.section-desc {
font-size: 18px;
line-height: 1.7;
color: #444;
max-width: 420px;
}
/* Single Image */
.story-img-single {
width: 100%;
height: 200%;
/*border-radius: 20px;*/
object-fit: cover;
  animation: fadeRight 1.2s ease forwards;

}
/* Responsive */
@media (max-width: 991px) {
.section-title {
font-size: 32px;
}
.story-img-single {
margin-top: 30px;
}
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 20px;

    /* Desktop default */
    right: 20px;

    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #0D4715;
    transform: scale(1.1);
}


/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
}

/* 📱 Small Phones */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 12px;
        right: 12px;
        font-size: 22px;
    }
}



/* Section */
.contest-section {
background: #fdeaf3;
}
/* Heading */
.contest-label {
font-size: 18px;
letter-spacing: 2px;
color: #999;
}
.contest-title {
font-size: 40px;
font-weight: 700;
color: #b0002c;
margin: 10px 0;
}
.contest-subtitle {
color: #555;
font-size: 16px;
}
/* Card */
.contest-card {
background: #fff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
height: 100%;
margin: 0 14px;
/* SIDE GAP */
}
/* Image */
.contest-card img {
width: 100%;
height: 240px;
object-fit: cover;
}
/* Body */
.contest-card .card-body {
padding: 22px;
}
.contest-card h5 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: #222;
}
.contest-card p {
font-size: 15px;
color: #555;
line-height: 1.6;
}
/* Arrows */
.contest-arrow {
width: 48px;
height: 48px;
background: #fff;
border-radius: 50%;
top: 55%;
transform: translateY(-50%);
opacity: 1;
}
.carousel-control-prev.contest-arrow {
left: -40px;
}
.carousel-control-next.contest-arrow {
right: -40px;
}
.contest-arrow i {
color: #b0002c;
font-size: 22px;
}

/* Mobile */
@media (max-width: 768px) {
.contest-title {
font-size: 30px;
}
.contest-card img {
height: 200px;
}
.carousel-control-prev.contest-arrow,
.carousel-control-next.contest-arrow {
display: none;
}
.carousel-inner {
width: 100%;
/*padding: 0 70px;*/
overflow: hidden;
}
.contest-card {
margin: 0;
}
}

.community-search-section {
background: #ffffff;
}
.cs-wrapper {
width: 75%;
margin-left: 15%;
margin-right: 15%;
}
/* Heading */
.cs-label {
font-size: 18px;
letter-spacing: 2px;
color: #9e9e9e;
text-transform: uppercase;
}
.cs-title {
font-size: 36px;
font-weight: 700;
color: #b0002c;
}
/* Rows */
.cs-row {
padding: 18px 0;
}
.cs-key {
font-weight: 600;
color: #111;
font-size: 16px;
}
.cs-value {
color: #333;
font-size: 15px;
line-height: 1.8;
}
/* Divider */
.cs-divider {
border: none;
border-top: 1px solid #444;
margin: 0;
}
/* Mobile fix */
@media (max-width: 768px) {
.cs-wrapper {
width: 80%;
}
.cs-title {
font-size: 28px;
}
.cs-key {
margin-bottom: 8px;
}
}


/* ===== ENTRANCE ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ROW HOVER EFFECT ===== */
.cs-row {
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 6px;
}

.cs-row:hover {
  background: #fff2f5;
  transform: translateX(6px);
}

/* ===== KEY TEXT STYLE ===== */
.cs-key {
  position: relative;
}

.cs-key::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px;
  height: 60%;
  background: #b30438;
  transform: translateY(-50%);
  border-radius: 2px;
}

/* ===== DIVIDER ANIMATION ===== */
.cs-divider {
  border-top: 1px solid #ccc;
  position: relative;
  overflow: hidden;
}

.cs-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: #4a148c;
  animation: dividerMove 1.5s ease forwards;
}

@keyframes dividerMove {
  to {
    width: 100%;
  }
}

/* ===== TEXT HOVER HIGHLIGHT ===== */
.cs-value {
  transition: color 0.3s ease;
}

.cs-row:hover .cs-value {
  color: #b0002c;
}

/* ===== MOBILE SMOOTHNESS ===== */
@media (max-width: 768px) {
  .cs-row:hover {
    transform: none;
  }
}




/* =========================
   SECTION BASE
========================= */
.download-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* =========================
   TOP GRADIENT
========================= */
.download-top {
  background: linear-gradient(110deg, #880022 0%, #e20039 100%);
  padding: 80px 0;
  position: relative;
}

/* subtle glow */
.download-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(255,255,255,0.12), transparent 60%);
}

/* =========================
   TEXT ANIMATION
========================= */
.download-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeSlideLeft 1s ease forwards;
}

.download-text {
  font-size: 16px;
  line-height: 1.7;
  animation: fadeSlideLeft 1.3s ease forwards;
}

/* =========================
   CENTER IMAGE
========================= */
.download-image-wrap {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  z-index: 5;
  animation: floatImage 3.5s ease-in-out infinite;
}

.download-image-wrap img {
  width: 540px;
  max-width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.25));
}

/* =========================
   BOTTOM WHITE SECTION
========================= */
.download-bottom {
  background: #ffffff;
  padding: 90px 0;
  color: #333;
  animation: fadeUp 1.2s ease forwards;
}

/* =========================
   CONTACT ITEMS
========================= */
.contact-title {
  font-weight: 600;
  color: #6c6c6c;
  font-size: 14px;
}

.contact-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #b0002c;
  transform: translateX(5px);
}

.contact-link i {
  font-size: 20px;
  color: #b0002c;
}

/* =========================
   PLAY STORE IMAGE
========================= */
.googleplay-img {
  transition: transform 0.3s ease;
}

.googleplay-img:hover {
  transform: scale(1.05);
}

/* =========================
   VERTICAL LINE
========================= */
.vertical-line {
  border-left: 2px solid #ccc;
  height: 200px;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-55%) translateX(0);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .download-top {
    padding: 60px 0;
  }

  .download-title {
    font-size: 28px;
  }

  .download-text {
    font-size: 14px;
  }

  .download-image-wrap {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: 30px auto 0;
    animation: none;
    text-align: center;
  }

  .download-image-wrap img {
    width: 80%;
    max-width: 350px;
  }

  .download-bottom {
    padding: 60px 15px;
  }

  .vertical-line {
    display: none;
  }
}

/*.btn-pink {
background: #e91e63;
color: #fff;
border-radius: 6px;
font-size: 14px;
}
.btn-pink:hover {
background: #d81b60;
color: #fff;
}*/
/*Why Sthal is One of the Best Marathi Matrimonial App*/
.text-purple {
color: #5a0ea3;
}




/* WHY SECTION */

.why-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid #e2e2e2;
  overflow: hidden;

  /* normal soft shadow */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);

  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

/* Subtle premium hover (no jump) */
.why-card:hover {
  border-color: rgba(176, 0, 44, 0.35);
  box-shadow: 0 14px 36px rgba(176, 0, 44, 0.18);
}

/* Corner accent */
.why-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(176, 0, 44, 0.08);
  top: -60px;
  right: -60px;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s ease;
}

.why-card:hover::before {
  transform: scale(1);
}

/* Focus glow (inner border effect) */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 0 rgba(176, 0, 44, 0.2);
  transition: box-shadow 0.5s ease;
}

/* ICON – smooth premium animation */
.why-icon {
  width: 60px;
  margin-bottom: 12px;
  margin-right: 20px;

  /* theme color */
  filter: 
    brightness(0) 
    saturate(100%) 
    invert(18%) 
    sepia(82%) 
    saturate(4800%) 
    hue-rotate(340deg) 
    brightness(90%) 
    contrast(105%);

  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-2deg);
}

/* Title underline animation */
.why-card h5 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.why-card h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #b0002c;
  transition: width 0.4s ease;
}

.why-card:hover h5::after {
  width: 100%;
}

/* Text emphasis */
.why-card p {
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: #444;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .why-card {
    padding: 24px;
  }

  .why-icon {
    width: 52px;
  }
}


/*WHY SECTION*/


/*PERFECT MATCH*/


/* ================================
   MODERN JOURNEY TIMELINE
================================ */

.journey-modern {
  padding: 120px 20px;
  background: linear-gradient(180deg,#fff4f6,#ffffff);
}

/* HEAD */
.journey-head h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #FF4F0F;
}

.journey-head p {
  margin-top: 10px;
  color: #666;
}

/* TIMELINE */
.journey-timeline {
  margin-top: 90px;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 4px;
  height: 100%;
  border-radius: 20px;

  background: linear-gradient(#b30438,#e00038);
  opacity: .35;
}

/* STEP */
.journey-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

/* DOT */
.step-dot {
  position: absolute;
  left: 100%;
  transform: translateX(-50%);

  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(175deg, rgba(221, 3, 3, 1) 0%, rgba(242, 89, 18, 1) 100%, rgba(12, 52, 44, 1) 100%);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  box-shadow: 0 10px 30px rgba(224,0,56,.4);
}

/* CARD */
.step-card {
  background: #fff;
  padding: 32px 34px;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(179,4,56,.18);
  transition: .45s ease;
}

.step-card h5{
  font-weight: bolder;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(179,4,56,.28);
}

/* LEFT */
.journey-step.left {
  text-align: left;
  justify-content: flex-end;
}

.journey-step.left .step-dot {
  right: -26px;
  left: auto;
}

/* RIGHT */
.journey-step.right {
  margin-left: auto;
}

.journey-step.right .step-dot {
  left: -26px;
}

/* MOBILE */
@media(max-width: 768px){

  .journey-timeline::before {
    left: 20px;
  }

  .journey-step {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .journey-step.left,
  .journey-step.right {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .step-dot {
    left: 20px !important;
    transform: translateX(-50%);
  }
}



/*PERFECT MATCH*/




/* =========================
   VERIFICATION SECTION
========================= */
.verification-section {
  background: linear-gradient(180deg, #ffebf8, #fff);
  position: relative;
  overflow: hidden;
}

/* soft floating shapes (background trust effect) */
.verification-section::before,
.verification-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatBg 12s infinite linear;
}

.verification-section::before {
  width: 280px;
  height: 280px;
  background: #b0002c;
  top: -80px;
  left: -80px;
}



/* =========================
   IMAGE
========================= */
.verification-img-wrapper {
  position: relative;
  /*animation: floatImage 4s ease-in-out infinite;*/
}

.verification-img {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
  border-radius: 18px;
}

/* =========================
   ACCORDION
========================= */
.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  animation: fadeUp 0.8s ease forwards;
}

/* delay for cascade effect */
.custom-accordion .accordion-item:nth-child(1) { animation-delay: 0.1s; }
.custom-accordion .accordion-item:nth-child(2) { animation-delay: 0.2s; }
.custom-accordion .accordion-item:nth-child(3) { animation-delay: 0.3s; }
.custom-accordion .accordion-item:nth-child(4) { animation-delay: 0.4s; }
.custom-accordion .accordion-item:nth-child(5) { animation-delay: 0.5s; }
.custom-accordion .accordion-item:nth-child(6) { animation-delay: 0.6s; }

.custom-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  padding: 1.2rem 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* active state */
.custom-accordion .accordion-button:not(.collapsed) {
  color: #b0002c;
  transform: translateX(6px);
}

/* arrow */
.custom-accordion .accordion-button::after {
  background-size: 14px;
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* body animation */
.accordion-body {
  padding: 0 0 1rem 0;
  color: #444;
  animation: fadeIn 0.4s ease;
}

/* =========================
   CHECK ICON ANIMATION
========================= */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.check-icon img {
  width: 22px;
  height: 22px;
  animation: pulseCheck 2.5s infinite;
  filter: 
    brightness(0) 
    saturate(100%) 
    invert(18%) 
    sepia(82%) 
    saturate(4800%) 
    hue-rotate(340deg) 
    brightness(90%) 
    contrast(105%);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}*/

@keyframes pulseCheck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatBg {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-40px);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .verification-img-wrapper {
    margin-bottom: 30px;
    animation: none;
  }
}

@media (max-width: 576px) {
  .verification-section h2 {
    font-size: 22px;
  }

  .custom-accordion .accordion-button {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 13px;
  }
}










/*Membership Plan*/
.pricing-section {
background: #fff;
}
.price-card {
border-radius: 6px;
background: #fdeaf3;
margin-bottom: 15%;
height: 65vh;
padding: 40px ;
}
.light-card {
color: #333;
}
.highlight-card {
background: #c91f4c;
}




.price-icon {
    position: absolute;
    top: -50px;
    left: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #b30438 20%, #e00038 80%); 
    color: white; 
    font-size: 44px;
}






.plan-title {
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
}
.plan-price {
font-size: 36px;
font-weight: 700;
margin: 10px 0;
}
.plan-short {
font-size: 15px;
margin-bottom: 20px;
}
.plan-details {
font-size: 12px;
line-height: 1.6;
border-left: 1px solid rgba(0,0,0,0.1);
padding-left: 20px;
}
.highlight-card .plan-details {
border-color: rgba(255,255,255,0.4);
}
.plan-btn {
background: #e00038;
color: #fff;
padding: 8px 20px;
border-radius: 4px;
font-size: 14px;
}
.plan-btn-outline {
border: 1px solid #fff;
color: #fff;
padding: 8px 20px;
border-radius: 4px;
font-size: 14px;
}
.plan-btn:hover{
color: #fff;
background-color: #b0002c;
}
.plan-btn-outline:hover {
color: #fff;
background-color: #b30438;
border: 1px solid #fff;
}
.plan-details-span{
font-size: 10px;
}







/*BLOG SECTION*/
.blog-link {
  display: block;
}

/* TITLE LINK STYLE */
.blog-title a {
  color: #6a008a;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* IMAGE LINK SAFE */
.blog-card a img {
  display: block;
}


.blog-section{
  background-color: #fff;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #eee;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

/* IMAGE */
.blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* IMAGE OVERLAY */
.blog-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 240px;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: 0.9s ease;
  z-index: 1;
  pointer-events: none;
}

/* READ MORE BUTTON */
.blog-card::before {
  content: "Read More";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #e00038;
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.9s ease;
  z-index: 2;
  pointer-events: none; 
}


/* HOVER EFFECTS */
.blog-card:hover::after {
  opacity: 1;
}

.blog-card:hover::before {
  opacity: 1;
  /*transform: translate(-50%, 0);*/
}


/* BODY CONTENT */
.blog-body {
  padding: 20px;
  position: relative;
  z-index: 3;
}

/* TAG */
.blog-tag {
  background: #fdeaf3;
  color: #000;
  font-size: 13px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* META */
.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.blog-meta i {
  margin-right: 5px;
}

/* TITLE */
.h5-blog-title {
  font-weight: 600;
  color: #4d008c;
  margin-bottom: 10px;
}

.h5-blog-title a{
  text-decoration: none;
  color: #b0002c;
  font-size: 23px;
}

/* DESC */
.blog-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/*Pagination*/

.pagination-wrap {
  margin-top: 40px;
}

.custom-pagination {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* COMMON BUTTON */
.custom-pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #000;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.9s ease;
}

.custom-pagination li.active a {
  background: #e00038;
  color: #fff;
  border-color: #e00038;
}


/* HOVER */
.custom-pagination li a:hover {
  background: #b30438;
  color: #fff;
  border-color: #b30438;
}

/* NEXT BUTTON */
.custom-pagination li.next a {
  font-weight: 400;
}


/*CONTACT US*/

.branch-section {
  min-height: 80vh;         
  display: flex;
  flex-direction: column;
  justify-content: center;    
}


/* Branch Offices Section */

.branch-title {
  color: #4b0082;
  margin-left: 15%;
}

/* Card */
.branch-card {
  background-color: #ffe6f7;
  border: none;
  border-radius: 10px;
  max-width: 600px;
}

/* City Title */
.branch-city {
  color: #4d008c;
}

/* Button */
.branch-btn {
  background-color: #d82a9c;
  color: #fff;
  border: none;
}

.branch-btn:hover {
  background-color: #c12589;
  color: #fff;
}

/* Icon */
.branch-icon {
  max-height: 120px;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .branch-title {
    margin-left: 0;
    text-align: center;
  }
}



/* Scroll Animation Base */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Active State */
.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}



