@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
}

/*html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}*/

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: var(--theme-white-color);
  background-color: var(--theme-skyblue-color);
}

::-moz-selection {
  color: var(--theme-white-color);
  background-color: var(--theme-skyblue-color);
}

body {
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  color: var(--theme-black-color);
  background-color: var(--theme-white-color);
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

:root {
  --theme-blue-color: #003060;
  --theme-blue-light-color: #eef5ff;
  --theme-blue-dark-color: #0b3d91;
  --theme-skyblue-color: #0e86d4;
  --theme-green-color: #11b7b8;
  --theme-green-light-color: #edf9f8;
  --theme-green-dark-color: #0d8f90;
  --theme-orange-color: #eb7a23;
  --theme-orange-light-color: #ffd9c9;
  --theme-yellow-color: #ef8d00;
  --theme-white-color: #ffffff;
  --theme-black-color: #000000;
  --theme-dark-blue-color: #111214;
  --theme-black-color: #161616;
  --theme-gray-color: #414141;
  --theme-gray-light-color: #707070;
  --theme-gray-light-1-color: #c5d0df;
  --theme-gray-light-2-color: #414141;
  --theme-gray-light-3-color: #f1eeee;
  --theme-header-font-family: "IBM Plex Sans";
  --theme-primary-font-family: "Roboto";
  --theme-pra-font-family: "Jost";
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a,
a:focus {
  text-decoration: none;
}

a:focus {
  color: initial;
}

li,
p {
  font-family: var(--theme-pra-font-family);
}

.cmn-img img {
  width: 100%;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*common css====================================*/
.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.layout_padding {
  padding: 80px 0;
}

.view-more-btn{
  border: 1px solid var(--theme-skyblue-color);
  font-size: 14px;
  padding: 8px 15px;
  color: var(--theme-skyblue-color);
  background: transparent;
  border-radius: 10px;
  margin-top: 10px;
  display: block;
}
.view-more-btn:hover{
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

/*Theme Button ============================*/
.btn_theme {
  color: var(--theme-skyblue-color);
  background: transparent;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  text-transform: capitalize;
  border: 1px solid var(--theme-skyblue-color);
  font-size: 16px;
  border-radius: 32px;
  font-weight: 600;
  line-height: 1.2;
  min-width: -moz-max-content;
  min-width: max-content;
  transition: all 0.35s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn_theme span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--theme-skyblue-color);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn_theme i {
  transition: 0s;
  margin: 0 8px;
}

.btn_theme svg path {
  transition: all 0.35s ease-in-out;
}

.btn_theme:hover,
.btn_theme:focus {
  border: 1px solid var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

.btn_theme:hover svg path,
.btn_theme:focus svg path {
  fill: var(--theme-white-color);
}

.btn_theme:hover[disabled="disabled"],
.btn_theme:focus[disabled="disabled"] {
  color: var(--theme-skyblue-color);
  cursor: not-allowed;
}

.btn_theme:hover span,
.btn_theme:focus span {
  width: 225%;
  height: 220px;
}

.btn_theme.style2 {
  background: var(--theme-white-color);
  border-color: var(--theme-white-color);
}

.btn_theme.style2::after {
  background: var(--theme-white-color);
}

.btn_theme.style2:hover {
  background: transparent;
}

.btn_theme_active {
  color: white;
  position: relative;
  z-index: 0;
}

.btn_theme_active::after {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--theme-skyblue-color);
  z-index: -3;
}

.btn_theme_active span {
  background-color: var(--theme-white-color);
}

.btn_theme_active:hover,
.btn_theme_active:focus {
  color: var(--theme-skyblue-color);
}

.btn-group {
  gap: 24px;
  flex-wrap: wrap;
}

.text-justify-custom {
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-header-font-family);
}

h1.title-bg {
  font-size: 95px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.08;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
}

h1.title-bg2 {
  font-size: 95px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.08;
  color: var(--theme-white-color);
  font-family: var(--theme-header-font-family);
  position: relative;
  z-index: 1;
}

.heading_container h2 {
  font-weight: 600;
  font-size: 46px;
  font-family: var(--theme-primary-font-family);
  color: var(--theme-skyblue-color);
  margin-bottom: 15px;
  margin-top: -70px;
  position: relative;
  margin-left: -15px;
  text-transform: capitalize;
}

.heading_container p {
  font-size: 18px;
  color: var(--theme-gray-color);
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.heading_container p:last-child {
  margin-bottom: 0;
}

.heading_container_2 h2 {
  font-weight: 600;
  font-size: 46px;
  font-family: var(--theme-primary-font-family);
  color: var(--theme-skyblue-color);
  margin-bottom: 15px;
  margin-top: -70px;
  position: relative;
  margin-left: 0px;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}

ul.dpt-list {
  list-style: circle;
  margin: 0;
  padding-left: 30px;
}

ul.dpt-list li {
  margin-top: 5px;
  font-size: 16px;
}

ul.dpt-list li::marker {
  color: var(--theme-orange-color);
}

.ich-download-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:14px 24px;
    border-radius:14px;
    background:var(--theme-white-color);
    color:var(--theme-blue-color);
    text-decoration:none;
    font-weight:600;
    transition:.35s;
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.ich-download-btn:hover{
    color:var(--theme-skyblue-color);
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(13,110,253,.35);
}

.ich-download-btn .icon{
    width:52px;
    height:52px;
    background:var(--theme-blue-light-color);
    color: var(--theme-blue-color);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.ich-download-btn .text{
    display:flex;
    flex-direction:column;
    line-height:1.6;
    text-align: start;
}

.ich-download-btn .text small{
    font-size:13px;
    font-weight:400;
    opacity:.85;
}

.heading_container_2 p {
  font-size: 18px;
  color: var(--theme-gray-color);
  line-height: 24px;
}

.heading_container_2 a span.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--theme-pink-color);
  color: var(--theme-black-color);
  display: inline-block;
  text-align: center;
  line-height: 60px;
}

.heading_container_2 a span.icon-box .bi {
  color: var(--theme-white-color);
  font-size: 30px;
}

.heading_container_2 a {
  color: var(--theme-orange-color);
}

.heading_container_3 h2 {
  font-weight: 600;
  font-size: 46px;
  font-family: var(--theme-header-font-family);
  color: var(--theme-white-color);
  margin-bottom: 15px;
}

.heading_container_3 p {
  font-size: 18px;
  color: var(--theme-white-color);
  line-height: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.heading_container_3 p:last-child {
  margin-bottom: 0;
}

#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  box-shadow: 0px 2px 5px rgb(51 51 51 / 58%);
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: var(--theme-skyblue-color);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: var(--theme-white-color);
}

#scroll:hover {
  background: var(--theme-skyblue-color);
  opacity: 0.8;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/*Owl Nav Button====================================*/
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next {
  right: 50px;
  font-family: "bootstrap-icons";
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  left: 50px;
  font-family: "bootstrap-icons";
}

.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-next {
  right: 30px;
  font-family: "bootstrap-icons";
}

.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-prev {
  left: 30px;
  font-family: "bootstrap-icons";
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next:hover {
  color: var(--theme-skyblue-color);
  border: 1px solid var(--theme-skyblue-color);
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--theme-skyblue-color);
  border: 1px solid var(--theme-skyblue-color);
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  text-align: center;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--theme-blue-color);
  color: var(--theme-blue-color);
  font-size: 30px;
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next img,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev img {
  width: 78%;
}

.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn:hover .owl-carousel .owl-nav button.owl-prev {
  opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next:hover,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev:hover {
  opacity: 0.8;
}

/* Header section ====================================*/
.header_top {
  background-color: var(--theme-gray-light-3-color);
  padding: 5px 0;
}

.header_top .nav-list {
  gap: 10px !important;
}

.header_top li.nalist-item {
  padding: 0;
  margin-bottom: 0;
}

.header_top li.nalist-item a {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-black-color);
}

.header_top li.nalist-item a:hover {
  color: var(--theme-skyblue-color);
}

.header_top li.nalist-item a span {
  font-size: 16px;
  color: var(--theme-skyblue-color) !important;
  margin-right: 5px;
  display: inline-block;
}

/* Header Social Items =================== */
.header_top .social_items a {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--theme-skyblue-color);
  border-radius: 10px;
  line-height: 30px;
  font-size: 14px;
  color: var(--theme-skyblue-color);
  gap: 5px;
  display: inline-block;
  text-align: center;
}

.header_top .social_items a:hover {
  background-color: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

.header_mdl {
  padding: 10px 0;
}

.header_mdl img.hdr-logo {
  width: 100%;
}

/*Hero section ====================================*/
.hero-section {
  background: url(../images/slider/slider-bg.jpg) center center no-repeat;
  background-size: cover;
}

.hero-slider .slide-item {
  /*height: 500px;
 background-size: cover;
  background-position: center;*/
  position: relative;
}

/*.hero-slider .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-slider .slide-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}*/

.hero-slider .slide-content .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slide-content h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 30px;
  animation: fadeInDown 1s;
  color: var(--theme-blue-color);
}

.hero-slider .slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s;
  color: var(--theme-gray-color);
}

.hero-slider .slide-content .btn {
  padding: 10px 25px;
  border-radius: 50px;
}

.slide-content .hero-theme {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  padding: 60px;
}

.slide-content .hero-theme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*Latest Update ====================*/
.update-sec {
  background: var(--theme-orange-color);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  /*border-top: 1px solid var(--theme-gray-light-3-color);
  border-bottom: 1px solid var(--theme-gray-light-3-color);*/
  flex-wrap: nowrap;
}

.latest-update {
  padding: 5px 30px 5px 15px;
  background: var(--theme-orange-color);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.latest-update h3 {
  color: var(--theme-white-color);
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 0;
  font-weight: 800;
}

.latest-update h3.bi {
  font-size: 28px;
}

.text-area {
  margin-right: 20px;
  flex-shrink: 0;
}

.text-area h5 {
  font-size: 16px;
  text-transform: capitalize;
  cursor: pointer;
  margin-bottom: 0;
  color: var(--theme-white-color);
}

.text-area h5 i {
  color: var(--theme-white-color);
  font-size: 18px;
  margin-right: 10px;
}

.marquee-text {
  padding-right: 60px;
  width: 100%;
}

.marquee {
  display: flex;
  width: fit-content;
  align-items: center;
  flex-wrap: nowrap;
}

/* Right → Left */
.marquee-left {
  animation: scrollLeft 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

/* Right → Left */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*Services Section==================*/
.services-sec {
  background: #f0f5fe;
}

.services-box {
  background: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  cursor: pointer;
  transition: 0.5s;
}

.services-box:hover {
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border: 1px solid var(--theme-skyblue-color);
}

.serv-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  line-height: 80px;
  background: #f0f5fe;
  padding: 10px;
  margin: 0 auto 15px auto;
}

.services-box .serv-icon svg {
  width: 50px;
  height: 50px;
}

.services-box .serv-icon img {
  width: 60px;
  height: 60px;
}

.services-box h4 {
  color: var(--theme-blue-color);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--theme-header-font-family);
}

.services-box:hover h4 {
  color: var(--theme-skyblue-color);
}

.services-box p {
  color: var(--theme-black-color);
  font-size: 14px;
  font-weight: 400;
}

/* Doctors section ===============================*/
.dr-box {
  background-color: var(--theme-white-color);
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border-radius: 15px;
  overflow: hidden;
}

.dr-box .dr-img {
  height: 280px;
  overflow: hidden;
}

.dr-box .dr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.dr-box .dr-img:hover img {
  transform: scale(1.07);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.dr-box .dr-dtls {
  padding: 20px;
}

.dr-box .dr-dtls h3 {
  font-size: 20px;
  color: var(--theme-black-color);
  text-transform: uppercase;
  font-family: var(--theme-header-font-family);
}

.dr-box .dr-dtls p {
  font-size: 16px;
  color: var(--theme-gray-color);
  font-weight: 400;
}

.dr-box .dr-dtls p span {
  font-size: 12px;
  color: var(--theme-skyblue-color);
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  padding: 5px 10px;
  border: 1px solid #f1f1f1;
  border-radius: 30px;
  margin: 5px;
  display: inline-block;
  width: 60px;
}

.doctors-slider .slide-item {
  margin: 15px;
}

.doctors-slider .owl-dots {
  text-align: center;
}

.doctors-slider .owl-dots .owl-dot.active span,
.doctors-slider .owl-dots .owl-dot:hover span {
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  position: relative;
}

.doctors-slider .owl-dots .owl-dot.active span:after,
.doctors-slider .owl-dots .owl-dot:hover span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background: var(--theme-skyblue-color);
}

.doctors-slider .owl-dots .owl-dot span {
  width: 21px;
  height: 21px;
  margin: 5px 7px;
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}

/* Facilities section ===========================*/
.facilities-sec {
  background: url(../images/facilities-bg.jpg) center center no-repeat;
  background-size: cover;
}

.facilities-container {
  width: 80%;
  margin: 30px auto 0 auto;
}

.facilities-mdl {
  position: relative;
  height: 100%;
}

.facilities-mdl img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
}

.facilities-box {
  background: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  cursor: pointer;
  transition: 0.5s;
}

.facilities-box:hover {
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  border: 1px solid var(--theme-skyblue-color);
}

.fac-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  line-height: 80px;
  background: #f1f1f1;
  padding: 10px;
  margin: 0 auto 15px auto;
}

.facilities-box .fac-icon svg {
  width: 50px;
  height: 50px;
}

.facilities-box h4 {
  color: var(--theme-gray-color);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--theme-header-font-family);
}

.facilities-box:hover h4 {
  color: var(--theme-skyblue-color);
}

/* Programs section ===============================*/
.programs-sec {
  background: #f6f6f6;
}

.programs-catagory .nav-tabs {
  border-bottom: 1px solid var(--theme-gray-light-color);
}

.programs-catagory .nav-tabs .nav-link {
  color: var(--theme-black-color);
  text-transform: uppercase;
  border: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--theme-skyblue-color);
  color: var(--theme-skyblue-color);
}

.programs-catagory .nav-tabs .nav-item.show .nav-link,
.programs-catagory .nav-tabs .nav-link.active {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--theme-skyblue-color);
  color: var(--theme-skyblue-color);
}

.programs {
  overflow: hidden;
}

.programs iframe {
  width: 100%;
  height: 220px;
  border-radius: 20px;
}

/*Fancybox ===========================================*/
.gallery-list {
  overflow: visible;
}

.gallery-list .sk-box {
  position: relative;
  overflow: hidden;
  background: #0e86d4 !important;
  color: var(--theme-white-color);
  -webkit-border-radius: 4px;
  border-radius: 15px;
}

.gallery-list .sk-box a {
  display: block;
  color: inherit;
}

.gallery-list .sk-box figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 64%;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 0;
}

.gallery-list .sk-box figure img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%) scale(1.01);
  transform: translate(0, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  object-fit: cover;
}

.sk-box:hover a figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-list .sk-box .sk-text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px;
  margin: 0;
  -moz-transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  margin: 0 auto;
  text-align: center;
}

.gallery-list .sk-box:hover .sk-text {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gallery-list .readmore {
  width: 50px !important;
  height: 50px !important;
  display: block;
  margin: auto;
  background: #fff !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  color: #0e86d4 !important;
  font-size: 0;
  position: relative;
}

.gallery-list .readmore:before {
  content: "\f002";
  display: block;
  font-family: "FontAwesome";
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gallery-list .sk-video-box .readmore:before {
  content: "\f16a";
}

.gallery-list .readmore:hover {
  color: #4f5cc5;
}

.gallery-list .sk-box .sk-text .subheading {
  text-align: inherit;
  color: inherit;
  text-transform: uppercase;
}

.gallery-list .sk-box:hover figure img {
  -webkit-transform: translate(0, -50%) scale(1.1);
  transform: translate(0, -50%) scale(1.1);
  opacity: 0.5;
}

.gallery-list .sk-box:hover .sk-text {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  margin: 0 auto;
}

/*Gallery Filter =========================*/

.filter-wrapper {
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.filter-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--theme-white-color);
  color: #233044;
  text-decoration: none;
  border: 1px solid #e4e8ef;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: 0.35s;
}

.filter-btn i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--theme-blue-light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-skyblue-color);
  font-size: 16px;
  transition: 0.35s;
}

.filter-btn:hover {
  color: var(--theme-white-color);
  background: linear-gradient(
    90deg,
    var(--theme-blue-color),
    var(--theme-green-color)
  );
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);
}

.filter-btn:hover i {
  background: rgba(255, 255, 255, 0.18);
  color: var(--theme-white-color);
}

.filter-btn.active {
  background: linear-gradient(
    90deg,
    var(--theme-blue-color),
    var(--theme-green-color)
  );
  color: var(--theme-white-color);
  border: none;
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);
}

.filter-btn.active i {
  background: rgba(255, 255, 255, 0.18);
  color: var(--theme-white-color);
}

/*Contact Section ====================================*/
.call-bg {
  background: url(../images/call-bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 30px;
}

.contact-sec .btn-area {
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-mdl {
  margin-top: -113px;
  position: relative;
  z-index: 3;
}

.call-mdl img {
  width: 267px;
}

.contact-sec .donate-btn {
  display: inline-block;
  color: var(--theme-skyblue-color);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 25px 75px;
  background: var(--theme-white-color);
  border-radius: 50px;
  transition: 0.3s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

.contact-sec .callnow-btn {
  display: inline-flex;
  color: var(--theme-black-color);
  font-size: 25px;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: 600;
  background: #e8c020;
  border-radius: 50px;
  transition: 0.3s;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

.contact-sec .callnow-btn:hover {
  opacity: 0.9;
}

.contact-sec .callnow-btn div.callnow {
  padding: 25px 50px 25px 25px;
}

.contact-sec .callnow-btn span svg {
  width: 95px;
  height: 95px;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eabf25;
  color: #000;
  font-size: 30px;
  font-weight: 600;
  padding: 25px 40px 25px 110px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.call-btn:hover {
  background-color: #d4a919;
  /* Darker yellow on hover */
}

.call-btn i {
  background: var(--theme-white-color);
  color: #eabf25;
  border-radius: 50%;
  padding: 20px;
  margin-right: 12px;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 2px;
}

/* Testimonial section ===============================*/
.testimonial-sec {
  background: url(../images/testimonial.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 500px;
}

.testimonial-sec .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.73);
}

.testimonial-container {
  position: relative;
}

.testimonial-slider {
  position: absolute !important;
  top: -268px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}

.testimonial-item {
  padding: 30px 0 0 0;
}

.testimonial-inner {
  border-radius: 15px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  /*-webkit-box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
          box-shadow: 0 3px 24px rgb(0 0 0 / 10%);*/
  background: var(--theme-blue-color);
  position: relative;
}

.testimonial-inner::before {
  content: "\F6B0";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 20px;
  top: -43px;
  color: var(--theme-skyblue-color);
  font-size: 70px;
}

.testimonial-item .testimonial-text {
  padding: 30px;
}

.testimonial-item .testimonial-text p {
  font-size: 16px;
  color: var(--theme-white-color);
  margin-bottom: 0;
}

.testimonial-item .testimonial-text .testimonial-rating {
  margin-top: 15px;
}

.testimonial-item .testimonial-text .testimonial-rating span {
  color: #f09d21;
}

.testimonial-item .testimonial-img {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonial-item .testimonial-img img {
  border-radius: 50px;
  width: 100px !important;
  height: 100px;
  margin: auto;
}

.testimonial-item .testimonial-text .client-detail {
  margin-top: 15px;
}

.testimonial-item .testimonial-text .client-detail h6 {
  margin-bottom: 5px;
  color: var(--theme-white-color);
}

.testimonial-item .testimonial-text .client-detail span {
  color: var(--theme-skyblue-color);
  opacity: 0.8;
}

.testimonial-item {
  margin: 15px;
}

.testimonial-slider .owl-dots {
  text-align: center;
}

.testimonial-slider .owl-dots .owl-dot.active span,
.testimonial-slider .owl-dots .owl-dot:hover span {
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  position: relative;
}

.testimonial-slider .owl-dots .owl-dot.active span:after,
.testimonial-slider .owl-dots .owl-dot:hover span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background: var(--theme-skyblue-color);
}

.testimonial-slider .owl-dots .owl-dot span {
  width: 21px;
  height: 21px;
  margin: 5px 7px;
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}

/* Media section ===============================*/
.media-sec {
  padding-top: 270px;
}

.media-sec .media-card {
  border: 1px solid var(--theme-skyblue-color);
  background: var(--theme-white-color);
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
  height: 100%;
}

.media-sec .media-card .media-card-hdr {
  border-bottom: 1px solid var(--theme-skyblue-color);
  padding: 15px 10px;
  text-align: center;
}

.media-sec .media-card .media-card-hdr h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--theme-black-color);
  font-family: var(--theme-header-font-family);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-sec .media-card .media-card-hdr h3 span {
  margin-right: 10px;
}

.media-sec .media-card .media-card-body {
  padding: 20px;
  height: 100%;
}

.media-sec .media-card .media-card-body .news-events-item img {
  border-radius: 10px;
  width: 100%;
  min-height: 150px;
  object-fit: cover;
}

.media-sec .media-card .media-card-body .news-events-cnt .date-time {
  padding-right: 5px;
  margin-top: 10px;
}

.media-sec .media-card .media-card-body .news-events-cnt .date-time p {
  color: var(--theme-blue-color);
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
  margin-bottom: 0;
}

.media-sec .media-card .media-card-body .news-events-cnt {
  margin-top: 15px;
}

.media-sec .media-card .media-card-body .news-events-cnt h4 {
  font-size: 18px;
  color: var(--theme-blue-color);
}

.media-sec .media-card .media-card-body .news-events-cnt p {
  font-size: 14px;
  color: var(--theme-gray-color);
}

.media-sec .media-card .media-card-body .news-events-cnt .date-time p span {
  margin-right: 5px;
}

.news-events-slider .owl-dots .owl-dot span {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  display: block;
  background: var(--theme-gray-light-color);
  margin-right: 5px;
}

.news-events-slider .owl-dots .owl-dot.active span,
.news-events-slider .owl-dots .owl-dot:hover span {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  display: block;
  background: var(--theme-skyblue-color);
}

/*NewsTicker ==================*/
.newsTickerCon {
  width: 100%;
  height: 322px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.newsTickerCon ul {
  position: relative;
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.newsTickerCon ul li {
  margin: 10px 0;
  border-bottom: 0px solid #a1a9a5;
  position: relative;
}

.newsTickerCon ul li:after {
  content: "\F309";
  font-family: "bootstrap-icons";
  position: absolute;
  left: -15px;
  top: -14px;
  font-size: 36px;
  color: var(--theme-blue-color);
}

.newsTickerCon ul li a {
  padding-left: 15px;
  color: var(--theme-blue-color);
  font-size: 14px;
  font-family: var(--theme-pra-font-family);
  font-weight: 600;
}

.newsTickerCon ul li a:hover,
.newsTickerCon ul li:hover:after {
  color: var(--theme-skyblue-color);
}

.bmw-report-cnt {
  overflow-y: auto;
  height: 400px;
}

.bmw-report-cnt .list-group-flush > .list-group-item a {
  color: var(--theme-blue-color);
}

.bmw-report-cnt .list-group-flush > .list-group-item a:hover {
  color: var(--theme-skyblue-color);
}

.bmw-report-cnt .list-group-flush > .list-group-item .bi {
  color: red;
}

.bmw-report-cnt .accordion-flush > .accordion-item > .accordion-collapse,
.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button,
.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  border-radius: 5px;
}

.bmw-report-cnt .accordion-button:not(.collapsed) {
  color: var(--theme-black-color);
  background-color: #b8e1f5;
  box-shadow: none;
}

.bmw-report-cnt
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button:hover {
  color: var(--theme-skyblue-color);
}

.bmw-report-cnt .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

/* Client section ===============================*/
.client-slider .client-item {
  overflow: hidden;
}

.client-slider .client-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  max-width: 94%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.client-slider .client-item:hover img {
  transform: scale(1.07);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  filter: grayscale(100);
}

/* footer section ===============================*/
.footer-main {
  position: relative;
}

.footer-main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--theme-white-color);
  --background-overlay: "";
  z-index: 2;
}

.footer-main:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url(../images/footer-1.jpg) center bottom no-repeat;
  background-size: cover;
  --background-overlay: "";
  z-index: 1;
}

.footer-top-sec {
  position: relative;
  background-color: var(--theme-blue-color);
  border-radius: 0 0 150px;
  position: relative;
  z-index: 3;
}

.footer-top-sec .ftr-contact h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--theme-skyblue-color);
  font-family: var(--theme-header-font-family);
}

.footer-top-sec .ftr-contact p {
  font-size: 16px;
  color: var(--theme-white-color);
}

.footer-top-sec .ftr-contact .cnt-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-top-sec .ftr-contact .cnt-list figure {
  width: 75px;
  height: 75px;
  background: rgb(255 255 255 / 6%);
  border-radius: 50%;
  margin: 0;
  position: relative;
}

.footer-top-sec .ftr-contact .cnt-list img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-top-sec .ftr-contact .cnt-text {
  width: calc(100% - 110px);
  text-align: left;
  padding-left: 15px;
}

.footer-top-sec .ftr-contact .cnt-text h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--theme-header-font-family);
  color: var(--theme-white-color);
  margin-bottom: 10px;
}

.footer-top-sec .ftr-contact .cnt-text a,
.footer-top-sec .ftr-contact .cnt-text p {
  font-size: 16px;
  color: var(--theme-white-color);
  line-height: 30px;
}

.footer-top-sec .ftr-contact .cnt-text a:hover {
  color: var(--theme-skyblue-color);
}

.footer-top-sec .ftr-contact .cnt-text p.text-conpany {
  color: var(--theme-skyblue-color);
  margin-bottom: 5px;
}

.footer-top-sec .ftr-contact .g-map iframe {
  border-radius: 15px;
  overflow: hidden;
}

/*subscribe-btn Button===================*/
.footerbtm {
  border-top: 1px solid rgba(255 255 255 / 10%);
  margin-top: 50px;
  padding-top: 60px;
}

.ftr-logo {
  width: 80%;
}

.footerbtm p.ftr-abt {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-white-color);
}

.footerbtm h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-skyblue-color);
  font-family: var(--theme-primary-font-family);
}

.footerbtm .ftr-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.footerbtm .ftr-link ul li {
  margin: 0 8px 5px 0;
}

.footerbtm .ftr-link ul li a {
  color: var(--theme-white-color);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.4s;
}

.footerbtm .ftr-link ul li a:hover {
  color: var(--theme-skyblue-color) !important;
  padding-left: 5px;
}

.footerbtm .ftr-contact {
  margin-top: 20px;
}

.footerbtm .ftr-contact a {
  color: var(--theme-white-color);
}

.footerbtm .ftr-contact a.phone {
  font-size: 26px;
  font-weight: 800;
  color: var(--theme-skyblue-color);
}

.footerbtm .ftr-contact a:hover {
  color: var(--theme-white-color) !important;
}

.footerbtm .ftr-contact p {
  font-size: 16px;
  color: var(--theme-white-color);
}

.footerbtm .ftr-contact p a {
  font-size: 18px;
  color: var(--theme-white-color);
}

.footerbtm {
  position: relative;
}

.ftr_social_items a {
  width: 50px;
  height: 50px;
  background-color: rgb(255 255 255 / 6%);
  border-radius: 50%;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-skyblue-color);
  gap: 5px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.ftr_social_items a:hover {
  background-color: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

.copy-cnt {
  position: relative;
  z-index: 3;
}

.ftr-copy-info {
  padding: 20px 0;
}

.copy-info p {
  color: var(--theme-gray-color);
  margin-top: 0px;
  margin-bottom: 0;
}

.copy-info a {
  color: var(--theme-skyblue-color);
}

.legal-link a {
  font-size: 14px;
  color: var(--theme-gray-color);
  margin: 5px 10px;
}

.legal-link a:hover {
  color: var(--theme-skyblue-color);
}

.ftr-btm {
  border-top: 1px solid #43536a;
  padding-top: 30px;
  margin-top: 30px;
}

.ftr-btm ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ftr-btm ul li {
  display: inline-block;
  color: var(--theme-white-color);
  margin: 0 10px;
}

.ftr-btm ul li a {
  font-size: 16px;
  color: var(--theme-white-color);
}

.ftr-btm ul li a:hover {
  color: var(--theme-pink-color);
}

/*Inner Hero Section ===============*/
.inner-hero-section {
  position: relative;
}

.inner-hero-cnt {
  padding: 100px 0;
}

.av6-inner-hero-section {
  position: relative;
}

.av6-inner-hero-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2 0 36 / 70%);
  /*background: linear-gradient(140deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 0.88) 20%, rgba(0, 212, 255, 0) 100%);*/
}

.inner-hero-cnt .breadcrumb {
  margin-top: 15px;
}

.inner-hero-cnt {
  position: relative;
  z-index: 1;
}

.inner-hero-cnt .breadcrumb .breadcrumb-item {
  color: var(--theme-white-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: capitalize;
  font-size: 18px;
  margin-top: 0px;
}

.inner-hero-cnt .breadcrumb .breadcrumb-item a {
  font-size: 18px;
  color: var(--theme-white-color);
  font-family: var(--theme-pra-font-family);
}

.inner-hero-cnt .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f285";
  font-family: "bootstrap-icons";
  color: var(--theme-white-color);
  font-size: 14px;
}

.inner-hero-cnt .breadcrumb .breadcrumb-item.active {
  color: var(--theme-skyblue-color);
}

/*Contact Section ===========================*/
.contact-form-area {
  position: relative;
  display: block;
  padding: 60px 0px 60px;
  background-color: #e1f0ff;
}

.contact-form-area {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.get-in-touch-area {
  border-radius: 15px;
  background: var(--theme-white-color);
  border: 1px solid var(--theme-gray-light-3-color);
  padding: 40px;
}

.get-in-touch-area .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  justify-content: space-between;
}

.get-in-touch-area .input-group .input-single {
  width: calc(50% - 12px);
  position: relative;
}

.get-in-touch-area .input-single {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-area .form-control {
  background: rgba(19, 47, 89, 0.03);
  border-radius: 30px;
  border-color: var(--theme-gray-light-color);
}

.contact-form-area .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form-area .forget-pass {
  color: #eb7a23;
  justify-content: flex-end;
  margin-top: 14px;
}

.contact-form-area .have_account {
  color: #404a60;
}

.contact-form-area .have_account a {
  font-weight: 600;
  color: #eb7a23;
}

.contact-form-area .contact_title {
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--theme-gray-light-3-color);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 32px;
}

.contact-form-area .form-control {
  padding: 12px 32px;
}

.contact-form-area .nice-select option:first-child {
  color: #6a7283;
}

.contact-form-area .nice-select:after {
  right: 32px;
}

.contact-form-area .more-help {
  border-radius: 16px;
  background: var(--theme-white-color);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--theme-gray-light-3-color);
  padding: 32px;
  position: sticky;
  top: 140px;
}

.more-help .more-help_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.more-help .card-small {
  color: #222e48;
  background: rgba(19, 47, 89, 0.03);
}

.card-small {
  background: transparent;
  display: flex;
  flex-direction: row;
  gap: 24px;
  border: none;
  padding: 15px;
  align-items: center;
}

.more-help .card-small .card-small-icon {
  width: 84px;
  min-width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe0e4;
  background: var(--theme-white-color);
  color: var(--theme-skyblue-color);
}

.more-help .card-small .card-small-icon i {
  font-size: 36px;
}

.more-help .card-small .card-small-title {
  margin-bottom: 12px;
  font-family: var(--theme-pra-font-family);
}

.card-small-call {
  color: var(--theme-gray-color);
}

.card-small-call:focus {
  color: var(--theme-skyblue-color);
}

/*Donation Section==================*/
img.offcanvas-logo {
  width: 280px;
}

.donation-form-section .offcanvas-body {
  padding: 20px;
  border-top: 1px dashed var(--theme-gray-light-3-color);
}

.donation-form-section h2 {
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  font-family: var(--theme-header-font-family);
  color: var(--theme-skyblue-color);
}

.donation-form-section p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--theme-gray-color);
}

.donation-form-section .form-group {
  margin-bottom: 15px;
}

.donation-form-section .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.donation-form-section .form-group input.form-control,
.donation-form-section .form-group textarea.form-control {
  width: 100%;
  padding: 12px;
  background: rgba(19, 47, 89, 0.03);
  border-color: var(--theme-gray-light-color);
  border-radius: 5px;
  box-sizing: border-box;
}

.donation-form-section .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.donation-form-section .donate-btn {
  width: 100%;
  padding: 14px;
  background: var(--theme-blue-color);
  color: var(--theme-white-color);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.donation-form-section .donate-btn:hover {
  background: var(--theme-skyblue-color);
}

/*Board of Trustees===============*/
.trustee-card {
  background: var(--theme-white-color);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(13, 59, 102, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.trustee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 59, 102, 0.15);
}

.trustee-img {
  position: relative;
  overflow: hidden;
}

.trustee-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.trustee-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.25);
}

.trustee-content {
  padding: 25px 22px 28px;
  text-align: center;
}

.trustee-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-blue-color);
  margin-bottom: 8px;
}

.trustee-content h6 {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-skyblue-color);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trustee-content p {
  font-size: 14px;
  color: var(--theme-gray-color);
  line-height: 1.8;
  margin-bottom: 18px;
}

.trustee-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.trustee-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme-gray-light-3-color);
  color: var(--theme-skyblue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.trustee-social a:hover {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  transform: translateY(-3px);
}

/*Governing-Body-section ====================*/
.governing-body .governing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.governing-body .governing-card {
  background: var(--theme-white-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(13, 59, 102, 0.08);
  transition: 0.3s ease;
  border: 1px solid var(--border);
}

.governing-body .governing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(13, 59, 102, 0.14);
}

.governing-body .member-info {
  height: 100%;
  min-height: 240px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--theme-blue-color);
}

.governing-body .member-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--theme-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 34px;
  color: var(--theme-skyblue-color);
}

.governing-body .member-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.general-items {
  display: none;
}

.general-items.show {
  display: block;
}

.read-btn {
  background: transparent;
  color: var(--theme-skyblue-color);
  border: 1px solid var(--theme-skyblue-color);
  border-radius: 30px;
  padding: 16px 32px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.4s;
  gap: 8px;
  text-transform: uppercase;
}

.read-btn:hover {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

.general-wrapper .governing-card {
  margin-bottom: 20px;
}

.governing-body .general-body.member-info h4 {
  font-size: 18px !important;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.governing-body .member-line {
  width: 70px;
  height: 4px;
  border-radius: 50px;
  background: var(--theme-skyblue-color);
  display: block;
}

.governing-body .member-contact {
  height: 100%;
  min-height: 240px;
  padding: 38px 34px;
  display: flex;
  align-items: center;
  background: var(--theme-white-color);
}

.governing-body .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.governing-body .contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--theme-gray-color);
}

.governing-body .contact-list li:last-child {
  margin-bottom: 0;
}

.governing-body .contact-list li i {
  font-size: 22px;
  margin-top: 4px;
  color: var(--theme-skyblue-color);
  min-width: 24px;
}

.governing-body .member-designation {
  height: 100%;
  min-height: 240px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.member-info.member-blue {
  background: linear-gradient(180deg, #eaf4ff 0%, #f4f9ff 100%);
  color: #0b4c92;
}

.member-info.member-green {
  background: linear-gradient(180deg, #ebfaf6 0%, #f5fffc 100%);
  color: #0b7a66;
}

.member-info.member-orange {
  background: linear-gradient(180deg, #fff5e9 0%, #fffaf3 100%);
  color: #d98108;
}

.desig-blue {
  background: linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
  color: #0b4c92;
}

.desig-green {
  background: linear-gradient(180deg, #effcf8 0%, #f7fffc 100%);
  color: #0b7a66;
}

.desig-orange {
  background: linear-gradient(180deg, #fff7ed 0%, #fffdf8 100%);
  color: #d98108;
}

.desig-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 15px;
}

.desig-icon img {
  width: 100%;
}

.member-designation h5 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

/*Member Section ===================*/
:root {
  --border: #e5edf7;
  --shadow: 0 8px 24px rgba(12, 54, 108, 0.08);
  --shadow-hover: 0 14px 32px rgba(13, 27, 76, 0.14);
  --section-bg: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  --border: #e5edf7;
}

.members-sec {
  position: relative;
  padding: 70px 0 80px;
  background: var(--theme-white-color);
  overflow: hidden;
}

.members-sec::before,
.members-sec::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(#c9d7ec 1.8px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.75;
  z-index: 0;
}

.members-sec::before {
  top: 18px;
  left: 18px;
}

.members-sec::after {
  right: 20px;
  top: 70px;
}

.members-wrap {
  position: relative;
  z-index: 2;
}

.member-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px 16px 28px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.member-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 18px 0 0 18px;
  background: var(--theme-blue-color);
}

.member-card.teal::before {
  background: var(--theme-green-color);
}

.member-icon,
.member-number {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}

.member-icon {
  background: var(--theme-blue-light-color);
  color: var(--theme-skyblue-color);
  font-size: 24px;
}

.member-card.teal .member-icon {
  background: var(--theme-green-light-color);
  color: var(--theme-green-color);
}

.member-number {
  background: var(--theme-blue-light-color);
  color: var(--theme-skyblue-color);
}

.member-card.teal .member-number {
  background: var(--theme-green-light-color);
  color: var(--theme-green-color);
}

.member-name {
  flex: 1;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--theme-blue-color);
  margin: 0;
}

.member-dots {
  color: var(--theme-gray-light-1-color);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin-left: auto;
  user-select: none;
}

.member-dots span {
  line-height: 0.6;
}

.member-item {
  margin-bottom: 16px;
}

/*Mission Section =====================*/
.mission-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.mission-sec::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(14 165 164 / 25%) 0%,
    rgb(14 165 164 / 0%) 70%
  );
  z-index: 0;
}

.mission-sec::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(11 61 145 / 25%) 0%,
    rgb(11 61 145 / 0%) 70%
  );
  z-index: 0;
}

.mission-sec-hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.mission-sec-hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.mission-sec-hero-caption {
  padding: 26px 30px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--theme-gray-color);
  background: var(--theme-white-color);
}

.content-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: 0.3s ease;
  border-radius: 28px;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 54, 108, 0.12);
}

.content-card .card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.content-card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  color: var(--theme-skyblue-color);
  font-size: 26px;
  box-shadow: inset 0 0 0 1px rgba(11, 61, 145, 0.08);
  flex-shrink: 0;
}

.content-card .card-title h2,
.content-card .card-title h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-blue-color);
}

.content-card p {
  color: var(--theme-gray-color);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card h6 {
  color: var(--theme-skyblue-color);
  font-weight: 700;
}

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

.mission-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--theme-gray-color);
  line-height: 1.9;
  font-size: 16px;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--theme-blue-color),
    var(--theme-skyblue-color)
  );
  box-shadow: 0 0 0 5px rgba(14, 165, 164, 0.08);
}

.values-wrap {
  position: relative;
  z-index: 2;
  margin-top: 34px;
}

.block-heading {
  text-align: center;
  margin-bottom: 28px;
}

.block-heading h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--theme-blue-color);
  margin-bottom: 10px;
}

.block-heading p {
  color: var(--theme-gray-color);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.85;
}

.value-card {
  background: var(--theme-white-color);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 54, 108, 0.12);
}

.value-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  color: var(--theme-white-color);
}

.badge-blue {
  background: linear-gradient(135deg, #0b3d91, #2b6ad9);
}

.badge-teal {
  background: linear-gradient(135deg, #0c7c7b, #18b7b6);
}

.badge-orange {
  background: linear-gradient(135deg, #d44f15, #f8902d);
}

.badge-purple {
  background: linear-gradient(135deg, #4f1ba9, #9333ea);
}

.badge-bronze {
  background: linear-gradient(135deg, #9e5a16, #cd8032);
}

.badge-red {
  background: linear-gradient(135deg, #a11b1b, #ff1717);
}

.bg-light-blue {
  background: linear-gradient(135deg, #d0fcff, #fffae5) !important;
}

.value-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--theme-gray-color);
  margin: 0;
}

.wide-card {
  margin-top: 30px;
}

.wide-card .content-card {
  padding: 34px;
}

.highlight-title {
  color: var(--theme-yellow-color) !important;
}

.soft-note {
  background: linear-gradient(90deg, #eef6ff, #f6fbff);
  border-left: 5px solid var(--theme-blue-color);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--theme-gray-color);
  line-height: 1.9;
}

/*Director Message =========================*/
.director-message-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.director-message-wrap {
  position: relative;
  z-index: 1;
}

.director-profile-card {
  position: relative;
  background: var(--theme-white-color);
  border-radius: 28px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 45px rgba(13, 52, 108, 0.1);
  border: 1px solid rgba(11, 76, 146, 0.08);
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.director-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-one {
  width: 140px;
  height: 140px;
  background: rgba(14, 165, 164, 0.1);
  top: -20px;
  left: -30px;
}

.shape-two {
  width: 180px;
  height: 180px;
  background: rgba(11, 76, 146, 0.07);
  bottom: -70px;
  right: -60px;
}

.director-image-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #dff1ff 0%, #bfe1ff 100%);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.director-image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.director-info {
  position: relative;
  z-index: 1;
  padding-top: 22px;
}

.director-info h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 8px;
}

.director-info p {
  font-size: 16px;
  color: var(--theme-gray-color);
  margin-bottom: 0;
  line-height: 1.8;
}

.director-message-content {
  position: relative;
}

.message-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.quote-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b4c92, #0ea5a4);
  color: var(--theme-white-color);
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(11, 76, 146, 0.2);
}

.message-top h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--theme-blue-color);
  letter-spacing: 1px;
}

.message-subtitle {
  color: var(--theme-gray-light-color);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 26px;
  max-width: 720px;
}

.message-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 76, 146, 0.08);
  border-radius: 0 28px 28px 0;
  box-shadow: 0 18px 45px rgba(13, 52, 108, 0.08);
  padding: 34px 34px;
  position: relative;
}

.message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, #0b4c92 0%, #0ea5a4 100%);
}

.message-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--theme-gray-color);
  margin-bottom: 18px;
  text-align: justify;
}

.message-card p:last-child {
  margin-bottom: 0;
}

/*NICU Section ==============================*/
.nicu-hero-card {
  background: var(--theme-white-color);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(13, 52, 108, 0.08);
  border: 1px solid rgba(11, 61, 145, 0.08);
}

.nicu-image {
  min-height: 100%;
}

.nicu-image img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.nicu-hero-content {
  padding: 42px;
}

.nicu-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b4c92, #0ea5a4);
  color: var(--theme-white-color);
  font-size: 30px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(11, 76, 146, 0.18);
}

.nicu-hero-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 16px;
}

.nicu-hero-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-gray-color);
  margin-bottom: 16px;
}

.nicu-hero-content p {
  color: var(--theme-gray-color);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.nicu-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nicu-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--theme-gray-light-color);
  font-size: 16px;
  line-height: 1.8;
}

.nicu-check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--theme-skyblue-color);
  font-size: 22px;
}

.nicu-info-card {
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 16px 40px rgba(13, 52, 108, 0.08);
  border: 1px solid rgba(11, 61, 145, 0.08);
}

.section-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--theme-green-color);
  background: var(--theme-green-light-color);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.nicu-info-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 15px;
}

.nicu-info-card p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--theme-gray-color);
}

.nicu-small-box {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
  border: 1px solid #e6eef8;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #30485f;
  height: 100%;
}

.nicu-cta {
  background: linear-gradient(135deg, #0b4c92, #0ea5a4);
  border-radius: 28px;
  padding: 48px 30px;
  color: var(--theme-white-color);
  box-shadow: 0 18px 45px rgba(11, 76, 146, 0.18);
}

.nicu-cta h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.nicu-cta p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 850px;
  margin: 0 auto 24px;
  opacity: 0.95;
}

.nicu-btn {
  background: var(--theme-white-color);
  color: var(--theme-blue-color);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  border: 0;
  transition: 0.3s ease;
}

.nicu-btn:hover {
  background: var(--theme-blue-color);
  color: var(--theme-white-color);
}

/*Nephrology ===========================*/
.section-title-wrap {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 183, 184, 0.1);
  color: var(--theme-green-dark-color);
  border: 1px solid rgba(17, 183, 184, 0.18);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--theme-blue-color);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-title-2 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--theme-white-color);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.9;
  color: var(--theme-gray-light-color);
  margin: 0 auto;
  max-width: 900px;
}

.section-subtitle-2 {
  font-size: 16px;
  line-height: 1.9;
  color: var(--theme-white-color);
  margin: 0 auto;
  max-width: 900px;
}

.title-left {
  text-align: left;
  margin-bottom: 28px;
}

.title-left .section-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.title-left .section-subtitle {
  max-width: 100%;
}

h4.section-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 10px;
  margin-top: 25px;
  max-width: 100%;
}

h4.section-subtitle:first-child {
  margin-top: 0;
}

/* =========================
 HERO
========================= */
.nephro-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at top left,
      rgba(17, 183, 184, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at top right,
      rgba(11, 61, 145, 0.1),
      transparent 20%
    ),
    linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%);
  padding: 90px 0 70px;
}

.nephro-hero::before,
.nephro-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
}

.nephro-hero::before {
  left: -70px;
  top: -70px;
  background: rgba(17, 183, 184, 0.1);
}

.nephro-hero::after {
  right: -70px;
  bottom: -70px;
  background: rgba(11, 61, 145, 0.08);
}

.hero-content,
.hero-image-card {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(11, 61, 145, 0.08);
  color: var(--theme-blue-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--theme-blue-color);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--theme-gray-color);
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--theme-white-color);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-gray-color);
  box-shadow: 0 8px 24px rgba(13, 52, 108, 0.06);
}

.hero-badge i {
  color: var(--theme-skyblue-color);
  font-size: 16px;
}

.hero-image-card {
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(13, 52, 108, 0.1);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

/* =========================
 COMMON CARD
========================= */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.section-panel {
  padding: 36px;
}

/* =========================
 QUICK STATS
========================= */
.stats-grid {
  position: relative;
  z-index: 3;
}

.stat-card {
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 26px 24px;
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
  transition: 0.3s ease;
}

.stat-card ul {
  margin-top: 20px;
}

.stat-card li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--theme-gray-color);
}

.stat-card li::before {
  content: "\F133";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--theme-skyblue-color);
  font-size: 15px;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  color: var(--theme-white-color);
  box-shadow: 0 12px 28px rgba(11, 61, 145, 0.18);
}

.stat-icon img{
  width: 50px;
}

.stat-card h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--theme-blue-color);
  margin-bottom: 6px;
}

.stat-card h3::after {
  content: "+";
}

.stat-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-blue-color);
  margin-bottom: 6px;
}

.stat-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--theme-blue-color);
  margin-bottom: 6px;
}

.stat-card p {
  margin: 0;
  color: var(--theme-gray-color);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
 ABOUT / OVERVIEW
========================= */
.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.about-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.floating-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 16px 34px rgba(13, 52, 108, 0.12);
  max-width: 260px;
}

.floating-badge h6 {
  margin: 0 0 4px;
  color: var(--theme-blue-color);
  font-weight: 700;
  font-size: 16px;
}

.floating-badge p {
  margin: 0;
  color: var(--theme-gray-light-color);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
 FACULTY TABLE
========================= */
.table-shell {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  background: var(--theme-white-color);
}

.table-shell-2 {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 61, 145, 0.08);
  background: var(--theme-white-color);
}

.dept-table {
  margin: 0;
  min-width: 950px;
}
.dept-table.dept-donor-list {
  min-width: 100% !important;
}

.dept-table thead th {
  background: linear-gradient(
    90deg,
    var(--theme-blue-color),
    var(--theme-green-color)
  );
  color: var(--theme-white-color);
  border: 0;
  font-weight: 700;
  font-size: 14px;
  padding: 18px 16px;
  white-space: nowrap;
}

.dept-table tbody tr {
  transition: 0.25s ease;
}

.dept-table tbody tr:nth-child(odd) {
  background: #f9fcff;
}

.dept-table tbody tr:nth-child(even) {
  background: #f3fbfb;
}

.dept-table tbody tr:hover {
  background: #eef6ff;
}

.dept-table td {
  padding: 10px 15px;
  vertical-align: middle;
  border: 1px solid #eaf0f6;
  color: var(--theme-gray-color);
  font-size: 14px;
  line-height: 1.7;
}

/*.dept-table td:last-child {
  border: none;
}*/

.dept-table .serial {
  width: 70px;
  text-align: center;
  font-weight: 700;
  color: var(--theme-blue-color);
}

.name-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.name-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(11, 61, 145, 0.12),
    rgba(17, 183, 184, 0.12)
  );
  color: var(--theme-blue-color);
  font-size: 18px;
  flex-shrink: 0;
}

.faculty-name {
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 2px;
}

.call-icon{
  font-weight: 700;
  color: var(--theme-skyblue-color);
  margin-bottom: 2px;
}

.faculty-role {
  font-size: 12px;
  color: var(--theme-gray-light-color);
}

.badge-reg {
  display: inline-block;
  background: rgba(11, 61, 145, 0.08);
  color: var(--theme-blue-color);
  border-radius: 50px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.qualification-text {
  font-weight: 500;
  color: #35516e;
}

/* =========================
 SUPPORT STAFF
========================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-white-color);
  font-size: 24px;
  background: linear-gradient(
    135deg,
    var(--theme-blue-dark-color),
    var(--theme-skyblue-color)
  );
}

.support-card.teal .support-card-icon {
  background: linear-gradient(
    135deg,
    var(--theme-green-dark-color),
    var(--theme-green-color)
  );
}

.support-card-head h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-blue-color);
}

.support-card-head p {
  margin: 4px 0 0;
  color: var(--theme-gray-light-color);
  font-size: 14px;
}

.support-card h6 {
  color: var(--theme-skyblue-color);
  font-weight: 700;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.member-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
  border: 1px solid #e7eef7;
  transition: 0.25s ease;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.member-list li:hover {
  transform: translateX(4px);
  background: #eef7ff;
}

.member-list li i {
  color: var(--secondary-dark);
  font-size: 16px;
  margin-top: 2px;
}

.coordinator-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
  border: 1px solid #e7eef7;
  border-radius: 18px;
}

.coordinator-box i {
  color: var(--theme-blue-color);
  font-size: 22px;
  margin-top: 2px;
}

.coordinator-box strong {
  display: block;
  color: var(--theme-blue-color);
  margin-bottom: 4px;
}

.coordinator-box span {
  color: var(--theme-gray-light-color);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
 SERVICES
========================= */
.service-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: 0 8px 20px rgba(13, 52, 108, 0.06);
  color: var(--theme-gray-color);
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.service-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 183, 184, 0.28);
}

.service-chip i {
  color: var(--secondary-dark);
  font-size: 15px;
}

/* =========================
 CLINICAL LOAD
========================= */
.clinical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.clinical-card {
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  transition: 0.3s ease;
}

.clinical-card:hover {
  transform: translateY(-4px);
}

.clinical-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.clinical-card .number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--theme-blue-color);
  background: rgba(11, 61, 145, 0.08);
  flex-shrink: 0;
}

.clinical-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-white-color);
  font-size: 22px;
  background: linear-gradient(
    135deg,
    var(--theme-green-dark-color),
    var(--theme-green-color)
  );
  flex-shrink: 0;
}

.clinical-card h5 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--theme-blue-dark-color);
  margin-bottom: 8px;
}

.clinical-card p {
  margin: 0;
  color: var(--theme-gray-light-color);
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
 FELLOWSHIP
========================= */
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(11, 61, 145, 0.06),
    rgba(17, 183, 184, 0.08)
  );
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 28px;
}

.highlight-box p {
  margin: 0;
  color: var(--theme-gray-color);
  line-height: 1.9;
  font-size: 15px;
}

.fellowship-table thead th {
  background: linear-gradient(
    90deg,
    var(--theme-green-dark-color),
    var(--theme-green-color)
  );
}

/* =========================
 PUBLICATIONS / RESEARCH / TEXT BLOCKS
========================= */
.publication-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.publication-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
}

.pub-count {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--theme-green-dark-color),
    var(--theme-green-color)
  );
  color: var(--theme-white-color);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(11, 61, 145, 0.16);
}

.publication-list li p {
  margin: 0;
  color: var(--theme-gray-color);
  font-size: 16px;
  line-height: 1.85;
}

.publication-list li p span {
  color: var(--theme-gray-light-color);
}

.research-list {
  display: grid;
  gap: 16px;
}

.research-card {
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.research-index {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 183, 184, 0.12);
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 18px;
}

.research-card h6 {
  margin: 0 0 6px;
  color: var(--theme-blue-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.research-card p {
  margin: 0;
  color: var(--theme-gray-light-color);
  font-size: 16px;
  line-height: 1.8;
}

.info-box {
  background: var(--theme-white-color);
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
}

.info-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 12px;
}

.info-box p {
  margin: 0;
  color: var(--theme-gray-light-color);
  font-size: 15px;
  line-height: 1.95;
}

/* =========================
 CTA
========================= */
.dept-cta {
  background: linear-gradient(
    135deg,
    var(--theme-blue-color) 60%,
    var(--theme-green-color)
  );
  border-radius: 30px;
  padding: 42px;
  color: var(--theme-white-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11, 61, 145, 0.18);
}

.dept-cta::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dept-cta::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dept-cta .inner {
  position: relative;
  z-index: 1;
}

.dept-cta h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.dept-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.95;
}

.dept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--theme-white-color);
  color: var(--theme-blue-color);
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
}

.dept-btn:hover {
  transform: translateY(-2px);
  color: var(--theme-skyblue-color);
  background: #f7fbff;
}

.dept-btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
}

.dept-btn2:hover {
  transform: translateY(-2px);
  color: var(--theme-blue-color);
  background: var(--theme-white-color);
  border: 1px solid var(--theme-white-color);
}

.info-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--theme-blue-color),
    var(--theme-green-color)
  );
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(22, 52, 101, 0.14);
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--theme-blue-color);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 59, 122, 0.12),
    rgba(67, 183, 180, 0.12)
  );
  color: var(--theme-blue-color);
  font-size: 20px;
  flex-shrink: 0;
}

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

.haem-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--theme-gray-color);
}

.haem-list li:last-child {
  margin-bottom: 0;
}

.haem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--theme-green-dark-color),
    var(--theme-green-color)
  );
  box-shadow: 0 0 0 5px rgba(67, 183, 180, 0.12);
}

.clinical-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--theme-gray-color);
  margin: 0;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--theme-white-color);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}

.cta-badge i {
  font-size: 1rem;
}

.stat-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(3px);
}

.stat-box h4 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--theme-white-color);
}

.stat-box h5 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--theme-white-color);
}

.stat-box p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.stat-box-icon {
    width: 70px;
    height: 70px;
    background: rgb(255 255 255 / 14%);
    color: var(--theme-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 32px;
    margin-bottom: 25px;
}

.quality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.quality-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--theme-blue-light-color);
  border: 1px solid #d9eafc;
  color: var(--theme-blue-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.quality-tag i {
  color: var(--secondary);
}

.service-card {
  background: var(--theme-white-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(20, 59, 122, 0.12),
    rgba(67, 183, 180, 0.12)
  );
  color: var(--theme-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 32px;
  margin-bottom: 25px;
}

.service-icon img{
  width: 42px;
  height: 42px;
}

.service-card h5 {
  font-weight: 700;
  color: var(--theme-blue-color);
}

.service-card h4 {
  font-weight: 700;
  color: var(--theme-blue-color);
}

.service-card p {
  color: var(--theme-gray-color);
}

.service-card ul {
  padding-left: 18px;
}

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

.safety-card {
  background: var(--theme-white-color);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
  gap: 20px;
}

.safety-card{
  display: flex;
  align-items: center;
}

.safety-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(20, 59, 122, 0.12),
    rgba(67, 183, 180, 0.12)
  );
  color: var(--theme-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 32px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.safety-card h5 {
  font-weight: 700;
  color: var(--theme-blue-color);
}

.safety-card p {
  color: var(--theme-gray-color);
  margin-bottom: 0;
}

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

.hero-feature div {
  background: var(--theme-white-color);
  padding: 20px;
  border-radius: 20px;
  min-width: 170px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-feature i {
  color: var(--theme-blue-color);
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.hero-feature strong {
  display: block;
  color: var(--theme-blue-color);
  font-size: 22px;
}

.hero-feature span {
  color: var(--theme-gray-light-color);
}

.section-title2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.smile-content p {
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 22px;
}

.smile-gallery img {
  width: 280px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--theme-white-color);
}

.img1 {
  position: relative;
  z-index: 1;
}

.img2 {
  margin-top: -54px;
  margin-left: 91px;
}

.img3 {
  margin-top: -27px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--theme-white-color);
  background-color: var(--theme-skyblue-color);
  box-shadow: none;
  border-radius: 5px 5px 0 0 !important;
}

.faq-section .accordion-button::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  background-image: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  background-image: none;
  transform: var(--bs-accordion-btn-icon-transform);
}

.faq-section .accordion-flush > .accordion-item {
  border: 1px solid var(--theme-skyblue-color);
  border-radius: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}

.faq-section .accordion-body {
  color: var(--theme-gray-color);
}

/*Cource section ============================*/
.info-card-high {
  background: linear-gradient(135deg, #0d6efd, #19b6a8);
  color: var(--theme-white-color);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
}

.info-card-high h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

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

.info-list li {
  margin-bottom: 18px;
  font-size: 16px;
}

.info-list i {
  margin-right: 10px;
}

/* Admission */
.admission-card {
  background: var(--theme-white-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s;
}

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

.admission-card h5 {
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 15px;
}

.admission-card p {
  color: var(--theme-gray-light-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

/*==========================
    Faculty Card
===========================*/
.faculty-card {
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 15px !important;
  height: 100%;
  padding: 27px;
  transition: 0.35s;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.12);
}

/*==========================
      Top Area
===========================*/

.faculty-top {
  display: flex;
  align-items: self-start;
  gap: 20px;
  margin-bottom: 15px;
}

.faculty-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 50px;
}

.faculty-icon i {
  font-size: 30px;
  color: var(--theme-white-color);
}

.faculty-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faculty-number {
  display: inline-block;
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  flex-shrink: 0;
  display: none;
}

.faculty-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-blue-color);
  margin-bottom: 8px;
}

.designation {
  color: var(--theme-gray-color);
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.designation:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 1px;
  width: 40%;
  border-radius: 3px;
  background: var(--theme-blue-color);
}

/*==========================
     Body
===========================*/

.faculty-body {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.faculty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.faculty-item:last-child {
  border-bottom: none;
}

.faculty-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-blue-light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--theme-skyblue-color);
  font-size: 18px;
  flex-shrink: 0;
}

.faculty-item small {
  display: block;
  font-weight: 700;
  color: var(--theme-skyblue-color);
  margin-bottom: 1px;
  font-size: 12px;
}

.faculty-item p {
  margin: 0;
  color: var(--theme-gray-color);
  line-height: 28px;
  font-size: 14px;
}

.faculty-item-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.faculty-item-group:last-child {
  border-bottom: none;
}

.faculty-item-group .faculty-item {
  border-bottom: none;
}

.description {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.description.show {
  display: block;
}

.read-more {
  color: var(--theme-skyblue-color);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}

.read-more:focus {
  color: var(--theme-skyblue-color);
}

/* Announcement ================== */
.featured-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-image {
  background: var(--theme-skyblue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 250px;
  font-size: 70px;
}

.featured-image img {
  width: 80%;
}

.featured-card .card-body h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-gray-color);
}

.featured-card .card-body p {
  font-size: 16px;
  color: var(--theme-gray-light-color);
}

.badge-featured {
  background: var(--theme-yellow-color);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--theme-white-color);
}

.latest-announcements .latest-title-area h2 {
  color: 60px;
  font-weight: 600;
  color: var(--theme-blue-color);
}

/* Cards */

.notice-card {
  background: var(--theme-white-color);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 5px solid transparent;
}

.notice-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-gray-light-1-color);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.notice-date {
  color: var(--theme-white-color);
  text-align: center;
  padding: 25px 15px;
}

.notice-date h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.notice-date span {
  font-size: 14px;
  letter-spacing: 1px;
}

.notice-body {
  padding: 25px;
}

.notice-body h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.notice-body p {
  color: var(--theme-gray-light-color);
  font-size: 15px;
}

.notice-footer {
  border-top: 1px solid var(--border);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-download {
  width: 40px;
  height: 40px;
  color: var(--theme-white-color);
  background: var(--theme-blue-color);
  border: none;
  font-size: 18px;
  border-radius: 8px;
}

.btn-download:hover {
  background: var(--theme-skyblue-color);
}

.bg-blue {
  background: var(--theme-skyblue-color);
}

.bg-green {
  background: var(--theme-green-color);
}

.bg-yellow {
  background: var(--theme-yellow-color);
}

/* Subscribe */
.newsletter .form-control {
  border-radius: 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--theme-blue-color);
  border: none;
}

.newsletter .form-control:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.subscribe-btn {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  padding: 10px 15px;
  border-radius: 0 30px 30px 0;
  border: none;
}

/*Donors ============================*/
.donation-process {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}
.donation-process::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(14 165 164 / 25%) 0%,
    rgb(14 165 164 / 0%) 70%
  );
  z-index: 0;
}
.donation-process::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(11 61 145 / 25%) 0%,
    rgb(11 61 145 / 0%) 70%
  );
  z-index: 0;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #eaf2ff;
  color: #0d6efd;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  height: 87%;
  background: #dbe7ff;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 45px;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--theme-white-color);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.timeline-content {
  background: var(--theme-white-color);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  flex: 1;
  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.step-no {
  display: inline-block;
  background: #edf4ff;
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--theme-gray-light-color);
  margin: 0;
  line-height: 1.7;
}

.donation-card {
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.donation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--theme-skyblue-color);
}

.offline-card::before {
  background: var(--theme-green-color);
}

.donation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.donation-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.donation-icon.bg-success {
  background: var(--theme-green-color) !important;
}

.donation-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--theme-blue-color);
}

.donation-card p {
  color: var(--theme-gray-light-color);
  line-height: 1.8;
}

.donation-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.donation-list li {
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--theme-gray-color);
}

.donation-list i {
  color: var(--theme-skyblue-color);
  margin-right: 10px;
}

.offline-card .donation-list i {
  color: var(--theme-green-color);
}

/* Glass Card */
.modal-body-card {
  border: 1px solid var(--theme-blue-color);
  border-radius: 25px;
  padding: 30px;
}

/* Labels */
.modal-body-card label {
  font-size: 13px;
  color: var(--theme-gray-light-color);
  display: block;
  margin-bottom: 6px;
}

.modal-body-card h6 {
  font-weight: 700;
}

/* QR Card */
.qr-card {
  background: var(--theme-white-color);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.qr-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #eaf2ff;
  color: #0d6efd;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.qr-image {
  width: 220px;
}

.upi-id {
  display: inline-block;
  background: #f1f6ff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  color: #0d6efd;
}

/* Impact */
.impact-section {
  background: #0d6efd;
  color: var(--theme-white-color);
  padding: 90px 0;
}

.impact-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.impact-card h2 {
  font-size: 42px;
  font-weight: 700;
}

.impact-card p {
  margin: 0;
}

/* FAQ */
.accordion-button {
  padding: 22px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: var(--theme-white-color);
}

.accordion-item {
  border: none;
}

.custom-fancy.fancybox-content {
  background: var(--theme-white-color);
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  border-radius: 15px;
}

/*Online Donation =====================*/
.donation-info {
  background: var(--theme-white-color);
  padding: 35px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  height: 100%;
  position: sticky;
  top: 140px;
}
.donation-info h3 {
  font-size: 24px;
  color: var(--theme-blue-color);
}
.donation-info p {
  font-size: 14px;
  color: var(--theme-gray-light-color);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-gray-color);
}
.info-item small {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-gray-light-color);
}
.icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  color: var(--theme-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.donation-form-card {
  background: var(--theme-white-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.donation-form-card h5 {
  font-size: 18px;
  color: var(--theme-gray-color);
}
.donation-form-card i {
  color: var(--theme-skyblue-color);
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-header h2 {
  color: var(--theme-gray-color);
  font-size: 30px;
}
.form-header h2 i {
  color: var(--theme-skyblue-color);
}
.form-header p {
  color: var(--theme-gray-light-color);
  font-size: 14px;
}
.secure-badge {
  background: var(--theme-green-light-color);
  color: var(--theme-green-color);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}
.donation-form-card .form-control {
  border-radius: 15px;
  min-height: 58px;
  border: 1px solid var(--theme-gray-light-1-color);
}
.donation-form-card .form-control:focus {
  border-color: #86b7fe !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-floating label {
  color: var(--theme-gray-light-2-color);
}
.amount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.amount-chip {
  padding: 14px 26px;
  border: 2px solid var(--theme-gray-light-1-color);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  color: var(--theme-gray-color);
}
.btn-check:checked + .amount-chip {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  border-color: var(--theme-skyblue-color);
}
.payment-card {
  background: var(--theme-white-color);
  border: 2px solid var(--theme-gray-light-1-color);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}
.payment-card i {
  font-size: 34px;
  color: var(--theme-skyblue-color);
  display: block;
  margin-bottom: 12px;
}
.payment-card span {
  font-weight: 600;
}
.btn-check:checked + .payment-card {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
  border-color: var(--theme-skyblue-color);
}
.btn-check:checked + .payment-card i {
  color: var(--theme-white-color);
}

.research-contact {
  background: #f7fbff;
}

.research-cta {
  background: var(--theme-white-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--theme-blue-color);
}
.cta-title span {
  color: var(--theme-green-color);
}
.cta-text {
  color: var(--theme-gray-color);
  line-height: 1.9;
}

.research-info-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--theme-white-color);
  border-radius: 24px;
  padding: 26px 24px;
  border: 1px solid rgba(11, 61, 145, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
}

.research-info-box h6 {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--theme-blue-color);
}

.research-info-box p {
  margin: 0;
  color: var(--theme-gray-light-color);
  line-height: 1.7;
}

.contact-card {
  /*background: linear-gradient(
    135deg,
    var(--theme-blue-color) 60%,
    var(--theme-green-color)
  );
  color: var(--theme-white-color);
  border-radius: 25px;*/
  padding: 30px;
  text-align: center;
}

.contact-card .icon-circle {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 25px;
}

.contact-card .icon-circle i {
  font-size: 38px;
}

.contact-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--theme-gray-light-3-color);
  margin-bottom: 30px;
}

.contact-card .btn {
  border-radius: 50px;
  font-weight: 600;
}

.contact-card .btn-outline-primary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.contact-card .btn-outline-primary:hover {
  background: #fff;
  color: #0d6efd;
}

/*Ethics Section ====================*/
.ethics-tab {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  border-radius: 20px;
  cursor: pointer;
  background: var(--theme-white-color);
  border: 2px solid var(--border);
  transition: 0.35s;
  height: 100%;
}

.ethics-tab:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.ethics-tab.active {
  background: linear-gradient(
    126deg,
    var(--theme-blue-color)50%,
    var(--theme-green-color)
  );
  color: var(--theme-white-color);
}

.tab-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--theme-blue-light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--theme-skyblue-color);
  flex-shrink: 0;
}

.ethics-tab.active .tab-icon {
  background: var(--theme-white-color);
  color: var(--theme-skyblue-color);
}

.badge-custom {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 30px;
  background: #e8f3ff;
  color: var(--theme-skyblue-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ethics-tab.active .badge-custom {
  background: rgba(255, 255, 255, 0.2);
  color: var(--theme-white-color);
}

.tab-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-blue-color);
}

.tab-content h6 {
  color: var(--theme-skyblue-color);
  margin: 10px 0;
}

.ethics-tab.active .tab-content h4{
  color: var(--theme-white-color);
}

.ethics-tab:not(.active) h6 {
  color: var(--theme-black-color);
}

.tab-content p {
  margin: 0;
  opacity: 0.9;
}

/* Content */

.tab-box {
  background: var(--theme-white-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);;
}

.tab-pane-custom {
  display: none;
}

.tab-pane-custom.active {
  display: block;
  animation: fade 0.4s;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.iec-hero {
  background: #f5f9ff;
}

.ethics-tab-box{
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border);
}

.ethics-hero-badge{
  background:var(--theme-blue-light-color);
  color:var(--theme-skyblue-color);
  padding:8px 18px;
  border-radius:30px;
  font-weight:600;
  margin-bottom: 10px;
  display: inline-block;
}

.nabh-logo {
  max-width: 140px;
}

.ethics-tab-box h2{
  font-size: 28px;
  font-weight: 800;
  color: var(--theme-blue-color);
  text-transform: uppercase;
}

.ethics-certificate {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: #b91c1c;
}

.ethics-registration {
  font-size: 18px;
  margin-top: 15px;
}

.ethics-hero-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.ethics-hero-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--theme-gray-color);
  font-size: 16px;
}

.ethics-hero-info div a{
  color: var(--theme-gray-color);
}

.ethics-hero-info i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(20, 59, 122, 0.12),
    rgba(67, 183, 180, 0.12)
  );
  color: var(--theme-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-info{
  background: var(--theme-blue-color);
}

.xray-safety{
    background:#f7fbff;
}

.safety-alert{
    background:linear-gradient(135deg,#0d6efd,#00b4d8);
    color:var(--theme-white-color);
    border-radius:24px;
    padding:45px;
    box-shadow:0 20px 45px rgba(13,110,253,.18);
    position:relative;
    overflow:hidden;
}

.safety-alert::before{
    content:"";
    position:absolute;
    right:-60px;
    top:-60px;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.safety-icon-2{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    border:2px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
}

.safety-icon-2 i{
    font-size:52px;
    color:var(--theme-white-color);
}

.alert-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.safety-alert h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.safety-alert p{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.95);
    margin-bottom:0;
}

.safety-item{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    border-radius:12px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.safety-item i{
    font-size:18px;
    color:#fff;
}

.prep-list{
    list-style:none;
    padding:0;
    margin-top:0px;
}

.prep-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:16px;
    font-size:18px;
    color:var(--theme-gray-color);
}
.prep-list li:last-child{
  margin-bottom: 0;
}

.prep-list i{
    color:var(--theme-green-color);
    font-size:20px;
    margin-top:0px;
}

/*.service-container .col{
    display: none;
}
*/