/**
 * Theme Name:        mantra-theme
 * Description:       Custom theme description...
 * Version:           1.0.0
 * Author:            Tanvir
 * Tags:              block-patterns, full-site-editing
 * Text Domain:       fabled-sunset
 * Domain Path:       /assets/lang
 * Tested up to:      6.4
 * Requires at least: 6.9
 * Requires PHP:      7.4
 * License:           GNU General Public License v2.0 or later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 */
 .h2 .size-font {
    font-size: 44px;
    font-Weight: 500;
}
 :root {
  --primary-color: #1A76D1;
}
.single-slider {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.single-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%; /* overlay coverage */
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,     /* strong white */
    rgba(255,255,255,0.95) 30%, /* still solid */
    rgba(255,255,255,0.80) 50%, /* start smoother fade here */
    rgba(255,255,255,0.50) 70%, /* fading */
    rgba(255,255,255,0.20) 85%, /* almost invisible */
    rgba(255,255,255,0) 100%    /* fully clear at 90+ */
  );
}



/* Make sure text stays above overlay */
.single-slider .text {
  position: relative;
  z-index: 2;
}


/* SLIDER WRAPPER */
.slider {
  position: relative;
  width: 100%;
}

/* EACH SLIDE */
.slider .single-slider {
  min-height: 500px;
  height: 90vh;
  max-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider .single-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.slider .single-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* CONTENT AREA */
.slider .single-slider .container {
  position: relative;
  z-index: 2;
  width: 80%;
}

.slider .single-slider .text {
  max-width: 700px;
  margin: 0 auto 0 0;
  padding: 20px 0 40px 0;
  margin: 0 0 6rem 4rem;
}

.slider .single-slider h1 {
  color: var(--text-dark);
  font-size: clamp(2.3rem, 5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.slider .single-slider h1 span {
  color: #f9a243;
  position: relative;
}

/*.slider .single-slider h1 span::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: 8px;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 8px;*/
/*  background: rgba(26, 118, 209, 0.2);*/
/*  z-index: -1;*/
/*}*/
/* Needed on both outline & call buttons */
.ht-btn-outline,
.ht-btn-call,
a.btn-primary {
  position: relative;
  overflow: hidden;
}

/* Outline button */
.ht-btn-outline {
  background: #f9a243;
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
}

.ht-btn-outline::before,
a.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2); /* sliding shine */
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ht-btn-outline:hover::before,
a.btn-primary:hover::before {
  background: #f9a243;
  left: 100%;
}

/* Primary button default */
a.btn-primary {
    background-color: #f9a243;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}
/* Primary button hover */
a.btn-primary:hover {
  background: #f9a243;
  color: #fff;
  border: 1px solid #fff;
}

.slider .single-slider p {
  color: #000000;
  font-size: clamp(1rem, 2vw, 1rem);
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

/* BUTTONS */
.slider .btn {
  padding: 13px 25px;
  border-radius: 4px;
  color: #fff;
  background: #f9a243;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  /*border: 2px solid #000000;*/
  /*box-shadow: 0 4px 15px rgba(26, 118, 209, 0.3);*/

  /* Added for hover shine */
  position: relative;
  overflow: hidden;
  margin-right: 15px;
}

/* Shine layer */
.slider .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transition: left .6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.slider .btn:hover::before {
  background: #f9a243;
  left: 100%;
}

/* Hover state existing */
.slider .btn:hover {
  background: #f9a243;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  /*box-shadow: 0 6px 20px rgba(26, 118, 209, 0.4);*/
  color: #fff;
}

/* Secondary btn */
.slider .btn.primary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
  box-shadow: none;
}

/* Hover secondary */
.slider .btn.primary:hover {
  background: #f9a243;
  color: #fff;
  border-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 45, 63, 0.3);
  border: none;
}

.slider .btn i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.slider .btn:hover i {
  transform: translateX(4px);
}

/* SWIPER NAV BUTTONS */
.slider .swiper-button-next,
.slider .swiper-button-prev {
  height: 56px;
  width: 56px;
  color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);*/
  transition: all 0.3s ease;
  z-index: 10;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
}

.slider .swiper-button-prev::after {
  content: "\f104";
}

.slider .swiper-button-next::after {
  content: "\f105";
}

.slider .swiper-button-next:hover,
.slider .swiper-button-prev:hover {
  background: #f9a243;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  /*box-shadow: 0 6px 20px rgba(26, 118, 209, 0.4);*/
}

.slider .swiper-button-prev {
  left: 30px;
}

.slider .swiper-button-next {
  right: 30px;
}

/* Pagination */
.slider .swiper-pagination {
  bottom: 30px;
}

.slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  border: 2px solid var(--primary-color);
}

.slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* ANIMATIONS */
.slider .swiper-slide-active.single-slider h1 {
  animation: fadeInUp 1s 0.4s both;
}

.slider .swiper-slide-active.single-slider p {
  animation: fadeInUp 1s 0.7s both;
}

.slider .swiper-slide-active.single-slider .button {
  animation: fadeInUp 1s 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .slider .single-slider .text {
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .slider .single-slider {
    min-height: 600px;
  }

  .slider .single-slider .text {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
  }

  .slider .button {
    justify-content: center;
  }

  .slider .swiper-button-prev {
    left: 15px;
  }

  .slider .swiper-button-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .slider .single-slider {
    min-height: 450px;
    height: 70vh;
    max-height: 600px;
  }

  .slider .single-slider .text {
    padding: 20px 15px;
  }

  .slider .single-slider h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .slider .single-slider p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .slider .btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .slider .swiper-button-next,
  .slider .swiper-button-prev {
    height: 48px;
    width: 48px;
  }

  .slider .swiper-button-prev {
    left: 10px;
  }

  .slider .swiper-button-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .slider .single-slider {
    min-height: 500px;
  }

  .slider .button {
    flex-direction: column;
    width: 100%;
  }

  .slider .btn {
    width: 100%;
    justify-content: center;
  }

  .slider .swiper-button-next,
  .slider .swiper-button-prev {
    height: 35px;
    width: 35px;
  }

  .slider .swiper-button-next::after,
  .slider .swiper-button-prev::after {
    font-size: 13px;
  }
}
/*second*/
/*second*/
.services-section {
  padding: 40px 0 50px;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #02c4d9;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.services-header h2 {
  font-size: 44px;
  font-weight: 500;
  color: #0e1f56;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-header p {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

.services-section .row {
  align-items: flex-start;
}

.services-section .row > div {
  isolation: isolate;
  height: auto;
}

/* Service Card */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 0;
  min-height: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f9a243;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-12px) translateZ(0);
  /*box-shadow: 0 20px 50px rgba(2, 196, 217, 0.2);*/
  border-color: #f9a243;
  z-index: 10;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(2, 196, 217, 0.1), rgba(26, 118, 209, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #02c4d9, #1A76D1);
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.1;
}

.service-card:hover .service-icon-wrapper::before {
  width: 200px;
  height: 200px;
}

.service-icon-wrapper i {
  font-size: 48px;
  color: #1A76D1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #02c4d9, #1A76D1);
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1f56;
  margin-bottom: 16px;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.3;
  flex-shrink: 0;
}

.service-card:hover h3 {
  color: #1A76D1;
}

.service-card .front-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 78px;
  min-height: 78px;
  font-family: 'Inter';
  font-Weight: 500;
}

.service-card:hover .front-description {
  opacity: 0;
  max-height: 0;
  min-height: 0;
  margin-bottom: 0;
  -webkit-line-clamp: 0;
  line-clamp: 0;
}

.service-card .back-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px 30px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  background: #fff;
  transform: translateY(20px);
}

.service-card:hover .back-content {
  max-height: 250px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card .back-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter';
  font-Weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #f9a243;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /*box-shadow: 0 4px 15px rgba(2, 196, 217, 0.3);*/
  transform: translateY(10px);
  opacity: 0;
  white-space: nowrap;
}

.service-card:hover .service-link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 196, 217, 0.4);
}

.service-link i {
  font-size: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
/* Tablet view (<= 768px) */
@media (max-width: 768px) {
  .service-card {
    width: 100%; /* ekta kore row */
    margin-bottom: 20px; /* row spacing */
  }

  .service-card-content {
    padding: 30px 20px;
  }

  .service-card .back-content {
    padding: 0 20px 20px;
  }

  .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .service-icon-wrapper i {
    font-size: 38px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card .front-description {
    font-size: 0.875rem;
    max-height: 70px;
    min-height: 70px;
  }

  .service-card .back-description {
    font-size: 0.875rem;
  }
}

/* Mobile view (<= 576px) */
@media (max-width: 576px) {
  .service-card {
    width: 100%; /* full width ekta row */
    margin-bottom: 20px; /* row spacing */
    min-height: 340px;
    height: 340px;
  }

  .service-card-content {
    padding: 25px 18px;
  }
  .services-section {
    padding: 5px 0;
   }
  .service-card .back-content {
    padding: 0 18px 18px;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .service-icon-wrapper i {
    font-size: 32px;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .service-card .front-description {
    font-size: 0.8125rem;
    max-height: 60px;
    min-height: 60px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .service-link {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .services-section .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}


/*team member*/
.team-member-content {
    background: #eff0f0;
    border-radius: 0px 0px 25px 25px;
}
.team-member,
.team-member:hover,
.swiper-slide:hover .team-member,
.swiper-slide-active .team-member {
    box-shadow: none !important;
}

.team-slider-wrapper {
    position: relative;
    padding-bottom: 0px;
    overflow: hidden;
}

.team-section {
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #02C4D9;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.team-header h2 {
  color: #0A314F;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.75;
}

/* Swiper Slider */
.team-slider {
  padding-bottom: 100px;
}

.team-member {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  transition: 0.4s ease-in-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/*.team-member:hover {*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0 18px 60px ;*/
/*}*/

.team-member-img {
  width: 100%;
  padding-top: 110%;
  position: relative;
}

.team-member-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
  border-radius: 24px;
}

.team-member-content {
  text-align: center;
  padding: 28px;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0A314F;
  margin-bottom: 6px;
}

.team-member-role {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

.team-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: #0A314F;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.team-social a:hover {
  background: #02C4D9;
  color: #fff;
  transform: translateY(-4px);
}

/* Custom Navigation */
.custom-nav-buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  gap: 14px;
}

.custom-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #e5e7eb;
  font-size: 1.25rem;
  color: #0A314F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}

.custom-nav-btn:hover {
  background: #02C4D9;
  border-color: #02C4D9;
  color: #fff;
  transform: translateY(-3px);
}

/* Hide Default Swiper Arrows */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-nav-buttons {
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
  .team-slider-wrapper {
    padding-bottom: 0px;

}
}


@media (max-width: 576px) {
  .team-member-name {
    font-size: 1.15rem;
  }

  .custom-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}
/*blog cart*/

/* Ensure Swiper wrapper flex + stretch */
.blog-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Slide flex */
.swiper-slide {
  display: flex;
  flex: 1 1 auto;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stretch content to push button down */
.blog-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

/* Optional: minimum height for small cards */
.blog-card {
  min-height: 420px; /* adjust as needed */
}

.blog-section {
  position: relative;
  padding: 50px 0px 0px 0px;
  overflow: hidden;
  width: 100%;
}

.blog-section .container {
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-header-left {
  flex: 1;
  min-width: 300px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.blog-header h2 {
  font-size: 44px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #f9a243;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all-btn:hover {
  background: #f9a243;
  color: #fff;
  transform: translateY(-2px);
  /*box-shadow: 0 4px 12px rgba(2, 196, 217, 0.3);*/
}

/* Blog Slider */
/* Ensure Swiper wrapper flex + stretch */
.blog-slider .swiper-wrapper {
  display: flex;
  align-items: stretch; /* important for equal height slides */
}

/* Slide flex */
.swiper-slide {
  display: flex;
  flex: 1 1 auto;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px; /* fixed minimum height for uniform cards */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
  transition: all 0.4s ease;
}


/* Stretch content to push button down */
.blog-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

/* Optional: minimum height for small cards */
.blog-card {
  min-height: 420px; /* adjust as needed */
}

:root {
  --primary: #0e1f56;
  --accent: #060c10;
  --accent-hover: #00a8bb;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --border: #e5e7eb;
}
.blog-slider-wrapper {
  position: relative;
  padding-bottom: 0px;
  margin: 0 -15px;
  overflow: hidden;
}

.blog-slider {
  overflow: hidden;
  padding: 0 15px;
}

.blog-slider .swiper-wrapper {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

/* Blog Card */
.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-content {
  flex: 1;
}
.blog-image-wrapper {
  padding-top: 65%; /* fixed image height */
}
.blog-excerpt {
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  /*box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);*/
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  background: #e5e7eb;
}

.blog-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #121212;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);*/
  z-index: 2;
}

.blog-category.health {
  background: #fef3c7;
  color: #92400e;
}

.blog-category.medical {
  background: #dbeafe;
  color: #1e40af;
}

.blog-category.wellness {
  background: #d1fae5;
  color: #065f46;
}

.blog-category.nutrition {
  background: #fce7f3;
  color: #9f1239;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: #0b0d0e;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  font-size: 0.75rem;
  color: #f9a243;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.4;
  flex: 1;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #f9a243;
}

.blog-excerpt {
  font-size: 0.9375rem;
  color: #0b0d0e;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: #f9a243;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: 2px solid #f9a243;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #f9a243;
  color: #fff;
  transform: translateX(4px);
}

.read-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(2px);
}

/* Custom Navigation Buttons - Bottom Right */
.custom-nav-buttons {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.custom-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);*/
}

.custom-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  /*box-shadow: 0 4px 12px rgba(2, 196, 217, 0.3);*/
}

.custom-nav-btn:active {
  transform: translateY(0);
}

.custom-nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Hide default Swiper buttons */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}
/* Make hover effects fully visible */
.blog-slider-wrapper,
.blog-slider,
.blog-slider .swiper-wrapper,
.swiper-slide {
    overflow: visible !important;
}

.blog-card {
    overflow: visible !important;
    position: relative;
    z-index: 1; /* hover e front e asbe */
}

.blog-card:hover {
    z-index: 10;
}

/* Responsive */
@media (max-width: 1200px) {
  .blog-slider-wrapper {
    margin: 0 -10px;
    overflow: hidden;
  }

  .blog-slider {
    padding: 0 10px;
    overflow: hidden;
  }
}

@media (max-width: 992px) {

  .blog-section {
    padding: 40px 0;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }

  .blog-header-left {
    min-width: 100%;
  }

  .view-all-btn {
    align-self: flex-start;
  }

  .blog-slider-wrapper {
    margin: 0 -15px;
    padding-bottom: 75px;
    overflow: hidden;
  }

  .blog-slider {
    padding: 0 15px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0 15px;
  }

  .blog-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-header {
    margin-bottom: 35px;
  }

  .blog-header h2 {
    font-size: 1.75rem;
  }

  .blog-slider-wrapper {
    padding-bottom: 70px;
    margin: 0 -20px;
    overflow: hidden;
  }

  .blog-slider {
    padding: 0 20px;
    overflow: hidden;
  }

  .custom-nav-buttons {
    position: relative;
    justify-content: center;
    margin-top: 30px;
    bottom: auto;
    right: auto;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 0.875rem;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
  }

  .blog-meta {
    font-size: 0.8125rem;
    gap: 12px;
    margin-bottom: 10px;
  }

  .read-more-btn {
    padding: 8px 18px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {

  .blog-section {
    padding: 25px 0;
  }

  .blog-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-header {
    margin-bottom: 30px;
  }

  .blog-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-tag {
    font-size: 0.75rem;
    margin-bottom: 12px;
    /*margin-left: 86px;*/
  }

  .view-all-btn {
    padding: 12px 24px;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .blog-slider-wrapper {
    margin: 0 0px;
    padding-bottom: 0px;
    overflow: hidden;
  }

  .blog-slider {
    padding: 0 15px;
    overflow: hidden;
  }

  .blog-image-wrapper {
    padding-top: 65%;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-title {
    font-size: 1rem;
    line-height: 1.4;
  }

  .blog-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .blog-meta {
    font-size: 0.75rem;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-meta span {
    gap: 4px;
  }

  .read-more-btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }

  .custom-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9375rem;
  }

  .custom-nav-buttons {
    gap: 10px;
    margin-top: 25px;
  }
}

@media (max-width: 400px) {
  .blog-header h2 {
    font-size: 1.375rem;
  }

  .blog-image-wrapper {
    padding-top: 70%;
  }

  .blog-content {
    padding: 15px;
  }
}
.blog-slider .swiper-wrapper {
  display: flex;
  padding: 0px;
}
.swiper-slide {
  display: flex;
  height: auto;
}

.blog-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eff0f0;
  border-radius: 0px 0px 25px 25px;
}

/*slider arrow*/
.swiper-button-next,
.swiper-button-prev {
    display: flex !important;
    color: #fff;          /* arrow color */
    background: rgba(0,0,0,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
}
/*slider arrow*/

/*newslater*/
:root {
  --primary: #0e1f56;
  --accent: #02c4d9;
  --accent-hover: #00a8bb;
  --dark-bg: #041143;
  --dark-bg-light: #061a66;
}
.newsletter-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  margin: 60px auto;
  max-width: 1400px;
  box-shadow: 0 20px 60px rgba(4, 17, 67, 0.3);
}

.newsletter-container {
  position: relative;
  z-index: 2;
}

.newsletter-content {
  padding: 3px 50px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 200px;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 600px;
}

.newsletter-input {
  flex: 1;
  min-width: 280px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 196, 217, 0.1);
}

.newsletter-btn {
  padding: 16px 32px;
  background: #f9a243;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(2, 196, 217, 0.3);
}

.newsletter-btn:hover {
  background: #f9a243;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 196, 217, 0.4);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-btn i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
  transform: translateX(4px);
}

.newsletter-image {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}

.newsletter-image img {
  width: 67%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Abstract Shapes */
.shape-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}


@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Background Pattern */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(2, 196, 217, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Responsive */
			  
@media (max-width: 1200px) {
  .newsletter-content {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
  }

  .newsletter-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-image {
    order: -1;
    width: 85%;
    margin-bottom: -10px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    border-radius: 20px;
    margin: 40px 15px;
  }

  .newsletter-text h2 {
    font-size: 1.875rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 16px;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter-image img {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .newsletter-content {
    padding: 35px 10px;
  }

  .newsletter-text h2 {
    font-size: 1.6rem;
  }

  .newsletter-image img {
    max-width: 280px;
  }
}

/*testimonium*/
      :root {
        --primary: #0e1f56;
        --accent: #06c167;
        --dark-blue: #061a66;
        --body: #4b587f;
        --card: #041143;
      }

      .section-tag {
        font-weight: 600;
        text-transform: uppercase;
        color: #f9a243;
        letter-spacing: 0.1em;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
      }

      .section-tag::before,
      .section-tag::after {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: currentColor;
      }


      .lead-text {
        color: var(--body);
        max-width: 520px;
        margin-bottom: 30px;
      }

      .why-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: -70px;
        margin-top: 25px;
      }

      .why-list li {
        display: flex;
        gap: 18px;
        margin-bottom: 18px;
      }

      .icon-badge {
        width: 44px;
        height: 44px;
        background: #f9a243;
        color: #ffffff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
      }

      .list-title {
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 6px;
        font-family: 'Inter';
      }

      .list-text {
        color: var(--body);
      }

      .cta-group {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
      }

      .btn-primary-custom {
        background: #1f58ff;
        border: none;
        padding: 14px 28px;
        border-radius: 999px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #fff;
      }

      .rating-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: var(--primary);
      }

      .rating-badge img {
        width: 46px;
      }

      .hero-media {
        position: relative;
        border-radius: 26px;
        overflow: hidden;
        background: #dbe7ff;
        padding: 40px 40px 150px;
        min-height: 520px;
      }

      .hero-media img {
        width: 100%;
        border-radius: 22px;
        object-fit: cover;
        height: 460px;
        object-position: center top;
      }

      /*.testimonial-card {*/
      /*  position: absolute;*/
      /*  bottom: 40px;*/
      /*  left: 50%;*/
      /*  transform: translateX(-50%);*/
      /*  width: clamp(260px, 80%, 520px);*/
      /*  background: var(--card);*/
      /*  color: #fff;*/
      /*  border-radius: 22px;*/
      /*  padding: 28px;*/
      /*  box-shadow: 0 20px 60px rgba(5, 18, 65, 0.3);*/
      /*}*/

      .swiper {
        width: 100%;
      }

      .testimonial-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 16px;
      }

      .testimonial-header img {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        object-fit: cover;
      }

      .testimonial-name {
        font-size: 1.1rem;
        font-weight: 600;
      }

      .testimonial-role {
        color: #a9b7ff;
        font-size: 0.9rem;
      }

      .stars {
        color: #f9b302;
        margin-bottom: 12px;
      }

      .quote-icon {
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.25);
      }


      @media (max-width: 1200px) {
        .hero-media {
          padding: 35px 35px 130px;
        }

        .testimonial-card {
          width: clamp(260px, 85%, 520px);
        }
      }

      @media (max-width: 992px) {
        .hero-media {
          margin-top: 40px;
          padding: 30px;
          min-height: auto;
        }

        .testimonial-card {
          position: static;
          transform: none;
          margin-top: 25px;
          width: 100%;
        }


        .swiper-button-prev,
        .swiper-button-next {
          bottom: 15px;
          width: 42px;
          height: 42px;
        }

        .swiper-button-prev {
          right: 75px;
        }

        .swiper-button-next {
          right: 20px;
        }
      }

      @media (max-width: 576px) {

        h1 {
          font-size: 2.2rem;
          text-align: center;
        }

        .lead-text,
        .why-list {
          text-align: center;
        }

        .why-list li {
          flex-direction: column;
          align-items: center;
        }

        .cta-group {
          justify-content: center;
        }

        .rating-badge {
          justify-content: center;
          /* text-align: center; */
          margin-left: 90px;
        }

        .hero-media {
          padding: 20px;
        }

        .hero-media img {
          border-radius: 16px;
        }

        .testimonial-card {
          padding: 22px;
          border-radius: 18px;
          width: 100%;
        }


        .cta-group {
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
        }

        .btn-primary-custom {
          width: 100%;
          justify-content: center;
        }

        .testimonial-header {
          flex-direction: column;
          text-align: center;
        }

        .testimonial-header img {
          width: 56px;
          height: 56px;
        }

        .stars {
          text-align: center;
        }

        .swiper-button-prev {
          right: 65px;
        }

        .swiper-button-next {
          right: 15px;
        }
        .lead-text, .why-list {
            margin: 26px 0 -10px 0;
        }
      }

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.services-list li i {
    font-size: 0.9em;       /* icon size choto/boro kora jaay */
    line-height: 1;         /* icon er line height normalize */
}


/*xcard*/
    .contact-section {
        padding: 55px 0 60px;
    }

    .cards-layout {
      display: grid;
      grid-template-columns: 7fr 2.5fr 2.5fr;
      gap: 24px;
      min-height: 520px;
    }

    .hero-card {
      position: relative;
      border-radius: 36px;
      padding: 60px 320px 60px 70px;
      background: linear-gradient(120deg, #0079c4, #02b8dd);
      overflow: hidden;
      /*box-shadow: 0 20px 65px rgba(5, 77, 129, 0.35);*/
      color: #fff;
    }

    .hero-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.pexels.com/photos/5452201/pexels-photo-5452201.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
      opacity: 0.25;
      mix-blend-mode: screen;
    }

    .hero-card-content {
      position: relative;
      max-width: 540px;
      z-index: 1;
    }

    .hero-card h4 {
      letter-spacing: 0.35em;
      font-size: 0.85rem;
      font-weight: 600;
      opacity: 0.85;
      margin-bottom: 20px;
    }

    .hero-card h1 {
      font-size: clamp(1.75rem, 4vw, 1.75rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-card p {
      font-size: 1rem;
      line-height: 1.7;
      opacity: 0.95;
      max-width: 440px;
      margin-bottom: 28px;
    }

    .hero-card a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
    }

    .appointment-panel {
      position: absolute;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      width: 350px;
      height: 350px;
      background: #ffffff;
      border-radius: 36px;
      padding: 44px 40px;
      color: #10253e;
      /*box-shadow: 0 30px 65px rgba(8, 53, 97, 0.25);*/
      z-index: 2;
      border: 1px solid #dfe9f8;
    }

    .appointment-panel .panel-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .appointment-panel h3 {
      font-size: 1.35rem;
      letter-spacing: 0.02em;
    }

    .appointment-panel .panel-head .badge {
      width: 40px;
      height: 40px;
      border-radius: 15px;
      border: 2px solid #d7e9ff;
      display: grid;
      place-items: center;
      color: #00a0d8;
      font-size: 1rem;
    }

    .appointment-panel p {
      color: #6c7a8f;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .call-row {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 26px;
    }

    .call-row .icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: #f9a243;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.25);
    }

    .call-row strong {
      display: block;
      font-size: 0.82rem;
      letter-spacing: 0.22em;
      color: #8b95a7;
      margin-bottom: 6px;
    }

    .call-row span {
      display: block;
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f2138;
    }

    .call-row span + span {
      margin-top: 6px;
    }

.panel-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #f9a243;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(1, 101, 194, 0.3);

  position: relative; /* for shine overlay */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Sliding shine overlay */
.panel-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2); /* soft shine */
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

/* Hover shine animation */
.panel-button:hover::before {
  left: 100%;
  background: #f9a243; /* same color as button */
}

/* Lift + shadow on hover */
.panel-button:hover {
  transform: translate3d(0, -3px, 0) scale(1.02);
  box-shadow: 0 15px 30px rgba(1, 101, 194, 0.4);
}

/* Text / icon above overlay */
.panel-button span,
.panel-button i {
  position: relative;
  z-index: 1;
}


    .panel-button i {
      font-size: 0.9rem;
    }

    .info-card {
      border-radius: 28px;
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      position: relative;
      box-shadow: 0 18px 35px rgba(7, 71, 113, 0.18);
    }

    .info-card h6 {
      font-size: 0.9rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(16, 37, 62, 0.65);
    }

    .info-card h3 {
      font-size: 1.25rem;
    }

    .info-card.gradient {
      background: linear-gradient(135deg, #e3f6ff, #caebff);
      color: #0f253f;
    }

    .info-card.gradient p {
      color: #4c5b71;
      line-height: 1.7;
    }

    .info-card.gradient address {
      font-style: normal;
      color: #0a79d6;
      font-weight: 600;
      line-height: 1.5;
    }

    .info-card.teal {
      background: linear-gradient(135deg, #04b6e1, #0297d7);
      color: #fff;
    }

    .info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
    }

    .info-card li {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      padding: 12px 0;
      font-size: 0.95rem;
    }

    .info-card li:last-child {
      border-bottom: none;
    }

    .info-card .card-icon {
      position: absolute;
      top: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.35);
      color: inherit;
    }

    .info-card .link-button {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 600;
      color: inherit;
      text-decoration: none;
    }



    @media (max-width: 1400px) {
      .cards-layout {
        grid-template-columns: 5fr 3.5fr 3.5fr;
        gap: 20px;
      }

      .hero-card {
        padding: 50px 250px 50px 50px;
      }

      .appointment-panel {
        right: 24px;
        width: clamp(300px, 46%, 360px);
      }
    }

    @media (max-width: 1100px) {
      .cards-layout {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-card {
        padding-bottom: 180px;
      }

      .appointment-panel {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 110px;
      }
    }
    /* Laptop Devices: 992px - 1099px */
@media (max-width: 1099px) and (min-width: 992px) {
  .contact-section .container {
    max-width: 100% !important;
    padding: 0 41px;
  }

  .hero-card {
    padding: 50px 200px 50px 40px;
  }
.col-lg-7 {
  width: 50%;
}
  .contact-section .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .appointment-panel {
    width: 400px;
    right: 10px;
  }

  .cards-layout {
    gap: 20px;
  }
}


/* Mobile & Small Tablets: below 768px */
@media (max-width: 768px) {
  .contact-section {
    padding: 0px 0;
    margin-top: 35px;
  }
.section.contact-section.py-5 {
    margin-top: -40px;
}
  .hero-card {
    padding: 40px 30px 90px 30px;
    border-radius: 28px;
  }

  .hero-card h1 {
    font-size: 1.45rem;
  }

  .hero-card p {
    font-size: 0.95rem;
  }

  .appointment-panel {
    width: 100%;
    margin-top: 80px;
    padding: 32px 28px;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(8, 53, 97, 0.18);
  }

  .call-row span {
    font-size: 1rem;
  }

  .cards-layout {
    gap: 26px;
  }

  .info-card {
    padding: 34px 26px;
    gap: 18px;
    border-radius: 26px;
  }

  .info-card h3 {
    font-size: 1.15rem;
  }

  .info-card li {
    font-size: 0.88rem;
  }
}
/* 1. Make parent container overflow visible */
.team-slider-wrapper,
.team-slider,
.team-slider .swiper-wrapper,
.team-slider .swiper-slide {
    overflow: visible !important;
}

/* 2. Team member hover shadow & zoom */
.team-member {
    overflow: visible !important;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    z-index: 10; /* Always front */
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2); /* Visible bahire */
}

.team-member-img img {
    transition: transform 0.4s ease;
}

.team-member:hover .team-member-img img {
    transform: scale(1.1);
}
.team-section .container {
    overflow: hidden;
}

.lead {
    font-size: 15px;
    font-weight: 500;
}
.mini-about {
  margin: 0 auto;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding-top: 20px;
}

.mini-about__container {
  display: flex;
  flex-wrap: wrap;
  /*gap: 40px;*/
  align-items: center;
}

.mini-about__media {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}

.media-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

.media-circle img {
  width: 106%;
  height: 106%;
  object-fit: cover;
  transform: translateY(6px);
}

.media-badge {
  position: absolute;
  top: 8%;
  left: 8%;
  background: #fff;
  border-radius: 20px;
  padding: 12px 18px;
  font-weight: 600;
  color: #0f1d40;
  box-shadow: 0 14px 30px rgba(15, 29, 64, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4d6d, #ff6f91);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.media-floating-icon {
  position: absolute;
  bottom: 18%;
  right: 14%;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #f9a243;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  /*box-shadow: 0 25px 40px rgba(26, 118, 209, 0.3);*/
}

.media-card {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background: #fff;
  border-radius: 20px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.media-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
}

.media-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__name {
  margin: 0;
  font-weight: 600;
  color: #0f1d40;
}

.media-card__role {
  margin: 0;
  font-size: 0.8rem;
  color: #ff4d6d;
  font-weight: 600;
}

.mini-about__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #1a76d1;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.mini-about h2 {
  font-size: 44px;
  font-weight: 500;
  /*margin-bottom: 18px;*/
  color: #0f1d40;
  line-height: 1.2;
}

.lead {
  color: #4b5673;
  margin-bottom: 24px;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

.mant {
  color: #4b5673;
  margin-bottom: 31px;
  font-family: 'Inter';
  font-size: 18px;
  font-Weight: 400;
  margin-top: 27px;
  line-height: 31px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  background: #1a76d1;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0f63b7;
}
section.mini-about.container {
    margin-top: 40px;
    /* margin-bottom: 35px; */
}

@media (max-width: 1024px) {
  .mini-about {
    padding: 32px;
  }

  .mini-about__container {
    flex-direction: column;
    gap: 32px;
  }

  .mini-about__media {
    max-width: 420px;
  }
  section.mini-about.container {
    margin-top: 0px;
    margin-bottom: 0px;
}
}

@media (max-width: 600px) {
  .mini-about {
    padding: 24px 22px;
    border-radius: 22px;
    min-height: auto;
  }

  .media-card {
    padding: 12px 18px;
  }

  .media-badge {
    font-size: 0.85rem;
  }

  .feature-grid ul {
    gap: 10px;
  }

  .mini-about h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 0.9rem;
  }

  .feature-grid li {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .btn-primary {
    width: 100%;
  }
  section.mini-about.container {
    margin-top: 0px;
    margin-bottom: 0px;
    /*width: 420px;*/
}
.media-badge {
    position: absolute;
    top: 14%;
    left: 8%;
    background: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    font-weight: 600;
    color: #0f1d40;
    box-shadow: 0 14px 30px rgba(15, 29, 64, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
}


/*.testimonials {*/
/*  padding: 56px 0 !important;*/
/*}*/ 
  
 
  
  
 
 
.mantra-testimonials-section .container {
  margin-top: 50px;
}

.mantra-testimonial-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #4285f4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.mantra-testimonial-eyebrow::before,
.mantra-testimonial-eyebrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.mantra-testimonials-section h2 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 12px;
}
.mantra-testimonials-section .lead {
  color: #4e5d73;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}
.mantra-testimonial-cta-wrapper {
  margin-top: 20px;
}
.mantra-testimonial-cta-wrapper .btn {
  background: linear-gradient(135deg, #4285f4, #36d1dc);
  border: none;
  padding: 12px 30px;
  border-radius: 32px;
  font-weight: 600;
}

.mantra-testimonial-slider {
  padding: 20px 6px 30px;
}

.mantra-testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

.mantra-testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 240px;
}

/* Ensure cards are centered and have equal height */
.mantra-testimonial-slider .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: stretch;
}

.mantra-testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid rgba(18, 31, 54, 0.08);
  min-height: 240px;
}

.mantra-testimonial-rating {
  color: #f4b400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

.mantra-testimonial-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #0c1b35;
}

.mantra-testimonial-card p {
  color: #566079;
  line-height: 1.5;
  flex-grow: 1;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}

.mantra-testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.mantra-testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.mantra-testimonial-person strong {
  display: block;
  font-size: 0.9rem;
  color: #0c1b35;
  font-weight: 600;
  margin-bottom: 2px;
}

.mantra-testimonial-person span {
  font-size: 0.85rem;
  color: #8b95a6;
  display: block;
}

.mantra-testimonial-nav-btn {
  width: 52px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #f9a243;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  transition: all 0.2s ease;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(12, 27, 53, 0.4);
  opacity: 1;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: #4285f4;
  width: 26px;
  border-radius: 50px;
}

@media (max-width: 991px) {
  .mantra-testimonial-slider .swiper-wrapper {
    min-height: 250px;
  }
  .mantra-testimonial-card {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .mantra-testimonial-slider .swiper-wrapper {
    min-height: 280px;
  }
  .mantra-testimonial-card {
    margin: 0 auto;
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .mantra-testimonials-section {
    padding: 40px 0;
  }
  .mantra-testimonial-slider .swiper-wrapper {
    min-height: 300px;
  }
  .mantra-testimonial-card {
    min-height: 240px;
    padding: 18px;
  }
  .mantra-testimonial-card h4 {
    font-size: 0.95rem;
  }
  .mantra-testimonial-card p {
    font-size: 0.85rem;
  }
  .mantra-testimonial-person img {
    width: 40px;
    height: 40px;
  }
  .mantra-testimonial-person strong {
    font-size: 0.85rem;
  }
  .mantra-testimonial-person span {
    font-size: 0.8rem;
  }
  .mantra-testimonial-cta-wrapper .btn {
    width: 100%;
    padding: 10px 24px;
    font-size: 0.92rem;
  }
  .mantra-testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Desktop optimization */
@media (min-width: 1200px) {
  .mantra-testimonial-slider .swiper-wrapper {
    min-height: 260px;
  }
  .mantra-testimonial-card {
    min-height: 260px;
    padding: 24px;
  }
}


  



/*price card */
.medico-programs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0;
}

/*.medico-programs .container {*/
/*  max-width: 1040px;*/
/*}*/

/*.medico-programs .row {*/
/*  row-gap: 1.25rem;*/
/*}*/
.midsus {
  margin: 0 0;
  font-family: 'Inter';
  font-size: 15px;
  font-Weight: 500;
}
.media-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(13, 27, 42, 0.16);
  max-width: 630px;
  margin: 0 auto;
}

.media-wrapper img {
  width: 100%;
  height: auto;
  min-height: 630px;
  object-fit: cover;
  display: block;
}
p.small.text-muted.mb-0 {
    font-family: 'Inter';
    font-size: 15px;
    font-Weight: 500;
}
.media-stats {
  position: absolute;
  bottom: 60px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.14);
  font-size: 0.8rem;
}

.media-stats .label {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #1b4ed5;
}

.media-stats h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c2b64;
}

.media-stats h3 span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #5f6b7e;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 600;
  color: #081126;
  margin-bottom: 6px;
}

.section-heading .lead {
  max-width: 500px;
  color: #4b5c6c;
  line-height: 1.4;
  font-size: 0.82rem;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #1c62f2;
  display: inline-block;
  margin-bottom: 10px;
}

/*.program-grid {*/
/*  margin-bottom: 10px;*/
/*}*/

/*.program-card {*/
/*  background: #fff;*/
/*  border-radius: 12px;*/
/*  padding: 10px 12px 12px;*/
/*  border: 1px solid rgba(12, 43, 100, 0.08);*/
/*  box-shadow: 0 10px 20px rgba(13, 27, 42, 0.08);*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*  min-height: 110px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 2px;*/
/*}*/

/*.program-card:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.12);*/
/*}*/

.program-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  margin-bottom: 5px;
}

h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 4px;
}

.program-card p {
  color: #5c6677;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 5px;
  font-weight: 500;
  font-family: 'Inter';
}

.gradient-blue {
  background: linear-gradient(135deg, #4e8aff, #809bff);
}

.gradient-green {
  background: linear-gradient(135deg, #63d471, #39b385);
}

.gradient-purple {
  background: linear-gradient(135deg, #a163ff, #705dff);
}

.gradient-orange {
  background: linear-gradient(135deg, #ffb36c, #ff7b6b);
}

.gradient-berry {
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

.cta-row .btn {
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 15px;
}


.seo-note {
  font-size: 0.9rem;
  color: #4b5c6c;
  max-width: 480px;
}

@media (max-width: 991px) {
  .medico-programs {
    padding: 40px 0;
  }

  .media-wrapper img {
    height: 420px;
  }

  .media-stats {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .media-wrapper img {
    height: 320px;
  }

  .media-stats {
    inset: auto 16px 16px;
    padding: 16px;
  }

  .program-card {
    padding: 20px;
  }

  .cta-row .btn {
    width: 100%;
  }
}

/*signature*/
.signature-programs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}
.section-heading {
    margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: #0b1a34;
  margin-bottom: 10px;
}

.section-heading .lead {
  max-width: 560px;
  margin: 0 0;
  color: #4a5d73;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
}

.eyebrow {
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #1a76d1;
}

.program-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  border: 1px solid rgba(15, 29, 64, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px auto;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(8, 25, 52, 0.12);
}

.program-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.program-badge i {
  color: inherit;
  line-height: 1;
}

.gradient-strength {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
}

.gradient-mind {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-reset {
  background: linear-gradient(135deg, #5efce8, #736efe);
}

.program-cluster {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #5a6b85;
  margin-bottom: 6px;
}

.program-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e1f2e;
}


.program-title-sm {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #1c2c44;
  margin: 0;
}

.program-card ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #3c4c5f;
  font-size: 0.86rem;
  flex: 1;
}

.program-card ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 18px;
}

.program-card ul li::before {
  content: "•";
  color: #1a76d1;
  font-size: 0.9rem;
  line-height: 1;
}

.program-card ul li.has-sub {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-radius: 18px;
  padding: 2px;
  background: rgba(26, 118, 209, 0.06);
  cursor: pointer;
}

.program-card ul li.has-sub::before {
  display: none;
}

.sub-toggle {
  border: none;
  background: rgba(26, 118, 209, 0.08);
  color: #0f2440;
  font-weight: 600;
  border-radius: 16px;
  width: 100%;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sub-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.sub-toggle[aria-expanded="true"] {
  background: rgba(26, 118, 209, 0.16);
  color: #1a76d1;
}

.sub-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.program-card ul li .sub-list {
  font-size: 0.85rem;
  color: #6a7c94;
  padding-left: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 0;
}

.sub-list.collapse.show {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.program-card ul li .sub-list span {
  background: #f9a243;
  border-radius: 999px;
  padding: 6px 12px;
}

.program-link {
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* ⬅ center horizontally */
  gap: 6px;

  padding: 11px 20px;
  border-radius: 999px;
  background: #f9a243;
  cursor: pointer;
  font-size: 0.92rem;
  text-decoration: none;

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  text-align: center; /* ⬅ extra safety */
}


/* Sliding shine overlay */
.program-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.25); /* shine color */
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

/* Hover effect */
.program-link:hover::before {
  left: 100%;
  background: #f9a243;

}

/* Text stays above overlay */
.program-link span,
.program-link i {
  position: relative;
  z-index: 1;
}

/* Optional: subtle lift on hover */
.program-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: #f9a243;

}

.emoji {
  font-size: 1.1rem;
}

.seo-footnote {
  color: #3e4b58;
  font-size: 0.95rem;
}

/* Desktop view - 1600px and above - increase card content size */
@media (min-width: 1600px) {
  .program-card {
    padding: 50px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .program-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .program-cluster {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .program-card h3 {
    font-size: 1.1rem;
  }

  .program-title-sm {
    font-size: 1.05rem;
  }

  .program-card ul {
    font-size: 0.94rem;
    gap: 6px;
  }

  .program-link {
    font-size: 1rem;
    padding: 13px 24px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 3vw, 2.8rem);
  }

  .section-heading .lead {
    font-size: 1rem;
    max-width: 640px;
  }
}

/* Laptop view - 1200px to 1599px - reduce gap between cards */
@media (min-width: 1200px) and (max-width: 1599px) {
  .signature-programs .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .program-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1199px) {
  .program-card {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .signature-programs {
    padding-top: 0px;
    padding-bottom: 32px;
  }

  .program-card {
    padding: 22px;
    margin: 10px auto;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .program-card ul {
    font-size: 0.86rem;
  }

  .program-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 1.8rem;
  }

  .program-card {
    padding: 20px;
    margin: 12px auto;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .program-card ul {
    gap: 4px;
  }

  .program-link {
    font-size: 0.88rem;
  }
}
.team-section .container {
    margin-top: 45px;
}


/* Remove duplicate old see-all button CSS */
.center-btn-wrapper{
  text-align: center;
  margin-top: 40px;
}

/* See All Button */
.see-all-btn {
  background: #f9a243;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  /*box-shadow: 0px 4px 15px rgba(0,0,0,0.1);*/
}

.see-all-btn:hover {
  background: #0575b4;
  transform: translateY(-2px);
}

/* Slide itself hidden boundary */
.team-slider .swiper-slide {
  overflow: hidden;
}

/* New bottom controls styling */
.team-bottom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}

/* Arrow design */
.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f9a243;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  /*box-shadow: 0 4px 18px rgba(0,0,0,0.1);*/
}

.nav-btn:hover {
  background: #f9a243;
}

/* Custom Navigation Buttons - BOTTOM CENTER */
.custom-nav-buttons {
  position: absolute;
  bottom: -60px; /* card niche show hobe */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  justify-content: center;
  width: auto;
}

/* Custom Nav Button */
.custom-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f9a243;
  border: 2px solid #e5e7eb;
  color: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
}



.section-header .eyebrow {
  color: #4cb5ff;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #111433;
  margin: 12px 0;
}

.section-header .lead {
  color: #4e5677;
  max-width: 540px;
  margin: 0 auto;
}

.nav-pills .nav-link {
  border-radius: 999px;
  padding: 0.4rem 1.5rem;
  border: 1px solid rgba(15, 31, 62, 0.15);
  color: #475072;
  font-weight: 500;
}

.nav-pills .nav-link.active {
  background: #f9a243;
  color: #fff;
  border-color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fefefe;
  border: 1px solid rgba(15, 31, 62, 0.08);
  height: 260px;
  max-height: 300px;
  box-shadow: 0 16px 40px rgba(5, 17, 56, 0.08);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: 0.3s ease;
}

.grid-item:hover .overlay {
  opacity: 1;
}

.grid .overlay span {
  font-weight: 600;
  margin-bottom: 6px;
}

.grid .overlay p {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-family: 'Inter';
}

.grid .video {
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #0f1f52;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.grid .video .overlay {
  padding: 14px 18px;
}

/*.media-card {*/
/*  background: #f7f8ff;*/
/*  border-radius: 20px;*/
/*  padding: 22px;*/
/*  color: #2b3161;*/
/*  border: 1px solid rgba(15, 31, 62, 0.08);*/
/*  min-height: 210px;*/
/*  max-height: 280px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 10px;*/
/*  overflow: hidden;*/
/*  box-shadow: 0 16px 35px rgba(5, 17, 56, 0.08);*/
/*}*/

.media-card h4 {
  font-size: 1rem;
  color: #121741;
}

.media-card p {
  color: #59607d;
  font-size: 0.92rem;
  line-height: 1.5;
  flex-grow: 1;
}

.media-card a {
  color: #1c6fe5;
  font-weight: 600;
  text-decoration: none;
}


@media (max-width: 992px) {
  .grid {
    gap: 16px;
  }
  .why-list {
    /* list-style: none; */
    /* padding-left: 0; */
    /* margin-bottom: -70px; */
    /* margin-top: 25px; */
    margin-bottom: 0px;
}
}

@media (max-width: 576px) {
  .section-heading h2 {
    font-size: 1.8rem;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}



/*location*/
.locations {
    margin-top: 50px;
}
.section-heading .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: #3498ff;
}

.section-heading h2 {
  font-size: 44px;
  font-weight: 500;
  color: #071333;
}

.section-heading .lead {
  max-width: 620px;
  margin: 0 auto;
  color: #4f5c74;
  font-size: 0.95rem;
  font-family: 'Inter';
}

.map-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  /*box-shadow: 0 40px 60px rgba(7, 25, 62, 0.15);*/
  height: 450px;
}

.map-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
  position: absolute;
  inset: auto 0 0;
  background: rgba(7, 12, 34, 0.7);
  color: #fff;
  padding: 20px 24px;
}

.map-overlay span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #63d1ff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.location-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 25px 45px rgba(7, 25, 62, 0.08);
  border: 1px solid rgba(7, 12, 34, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  max-height: 472px;
}

.location-card .tag {
  display: inline-block;
  background: rgba(79, 153, 255, 0.12);
  color: #28aae0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}
.location-card h4 {
  font-size: 20px;
  margin: 8px 0 4px;
}

.location-card p {
  color: #5a6178;
  font-size: 15px;
  line-height: 1.4;
  flex-grow: 1;
  font-weight: 500;
  font-family: 'Inter';
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  color: #243460;
}

.contact i {
  color: #1e5df5;
  margin-right: 8px;
}

.location-card .btn {
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  color: #28aae0;
}
.location-card .btn:hover {
  background: #f9a243;
  border: none;

}

.locations .btn-primary {
  background: #f9a243;
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  /*box-shadow: 0 18px 30px rgba(26, 140, 255, 0.25);*/
}

@media (max-width: 992px) {
  .section-heading h2 {
    font-size: 2.2rem;
  }

  .location-card {
    padding: 20px;
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .section-heading .lead {
    font-size: 0.85rem;
  }

  .map-card iframe {
    height: 320px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    max-height: none;
  }

  .locations .btn-primary {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #f9a243;
}

.loss {
    font-size: 44px;
    font-Weight: 500;
}


/*4btn in footer*/
/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eee;
  z-index: 9999;
}

/* Each button */
.mobile-sticky-bar .sticky-item {
  text-decoration: none;
  color: #444;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icons */
.mobile-sticky-bar .sticky-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

/* Hover / active effect */
.mobile-sticky-bar .sticky-item:hover {
  color: #000;
}

/* Desktop এ hide */
@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

/* Body bottom space (bar overlap avoid) */
@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }
}
/*4btn in footer end*/



#menu-menus .menu-item-has-children {
    position: relative;
}

#menu-menus .sub-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    display: block;
}

#menu-menus .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    display: block;
    transition-delay: 0s;
}

#menu-menus .sub-menu {
    transition: all 0.2s ease-in-out;
}


a.ctand {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #f9a243;
    color: #f9a243;
}








        :root {
            --rf-orange: #f9a243;
            --rf-black: #000000;
            --rf-text: #333333;
        }

        .rf-hero-section {
            padding: 80px 0;
            background-color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow: hidden;
        }

        .rf-hero-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        /* --- Content Side --- */
        .rf-hero-content {
            flex: 1;
        }

        .rf-hero-top-label {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--rf-orange);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            display: block;
        }

        .rf-hero-h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--rf-black);
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .rf-hero-h1 span {
            color: var(--rf-orange);
            position: relative;
            display: inline-block;
        }

        /* Underline effect for the span */
        .rf-hero-h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(249, 162, 67, 0.2);
            z-index: -1;
        }

        .rf-hero-p {
            font-size: 1.15rem;
            color: var(--rf-text);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 550px;
        }

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

        .rf-btn-primary {
            background-color: var(--rf-orange);
            color: #fff;
            padding: 18px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(249, 162, 67, 0.2);
        }

        .rf-btn-secondary {
            background-color: var(--rf-black);
            color: #fff;
            padding: 18px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        .rf-btn-primary:hover, .rf-btn-secondary:hover {
            transform: translateY(-5px);
            opacity: 0.9;
        }

        /* --- Image Side --- */
        .rf-hero-visual {
            flex: 1;
            position: relative;
        }

        .rf-hero-img-card {
            width: 100%;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .rf-hero-img-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Decorative Circles */
        .rf-hero-visual::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 150px;
            height: 150px;
            border: 15px solid var(--rf-orange);
            border-radius: 50%;
            z-index: 1;
            opacity: 0.2;
        }

        /* --- Responsive Queries --- */
        @media (max-width: 1024px) {
            /* Laptop / Tablet View */
            .rf-hero-container { gap: 30px; }
            .rf-hero-h1 { font-size: 3.5rem; }
        }

        @media (max-width: 850px) {
            /* Tablet Portrait */
            .rf-hero-container { flex-direction: column; text-align: center; }
            .rf-hero-p { margin-left: auto; margin-right: auto; }
            .rf-hero-btns { justify-content: center; }
            .rf-hero-visual { width: 100%; max-width: 500px; }
        }

        @media (max-width: 600px) {
            /* Mobile View */
            .rf-hero-section { padding: 50px 0; }
            .rf-hero-h1 { font-size: 2.5rem; }
            .rf-hero-btns { flex-direction: column; width: 100%; }
            .rf-btn-primary, .rf-btn-secondary { width: 100%; text-align: center; }
        }





        /* Unique Prefix: ux-premium- */
        .ux-premium-section {
            padding: 40px 0;
            background-color: #ffffff;
            font-family: 'Poppins', sans-serif;
        }

        .ux-premium-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* --- Header Section (Always Centered at Top) --- */
        .ux-premium-header {
            width: 100%;
            text-align: center; /* Image er moto center layout */
            margin-bottom: 60px;
        }

        .ux-premium-sub-title {
            color: #f9a243;
            font-size: 1.1rem;
            font-weight: 600;
/*             text-transform: uppercase; */
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
        }

        .ux-premium-main-title {
            color: #1a1a1a;
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 0 auto;
            max-width: 900px; /* Text line break control korar jonno */
        }

        /* --- Content Body --- */
        .ux-premium-content-left {
            padding-right: 30px;
        }

        .ux-premium-desc {
            color: #555;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Buttons Group */
        .ux-premium-btn-wrapper {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .ux-premium-btn-primary {
            background-color: #f9a243;
            color: #ffffff !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid #f9a243;
            transition: 0.3s ease;
        }

        .ux-premium-btn-primary:hover {
            background-color: #e08b2f;
            box-shadow: 0 8px 20px rgba(249, 162, 67, 0.3);
        }

        .ux-premium-btn-secondary {
            background-color: transparent;
            color: #1a1a1a !important;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid #1a1a1a;
            transition: 0.3s ease;
        }

        .ux-premium-btn-secondary:hover {
            background-color: #1a1a1a;
            color: #ffffff !important;
        }

        /* Image Styling */
        .ux-premium-img-card {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .ux-premium-img-card img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .ux-premium-content-left { 
                text-align: center; 
                margin-bottom: 50px; 
                padding-right: 0;
            }
            .ux-premium-btn-wrapper { justify-content: center; }
        }

            .prm-pure-section {
            padding: 40px 0;
            background-color: #ffffff;
            /* Subtitle background element */
            background-image: radial-gradient(circle at 90% 10%, rgba(249, 162, 67, 0.05) 0%, transparent 40%);
        }

        .prm-pure-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Question (H3) Styling - Modern & Bold */
        .prm-pure-question-box {
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 40px;
            margin-bottom: 60px;
            position: relative;
        }

        .prm-pure-question-box::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #f9a243;
        }

        .prm-pure-question {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.1;
            margin: 0;
        }

        .prm-pure-tag {
            color: #f9a243;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            display: block;
            margin-bottom: 20px;
        }

        /* Answer (Passage) Styling - Clean & Readable */
        .prm-pure-answer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two column text for premium feel */
            gap: 80px;
        }

        .prm-pure-passage {
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            line-height: 2;
            color: #333333;
            font-weight: 400;
            text-align: justify;
        }

        /* First letter decorative style */
        .prm-pure-passage::first-letter {
            font-size: 3.5rem;
            font-weight: 700;
            color: #f9a243;
            float: left;
            line-height: 1;
            padding-right: 15px;
            font-family: 'Playfair Display', serif;
        }

        .prm-pure-passage-secondary {
            font-family: 'Inter', sans-serif;
            font-size: 1.25rem;
            line-height: 2;
            color: #666666;
            font-weight: 300;
            font-style: italic;
            border-left: 2px solid #f9a243;
            padding-left: 30px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .prm-pure-answer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .prm-pure-section { padding: 80px 0; }
            .prm-pure-question { font-size: 2.5rem; }
        }



                .cp-premium-section {
            padding: 40px 0;
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .cp-premium-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* --- Section Header --- */
        .cp-premium-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .cp-premium-main-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -1px;
            margin: 0;
        }

        /* --- Card Design --- */
        .cp-premium-card {
            background: #ffffff;
            border-radius: 25px;
            padding: 45px 40px;
            height: 100%;
            border: 1px solid #f0f0f0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Hover Effect: Orange Shadow & Border */
        .cp-premium-card:hover {
            transform: translateY(-12px);
            border-color: #f9a243;
            box-shadow: 0 25px 50px rgba(249, 162, 67, 0.15);
        }

        /* Card Category Title (Inside Card) */
        .cp-premium-category-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f9a243;
            display: inline-block;
        }

        /* --- List Items Styling --- */
        .cp-premium-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cp-premium-list-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #444;
            line-height: 1.5;
            transition: 0.3s;
        }

        .cp-premium-card:hover .cp-premium-list-item {
            color: #1a1a1a;
        }

        /* Orange Bullet Point */
        .cp-premium-bullet {
            min-width: 10px;
            height: 10px;
            background-color: #f9a243;
            border-radius: 50%;
            margin-top: 8px;
            box-shadow: 0 0 8px rgba(249, 162, 67, 0.6);
        }

        /* Subtle Background Decoration inside Card */
        .cp-premium-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 120px;
            height: 120px;
            background: #f9a243;
            opacity: 0.03;
            border-radius: 50%;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 991px) {
            .cp-premium-section { padding: 60px 0; }
            .cp-premium-card { padding: 35px 25px; }
        }






        .cp-ultra-section {
            padding: 40px 0;
            background-color: #fcfcfc;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .cp-ultra-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* --- Section Header --- */
        .cp-ultra-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .cp-ultra-main-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -1.5px;
        }

        /* --- Main Category Card --- */
        .cp-ultra-main-card {
            background: #ffffff;
            border-radius: 35px;
            padding: 50px;
            height: 100%;
            border: 1px solid #f0f0f0;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            margin-bottom: 30px;
        }

        .cp-ultra-cat-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 35px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cp-ultra-cat-title::after {
            content: '';
            height: 3px;
            flex-grow: 1;
            background: linear-gradient(to right, #f9a243, transparent);
            border-radius: 10px;
        }

        /* --- Sub-Card / Point Items --- */
        .cp-ultra-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Desktop e 2 column layout */
            gap: 20px;
        }

        .cp-ultra-item {
            background: #ffffff;
            border: 1px solid #f5f5f5;
            padding: 22px 25px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        /* --- Hover Effect: The "Orange Glow" --- */
        .cp-ultra-item:hover {
            transform: scale(1.03);
            border-color: #f9a243;
            background: #fff;
            box-shadow: 0 15px 30px rgba(249, 162, 67, 0.15); /* Orange Shadow */
            cursor: pointer;
        }

        /* Point Bullet */
        .cp-ultra-dot {
            min-width: 12px;
            height: 12px;
            background: #f9a243;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(249, 162, 67, 0.6);
            transition: 0.3s;
        }

        .cp-ultra-item:hover .cp-ultra-dot {
            transform: scale(1.3);
        }

        .cp-ultra-text {
            color: #333;
            font-size: 1.15rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
        }

        /* --- Responsive Settings --- */
        @media (max-width: 1199px) {
            .cp-ultra-main-card { padding: 40px 30px; }
            .cp-ultra-grid { grid-template-columns: 1fr; } /* Tablet/Mobile e 1 column */
        }

        @media (max-width: 768px) {
            .cp-ultra-main-title { font-size: 2.2rem; }
            .cp-ultra-cat-title { font-size: 1.5rem; }
            .cp-ultra-text { font-size: 1.05rem; }
        }
        .cp-expert-section {
            padding: 100px 0;
            background-color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow: hidden;
        }

        .cp-expert-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* --- Section Heading --- */
        .cp-expert-header {
            margin-bottom: 80px;
            max-width: 800px;
        }

        .cp-expert-tag {
            color: #f9a243;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 15px;
        }

        .cp-expert-main-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.2;
        }

        /* --- Feature Cards Grid --- */
        .cp-expert-card {
            background: #ffffff;
            border: 1px solid #f1f1f1;
            padding: 45px;
            border-radius: 30px;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
        }

        /* Hover Effect: Premium Orange Shadow */
        .cp-expert-card:hover {
            transform: translateY(-15px);
            border-color: #f9a243;
            box-shadow: 0 30px 60px rgba(249, 162, 67, 0.12);
        }

        /* Icon Wrapper */
        .cp-expert-icon-box {
            width: 70px;
            height: 70px;
            background: rgba(249, 162, 67, 0.08);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: 0.4s;
        }

        .cp-expert-card:hover .cp-expert-icon-box {
            background: #f9a243;
            transform: rotate(10deg);
        }

        /* Custom SVG Icon Styling */
        .cp-expert-icon-box svg {
            width: 32px;
            height: 32px;
            fill: #f9a243;
            transition: 0.4s;
        }

        .cp-expert-card:hover .cp-expert-icon-box svg {
            fill: #ffffff;
        }

        .cp-expert-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .cp-expert-card-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* Bottom Focus Text */
        .cp-expert-footer {
            margin-top: 80px;
            padding: 40px;
            background: #fdf8f3;
            border-radius: 25px;
            border-left: 6px solid #f9a243;
        }

        .cp-expert-footer-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
            font-style: italic;
        }

        /* Responsive Settings */
        @media (max-width: 991px) {
            .cp-expert-header { text-align: center; margin-inline: auto; }
            .cp-expert-card { padding: 35px; }
        }
        .cp-loc-section {
            padding: 40px 0;
            background-color: #f9f9f9;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .cp-loc-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* --- Section Header --- */
        .cp-loc-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .cp-loc-main-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .cp-loc-subtitle {
            color: #666;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* --- Location Card Styling --- */
        .cp-loc-card {
            background: #ffffff;
            border-radius: 25px;
            padding: 40px;
            height: 100%;
            border: 1px solid #eee;
            transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .cp-loc-card:hover {
            transform: translateY(-12px);
            border-color: #f9a243;
            box-shadow: 0 25px 50px rgba(249, 162, 67, 0.15);
        }

        /* Icon & Branch Name */
        .cp-loc-icon-group {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .cp-loc-pin {
            width: 50px;
            height: 50px;
            background: rgba(249, 162, 67, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9a243;
            font-size: 1.5rem;
            transition: 0.4s;
        }

        .cp-loc-card:hover .cp-loc-pin {
            background: #f9a243;
            color: #fff;
        }

        .cp-loc-branch-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin: 0;
        }

        /* Address Details */
        .cp-loc-address {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            flex-grow: 1;
        }

        /* Contact Info */
        .cp-loc-contact {
            padding-top: 25px;
            border-top: 1px dashed #ddd;
        }

        .cp-loc-phone {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 8px;
            transition: 0.3s;
        }

        .cp-loc-phone:hover {
            color: #f9a243;
        }

        /* Phone Icon SVG */
        .cp-loc-phone-svg {
            width: 20px;
            height: 20px;
            fill: #f9a243;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .cp-loc-section { padding: 60px 0; }
            .cp-loc-card { padding: 30px; }
        }

            .cp-faq-section {
            padding: 40px 0;
            background-color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .cp-faq-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cp-faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .cp-faq-main-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -1px;
        }

        /* --- Accordion Styling --- */
        .cp-faq-accordion .accordion-item {
            border: 1px solid #f0f0f0;
            border-radius: 20px !important;
            margin-bottom: 20px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Active Item: Orange Shadow & Border */
        .cp-faq-accordion .accordion-item:has(.show) {
            border-color: #f9a243;
            box-shadow: 0 15px 35px rgba(249, 162, 67, 0.1);
        }

        .cp-faq-accordion .accordion-button {
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            background-color: #ffffff;
            border: none;
            box-shadow: none !important; /* Blue outline bondho kora holo */
            display: flex;
            align-items: center;
        }

        /* Q-Indicator Indicator */
        .cp-faq-accordion .accordion-button::before {
            content: 'Q';
            width: 30px;
            height: 30px;
            background: rgba(249, 162, 67, 0.1);
            color: #f9a243;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .cp-faq-accordion .accordion-button:not(.collapsed) {
            color: #f9a243;
        }

        .cp-faq-accordion .accordion-button:not(.collapsed)::before {
            background: #f9a243;
            color: #fff;
        }

        /* Custom Icon */
        .cp-faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f9a243'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.51 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            background-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .cp-faq-accordion .accordion-body {
            padding: 0 30px 30px 75px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
        }

        /* Content open korar somoy height jump fix */
        .collapsing {
            transition: height 0.35s ease !important;
        }

        @media (max-width: 768px) {
            .cp-faq-accordion .accordion-button { padding: 20px; font-size: 1.1rem; }
            .cp-faq-accordion .accordion-body { padding: 0 20px 20px 20px; }
        }

                .cp-lux-wrapper {
            padding: 60px 0;
            background-color: #fdfdfd;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #1a1a1a;
        }

        .cp-lux-container {
            max-width: 1630px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Section 1: Booking --- */
        .cp-lux-booking-box {
            background: #ffffff;
            padding: 40px;
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.04);
            margin-bottom: 30px;
            position: relative;
            border: 1px solid rgba(0,0,0,0.02);
        }

        .cp-lux-h2 {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
            letter-spacing: -0.8px;
        }

        .cp-lux-p {
            font-size: 1.05rem;
            color: #5a5a5a;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cp-lux-call-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #f9a243;
            color: #fff;
            padding: 16px 32px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cp-lux-call-link:hover {
            background: #1a1a1a;
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(249, 162, 67, 0.2);
        }

        /* --- Section 2: Final Note --- */
        .cp-lux-note-box {
            background: #ffffff;
            padding: 30px 40px;
            border-radius: 28px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            border-left: 6px solid #f9a243; /* Accent Bar */
            position: relative;
        }

        .cp-lux-note-head {
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            color: #f9a243;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .cp-lux-note-body {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            line-height: 1.7;
            margin: 0;
            font-style: italic;
            opacity: 0.9;
        }

        /* Subtle Background Decoration */
        .cp-lux-booking-box::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(249, 162, 67, 0.08) 0%, transparent 70%);
            z-index: -1;
        }

        @media (max-width: 600px) {
            .cp-lux-booking-box, .cp-lux-note-box { padding: 30px 25px; }
            .cp-lux-h2 { font-size: 1.5rem; }
        }


.cp-expert-icon-box i {
    color: #f9a243;
    transition: all 0.3s ease; 
}

.cp-expert-card:hover .cp-expert-icon-box {
    background-color: #f9a243;
}

.cp-expert-card:hover .cp-expert-icon-box i {
    color: #ffffff !important;
}
.cp-loc-pin i {
    color: #f9a243;
    transition: all 0.3s ease;
}

.cp-loc-card:hover .cp-loc-pin i {
    color: #ffffff !important;
}
.cp-loc-card:hover .cp-loc-pin {
    background-color: #f9a243;
    border-color: #f9a243;
}



.cp-faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

.cp-faq-accordion .accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0,0,0,.125); 
}

.cp-faq-accordion .accordion-button:after {
    filter: none !important;
}


/* WhatsApp এবং Tawk.to এর সাইজ ও পজিশন ম্যাচিং */
.mantra-whatsapp-left {
    position: fixed;
    bottom: 25px; /* নিচ থেকে দূরত্ব */
    left: 25px;   /* বাম থেকে দূরত্ব */
    background-color: #03a84e !important; /* Tawk.to এর সাথে ম্যাচ করা কালার */
    color: #fff !important;
    width: 60px !important;  /* Tawk.to বাবল সাইজ */
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none !important;
}

.mantra-whatsapp-left i {
    font-size: 34px !important; /* আইকন সাইজ */
}

/* মোবাইলে পজিশন ঠিক রাখা */
@media (max-width: 600px) {
    .mantra-whatsapp-left {
        bottom: 20px !important; /* আপনার মোবাইল মেনুর ঠিক উপরে */
        left: 20px !important;
        width: 60px !important;
        height: 60px !important;
    }
}

/* Tawk.to উইজেটকেও একই উচ্চতায় আনা */
#tawk-chat-container, 
iframe[title="chat widget"],
.tawk-min-container {
    bottom: 25px !important; /* ডেস্কটপে */
    left: auto !important;
    right: 25px !important; /* Tawk.to সাধারণত ডানে থাকে */
}

@media (max-width: 600px) {
    #tawk-chat-container, 
    iframe[title="chat widget"] {
        bottom: 80px !important; /* মোবাইলে WhatsApp এর সমান উচ্চতায় */
    }
    
}

