* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Marcellus", serif;
}

.hero {
  background: linear-gradient(135deg, #fff5f7, #ffe3ec);
  padding: 133px 20px;
  background-image: url(../images/newimg/b2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Marcellus", serif;
}

.hero-content p {
  font-size: 18px;
  color: #3b3b3b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  margin-bottom: 40px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn.primary {
  background: #e91e63;
  color: white;
}

.btn.primary:hover {
  background: #c2185b;
}

.btn.secondary {
  border: 2px solid #e91e63;
  color: #e91e63;
}

.btn.secondary:hover {
  background: #e91e63;
  color: white;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats h3 {
  color: #e91e63;
  font-size: 24px;
}

.hero-stats span {
  font-size: 17px;
  color: #000000;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .btn.secondary {
    border: 2px solid #e91e63;
    color: #e91e63;
    margin-top: 15px;
  }
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero {
    background: linear-gradient(135deg, #fff5f7, #ffe3ec);
    padding: 53px 10px;
    background-image: url(../images/newimg/mobilebanner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* --about */

.about-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

/* Layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Image */
.about-image img {
  width: 100%;
}

/* Content */
.about-subheading {
  color: #c23b52;
  font-weight: 600;
  letter-spacing: 2px;
}

.about-heading {
  font-size: 33px;
  font-weight: 700;
  margin: 15px 0;
  color: #222;
  font-family: "Marcellus", serif;
}

.about-desc {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.about-desc h5 {
  font-weight: 400;
}

/* Button */
.about-btn {
  display: inline-block;
  background: #c23b52;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.about-btn:hover {
  background: #c23b5200;
  border: 1px solid #c23b52;
  color: #0a0a0a;
}

.about-btn i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-image img {
    height: 300px;
  }
}

/* service-section-css */

.service-section {
  background: #e91e63;
  padding: 60px 0;
}

/* Heading */
.top-row {
  text-align: left;
  margin-bottom: 20px;
}

.service-subheading {
  color: #ffd400;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: left;
}

.service-heading {
  color: #000000;
  font-weight: 700;
  font-family: "Marcellus", serif;
  font-size: 33px;
  text-align: left;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  position: relative;

  /* 🔥 Half white from bottom */
  background: linear-gradient(to top, #ffffff 60%, transparent 60%);
}

/* Image */
.img-box {
  border: 3px solid #ffd400;
  margin: 15px;
}

.img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Title */
.service-title {
  background: #e91e63;
  color: #ffffff;
  padding: 10px;
  margin: 10px 20px;
  letter-spacing: 1.2px;
  border-radius: 10px 10px 0 0; /* 🔥 only top corners */
  font-weight: 700;
}

/* Description */
.service-desc {
  padding: 0px 15px;
  font-size: 16px;
}

/* Button bottom */
.card-bottom {
  margin-top: auto;
}

/* Button */
.call-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 60px;
  border-radius: 30px;
  margin: 15px 0 20px;
  text-decoration: none;
}

.call-btn:hover {
  background: #ffd400;
  color: #000000;
}
.call-btn i {
  margin-left: 8px;
  transition: 0.3s;
  display: inline-block;
  transform: rotate(-45deg); /* 🔥 arrow ko upar angle */
}

.call-btn:hover i {
  transform: rotate(-45deg) translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Section */
.how-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #69fffb40, #fbffafc7);
}

/* Top */
.how-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.how-sub {
  color: #c2465c;
  letter-spacing: 3px;
  font-size: 14px;
}

.how-heading {
  font-size: 33px;
  font-weight: 700;
  margin-top: 10px;
  font-family: "Marcellus", serif;
}

/* Button */
.how-btn {
  background: #c2465c;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
}

.how-btn:hover {
  background: #c23b5200;
  border: 1px solid #c23b52;
  color: #0a0a0a;
}

/* Steps Grid */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* 🔥 Dotted Line (Behind) */
.how-steps::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  border-top: 2px dashed #d3c7c2;
  z-index: 0; /* line neeche */
}

/* Step */
.step {
  text-align: center;
  position: relative;
  z-index: 2; /* cards upar */
}

/* Number Box */
.step-number {
  width: 80px;
  height: 80px;
  background: #c2465c;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Content */
.step-content h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step-content p {
  color: #666;
  font-size: 16px;
}

/* Tablet */
@media (max-width: 992px) {
  .how-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-heading {
    font-size: 30px;
  }
}

/* 🔥 MOBILE PERFECT LAYOUT */
@media (max-width: 576px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
  }

  .step-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
  }

  .step-content p {
    margin: 0;
    font-size: 13px;
  }

  /* mobile me line remove */
  .how-steps::before {
    display: none;
  }
}

/* cta-section css */

.cta-section {
  padding: 60px 0;
  background: #fff;
  background-image: url("assets/images/newimg/Psychiatric-Counseling.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Box */
.cta-box {
  background: #c2465c;
  border-radius: 25px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

/* Image */
.cta-image img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* Content */
.cta-sub {
  color: #fff;
  letter-spacing: 3px;
  font-size: 14px;
}

.cta-heading {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  margin: 15px 0;
  font-family: "Marcellus", serif;
}

.cta-desc {
  color: #ffe5ea;
  margin-bottom: 25px;
  font-size: 16px;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #ffd400;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f1f1f1;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-image img {
    max-height: 250px;
  }
}

.testi-slider-sec {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffe2c5, #f89ad2);
}

/* Heading */
.testi-header {
  margin-bottom: 40px;
}

.testi-header .sub {
  color: #c2465c;
  letter-spacing: 3px;
}

.testi-header h2 {
  font-size: 33px;
  font-family: "Marcellus", serif;
  padding-top: 15px;
  font-weight: 600;
}

/* Slider */
.slider-wrapper {
  position: relative;
}

.slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: 0.5s ease;
}

/* 🔥 SAME CARD STYLE */
.review-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: rgba(70, 28, 53, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.name-testi {
  color: #fff;
  font-family: "Marcellus", serif;
}

/* Top */
.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
}

.review-top img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.review-top small {
  position: absolute;
  right: 0;
  color: #aaa;
}

/* Stars */
.stars {
  color: #facc15;
  margin: 12px 0;
  font-size: 11px;
}

/* Text */
.review-text {
  font-size: 14px;
  color: #ddd;
}

/* Bottom */
.review-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 10px;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c2465c;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.prev {
  left: -20px;
}
.next {
  right: -20px;
}

/* Mobile */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 96%;
  }

  .testi-header h2 {
    font-size: 28px;
  }
}

/* faq-section */

/* Section */
.faq-section {
  padding: 60px 0;
  background: url("../images/banner2.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

/* Dark overlay */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 41%);
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

/* Layout */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.faq-sub {
  letter-spacing: 3px;
  font-size: 14px;
  color: #fff;
}

.faq-heading {
  font-size: 33px;
  font-weight: 600;
  margin: 15px 0 40px;
  font-family: "Marcellus", serif;
  color: #fff;
}

/* Card */
.faq-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.faq-users img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #fff;
}

.faq-help {
  margin: 15px 0 10px;
  color: #d6d6d6;
}

.faq-phone {
  font-weight: 600;
  color: #d6d6d6;
}

/* Right */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: #ddd;
  font-size: 16px;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 100px;
  margin-top: 10px;
}

.faq-item.active .iconf {
  content: "-";
}
.faq-item.active .faq-answer {
  max-height: 200px; /* increase if text bada hai */
}
/* Icon */
.iconf {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 32px;
  }
}

/* blog-section-css */
.blog-section {
  padding: 60px 0 30px 0;
  background: #f6f3f1;
}

/* Top */
.blog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-sub {
  color: #c2465c;
  letter-spacing: 3px;
  font-size: 14px;
}

.blog-heading {
  font-size: 33px;
  font-weight: 600;
  margin-top: 10px;
  color: #222;
  font-family: "Marcellus", serif;
}

/* Button */
.blog-btn {
  background: #c2465c;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Marcellus", serif;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
}

.blog-card h4 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  font-family: "Marcellus", serif;
}

.blog-card p {
  font-size: 16px;
}

/* Read More */
.read-more {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  background-color: #0a1024;
  padding: 7px 32px;
  border-radius: 12px 32px 0px 12px;
  font-family: "Marcellus", serif;
}

.read-more:hover {
  color: #f4c400;
  background-color: #000;
}

.read-more i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog-heading {
    font-size: 30px;
    font-family: "Marcellus", serif;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-top {
    text-align: left;
  }
}

/* appontment */

.appointment-section {
  background: linear-gradient(180deg, #f6f3f1 50%, #c2465c 50%);
  padding: 50px 0;
}

/* Box */
.appointment-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.form-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-family: "Marcellus", serif;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.appoint-btn {
  background: #c2465c;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* RIGHT */
.content-area .sub {
  color: #c2465c;
  letter-spacing: 3px;
  font-size: 14px;
  font-family: "Marcellus", serif;
}

.content-area {
  text-align: left;
}

.content-area h2 {
  font-size: 33px;
  margin: 10px 0;
  font-family: "Marcellus", serif;
}

.content-area p {
  color: #666;
  margin-bottom: 20px;
}

/* Info */
.info-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 20px 0;
}

.info-box i {
  font-size: 30px;
  color: #c2465c;
}

.info-box h4 {
  margin: 0;
  font-size: 20px;
}

hr {
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .appointment-box {
    grid-template-columns: 1fr;
  }

  .content-area h2 {
    font-size: 28px;
    font-family: "Marcellus", serif;
  }
}

/* new service crd */

.wowservice-content-main {
  width: 1300px;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}

/* Heading */
.top-row {
  text-align: center;
  margin-bottom: 20px;
}

.service-subheading {
  color: #ffd400;
  letter-spacing: 2px;
  font-weight: 600;
}

.service-heading {
  color: #000000;
  font-weight: 700;
  font-family: "Marcellus", serif;
  font-size: 33px;
  text-align: center;
}

.wowsectionnew {
  padding: 60px 20px;
  text-align: center;
  background: #f6f7f9;
}

.wow-heading {
  font-size: 28px;
  font-weight: 700;
  font-family: "Marcellus", serif;
}

.wow-sub {
  color: #777;
  margin: 10px auto 40px;
  font-family: "Marcellus", serif;
}

/* GRID → ALWAYS 2 COLUMN */
.wow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 1300px;
  margin: auto;
}

/* Card */
.wowservice-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

/* 🔥 FIX: overlay click block hata diya */

.wowservice-card:hover {
  transform: translateY(-8px);
}

.wowservice-card:hover::before {
  opacity: 1;
}

/* Image */
.wow-img img {
  width: 460px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

/* Content */
.wow-content h3 {
  font-size: 19px;
  font-weight: 700;
  font-family: "Marcellus", serif;
}

.wow-content p {
  font-size: 16px;
  color: #666;
}

/* 🔥 FIX: link always clickable */
.wow-content a {
  font-size: 17px;
  color: #e91e63;
  position: relative;
  z-index: 5;
}

/* FIRST CARD PINK 🔥 */
.wow-active {
  background: linear-gradient(135deg, #d8093d, #ff80ab);
  color: #fff;
}

.wow-active p {
  color: #ffe4ee;
}

.wow-active a {
  color: #fff;
}

/* Mobile Responsive */

/* Small phone */
@media (max-width: 360px) {
  .wow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wowservice-card {
    padding: 18px;
  }

  .founder-text h2 {
    font-size: 28px !important;
  }

  .info-box h4 {
    font-size: 19px;
  }
}

@media (max-width: 600px) {
  .wow-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }

  .wowservice-card {
    flex-direction: column; /* image upar */
    text-align: center;
  }

  .wow-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }

  .wow-content h3 {
    margin-top: 10px;
  }
}

/* about-page-csss */

/* ===== founder SECTION ===== */
.founder-ultra {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff4f4d6, #f9f6f7);
  position: relative;
  overflow: hidden;
  font-family: "Marcellus", serif;
}

/* subtle pattern */
.founder-ultra::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  z-index: 0;
}

/* layout */
.founder-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 1300px;
  margin: auto;
}

/* ===== TEXT ===== */
.founder-text {
  animation: fadeUp 1s ease;
}

.founder-text h2 {
  font-size: 33px;
  font-weight: 600;
  font-family: "Marcellus", serif;
}

.founder-role {
  color: #e91e63;
  margin: 10px 0 20px;
  font-weight: 600;
}

.founder-text p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 15px;
}

/* highlight glass card */
.founder-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 136, 0.2);
  margin-top: 20px;
}

/* button */
.founder-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff4d88, #ff80ab);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.founder-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

/* ===== IMAGE ===== */
.founder-image {
  position: relative;
  animation: fadeRight 1.2s ease;
}

.founder-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* hover zoom */
.founder-image:hover img {
  transform: scale(1.04);
}

/* glow bg */
.founder-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff4d88, #ff80ab);
  border-radius: 20px;
  z-index: -1;
}

/* floating stats */
.founder-stat {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 15px;
}

.stat1 {
  top: 20px;
  right: -20px;
}

.stat2 {
  bottom: 20px;
  left: -20px;
}

.founder-stat strong {
  display: block;
  font-size: 18px;
  color: #e91e63;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .founder-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-stat {
    position: initial;
    margin: 10px auto;
    left: 0;
    right: 0;
  }

  .founder-image::after {
    left: 8px;
    top: 8px;
  }
}

/* marriage-page-css */

/* SECTION */
.marriage-new {
  padding: 60px 20px;
  background: #f9fafc;
  font-family: "Marcellus", serif;
}

/* GRID */
.marriage-wrap {
  margin: auto;
  width: 1300px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: center;
}

/* TEXT */
.marriage-content h4 {
  color: #e91e63;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Marcellus", serif;
}

.marriage-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Marcellus", serif;
}

.marriage-content p {
  color: #666;
  margin-bottom: 25px;
}

/* LIST */
.marriage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ITEM */
.marriage-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 9px 9px;
  border-radius: 10px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* ICON */
.marriage-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ff4d88, #ff80ab);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* TEXT */
.marriage-item span {
  font-size: 16px;
  color: #555;
  font-family: "Open-sans", sans-serif;
}

/* HOVER */
.marriage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

/* IMAGE */
.marriage-img img {
  width: 100%;
  border-radius: 15px;
}

/* MOBILE */
@media (max-width: 900px) {
  .marriage-wrap {
    grid-template-columns: 1fr;
  }

  .marriage-list {
    grid-template-columns: 1fr;
  }
}

/* how to know  */

/* SECTION */
.marriage-check {
  padding: 60px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("assets/images/wow-bannner03.jpg") center/cover no-repeat;
}

/* HEADER */
.marriage-head {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 25px;
}

.marriage-head h5 {
  color: #e91e63;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.marriage-head h2 {
  font-size: 32px;
  font-weight: 600;
  font-family: "Marcellus", serif;
}

.marriage-head p {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

/* GRID */
.marriage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 1270px;
  margin: auto;
}

/* CARD */
.marriage-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* NUMBER ICON */
.marriage-number {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d40d34, #f5c501);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* TEXT */
.marriage-card p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* HOVER */
.marriage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

/* CTA */
.marriage-cta {
  margin-top: 50px;
  text-align: center;
}

.marriage-cta p {
  font-size: 16px;
  margin-bottom: 15px;
}

.marriage-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff4d88, #ff80ab);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.marriage-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .marriage-cards {
    grid-template-columns: 1fr;
  }

  .marriage-head h2 {
    font-size: 28px;
  }
}

.marriage-ul {
  padding: 19px 0 5px 22px;
  color: #000000;
  font-size: 16px;
}

.marriage-dp {
  padding: 5px 0 5px 22px;
  color: #000000;
  font-size: 16px;
}

/* -------css--couple-therapist---- */

.tech-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f2, #f1eae6);
}

/* Top */
.tech-top {
  max-width: 700px;
  margin-bottom: 40px;
}

.tech-top h2 {
  font-size: 32px;
  font-weight: 600;
}

.tech-top p {
  color: #666;
  margin-top: 10px;
}

/* Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card */
.tech-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-6px);
}

/* Number */
.tech-card .num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(194, 70, 92, 0.15);
}

/* Title */
.tech-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Text */
.tech-card p {
  color: #666;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-top h2 {
    font-size: 28px;
  }
}

.therapy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f5f2, #f1eae6);
}

/* Top */
.therapy-top {
  max-width: 750px;
  margin-bottom: 40px;
}

.therapy-top h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.therapy-top p {
  color: #666;
  margin-bottom: 10px;
}

/* Grid */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card */
.therapy-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #eee;
}

/* Icon */
.icon {
  width: 55px;
  height: 55px;
  background: #ffe4ee;
  color: #c2465c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* Text */
.therapy-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.therapy-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* 🔥 Hover Gradient Effect */
.therapy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c2465c, #ff80ab);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.therapy-card:hover::before {
  opacity: 1;
}

.therapy-card:hover {
  transform: translateY(-8px);
  color: #fff;
}

.therapy-card:hover p {
  color: #fff;
}

.therapy-card:hover .icon {
  background: #fff;
  color: #c2465c;
}

/* Keep content above */
.therapy-card * {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .therapy-grid {
    grid-template-columns: 1fr;
  }

  .opc7 {
    background: linear-gradient(
      90deg,
      rgb(255 227 150 / 71%) 0%,
      rgb(255 255 255 / 94%) 99%
    );

    /* background-image: url(../images/newimg/bred-phone.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
  }

  .therapy-top h2 {
    font-size: 28px;
  }
}

#depression-new {
  background: #fff;
}

.anxiety-pb {
  font-size: 20px !important;
}

.unlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-ocd {
  background-color: #f5c5014d;
}

.delhi-bg {
  background-color: #f8f5f2;
}

/* .fixed-bg {
  background: linear-gradient(
    90deg,
    rgba(222, 167, 18, 0.87) 0%,
    rgba(199, 87, 173, 1) 99%
  );
} */
