/* Custom CSS Root */
:root {
  --primary: #a41583;
  --secondary: #077e7a;
  --primary-dark: #47003b;
  --light-green: #eafbf0;
  --text: #1f2937;
  --white: #ffffff;
  --border: #e5e7eb;
  --muted: #6b7280;
}

/* font-family: "Rethink Sans", sans-serif; */

body {
  font-family: "Rethink Sans", sans-serif;
  color: #333;
}

body,
html {
  overflow-x: hidden;
}

/* Common CSS  */
.sec-space {
  padding: 80px 0;
}

img {
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  display: inline-block;
}
.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-title h6 {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-details {
  background: linear-gradient(135deg, #b01a80, #392b6a);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-details:hover {
  background: var(--primary-dark);
  color: #fff;
}
.btn-solid {
  background: linear-gradient(135deg, #b01a80, #392b6a);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
}

.btn-solid:hover {
  background: #fff;
  transition: all 0.3s;
  color: #000;
}

.play-btn {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: 0.3s;
}
p {
  font-size: 16px;
}

/* Common CSS  */

/* Topbar Start  */
.top-bar {
  background: var(--white);
  padding: 12px 0;
  font-size: 14px;
  margin: 0 20px;
}

.top-left,
.top-right {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: #333;
  text-decoration: none;
}

.top-bar i {
  color: var(--primary);
  margin-right: 6px;
}

.top-right {
  justify-content: flex-end;
}

.top-right a {
  transition: 0.3s;
}

.top-right a:hover {
  color: var(--primary);
}

/* Topbar End  */

/* Navbar */
.main-header {
  background: #fff;
  margin: 0 20px;
  border-radius: 10px;
  border: 1px solid #ebebeb;
}

.navbar {
  padding: 0px;
}

.navbar-brand img {
  width: 200px;
}

.navbar-nav {
  gap: 15px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 0px !important;
  margin: 0 10px;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  transition: 0.4s;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  color: #333;
  font-size: 20px;
}

.btn-whatsapp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  color: #fff;
}

.appointment-btn {
  background: linear-gradient(135deg, #b01a80, #392b6a);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;

  font-weight: 700;

  transition: 0.4s;
}

.appointment-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.appointment-btn i {
  margin-left: 10px;
}

/* Carousel Start */
.carousel {
  position: relative;
  margin: 0 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 800px;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-size: 20px 20px;
  opacity: 1;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background-image: none;
  transition: 0.3s;
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  transition: 0.3s;
}

/* Custom Numbered Circle Indicators */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 180px;
  left: 12%;
  z-index: 2;
  display: flex;
  justify-content: start;
  padding: 0;
  margin-right: 0%;
  margin-bottom: 0;
  margin-left: 0%;
  opacity: 1;
}

.custom-indicators button {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background-color: var(--white) !important;
  color: #333 !important;
  font-weight: 700;
  font-size: 1rem;
  border: 0px solid rgba(255, 255, 255, 0.9) !important;
  text-indent: 0 !important;
  transition: all 0.4s ease;
  box-shadow: none !important;
  margin-right: 5px;
  transition: 0.3s;
  opacity: 1 !important;
}

.custom-indicators button:hover {
  background-color: white !important;
  transform: scale(1.1);
  transition: 0.3s;
}

.custom-indicators button.active {
  background-color: var(--primary-dark) !important;
  color: white !important;
  border-color: none !important;
  box-shadow: 0 0 0 4px rgba(230, 57, 57, 0.3);
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

/* Dark Overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15 z);
  z-index: 1;
}

.custom-caption {
  z-index: 2;
  left: 12%;
  right: auto;
  bottom: 65%;
  transform: translateY(50%);
  text-align: left;
  max-width: 700px;
}

.custom-caption .subtitle {
  display: inline-block;
  background: rgb(7 126 122);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.custom-caption img {
  width: 60px;
  height: 60px;
  margin-right: 8px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  object-fit: contain;
}

.custom-caption h1 {
  font-size: 64px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: 1px;
  animation: slideUp 1s ease;
}

.custom-caption p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;

  animation: fadeIn 1.5s ease;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-appointment {
  background: var(--secondary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(7, 126, 122, 0.3);
  border: 0px;
}

.btn-appointment:hover {
  background: #0f7a33;
  color: #fff;
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-item img {
    height: 500px;
  }

  .custom-caption {
    left: 20px;
    right: 20px;
    bottom: 30px;
    transform: none;
  }

  .custom-caption h1 {
    font-size: 32px;
  }

  .custom-caption p {
    font-size: 15px;
  }
}

/* Carousel End */

/* About Section */

.feature-num {
  height: 50px;
  width: 50px;
  border: 2px solid var(--secondary);
  color: #000;
}

/* About Section End */

/* Services Section */
.service-card {
  background: #fff;
  color: #000;
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
  border: 0px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.service-content {
  padding: 20px;
}

.service-carousel .item {
  padding: 25px 15px;
}

.service-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owl-nav button {
  background: #e63939 !important;
  color: white !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
}

.service-carousel .owl-dots {
  display: none;
}
/* Services Section */

/* Why choose us  */
/* Feature Card Base */
.feature-box {
  background-color: #f7fcff;
  border-radius: 24px;
  padding: 25px 20px;
  height: 100%;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

/* Number Badge Styling */
.step-number {
  width: 36px;
  height: 36px;
  border: 1px dashed var(--blue-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Custom Icon Circles */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Decorative Short Accent Lines */
.accent-line {
  width: 30px;
  height: 3px;
  background-color: #22d3ee;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Main Headline Banner Block */
.main-banner {
  background: linear-gradient(135deg, #03122c 0%, #0c3374 100%);
  position: relative;
  color: white;
  z-index: 1;
}
.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle tech honeycomb or network line mesh simulation overlay */
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 0
  );
  background-size: 24px 24px;
  z-index: -1;
}
.banner-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-banner h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.script-text {
  font-family: "Caveat", cursive;
  color: #22d3ee;
  font-size: 3.5rem;
  font-weight: 700;
  display: inline-block;
  margin-top: -5px;
}

/* Image Mask Containers */
.banner-img-wrap {
  position: relative;
  height: 100%;
  min-height: 320px;
}
.banner-doctor-img {
  position: absolute;
  bottom: -40px; /* Aligns flush/extends nicely on bottom edges */
  right: 0;
  width: 90%;
  height: calc(100% + 40px);
  object-fit: contain;
}
.team-photo-card {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}
.team-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

/* Typography fixes */
.feature-box h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}
.card-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Responsive Optimization */
@media (max-width: 991.98px) {
  .main-banner h2 {
    font-size: 2.2rem;
  }
  .script-text {
    font-size: 2.8rem;
  }
  .banner-doctor-img {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .banner-img-wrap {
    min-height: auto;
  }
}
/* Flip Card Styles */
.flip-card {
  perspective: 1000px;
  height: 220px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  background: white;
}

.flip-card-front {
  background: #f0f8ff;
}

.flip-card-back {
  background: #e63939;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Why choose us End */

/* Form Home  */
.form-banner {
  position: relative;
  height: 650px;
}

.form-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.form-row {
  margin-top: -300px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.form-row .card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.form-row .section-title {
  max-width: 60%;
}

.form-row .section-title h3 {
  font-size: 32px;
  color: var(--text);
  font-weight: 700;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #999;
  opacity: 1;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none !important;
}
.form-row .form-select {
  font-size: 14px;
  height: 50px;
}
/* Form Home  */

/* Journey End  */

/* Testimonial Start  */
.testimonial-card {
  transition: all 0.4s ease;
  height: 400px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  background: #f7fcff;
}

.testimonial-carousel .item {
  padding: 10px;
}

.doctor-card {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
}

.doctor-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.user-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial End  */

/* Blog & News Start  */
.blog-card {
  background: #f9f9f9;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
/* Blog & News End  */

/* Footer Start  */
.footer-main {
  background: #000;
  padding: 40px 0;
  margin: 0 20px;
  border-radius: 20px;
}

.footer-logo img {
  width: 270px;
}

.news-letter-input .form-control::placeholder {
  color: #fff;
  opacity: 0.5;
}
.btn-ssubscribe {
  width: auto;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-ssubscribe:hover {
  background: #fff;
  color: var(--primary-dark);
  transition: 0.3s;
}

.ft-links li a {
  color: #fff;
  transition: 0.3s;
}

.sidebar {
  position: fixed;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar a {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

.sidebar ul li:nth-child(1) a {
  background: #3b5998;
}
.sidebar ul li:nth-child(2) a {
  background: #036c3f;
}
.sidebar ul li:nth-child(3) a {
  background: #5c0a0a;
}

.support-footer a {
  color: #fff;
  transition: all 0.3s;
}
.support-footer a:hover {
  color: #ba2178;
  transition: all 0.3s;
}
/* Footer End  */

/* Inner Banner  */

.inner-banner {
  height: 250px;
}
.about-us-hero {
  background-size: cover;
  background-position: center;
  background: url(../img/about-6.jpg) cover no-repeat;
  background-position: center;
}

.about-us-hero .breadcrumb {
  font-size: 1.1rem;
}

.about-us-hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
}

.about-us-hero {
  border-radius: 20px;
  margin: 10px 20px;
  overflow: hidden;
}

/* Inner Banner  */

/* About US  */

.highlight-box-wrapper {
  background: var(--secondary);
  height: 100%;
  border-radius: 20px;
  color: #fff;
  padding: 40px;
}

.highlight-box .highlight-point {
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}

.highlight-box-wrapper .highlight-box:nth-child(1) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.why-choose-us-abt {
  background: #f9f9f9;
  margin: 0 20px;
  border-radius: 20px;
}

.vision-content {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mission-content {
  background: var(--primary-dark);
  color: #d3d3d3;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.quick-access {
  background: #f4fbf8;
  margin: 0 20px;
  border-radius: 20px;
}

.flip-card {
  height: 380px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 40px;
  backface-visibility: hidden;
  overflow: hidden;
}

.flip-card-front {
  background: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.flip-card-back {
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.flip-card h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.flip-card p {
  color: #6c757d;
  flex-grow: 1;
}

.flip-card-back p {
  color: rgba(255, 255, 255, 0.85);
}

.card-link {
  font-weight: 600;
}

.card-number {
  position: absolute;
  right: 20px;
  bottom: -10px;
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  user-select: none;
}

.flip-card-back .card-number {
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
  .flip-card {
    height: 340px;
  }

  .flip-card h4 {
    font-size: 24px;
  }
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 2px;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.services-list .mission-img {
  height: 100%;
}

.services-list .mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-list .btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.services-list h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

.bg-one {
  background: var(--secondary);
}

.bg-two {
  background: var(--primary-dark);
}

.bg-three {
  background: #000;
}

.bg-four {
  background: #935400;
}

.bg-five {
  background: #0e0042;
}

/* Blog Start  */
.blog-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.blog-image {
  overflow: hidden;
  border-radius: 20px;
}

.blog-image img {
  width: 100%;
  transition: 0.5s;
}

.blog-item:hover .blog-image img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(164, 21, 131, 0.25);
}

.blog-date span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.blog-date small {
  font-size: 12px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.blog-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.blog-item h3 {
  margin: 15px 0;
  font-size: 28px;
  font-weight: 700;
}

.blog-item h3 a {
  color: var(--text);
  text-decoration: none;
  transition: 0.3s;
}

.blog-item h3 a:hover {
  color: var(--primary);
}

.blog-item p {
  color: var(--muted);
  line-height: 1.8;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-widget h5 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar-widget .form-control {
  border-radius: 50px;
  padding: 12px 20px;
}

.sidebar-widget .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.sidebar-widget .btn {
  background: var(--primary);
  border-color: var(--primary);
}

.sidebar-widget .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Categories */
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
}

.category-list li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* Recent Posts */
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 12px;
}

.recent-post small {
  color: var(--secondary);
  font-weight: 600;
}

.recent-post h6 {
  margin-top: 5px;
  line-height: 1.5;
}

.recent-post h6 a {
  color: var(--text);
  text-decoration: none;
}

.recent-post h6 a:hover {
  color: var(--primary);
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.cta-widget h4,
.cta-widget h5,
.cta-widget h6 {
  color: var(--white);
}

.cta-widget ul {
  padding-left: 18px;
  margin: 20px 0;
}

.cta-widget li {
  margin-bottom: 10px;
}

.cta-widget .btn {
  background: var(--white);
  color: var(--primary);
  border: none;
  font-weight: 600;
}

.cta-widget .btn:hover {
  background: var(--light-green);
  color: var(--primary-dark);
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(164, 21, 131, 0.08);
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.tags a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Read More Button */
.btn-blog {
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-blog:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Pagination */
.pagination .page-link {
  color: var(--primary);
  border-radius: 10px;
  margin: 0 3px;
  border-color: var(--border);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination .page-link:hover {
  background: var(--light-green);
  color: var(--primary-dark);
}

.btn-blog {
  background: #47003b;
  color: #fff;
  padding: 8px 15px;
}
/* Blog End  */

/* Contact Us  */
.contact-section {
  background: #fff;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(164, 21, 131, 0.1);
  transition: 0.4s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(164, 21, 131, 0.12);
}

.icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-info-card h5 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #6b7280;
  margin: 0;
}

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(164, 21, 131, 0.08);
}

.contact-form-box h3 {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-form-box p {
  color: #6b7280;
  margin-bottom: 30px;
}

.contact-form-box .form-control {
  height: 58px;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  padding: 15px 20px;
}

.contact-form-box textarea.form-control {
  height: auto;
}

.contact-form-box .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.btn-contact {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.btn-contact:hover {
  transform: translateY(-2px);
  color: #fff;
}

.contact-side-img {
  border-radius: 50%;
  width: 260px;
  height: 260px;
  object-fit: cover;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* Contact Us End */

/* Service Single  */
/* Sidebar */

.service-sidebar-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-sidebar-box h4 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.service-sidebar-box h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-menu li {
  margin-bottom: 12px;
}

.service-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  color: var(--text);
  font-weight: 600;
  transition: 0.4s;
}

.service-menu a:hover,
.service-menu a.active {
  background: var(--primary);
  color: #fff;
}

/* CTA BOX */

.cta-box {
  background: linear-gradient(135deg, var(--primary), #130048);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.cta-box span {
  opacity: 0.9;
  font-weight: 500;
}

.cta-box h3 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  margin: 15px 0 25px;
}

.cta-box ul {
  list-style: none;
  padding: 0;
}

.cta-box ul li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.cta-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.phone-number {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 700;
}

/* Content Area */

.service-content h1 {
  color: var(--primary-dark);
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro {
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 35px;
}

.service-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 40px;
}

.service-text {
  color: #040a16;
  line-height: 1.9;
}

.feature-box-2 {
  display: flex;
  margin-top: 25px;
  padding: 20px;
  background: #f7fcff;
  border-radius: 15px;
  height: 100%;
  transition: 0.3s;
}

.feature-box-2:hover {
  transform: translateY(-5px);
}

.feature-box-2 i {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: -10px;
  margin-right: 7px;
}

.feature-box-2 h5 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-box-2 p {
  color: #6b7280;
  margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
  .service-content h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 30px;
  }

  .service-image {
    height: auto;
  }

  .cta-box h3 {
    font-size: 28px;
  }
}

.company-profile-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
}

.company-profile-box h4 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.company-profile-box h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.profile-downloads {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-downloads li {
  margin-bottom: 20px;
}

.profile-downloads a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
}

.profile-downloads a:hover {
  color: var(--primary);
}

.faq-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.ivf-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 15px !important;
  overflow: hidden;
  margin-bottom: 15px;
}

.ivf-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: none;
}

.ivf-accordion .accordion-button:not(.collapsed) {
  background: var(--secondary);
  color: #fff;
}

.ivf-accordion .accordion-body {
  color: #6b7280;
  line-height: 1.8;
}

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

@media (max-width: 991px) {
  .faq-image {
    height: 220px;
  }

  .company-profile-box {
    margin-bottom: 30px;
  }
}
/* Service Single  */

/* Centers  */
.centre-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
  height: 100%;
}

.centre-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
}

.centre-img {
  overflow: hidden;
}

.centre-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s;
}

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

.centre-content {
  padding: 30px;
}

.centre-content h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.centre-content p {
  color: #6b7280;
  margin-bottom: 20px;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.page-banner {
  padding: 120px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/banner-centres.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cta-section-center {
  margin: 0 20px 30px;
  border-radius: 20px;
  background: #fffeef;
}
/* Centers  */
