/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #003b95;
  --secondary: #ed1d25;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Schibsted Grotesk", sans-serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
  font-family: "Schibsted Grotesk", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Schibsted Grotesk", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */
/* Mouse Cursor Css End  */

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 204, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  transform: translate(-60%, -60%);
  background: rgba(255, 204, 0, 0.05);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px var(--secondary);
  transition: all 0.05s ease;
}

/* Hover */
.cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 204, 0, 0.15);
  border-color: var(--primary);
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 20px var(--secondary);
}

/* Click */
.cursor.click {
  width: 30px;
  height: 30px;
  background: rgba(255, 204, 0, 0.3);
}

.cursor-dot.click {
  width: 6px;
  height: 6px;
}

/* Hide on mobile */

/* Mouse Cursor Css End  */

.demo-btn {
  padding: 15px 30px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 100px;
  font-size: 18px;
}

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */
/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 14px;
  border-radius: 30px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 3.125rem 0.75rem 0.625rem;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.mainHead {
  font-size: 3rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.16;
}

.subHead {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.6;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  text-transform: capitalize;
  width: 100%;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  /* width: 100%; */
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
  position: relative;
  transition: color 0.35s ease;
}

/* underline */
.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #1e89df;
  /* blue line */
  transition: width 0.35s ease;
}

/* hover effect */
.navbar-nav .nav-item .nav-link:hover {
  color: #1e89df;
}

.navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--secondary);
}

.navbar .form-inline {
  gap: 10px;
  margin-left: 100px;
}

.navbar .form-inline li a i {
  border: 1px solid #e7e2e2;
  height: 3.25rem;
  width: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #000;
  font-size: 1.3rem;
}

.navbar .form-inline li a .different {
  height: 2.125rem;
  width: 2.125rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background-color: #fff;
  font-size: 0.9rem;
}

.navbar .form-inline li .themeBtn {
  padding: 0.75rem 1.875rem 0.75rem 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #003b95;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.4s ease;
}

.navbar .form-inline li .themeBtn i {
  height: 2.125rem;
  width: 2.125rem;
  background-color: #fff;
  color: #166fc0;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: transform 0.6s ease, color 0.4s ease;
}

.navbar .form-inline li .themeBtn:hover {
  background-color: #ff0000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.navbar .form-inline li .themeBtn:hover i {
  transform: rotate(360deg);
  color: #ff0000;
}

.form-inline li a {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
}

.navbar .container-fluid {
  margin: 0 5.625rem 0 5.625rem;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */
.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  color: #000000;
  font-size: 5rem;
  line-height: 1;
  font-weight: 500;
  margin: 0.625rem 0 1.25rem;
  text-transform: capitalize;
}

.main-slider p {
  color: #555555;
  font-weight: 400;
  line-height: 1.2;
  margin: 0.625rem 0;
  font-size: 1.25rem;
  margin-bottom: 1.5625rem;
}

.slideOne {
  background: url(../images/mainsub.png) no-repeat center / cover;
  padding: 3.875rem 4rem 3.3125rem 6.25rem;
  border-radius: 20px;
  height: 50rem;
}

.slideOne .subHead {
  background-color: #fff;
  border-radius: 30px;
  width: fit-content;
}

.hero-img img {
  border-radius: 20px;
  height: 30.625rem;
  object-fit: cover;
  width: 100%;
}

/* --- Aapka Existing Code (Base) --- */
.slideOne .btn-group .themeBtn i {
  background-color: #fff;
  height: 2.125rem;
  width: 2.125rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #000;
  transition: all 0.4s ease;
}

.slideOne .btn-group .themeBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 30px;
  background-color: #003b95;
}

.slideOne .btn-group {
  display: flex;
  gap: 1.25rem;
  margin: 3rem 0 0;
}

.slideOne .btn-group a.themeBtn:nth-child(2) {
  background: #f1eaee;
  color: #000;
}

.slideOne .btn-group a.themeBtn:nth-of-type(2) i {
  color: #fff;
  background-color: var(--secondary);
}

.slideOne .btn-group a.themeBtn:nth-child(1):hover {
  background-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slideOne .btn-group a.themeBtn:nth-child(2):hover {
  background-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

.slideOne .btn-group .themeBtn:hover i {
  transform: rotate(360deg);
  background-color: #000;
  color: #fff;
}

.slideOne .btn-group a.themeBtn:nth-child(2):hover i {
  background-color: #fff;
  color: var(--secondary);
}

.banner-logo {
  height: 12.5rem;
  width: 12.5rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background-color: #ed1d25;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
}

/* !MAIN HERO SLIDER CSS */

/* Drop-Down Css Start */
/* Drop-Down Css End  */

/* Faq Sec Css Start */
/* Faq Sec Css End  */

/* marquee sec start  */

.marquee {
  padding: 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: white;
  padding: 3.75rem 0 3.75rem 0;
  border-bottom: 1px solid #e7e2e2;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  margin: 0 2.5rem 0 2.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: #999999;
  font-size: 1.2rem;
}

.marquee-item .img-placeholder {
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.625rem;
  background-color: #ddd;
  border-radius: 5px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* marquee sec end  */

/* who-sec start  */
.who-sec p {
  color: #555555;
  width: 33rem;
}

.who-sec .row {
  margin-bottom: 2.5rem;
}

.who-sec .subHead {
  padding-left: 0;
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.left-col,
.right-col {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}

.center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.small-img img,
.big-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.left-col .small-img img,
.right-col .small-img img {
  max-height: 25rem;
}

.center-col .big-img img {
  height: 37.5rem;
}

.small-card {
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  padding: 1.875rem 1.25rem 1.875rem 1.25rem;
  text-align: center;
  font-weight: 600;
  transition: 0.6s ease;
}

.small-card.red-card {
  background: url("../images/who-bg2.webp") center/cover no-repeat;
}

.small-card.blue-card {
  background: url("../images/who-bg.webp") center/cover no-repeat;
  border-radius: 20px;
}

.small-card .number {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
}

.small-card .text {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 500;
}

/* who-sec end  */

/* comprehensive-sec start  */
.comprehensive-sec {
  background: url(../images/quality-bg.webp) center/cover no-repeat;
  border-radius: 40px;
}

.comprehensive-sec .subHead {
  justify-content: center;
  color: #fff;
}

.comprehensive-sec .mainHead {
  width: 100%;
  text-align: center;
  color: var(--white);
}

.main-box {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  justify-content: space-between;
}

.main-box .right-content figure img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 26.5rem;
}

.main-box .flex-side {
  display: flex;
  justify-content: space-between;
  /* gap: 7rem; */
}

.main-box .number h6 {
  color: #999999;
  font-size: 1.25rem;
  font-weight: 500;
}

.main-box .left-content {
  padding: 2.5rem 3rem 2.375rem 2.5rem;
  display: flex;
  flex-direction: column;
  /* height: 300px; */
  justify-content: space-between;
  gap: 5rem;
}

.main-box h4 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.625rem;
  white-space: nowrap;
}

.bottom-text p {
  font-size: 1rem;
  color: #555555;
  font-weight: 400;
  margin-bottom: 1.125rem;
  border-top: 1px solid #5555555e;
  padding-top: 1rem;
  width: 20rem;
}

.bottom-text .themeBtn {
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 0.625rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.bottom-text .themeBtn:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--secondary);
}

.bottom-text .themeBtn i {
  color: #fff;
  background-color: var(--secondary);
  height: 2.125rem;
  width: 2.125rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: transform 0.5s ease;
}

.bottom-text .themeBtn:hover i {
  transform: rotate(360deg);
}

section.comprehensive-sec .swiper-wrapper {
  margin-top: 2.5rem;
}

/* comprehensive-sec end  */

/* choose-sec start  */
.choose-sec .subHead {
  padding-left: 0;
}

.choose-sec p {
  color: #555555;
  font-size: 1rem;
}

.choose-sec .video {
  position: relative;
  margin-top: 2.5rem;
}

.choose-sec .video i {
  background-color: var(--secondary);
  color: var(--white);
  width: 12.5rem;
  height: 12.5rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.6s ease;
}

.choose-sec .choose-box {
  display: flex;
  gap: 1.25rem;
}

.choose-sec .choose-box .icon figure img {
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}

.choose-sec .choose-text h6 {
  font-size: 1.5rem;
  font-weight: 500;
  width: 17rem;
}

.choose-sec .choose-text p {
  font-size: 1rem;
  color: #555555;
  width: 15rem;
}

.choose-sec .choose-bottom .row {
  margin-top: 5rem;
}

/* choose-sec end  */

/* --- Section vlji1 --- */
.programs-partners-section {
  padding: 5rem 0 5rem 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #fffbfb 50%, #ffe6e7 100%);
  position: relative;
  overflow: hidden;
  margin: 0 0.9375rem 0 0.9375rem;
  border-radius: 40px;
}

/* Subtle Hex pattern overlay simulation (optional) */
.programs-partners-section::before {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: -6.25rem;
  width: 25rem;
  height: 25rem;
  background-image: radial-gradient(#e9e9e9 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
}

.icon-shape::after {
  /* content: ''; */
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: #4a6fdc;
}

/* Image Composition */
.img-composition-wrapper {
  position: relative;
  height: auto;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  z-index: 1;
}

.img-front {
  position: absolute;
  bottom: -10%;
  left: 0;
  /* width: 55%; */
  z-index: 1;
  /* border: 5px solid #fff; */
  border-radius: 15px;
}

.rounded-custom {
  border-radius: 15px;
}

/* Timeline List */
.timeline-wrapper {
  position: relative;
  padding-left: 1.25rem;
}

/* Vertical Line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 2.8125rem;
  top: 1.5625rem;
  bottom: 3.125rem;
  width: 1px;
  background: linear-gradient(to bottom, #ef3e4a 0%, #ffc1c1 100%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 3.75rem;
  height: 3.125rem;
  background-color: #ef3e4a;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 1.5rem;
  /* box-shadow: 0 4px 10px rgba(239, 62, 74, 0.3); */
  margin-right: 1.5625rem;
  font-family: "Schibsted Grotesk";
}

.timeline-content {
  padding-top: 5px;
}

.timeline-title {
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-family: "Schibsted Grotesk";
}

.timeline-desc {
  color: #555555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Section 1aea3a --- */
.care-moments-section {
  background-color: #fff;
  padding: 5rem 0 !important;
}

.care-moments-section .gallery-subtitle {
  color: #3b76bb;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.care-moments-section .section-title {
  font-size: 2.5rem;
  color: #000;
  line-height: 1.2;
  margin-top: 5px;
}

.care-moments-section .section-desc {
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
  width: 91%;
}

.care-moments-section .rounded-custom {
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.care-moments-section .rounded-custom:hover {
  transform: translateY(-5px);
}

/* Custom 5 Column Layout for Large Screens */
@media (min-width: 1200px) {
  .care-moments-section .col-five {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .care-moments-section .col-five {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 767px) {
  .care-moments-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .care-moments-section .section-desc {
    max-width: 100%;
  }
}

/* --- Section xfy327 --- */
.grad-testimonials-sec-99 {
  background: url(../images/bgimg.png) center/cover no-repeat;
  border-radius: 30px;
  margin: 0 0.625rem;
}

.trusted-head p {
  color: #fff;
  margin: 1rem auto 0;
  width: 80%;
}

.testiThumb .swiper-slide-thumb-active .profile-pill {
  background-color: var(--secondary) !important;
}

.testiThumb .swiper-slide-thumb-active .profile-pill h6 {
  color: #fff;
}

.testiThumb .swiper-slide-thumb-active .profile-pill .text-muted {
  color: #fff !important;
}

.grad-testimonials-sec-99 .gradient-wrapper {
  background: rgb(0, 56, 101);
  background: linear-gradient(100deg,
      rgba(0, 56, 101, 1) 0%,
      rgba(93, 48, 88, 1) 50%,
      rgba(204, 40, 40, 1) 100%);
  border-radius: 30px;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Background Patterns Simulation */
.grad-testimonials-sec-99 .bg-pattern-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px,
      transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
}

.grad-testimonials-sec-99 .bg-pattern-hex {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      transparent 20%,
      rgba(255, 255, 255, 0.03) 20%,
      rgba(255, 255, 255, 0.03) 80%,
      transparent 80%),
    radial-gradient(circle,
      transparent 20%,
      rgba(255, 255, 255, 0.03) 20%,
      rgba(255, 255, 255, 0.03) 80%,
      transparent 80%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  transform: rotate(30deg);
  pointer-events: none;
}

.grad-testimonials-sec-99 .content-inner {
  position: relative;
  z-index: 2;
}

.grad-testimonials-sec-99 .top-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.grad-testimonials-sec-99 .main-heading {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.grad-testimonials-sec-99 .quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  font-family: "Schibsted Grotesk";
  margin: 3rem 0;
}

.grad-testimonials-sec-99 .profile-pill {
  display: flex;
  align-items: center;
  padding: 1.25rem 0.9375rem 1.25rem 0.9375rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0px 0 0 0.875rem;
}

.grad-testimonials-sec-99 .profile-pill.bg-white {
  background-color: #fff;
  color: #333;
}

.grad-testimonials-sec-99 .profile-pill.active-pill {
  background-color: #ed1c24;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.grad-testimonials-sec-99 .profile-img {
  width: 3.25rem;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.grad-testimonials-sec-99 .profile-info h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px !important;
}

.grad-testimonials-sec-99 .profile-info small {
  font-size: 0.75rem;
  display: block;
  line-height: 1;
}

.grad-testimonials-sec-99 .profile-pill.active-pill .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.grad-testimonials-sec-99 .subHead {
  justify-content: center;
}

/* --- Section 4v96lc --- */
.health-news-wrapper-sec {
  background-color: #fff;
}

.health-news-wrapper-sec .sub-header {
  color: #0056b3;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.health-news-wrapper-sec .main-heading {
  font-size: 3rem;
  font-weight: 500;
  color: #111;
  margin-top: 0.625rem;
  line-height: 1.1;
}

/* Card Common Styles */
.health-news-wrapper-sec .news-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-news-wrapper-sec .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Featured Card (Left) */
.health-news-wrapper-sec .featured-card {
  background-color: #000;
  min-height: 25rem;
}

.health-news-wrapper-sec .featured-card .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.85;
  transition: 0.6s ease;
}

.health-news-wrapper-sec .featured-card:hover .bg-image {
  opacity: 0.7;
  transform: scale(1.02);
}

.health-news-wrapper-sec .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.health-news-wrapper-sec .featured-card h3 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  font-family: "Schibsted Grotesk";
}

.health-news-wrapper-sec .meta-info {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Standard Cards (Right) */
.health-news-wrapper-sec .standard-card .img-wrapper img {
  border-radius: 20px;
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.health-news-wrapper-sec .meta-row {
  font-size: 0.75rem;
}

.health-news-wrapper-sec .category {
  color: #ff4d4d;
}

.health-news-wrapper-sec .article-title {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.4;
  font-family: "Schibsted Grotesk";
  font-weight: 500;
  margin-bottom: 0.275rem !important;
}

.health-news-wrapper-sec .article-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.health-news-wrapper-sec .read-more-link {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.health-news-wrapper-sec .icon-circle {
  width: 1.75rem;
  height: 1.75rem;
  background-color: #ff2d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.health-news-wrapper-sec .read-more-link:hover .icon-circle {
  background-color: #d60000;
}

.health-news-wrapper-sec .read-more-link:hover .link-text {
  color: #ff2d2d;
}

/* --- Section ncq3te --- */
.turehelp-footer-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff0f4 100%);
  color: #555;
  border-radius: 30px 30px 0 0;
  margin: 1px 1.25rem 1.25rem 1.25rem;
  padding: 6.1875rem 1.875rem 0 2.5rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5625rem;
}

.footer-contact-list li,
.footer-links li {
  font-size: 1rem;
  line-height: 2;
  color: #666;
  color: #555555;
  font-weight: 400;
}

.footer-links a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.footer-links a:hover {
  color: #d32f2f;
}

/* Newsletter Banner Styles */
.newsletter-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, #8b2d36 0%, #4a3b52 50%, #212f4d 100%);
  min-height: 15.625rem;
  /* Using a radial gradient to simulate the dots/hex pattern simply with CSS */
  background-image: linear-gradient(90deg, #963032 0%, #293855 100%),
    radial-gradient(circle at 80% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: cover, 10px 10px;
  padding: 0 2rem 2rem 2rem;
}

/* Simulate the hexagon pattern on the left roughly with a repeating gradient if needed, keeping it simple for pure CSS */
.newsletter-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-image: radial-gradient(circle,
      transparent 20%,
      #963032 20%,
      #963032 80%,
      transparent 80%,
      transparent),
    radial-gradient(circle,
      transparent 20%,
      #963032 20%,
      #963032 80%,
      transparent 80%,
      transparent) 25px 25px,
    linear-gradient(#a3383a 2px, transparent 2px) 0 -1px,
    linear-gradient(90deg, #a3383a 2px, #963032 2px) -1px 0;
  background-size: 50px 50px, 50px 50px, 25px 25px, 25px 25px;
  opacity: 0.1;
  pointer-events: none;
}

.newsletter-title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  font-family: "Schibsted Grotesk";
}

.newsletter-form input.form-control {
  height: 3.125rem;
  padding-left: 1.25rem;
  border: none;
  font-size: 0.95rem;
}

.newsletter-form input.form-control:focus {
  box-shadow: none;
}

.theme-btn-subscribe {
  top: 5px;
  right: 5px;
  bottom: 5px;
  background-color: #ed2f2f;
  border: none;
  padding: 0 1.5625rem 0 1.5625rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.theme-btn-subscribe:hover {
  background-color: #c62828;
}

.newsletter-img {
  max-height: 18.75rem;
  object-fit: cover;
  /* Negative margin to align image to bottom if needed, or flex alignment */
  margin-bottom: -3rem;
  position: relative;
  top: 0;
}

.copyright-section a {
  transition: color 0.2s;
}

.copyright-section a:hover {
  color: #333 !important;
  text-decoration: underline;
}

.profile-pill.active-pill .profile-info h6 {
  color: #fff;
}

section.programs-partners-section .subHead {
  justify-content: center;
}

@keyframes autoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: autoRotate 3s linear infinite;
}

.small-card:hover {
  transform: scale(0.95);
}

img.img-fluid.footer1 {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

img.img-fluid.footer2 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.copyright-section {
  margin-top: 1rem;
}

.gradient-wrapper .subHead {
  justify-content: center;
}

p.text-white-50.mb-2.small {
  font-size: 1rem;
  color: var(--white) !important;
}

/* New Imag Shine Css Start */

/* Image container */
.img-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
}

.img-shine img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Common shine base */
.img-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Shine Styles --- */

/* 1. Horizontal */
.style-horizontal::after {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-100%);
  animation: shine-horizontal 3s linear infinite;
}

@keyframes shine-horizontal {
  to {
    transform: translateX(100%);
  }
}

/* 2. Reverse */
.style-reverse::after {
  background: linear-gradient(-90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(100%);
  animation: shine-reverse 3s linear infinite;
}

@keyframes shine-reverse {
  to {
    transform: translateX(-100%);
  }
}

/* 3. Dual */
.style-dual::after {
  background: repeating-linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 10%,
      rgba(255, 255, 255, 0) 20%);
  transform: translateX(-100%);
  animation: shine-dual 4s linear infinite;
}

@keyframes shine-dual {
  to {
    transform: translateX(100%);
  }
}

/* 4. Pulse */
.style-pulse::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 65%);
  transform: translateX(-100%);
  animation: shine-pulse 3s ease-in-out infinite;
}

@keyframes shine-pulse {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* 5. Wave */
.style-wave::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  animation: shine-wave 1.8s ease-in-out infinite;
}

@keyframes shine-wave {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* New Imag Shine Css End  */

/* --- Section l8ssv --- */

.text-primary-custom {
  color: #003b95;
  font-size: 0.875rem;
  font-weight: 600 !important;
  text-transform: capitalize !important;
}

.logo-icon i {
  color: #e8505b;
}

.main-title {
  font-size: 3rem;
  font-weight: 500;
  color: #000;
  letter-spacing: -1px;
  line-height: 1.2;
}

.description {
  line-height: 1.6;
  color: #555555 !important;
  width: 62%;
}

.small-text {
  line-height: 1.5;
  color: #556171 !important;
  width: 68%;
}

.icon-box {
  height: 5rem;
  width: 5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #f3f3ff;
  flex-shrink: 0;
}

.feature-title {
  color: #0b1030;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 0.5rem 0;
}

.btn-custom {
  background-color: #003b95;
  color: #fff;
  border-radius: 50px;
  padding: 0.625rem 1.5625rem 0.75rem 0.625rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1rem 0 0 0;
}

.btn-custom:hover {
  background-color: #002a6b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-icon-circle {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  color: #003b95;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.image-composition {
  position: relative;
  padding-left: 1.875rem;
  /* Space for the overlay float */
  padding-bottom: 1.875rem;
}

.main-img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
}

.overlay-img-wrapper {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 55%;
  border-radius: 20px;
  border: 10px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
}

/* Program Sec Css Start */
.program-sec {
  background: url(../images/pbg.png) center/cover no-repeat;
  padding: 7rem 0 6rem;
  margin: 1rem 0.925rem 1rem 0.925rem;
  border-radius: 26px;
}

.top-heading {
  text-align: center;
  margin: 0 0 3.125rem 0;
}

.top-heading .subHead {
  justify-content: center;
  color: var(--white);
}

.top-heading .subHead img {
  filter: brightness(0) invert(1);
}

.top-heading .mainHead {
  color: var(--white);
}

.program-main {
  position: relative;
}

.program-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #0b1030;
  letter-spacing: -0.2px;
}

.program-content a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #003b95;
  display: block;
  border-bottom: 1px solid #003b95;
  width: fit-content;
  margin: 1.25rem auto 0;
}

.program-content {
  background-color: var(--white);
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 15rem;
  height: 7.625rem;
  bottom: -5rem;
  padding: 1.625rem 2.3125rem 1.25rem 1.875rem;
  border-bottom: 2px solid #ed1d25;
  border-radius: 26px;
  border-top: 1px solid #d2d6da;
  border-left: 1px solid #d2d6da;
  border-right: 1px solid #d2d6da;
}

.program-content button {
  background: unset;
  border: unset;
  outline: unset;
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.program-content button:hover,
.program-content button:focus {
  all: unset;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

.program-img img {
  border-radius: 26px;
}

.programslider {
  padding: 0 0 5rem 0;
}

.program-sec .swiper-button-next:after,
.program-sec .swiper-button-prev:after {
  display: none;
}

.program-sec .swiper-button-next,
.program-sec .swiper-button-prev {
  height: 3.375rem;
  width: 3.375rem;
  border: 1px dashed;
  border-radius: 50px;
  color: var(--white);
  transition: 0.6s ease;
  top: 4rem;
  bottom: 0;
  margin: auto;
}

.program-sec .swiper-button-next:hover,
.program-sec .swiper-button-prev:hover {
  background-color: var(--white);
  color: var(--primary);
}

.program-sec .swiper-button-next {
  left: unset;
  right: 8%;
}

.program-sec .swiper-button-prev {
  left: 8%;
  right: unset;
}

/* Program Sec Css End */

/* Trust Sec Css Start */

.trust-sec {
  background: url(../images/trustbg.png) center/cover no-repeat;
  margin: 6rem 13.125rem 0;
  padding: 0;
  border-radius: 26px;
}

.trust-img {
  position: relative;
  margin: -11rem 0 0 0;
  z-index: 11;
}

.trust-content {
  text-align: center;
}

.trust-content h2 {
  font-size: 2.875rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  letter-spacing: -0.92px;
  margin: 0 0 1.26rem 0;
}

.trust-content .themeBtn {
  padding: 1rem 10.9375rem;
  margin: 0 0 1rem 0;
}

.trust-content p {
  text-align: start;
  color: var(--white);
  font-size: 0.75rem;
}

.trust-content p span {
  font-weight: bold;
}

/* Trust Sec Css End */

/* --- Section 17o494 --- */

.footer-rounded-wrapper {
  background-color: #08204e;
  border-radius: 40px;
  padding: 3.75rem 2.5rem 1.25rem 2.5rem;
  color: #fff;
}

/* Typography */
.footer-heading {
  font-weight: 600;
  font-size: 1.25rem;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: -0.4px;
}

.footer-desc {
  line-height: 1.6;
  color: var(--white);
  width: 80%;
}

/* Links List with Red Dots */
.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0.9375rem;
}

.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-color: #f12b36;
  border-radius: 50%;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Contact Icons */
.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f12b36;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info a,
.contact-info span {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

/* Divider & Socials */
.line {
  height: 1px;
  background-color: #17386b;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f12b36;
  text-decoration: none;
  transition: transform 0.2s;
  font-size: 1.1rem;
}

.social-btn:hover {
  transform: translateY(-3px);
  color: #f12b36;
}

/* Bottom Footer */
.copyright-row small {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
}

.bottom-link {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
}

.bottom-link:hover {
  color: #fff;
  text-decoration: none;
}

.bullet-separator {
  color: #f12b36;
  margin: 0 5px;
}

section.custom-footer-section {
  padding: 0;
  margin: 0 3.125rem 2.1875rem 3.125rem;
}

.content-section {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
}

.brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
}

.brand-text {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mission-text {
  font-size: 1.125rem;
  color: #373737;
  line-height: 1.7;
  width: 60%;
  margin-bottom: 50px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.service-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.service-icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.75rem;
}

.icon-1 {
  background: #fef5f5;
  color: #e53e3e;
}

.icon-2 {
  background: #fef5ff;
  color: #b83280;
}

.icon-3 {
  background: #fef5f5;
  color: #e53e3e;
}

.service-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 1rem;
  color: #373737;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2b6cb0;
  color: white;
  padding: 1.125rem 2.5rem 1.125rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.cta-button:hover {
  background: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.arrow {
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b6cb0;
  font-size: 0.875rem;
}

.images-section {
  position: relative;
  height: 43.75rem;
}

.image-wrapper {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
  right: 0;
  top: 0;
  width: 32.5rem;
  height: 43.75rem;
}

.secondary-image {
  left: 0;
  bottom: 3.125rem;
  width: 21.875rem;
  height: 17.5rem;
  z-index: 2;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.containers {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}

.spsx {
  width: 3.75rem;
}

.newem {
  background-color: #fff;
  padding: 0.625rem 0.625rem 0.625rem 0.625rem;
  color: #003b95;
  border-radius: 100%;
  margin-right: 1.25rem;
}

.innerslideone {
  background: url(../images/innerbg1.png) no-repeat center / cover;
  padding: 3.875rem 4rem 3.3125rem 6.25rem;
  border-radius: 20px;
  height: 31.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.trust-sec.trust-services {
  margin-bottom: 6rem;
}

.healthcare-section {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
}

/* Image Styling */
.rounded-custom {
  border-radius: 24px;
  object-fit: cover;
}

/* Card Styling */
.service-card {
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 24px;
  /* The red bottom border */
  border-bottom: 5px solid #e31e24;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  /* Subtle shadow matching design */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Icon Box Styling */
.icon-box {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  background-color: #f3f4fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon {
  color: #e31e24;
  /* Outlined look via text-stroke if supported or relying on font weight */
  opacity: 0.8;
}

/* Typography */
.service-title {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1.5rem;
}

.service-desc {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Read More Button Styling */
.read-more-link {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  transition: opacity 0.3s;
  text-transform: capitalize;
}

.read-more-link:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #000;
}

.arrow-circle {
  width: 2rem;
  height: 2rem;
  background-color: #e31e24;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.servtop {
  text-align: center;
  margin-bottom: 2rem;
}

.servtop .subHead {
  margin: auto;
  text-align: center;
  width: fit-content;
}

section.healthcare-section .row+.row {
  margin-top: 4rem;
}

.serve-program {
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.program-card11 {
  position: relative;
  border: none;
  margin-bottom: 1.875rem;
}

.program-img-wrapper img {
  border-radius: 30px;
  object-fit: cover;
  height: 26.25rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.program-content11 {
  background: #fff;
  width: 85%;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  border-radius: 25px;
  padding: 1.875rem 1.25rem 1.875rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid #dc3545;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.program-content11:hover {
  transform: translateY(-5px);
}

.program-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a40;
  margin-bottom: 0.9375rem;
  line-height: 1.4;
}

.program-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.program-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c5ba5;
  text-decoration: underline !important;
  transition: color 0.2s;
}

.program-link:hover {
  color: #dc3545;
  text-decoration: underline !important;
}

.loan-products-section {
  padding: 5rem 6rem;
  background-color: #fff;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.product-card {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 2.5rem 1.875rem 2.5rem 1.875rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border: none;
  position: relative;
}

.icon-container {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-icon {
  max-width: 100%;
  height: auto;
  transition: filter 0.3s ease;
  /* Makes the placeholder dark by default to simulate a dark icon */
  filter: brightness(0.2);
}

.product-title {
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.product-desc {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* Hover Effects (Applies the gradient style seen in the first card of the design) */
.product-card:hover {
  background: linear-gradient(135deg, #163665 0%, #c4322a 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-title {
  color: #ffffff;
}

.product-card:hover .product-desc {
  color: rgba(255, 255, 255, 0.85);
}

.product-card:hover .product-icon {
  /* Inverts the image to white on hover */
  filter: brightness(0) invert(1);
}

.apply-now-section {
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Typography */
.section-title {
  color: #0b2545;
  font-weight: 500;
  font-size: 2.5rem;
}

.question-text {
  color: #0b2545;
  font-weight: 500;
  font-size: 1.5rem;
}

/* Progress Bar */
.custom-progress {
  height: 6px;
  background-color: #f1f3f5;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.progress-bar-fill {
  width: 15%;
  height: 100%;
  background-color: #1a4796;
  border-radius: 3px;
}

/* Images */
.img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.object-fit-cover {
  object-fit: cover;
  border-radius: 20px;
}

/* Selection Cards */
.selection-card {
  background-color: #f4f5f7;
  padding: 1.25rem 1.5625rem 1.25rem 1.5625rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  color: #333;
}

/* Icon Image Styling */
.icon-img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  /* Invert filter to make black icons white on hover if needed, controlled via JS or css specificity */
  transition: filter 0.3s ease;
}

/* Gradient Hover Effect as requested */
.selection-card:hover,
.selection-card.active {
  background: linear-gradient(90deg, #103a7a 0%, #20509e 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 71, 150, 0.2);
}

/* Radio Indicator */
.radio-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: transparent;
  transition: all 0.3s ease;
}

.selection-card:hover .radio-indicator,
.selection-card.active .radio-indicator {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.selection-card.active .radio-indicator {
  background-color: #fff;
  position: relative;
}

/* Optional: Add a checkmark or dot for active state inside radio */
.selection-card.active .radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  background-color: #1a4796;
  border-radius: 50%;
}

.font-weight-500 {
  font-weight: 500;
  font-size: 1.1rem;
}

/* Next Button */
.btn-next {
  background-color: #1a4796;
  color: #fff;
  padding: 0.625rem 2.5rem 0.625rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s;
}

.btn-next:hover {
  background-color: #123470;
  color: #fff;
}

section.careersection1 {
  padding: 5rem 7rem;
}

.careerwraps h2 {
  font-size: 3rem;
  color: #042b3c;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.careerwraps p {
  font-size: 1rem;
  color: #474747;
  margin-bottom: 1rem;
}

section.client-section {
  padding-top: 0;
}

section.client-section h2 {
  font-size: 3.75rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

ul.rev-star {
  display: flex;
  align-items: center;
  gap: 5px;
}

ul.rev-star li a {
  color: #e4a13d;
}

.review-starwrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewBox p {
  font-size: 1.75rem;
  font-weight: 500;
  color: #042b3c;
  line-height: 1.5;
  margin: 1rem 0;
}

.reviewBox h5 {
  font-size: 1rem;
  color: #042b3c;
  font-weight: 500;
}

.reviewBox {
  background: #f2f2f2;
  border-radius: 28px;
  padding: 1.6875rem 3.125rem 1.6875rem 3.125rem;
}

.gallerytops p {
  font-size: 1rem;
  color: #555555;
}

section.gallery-page .servtop {
  text-align: start;
}

section.gallery-page .servtop .subHead {
  width: unset;
}

section.gallery-page figure {
  margin-bottom: 2.5rem;
}

.contactpage .gentle-main .mainHead {
  color: #042b3c;
  font-size: 3.375rem;
  font-weight: 500;
}

.gentle-sec.contactpage .gentleform .form-control {
  background: #f2f2f2;
}

.gentle-sec.contactpage::before {
  content: unset;
}

.gentle-sec.contactpage {
  background: unset;
  padding: 7rem;
}

/* Gentle-Sec Start */
.gentle-sec {
  background-color: #2a3234;
  position: relative;
}

.gentle-sec::before {
  position: absolute;
  content: "";
  background-color: rgb(255 255 255 / 20%);
  height: 2px;
  width: 75%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.gentleform .form-control {
  background-color: #f6f6f6;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
  height: 4rem;
  box-shadow: unset;
  outline: unset;
  padding-left: 1.4375rem;
  color: #575757;
  font-size: 1rem;
  font-weight: 400;
}

.gentleform .form-control::placeholder {
  color: #042b3c;
  font-size: 1rem;
  font-weight: 500;
}

.gentleform textarea.form-control {
  height: 9.1875rem;
  margin: 1.4375rem 0 1.6875rem;
}

form.gentleform button {
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: none;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 40px;
}

.gentle-imag {
  border-radius: 7px;
  border: 1px solid #696b6c;
}

/* Gentle-Sec End */
.gentle-main p {
  color: #474747;
  margin: 1rem 0;
}

section.health-news-wrapper-sec.py-5 .img-wrapper {
  height: unset;
}

section.gallery-page figure img {
  height: 31.0625rem;
  object-fit: cover;
  border-radius: 31px;
}

.blogwrps h5 {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.blogwrps h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Gallery section start */
.gallery-container {
  width: 100%;
  padding: 1.25rem 0 1.25rem 0;
}

.gallery-grid {
  columns: 4;
  column-gap: 15px;
  width: 100%;
  break-inside: avoid;
}

.gallery-col {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.9375rem;
}

.gallery-col a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-icon {
  color: white;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-col:hover img {
  transform: scale(1.05);
}

.gallery-col:hover .gallery-overlay {
  opacity: 1;
}

.gallery-col:hover .gallery-icon {
  transform: scale(1);
}

/* Gallery section end */

button.close {
  text-align: end;
}

.modal-open .modal .gentle-main p {
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* --- Section zcefcq --- */

.app-form-section h2 {
  font-size: 2.8125rem;
  color: var(--black);
  font-weight: 600;
}

.app-form-section p {
  font-size: 1.125rem;
  color: #545454 !important;
  line-height: 1.8;
  width: 92%;
}

.app-form-section label {
  font-size: 1rem;
  font-weight: 700;
  color: #545454;
  margin-bottom: 0.25rem;
}

.app-form-section .form-control-pill {
  border-radius: 50px;
  border: 1px solid #545454;
  background-color: RGB(252, 252, 252);
  padding: 0.375rem 1rem;
  font-size: 0.95rem;
  height: 2.625rem;
}

.app-form-section .form-control-pill:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.app-form-section .form-check {
  padding-left: 1.5rem;
  margin-bottom: 0.2rem;
}

.app-form-section .form-check-input {
  margin-top: 0.25rem;
}

.app-form-section .form-check-label {
  font-weight: 400;
  font-size: 0.9375rem;
  padding-left: 0.25rem;
  color: #545454;
}

/* Spacing adjustments for tight layout */
.app-form-section .form-group {
  margin-bottom: 1rem;
}

.contact-overlay {
  background-color: #ffeee9;
  padding: 2rem 3rem 2rem 3rem;
  border-radius: 25px;
}

.app-form-section {
  font-family: "Lato", sans-serif;
}

.app-form-section .form-check-input::placeholder {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #545454;
}

.form-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-overlay h5 {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
}

.contact-overlay form button {
  width: 100%;
  border: unset;
  padding: 1.125rem;
  background-color: #195a54;
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
}

.contact-div {
  margin-bottom: 0.625rem;
}

.program-content .program-link {
  margin: 0;
  text-align: center;
  width: 100%;
  margin-top: 0.4rem;
  /* text-decoration: none; */
  border-bottom: unset;
}

.gentle-main .mainHead {
  margin-bottom: 1rem;
}

.close.custom-close-btn {
  margin: 1rem;
  outline: unset;
}

/* Team section start */

.team-head {
  text-align: center;
  margin: 0 0 3rem;
}

.team-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.875rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.team-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 59, 149, 0.2);
}

.team-box figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.team-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.team-box:hover figure img {
  transform: scale(1.05);
}

.team-box>div {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  text-align: center;
}

.team-box h4 {
  color: #003b95;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-box p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Team section end */

.privacywrap h3 {
  font-size: 3rem;
  font-weight: bold;
}

.privacywrap p {
  margin-bottom: 1rem;
}

.privacywrap ul li {
  list-style: disc;
}

.privacywrap ul li+li {
  margin-top: 1rem;
}

.privacywrap ul {
  margin-bottom: 1rem;
}

.privacywrap h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.privacywrap ul li a {
  color: var(--primary);
}

.privacywrap p a {
  color: var(--primary);
}

.serve-program.program-page .program-desc {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.blogwrps h3 {
  margin: 1rem 0;
  font-size: 1.4rem;
}