body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #555;
}

/* font family  */
.poppins {
  font-family: 'Poppins', sans-serif;
}

/* Semi-Bold */
.poppins-semibold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Bold */
.poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.navy-blue {
  color: #000080;
}


.hero {
  background: url('./photos/bg.jpg');
  background-image: url('./photos/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 60px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-custom {
  background-color: #B9D9F3;
  color: #1E3A8A;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #a7c7e7;
}

/* STATS BAR */
.stats-bar {
  background: linear-gradient(90deg, #1e2a78, #1f3a93, #1a2c7a);
  color: white;
  position: relative;
  width: 100%;
  z-index: 2;
}

.stat-box {
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:last-child {
  border-right: none;
}

.icon {
  font-size: 26px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .stat-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-box:nth-child(even) {
    border-right: none;
  }

  .stat-box:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-box:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* section 2 code  */

.img-fit {
  object-fit: cover;
}

.doctor-card {
  min-height: 15.625rem;

}

.text-blue {
  color: #1a2c7a;
}

.video {
  width: 100%;
  max-width: 500px;
  height: 400px;
  aspect-ratio: 500/350;
}


/* Fix controls overlap */
.doctor-card video {
  pointer-events: auto;
}

/* Optional */
.doctor-card {
  z-index: 1;
}

/* 3rd section */
.card-s3 {
  height: 16rem;
  object-fit: cover;

}

.m-6 {
  margin: 4rem !important;
}

/* card hover contents show 4th may */
/* CARD BASE */
.card-hover {
  min-height: 320px;
  /* 👈 sab cards same height */
  transition: all 0.4s ease;
}

/* IMAGE WRAPPER */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.card-img-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 255, 0.85);
  color: #fff;

  padding: 15px;

  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;

  max-height: none;
  /* 👈 important */
}

/* HOVER EFFECT */
.card-hover:hover {
  transform: scale(1.03);
  z-index: 10;
  /* 👈 overlap allow */
}

.card-hover:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT FIX */
.card-overlay p {
  font-size: 14px;
  line-height: 1.5;
}

.card-hover h5:hover {
  color: #1f3a93;

}

.card-body {
  height: fit-content;

}

.line {
  border: none;
  height: 1px;
  background-color: blue;
  width: 100%;
  margin-top: 70px;
}


/* 4th section center div cards  */
.blue-card {
  width: 250px;
  height: 380px;
  background: #c8e9fb;
  right: 35px;
  top: 55px;
  transform: rotate(21deg);
  z-index: 1;
}

.main-img-card {
  width: 250px;
  height: 380px;
  left: 45px;
  top: 10px;
  transform: rotate(14deg);
  z-index: 2;
}

/* 5th section  */
.img-sec-4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: none;
}

.img-div-sec-4 {
  width: 100%;
  max-width: 300px;
  height: 400px;
  margin: 0 auto;
}

.img-sec-4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: none;

}

/* section 6th  */


.credential-section {
  padding: 60px 0;
  text-align: center;
}

.credential-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b2a6b;
  margin-bottom: 40px;
}

.credential-card {
  background: #0b1761;
  /* #13227f */
  color: white;
  padding: 30px 15px;
  height: 100%;
  transition: 0.3s;
}

.credential-card-2 {
  background: #13227f;
  /* #13227f */
  color: white;
  padding: 30px 15px;
  height: 100%;
  transition: 0.3s;
}


.credential-card:hover {
  transform: translateY(-8px);
}


.credential-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.line {
  width: 40px;
  height: 3px;
  background: #4dd0e1;
  margin: 10px auto;
}

.credential-card p {
  font-size: 14px;
  margin: 0;
}

/* 7th section  */
.care-section {
  padding: 60px 0;
}

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

.care-content h2 {
  color: #1b2a6b;
  font-weight: 700;
  margin-bottom: 10px;
}

.care-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.divider {
  height: 2px;
  background: #1a2c7a;
  margin-top: 40px;
  opacity: 0.8;
}

/* spacing fix for mobile */
@media (max-width: 768px) {
  .care-content {
    margin-top: 20px;

  }
}

/* section 8th  */
.pills-bg {
  background-color: #7ECEED;
}

.btn-outline-primary {
  border-color: #1f3a93;
}

/* 9th section  */
.bg-sec-9 {
  width: 100%;
  padding: 60px 0;
  background-color: #b5e4f7;
}

.bg-transparent {
  background-color: transparent;
}

/* section 10  */

/* Section spacing safe (no overlap) */
.technology-section {
  background-color: #f5f7fa;
  position: relative;
  z-index: 1;
}

/* Heading */
.title {

  font-size: 32px;
}

.subtitle {
  color: #5a6a85;
  font-weight: 500;
  margin-top: 10px;
}

.desc {
  max-width: 700px;
  font-size: 14px;
  color: #6c757d;
}

.tech-card {
  background: #cfe3f1;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

/* 🔥 Premium top gradient line */
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #1e2a55, #4da8da);
  transition: width 0.4s ease;
}

/* ✨ Soft glow overlay */
.tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 🚀 Hover State */
.tech-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: #d8ebf7;
}

/* animate top line */
.tech-card:hover::before {
  width: 100%;
}

/* glow visible */
.tech-card:hover::after {
  opacity: 1;
}

/* Text smooth color shift */
.tech-card h6 {
  font-weight: 700;
  color: #1e2a55;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.tech-card p {
  font-size: 14px;
  color: #2f3e5c;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.tech-card:hover h6 {
  color: #0f1b3d;
}

.tech-card:hover p {
  color: #1f2f4a;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 16px;
  }

  .desc {
    font-size: 13px;
  }
}


.btn-outline-primary {
  border-color: #1e2a55;
  color: #1e2a55;
}

.btn-outline-primary:hover {
  background-color: #1e2a55;
  color: #fff;
  border-color: #1e2a55;
}

/* section 11  */


swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

swiper-container {
  width: 100%;
  height: 400px;
  margin: 20px auto;
}

.append-buttons {
  text-align: center;
  margin-top: 20px;
}

.append-buttons button {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #007aff;
  color: #007aff;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 0 10px;
  font-size: 13px;
}

/* section 12  */

/* Section */
.testimonial-section {
  background: #f7f7f7;
}

/* LEFT BOX */
.left-box {
  background: #cfe3f1;
  padding: 40px 25px;
}

.small-title {
  color: #5f6f89;
}

.main-title {
  color: #1e2a55;
  font-weight: 700;
}

/* Image */
.img-box img {
  width: 200px;
  height: 250px;
  object-fit: cover;
}

/* RIGHT SIDE */
.top-text {
  color: #5f6f89;
  max-width: 500px;
}

/* Quote */
.quote {
  font-size: 16px;
  color: #1e2a55;
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: "“";
  font-size: 40px;
  color: #2b3c8f;
  position: absolute;
  left: 0;
  top: -10px;
}

/* User */
.user-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user-name {
  color: #1e2a55;
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 14px;
}

/* Bottom */
.bottom-text {
  max-width: 600px;
  margin: auto;
  color: #6c757d;
}

/* Button color */
.btn-outline-primary {
  border-color: #1e2a55;
  color: #1e2a55;
}

.btn-outline-primary:hover {
  background: #1e2a55;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .left-box {
    text-align: center;
  }

  .main-title {
    font-size: 24px;
  }

  .img-box img {
    width: 150px;
    height: 200px;
  }
}

/* content top down css  */
/* Title */
.services-title {
  color: #1a2c7a;
  font-size: 32px;
}

/* Subtitle */
.services-subtitle {
  color: #2f5fa7;
  font-weight: 500;
  margin-top: 8px;
}

/* Description */
.services-desc {
  max-width: 720px;
  font-size: 14px;
  color: #5f6f89;
}

/* Bottom text */
.services-bottom-text {
  max-width: 650px;
  font-size: 14px;
  color: #6c757d;
}

/* Button color match */
.btn-outline-primary {
  border-color: #1e2a55;
  color: #1e2a55;
}

.btn-outline-primary:hover {
  background-color: #1e2a55;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .services-subtitle {
    font-size: 15px;
  }

  .services-desc,
  .services-bottom-text {
    font-size: 13px;
  }
}

/* slider cards  */
/* Card */
.service-card {
  background: #fff;
  border: 1.5px solid #2b3c8f;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image */
.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.card-body {
  padding: 15px;
}

/* Title */
.card-title {
  color: #1e2a55;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Small underline */
.title-line {
  width: 35px;
  height: 3px;
  background: #2b3c8f;
  margin-bottom: 10px;
}

/* Text */
.card-text {
  font-size: 14px;
  color: #5f6f89;
  margin-bottom: 0;
}

/* Hover (optional clean) */
.service-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* section 13  */
.faq-section {
  background: #f5f7fa;
}

/* Heading */
.faq-title {
  color: #1e2a55;
  font-weight: 700;
}

.faq-subtitle {
  max-width: 700px;
  margin: auto;
  color: #5f6f89;
}

/* Card */
.faq-card {
  margin-bottom: 15px;
}

/* Question (pill style) */
.faq-question {
  width: 100%;
  text-align: left;
  background: #cfe3f1;
  border: 1px solid #b6d3e6;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  color: #1e2a55;
}

/* Answer box */
.faq-answer {
  background: #fff;
  border: 1px solid #cfe3f1;
  border-top: none;
  padding: 15px;
  border-radius: 0 0 12px 12px;
  color: #5f6f89;
}

/* Active open card */
.faq-card.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* section 14  */
.footer-section {
  background: #f5f7fa;
  color: #1e2a55;
}

/* Links */
.footer-link {
  text-decoration: none;
  color: #1e2a55;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Social icons */
.social-icons a {
  margin: 0 10px;
  font-size: 18px;
  color: #1e2a55;
  transition: 0.3s;

}

a:hover {
  text-decoration: none !important;
}

.social-icons a:hover {
  color: #0d1b3d;
}

/* Text */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

/* HR */
.footer-section hr {
  border-color: #b6c8d8;
}

/* section 9  slider button code */

/* Swiper Container */
.mySwiper {
  position: relative;
  overflow: visible;
  padding-inline: 25px;
}

/* Navigation Buttons */
.mySwiper::part(button-prev),
.mySwiper::part(button-next) {
  width: 34px;
  height: 34px;
  background: #1f2f97;
  border-radius: 50%;
  color: #fff;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
}

/* Small Arrow */
.mySwiper::part(button-prev)::after,
.mySwiper::part(button-next)::after {
  font-size: 11px;
  font-weight: 700;
}

/* Exact Outside Position */
.mySwiper::part(button-prev) {
  left: -2px;
}

.mySwiper::part(button-next) {
  right: -2px;
}

/* Mobile */
@media (max-width:768px) {

  .mySwiper {
    padding-inline: 18px;
  }

  .mySwiper::part(button-prev),
  .mySwiper::part(button-next) {
    width: 28px;
    height: 28px;
  }

  .mySwiper::part(button-prev)::after,
  .mySwiper::part(button-next)::after {
    font-size: 9px;
  }

}

footer .custom_links_list li a{
  text-decoration: none;
    color: #1e2a55;
    font-size: 14px;
    margin-bottom: 6px;
}
.service-card .card-body p.card-text{
  color:#000;
}
.content-width-technology-card p{
color:#000;
}
.mt_4_rem{
  margin-top: -4rem;
}

header .dropdown ul li a{
font-size: 1rem;
}
header .dropdown ul li a {
    border-bottom: 2px solid #00000036;
}

header .dropdown ul li:last-child a {
    border-bottom: none;
}
header .dropdown ul li ul li a{
font-size: 0.8rem;
padding: 0.4rem;
border:none;
}
header .dropdown ul.dropdown-menu{
min-width:20rem;
}
.sub-menu {
    display: none;
}

.sub-menu.show {
    display: block;
}
header .dropdown-menu .sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

header .dropdown-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
header .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}
.custom_menu .dropdown-menu .sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.custom_menu .dropdown-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.custom_menu .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.custom_menu .dropdown ul li a{
font-size: 1rem;
}
.custom_menu .dropdown ul li a {
    border-bottom: 2px solid #00000036;
}

.custom_menu .dropdown ul li:last-child a {
    border-bottom: none;
}
.custom_menu .dropdown ul li ul li a{
font-size: 0.8rem;
padding: 0.4rem;
border:none;
}
.custom_menu .dropdown ul.dropdown-menu{
min-width:20rem;
}
.custom_menu.dropdown ul.dropdown-menu{
min-width:20rem;
}
.custom_menu.dropdown ul li a{
font-size: 1rem;
}
.custom_menu.dropdown ul li a {
    border-bottom: 2px solid #00000036;
}

.custom_menu.dropdown ul li:last-child a {
    border-bottom: none;
}
.custom_menu.dropdown ul li ul li a{
font-size: 0.8rem;
padding: 0.4rem;
border:none;
}
.vertical-line{
   border-right: 1px solid transparent;
  border-image: linear-gradient(
    to bottom,
    #2F90CC,
    #FFFFFF,
  #2F90CC
  ) 1;
  height: 150px;
  padding-right:2rem;
}

.vertical-line-2{
  border-right: 0.1px solid #FFFFFF;
  height: 30px;
  text-align: center;
  padding-right: 50px;

}
.vertical-line-2 {
  border-right: 1px solid transparent;
  border-image: linear-gradient(
    to bottom,
    #2F90CC,
    #FFFFFF,
  #2F90CC
  ) 1;
  height: 1.2rem;
  padding-right: 50px;
 

}



.vertical-line-3 {
  border-right: 1px solid transparent;
  border-image: linear-gradient(
    to bottom,
    #FFFFFF,
    #000000,
    #FFFFFF
  ) 1;
  height: 1.2rem;
  padding-right: 50px;
}

.cards{
  background-color: #2F90CC;
  border-radius: 10px;
  height: 150px;
}


.divsize{
  width : 200px;
}

.bg-second-cards{
  background-color: #2F90CC;
  color: white;
    border-radius: 10px;
}


/* ===== FIX NAVBAR HEIGHT ===== */

.container.position-relative.fixed-top {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    min-height: 55px !important;
    align-items: center;
}

/* Remove extra space from figure */
.header-logo figure {
    margin: 0 !important;
}

/* Logo size */
.header-logo img,
.header-logo .wp-block-image img {
    width: 65px !important;
    height: auto !important;
    display: block;
}

/* Phone */
.header-contact-number a {
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Menu */
.custom_menu a {
    font-size: 14px !important;
    line-height: 1 !important;
}

.custom_menu .bi-list {
    font-size: 18px !important;
}

/* Desktop extra compact */
@media (min-width: 992px) {

    .container.position-relative.fixed-top {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
        min-height: 50px !important;
    }

    .header-logo img,
    .header-logo .wp-block-image img {
        width: 55px !important;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .container.position-relative.fixed-top {
        min-height: 45px !important;
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .header-logo img,
    .header-logo .wp-block-image img {
        width: 50px !important;
    }

    .header-contact-number strong,
    .custom_menu strong {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .container.position-relative.fixed-top {
        min-height: 40px !important;
    }

    .header-logo img,
    .header-logo .wp-block-image img {
        width: 45px !important;
    }
}

/* =========================
   PREMIUM DROPDOWN MENU
========================= */

.custom_menu .dropdown-menu {
    min-width: 320px;
    border: none;
    border-radius: 18px;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 10px 40px rgba(0,0,0,.15),
        0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
}

/* Menu Items */

.custom_menu .dropdown-item {
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #1d3557 !important;
    transition: all .3s ease;
    margin-bottom: 4px;
}

/* Hover Effect */

.custom_menu .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        #2F90CC,
        #1A73E8
    );
    color: #fff !important;
    transform: translateX(6px);
}

/* Parent Menu */

.custom_menu .menu-item {
    list-style: none;
}

/* Submenu */

.custom_menu .sub-menu {
    margin-top: 6px;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 2px solid #d7e8f7;
}

/* Submenu Links */

.custom_menu .sub-menu .dropdown-item {
    font-size: 14px;
    color: #555 !important;
}

/* Parent Categories */

.custom_menu .menu-item-has-children > .dropdown-item {
    font-weight: 700;
    color: #2F90CC !important;
}

/* Category Hover */

.custom_menu .menu-item-has-children > .dropdown-item:hover {
    color: #fff !important;
}

/* Menu Button */

.custom_menu > a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.custom_menu > a:hover {
    transform: scale(1.05);
}

/* Hamburger Icon */

.custom_menu .bi-list {
    font-size: 22px;
}

/* Smooth Open Animation */

.custom_menu .dropdown-menu.show {
    animation: dropdownFade .3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* inner pages dropdown css */

.dropdown .dropdown-menu {
    min-width: 320px;
    border: none;
    border-radius: 18px;
    padding: 12px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.dropdown .dropdown-item {
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.dropdown .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        #2F90CC,
        #1A73E8
    );
    color: #fff !important;
    transform: translateX(6px);
}




.icon-box {
  width: 5.5rem;
  height: 0px; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
}
/* cards decoration */

.custom_drop_cards .your-traetment-journey-cards{
  min-height: 250px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #2859C5;
  transition: all .35s ease;
}

.custom_drop_cards .card-img-wrapper{
  height: 220px;
  overflow: hidden;
}

.custom_drop_cards .card-img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom_drop_cards .your-traetment-journey-cards .card-body{
  flex: 1;
}

.custom_drop_cards .your-traetment-journey-cards .card-title{
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  padding: 0.2rem 0.4rem;
  font-size: 0.8rem;
  margin: 0;
  width: 100%;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom_drop_cards .your-traetment-journey-cards .card-text{
  color: #fff;
  font-size: 0.8rem;
  padding: 0 0.4rem;
  line-height: 1rem;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom_drop_cards .heading-sec-6{
  width: 500px;
  color: #fff;
  background-color: #1496ff;
}

.custom_drop_cards .your-traetment-journey-cards .link-for-next{
  background-color: #002D8F;
  padding: 0.2rem;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom_drop_cards .your-traetment-journey-cards .link-for-next .link_arrow,
.custom_drop_cards .your-traetment-journey-cards .link-for-next .link_arrow i{
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
}

.custom_drop_cards .collapse,
.custom_drop_cards .collapsing{
  transition: height .35s ease;
}

.custom_drop_cards .link_arrow i{
  display: inline-block;
  transition: transform .3s ease;
  transform: rotate(180deg);
}

.custom_drop_cards .link_arrow[aria-expanded="true"] i{
  transform: rotate(0deg);
}

.custom_drop_cards .row{
  align-items: start;
}
.custom_drop_cards p.card-text{
	color:#fff;
}
@media (max-width:768px){

  .custom_drop_cards .your-traetment-journey-cards{
      min-height: 380px;
  }

  .custom_drop_cards .card-img-wrapper{
      height: 200px;
  }

  .custom_drop_cards .your-traetment-journey-cards .card-title{
      font-size: 18px;
  }
}