@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.py-5 {
  padding-bottom: 20px !important;
}
.offcanvas-body {
  overflow-y: hidden !important;
}

body {
  /* font-family: "Roboto"; */

  font-family: "Crimson Pro", sans-serif;
  overflow-y: scroll;
  overflow-x: hidden !important;
}

:root {
  /* --brand-color: #012a63; */
  --brand-color: #012169;

  --secondary-color: #333;
  --hover-color: #f2a900;
}

/* HEADER START HRER */
.top-header-section {
  background: var(--brand-color);
  /* margin-bottom: 2px; */
  border-bottom: 8px solid #f2a900;
  padding: 10px;
}
.hospital-name {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: #fff !important;
}

.company-slogan {
  font-size: 0.85rem;
  color: #fff !important;
}

.custom--btn {
  background: var(--hover-color);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 12px !important;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: 0.3s !important;
}

.custom--btn:hover {
  background: transparent;
  color: var(--hover-color);
  border-color: var(--hover-color);
}

/* ===== Mobile Offcanvas ===== */
.offcanvas {
  background-color: #012b67;
  width: 100%;
  max-width: 100%;
}

.offcanvas .btn-light {
  border-radius: 0;
}

.bottom-links a:hover {
  text-decoration: underline;
}
.main--logo-area {
  text-align: center;
}
.main-home-logo {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 3px 5px;
  border-radius: 50%;
  background: #e6f9ff;
  color: #000;
}
.main-logo {
  height: 50px;

  /* height: 80px !important; */
  /* width: 80px !important; */
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}
.top-header-links a {
  text-decoration: none;
}
.custom---header-bg-bg {
  background: var(--brand-color);
  border-bottom: 8px solid var(--hover-color);
}
.nav-link {
  color: #fff !important;
  font-size: 16px;
  padding: 10px !important;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd !important;
  background: var(--brand-color) !important;
  color: #fff !important;
}
/*  */
.navbar-nav .nav-link {
  position: relative;
  color: #012a63;
  font-weight: 500;
  overflow: visible; /* overflow hidden দিলে arrow কেটে যায় */
  transition: color 0.3s ease;
  z-index: 1;
}
/* hover effects */
.nav-link {
  color: #012a63;
  font-weight: 500;
  border: 2px solid transparent;

  padding: 8px 14px;
  box-sizing: border-box;
  transition: 0.3s;
}

.nav-link:hover {
  border-color: var(--hover-color);
  background: rgba(1, 42, 99, 0.05);
}
/* hover effects */
.navbar-nav .nav-link:hover {
  color: #012a63;
  font-weight: 600;
}

/* Dropdown arrow visible রাখার জন্য */
.navbar-nav .dropdown-toggle::after {
  position: relative;
  z-index: 2;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Hover করলে arrow rotate করবে */
.navbar-nav .dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/*  */
.slogan-wrapper {
  display: flex;
  align-items: center;
}
.hospital-name {
  font-size: 20px;
  color: var(--brand-color);
}
/* .logo--text--area {
  text-align: center;
} */
.company-slogan {
  font-size: 12px;
  color: var(--brand-color);

  letter-spacing: 0.3px;
  margin: 0;
  margin-right: 10px;
  white-space: nowrap;
}

.line {
  flex: 1;
  height: 1.5px;
  background-color: #2d3691;
  min-width: 52px;
}

.dropdown-menu {
  border: none;
  border-radius: 10px;
  min-width: 200px;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.dropdown-menu.show {
  animation-name: dropdownFade;
}
.dropdown-menu a {
  font-size: 14px;

  padding: 5px 10px;
  border-bottom: 1px solid #e7dede;
}
.navbar-nav a {
  border-bottom: 1px soid red !important;
}
/* Animation keyframes */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown items */
.dropdown-item {
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: var(--brand-color);
  color: #fff;
  transform: translateX(5px);
}
header .btn-primary {
  background: var(--brand-color);
}
/*  */

/* Search Popup */
.mobile-search-popup {
  top: 100%;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
.mobile-search-popup.active {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

/* 🔥 Animated Custom Navbar Toggler 🔥 */
.custom-toggler {
  width: 34px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;

  position: relative;
}

.custom-toggler .bar {
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  border-radius: 5px;
  transition: all 0.4s ease;
}

.custom-toggler.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.custom-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.custom-toggler.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.custom-toggler:hover .bar {
  background-color: var(--brand-color);
}
.custom--Icon_color {
  color: var(--brand-color);
}

body.modal-open,
body.offcanvas-backdrop,
.offcanvas-backdrop.show {
  padding-right: 0 !important;
  overflow: hidden !important;
}

/*  */
/* dropdown menu design ends */
/* 🔹 Base Fullscreen Overlay */
.mobile-search-popup {
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Active State */
.mobile-search-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 🔹 Dark Blur Background */
.overlay-bg {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* 🔹 Center Content */
.search-overlay-content {
  position: relative;
  z-index: 2;
  animation: fadeDown 0.5s ease;
  padding: 0 15px;
}

/* 🔹 Input Group Styling */
.input-group {
  /* background: #fff; */
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.search-input {
  padding: 18px 20px;
  font-size: 1.2rem;
  height: 60px;
}

.input-group-text {
  border-radius: 50px 0 0 50px;
}

.btn-primary {
  border-radius: 0 50px 50px 0;
  height: 60px;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* 🔹 Close Button */
.search-close-btn {
  z-index: 3;
  filter: invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.search-close-btn:hover {
  opacity: 1;
}

/* 🔹 Animation */
@keyframes fadeDown {
  from {
    transform: translateY(-15px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 🔹 Responsive */

/*  */

/* Modern Icon Buttons */
.icon-btn {
  background: linear-gradient(135deg, #012a63, #012a63);
  /* background: var(--brand-color); */
  border: none;
  border-radius: 50%;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  width: 40px;
  height: 40px;
}

.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}

/* Hamburger Icon bars */
.custom-toggler {
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.custom-toggler .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Hover animation for bar icon */
.custom-toggler:hover .bar:nth-child(1) {
  width: 24px;
}
.custom-toggler:hover .bar:nth-child(2) {
  width: 18px;
}
.custom-toggler:hover .bar:nth-child(3) {
  width: 24px;
}
/* PC SEARCH AREA START FROM HERE */
.pc-search-btn {
  border: none;
  background: var(--hover-color);
  color: #fff;
  padding: 10px;
  border: 1px solid transparent;
  transition: 0.3s;
}
.pc-search-btn:hover {
  border: 1px solid var(--hover-color);
  background: transparent;
}

/* 🔹 Container */
.pc-search-area {
  position: relative;
  z-index: 5000; /* ensure always on top */
}

/* 🔹 Search Toggle Icon */
.pc-search-toggle-btn {
  border: none;
  background: var(--hover-color);
  color: #fff;
  padding: 10px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.pc-search-toggle-btn:hover {
  color: #fff;
  border: 2px solid var(--hover-color);
  background: transparent;
}

/* 🔹 Input Box Wrapper */
.pc-search-box {
  position: absolute;
  top: 50%;
  right: 40px; /* just beside icon */
  transform: translateY(-50%) scaleX(0);
  transform-origin: right;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* 🔹 When Active */
.pc-search-box.active {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}

/* 🔹 Input Field */
.pc-search-input {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 15px;
  outline: none;
  width: 180px;
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.3s ease;
}

.pc-search-input:focus {
  box-shadow: 0 0 0 2px #012a63;
}

/* 🔹 Search Button */
.pc-search-submit {
  background: var(--hover-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.pc-search-submit:hover {
  background: #001f47;
}

/* 🔹 Active Icon Style */
.pc-search-toggle-btn.active i {
  color: #fff;
  transform: rotate(90deg);
}

/* PC SEARCH AREA START ENDS HERE */
/*  */
/* HEADER ENDS  HRER */
/* BANNER STARTS  */
.banner-section {
  background-image: url(../banner-image/main-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  object-fit: cover;
}
.hero-slider {
  position: relative;
}

.hero-img {
  height: 70vh;
  object-fit: cover;
}

/* --- Overlay Section --- */
.hero-overlay {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 2rem;
}

/* --- Info Box --- */
.info-box {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 1.2rem 1.5rem;
  border-radius: 0; /* ❌ no rounded corners */
}

.info-box:hover {
  transform: translateY(-5px);
  background: #f2f7ff;
}

.info-box h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #012a63;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  line-height: 1.2;
}

/* --- Icon Circle --- */
.icon-circle {
  background: var(--brand-color);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.info-box:hover {
  background: var(--brand-color) !important;
}
.info-box:hover .icon-circle {
  background: var(--hover-color);
}
.info-box:hover h6 {
  color: #fff !important;
}
/* --- Responsive --- */

.hero-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 12px;
}
.hero-slider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 12px;
}
/* BANNER ENDS */
/* why-choose-uttara-hospital-section starts */
.why-choose-uttara-hospital-section {
  padding: 30px 0;
}
.small-heading {
  font-size: 16px;
}
.why-choose-area {
  max-width: 1000px;
  margin: 0 auto;
}
.heading-primary {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color) !important;
}
.description {
  text-align: center;
  margin-bottom: 50px !important;
}
.service-box {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  cursor: pointer;
}
.service-box:hover {
  background: var(--brand-color);
  color: #fff;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.service-box img {
  width: 60px;
  margin-bottom: 15px;
}
.side-box {
  /* background: #e6f9ff; */
  text-align: center;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  /* padding: 20px; */
}
.side-box:hover {
  transform: translateY(-5px);
}
.side-box:hover {
  background: var(--brand-color);
  color: #fff;
}
.side-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(1, 42, 99, 0.7); /* তোমার brand navy tone */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  backdrop-filter: blur(4px);
}

.image-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* why-choose-uttara-hospital-section ends */

/* ask-uttara-section */
.brand-bg {
  background: #012a63;
}

/* ========== Send Query Button Animation ========== */
.send-query-btn {
  position: relative;
  overflow: hidden;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #012a63;
  border-radius: 0;
  transition: color 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 6px 15px rgba(1, 42, 99, 0.3);
}

.send-query-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  background-color: var(--hover-color);
  /* background-color: #014fa3; */
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.5s ease;
  z-index: 0;
}

.send-query-btn:hover {
  color: #fff;
  border-color: var(--hover-color);
}

.send-query-btn:hover::before {
  width: 300%;
  height: 300%;
  top: -120%;
  left: -50%;
}

.send-query-btn .btn-text {
  position: relative;
  z-index: 1;
}
/*  ask-uttara-section*/
/* PACKAGE SECTION START */
.package-section {
  margin-bottom: 20px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card button {
  background: none !important;
}

.card button:hover {
  background: #0056b3; /* darker shade */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
figure {
  overflow: hidden;
}
.card {
  cursor: pointer;
}
.card img {
  transition: 0.6s;
}
.card img:hover {
  transform: scale(1.3);
}
.card button:active {
  transform: scale(0.98);
}
.card h3 {
  font-weight: normal;
  font-size: 16px;
}
.card p {
  font-size: 14px;
}
.heading-secondary {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 40px !important;
}

.package-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.check-up--title {
  font-size: 16px;
}
.package-img {
  width: 100%;
  border-radius: 5px;
}
/* starts */
.package-card {
  position: relative;
  border: none;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: scale(1.03);
}

.package-card figure {
  position: relative;
  margin: 0;
}

.package-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(60%);
  transition: filter 0.3s ease !important;
}

.package-card:hover img {
  filter: brightness(75%);
}

/* Dark overlay with stronger gradient */
.package-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 100%
  );
  color: #fff;
  padding: 25px 10px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card .overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.package-card .overlay p {
  margin-bottom: 12px;
  font-size: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.package-card .overlay button {
  background-color: var(--brand-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.package-card .overlay button:hover {
  background-color: var(--hover-color);
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
/*  ends*/
/* PACKAGE SECTION END */
/* blog-section start */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand-color);
}

.blog-text {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
/* Blog section buttons brand color */
.blog-section .btn-outline-primary {
  color: #2d3691;
  border-color: #2d3691;
}

.blog-section .btn-outline-primary:hover {
  background-color: #2d3691;
  color: #fff;
}

.blog-section .btn-primary {
  background-color: #2d3691;
  border-color: #2d3691;
}
.btn-primary .blog-section .btn-primary:hover {
  background-color: #1f2766; /* একটু গাঢ় শেড hover এ */
  border-color: #1f2766;
}
/* PATIENT STORIES SECTION START FROM HERE */

.patient-stories-section {
  background-color: #f8f9fa;
}
.patient-stories-section .btn-primary {
  background-color: #2d3691;
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.story-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.img-overlay {
  position: relative;
}

.img-overlay img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.story-card:hover .img-overlay img {
  filter: brightness(85%);
  transform: scale(1.05);
}

.card-body {
  background: #fff;
  padding: 20px;
}

.story-date {
  display: inline-block;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 3px;
}

.text-brand {
  color: var(--brand-color);
}

.story-link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--brand-color);
  text-decoration: none;
}

.story-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--brand-color);
  transition: width 0.3s ease;
}

.story-link:hover::after {
  width: 100%;
}

.brand-btn {
  background: var(--brand-color);
  color: #fff;
  border: none;
  transition: 0.3s ease;
  border-radius: 0%;
}

.brand-btn:hover {
  background: #02408a;
  color: #fff;
}

/* PATIENT STORIES SECTION ENDS FROM HERE */

/* BLOG SECTION START FROM HERE  */
.blog-section {
  padding: 40px auto;
}
.heading-secondary-update {
  margin-bottom: 0;
  font-size: 30px;
  color: var(--secondary-color);
  margin-top: 15px;
  margin-bottom: 15px;
}
/* BLOG SECTION ENDS FROM HERE  */
/* CORPORATE SECTION */

/* ====== Section ====== */
.corporate-section {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}
.corporate-description {
  margin-bottom: 60px;
  color: #777;
}
.corporate-section .heading-secondary {
  margin-bottom: 40px;
}

/* ====== Swiper Container ====== */
.corporateSwiperUnique {
  padding: 0 50px;
  position: relative;
}

.corporateSwiperUnique .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ====== Logo Box ====== */
.logo-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 100%;
  max-width: 180px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(1, 42, 99, 0.08);
  transition: all 0.3s ease;
}

.logo-box:hover {
  box-shadow: 0 6px 20px rgba(1, 42, 99, 0.18);
}

/* ====== Logo Image ====== */
.corporate-logo {
  width: 100%;

  object-fit: contain;
  /* filter: brightness(0.85); */
  transition: all 0.3s ease-in-out;
}

.corporateSwiperUnique {
  padding: 20px 0;
}
.logo-box:hover .corporate-logo {
  filter: brightness(1);
}

/* ====== Navigation Buttons ====== */
.corporate-next,
.corporate-prev {
  color: #fff;
  background: var(--brand-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease;
}

.corporate-next:hover,
.corporate-prev:hover {
  background: #001844;
}

.corporate-next::after,
.corporate-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* Desktop positioning */
.corporate-next {
  right: 15px;
}
.corporate-prev {
  left: 15px;
}

/* ====== Responsive Design ====== */

/* error fix  */

.corporate-description {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.logo-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  height: 120px; /* fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* image overflow prevent kore */
  transition: all 0.3s ease;
}

.logo-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.corporate-logo {
  max-width: 100%;

  object-fit: contain; /* ensure image always fit inside box */
  display: block;
}

/* error fix  */
/* Corporate Section */

/* map section start*/

/* map section end*/

/* Footer Section */

/* ------------------ */
.ever-footer {
  background-color: var(--brand-color);
  overflow: hidden;
  position: relative;
  border-top: 8px solid var(--hover-color);
}

.ever-footer-overlay {
  background-image: url("../banner-image/footer-pattern.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.ever-footer-glow {
  width: 500px;
  height: 500px;
  /* background: rgba(30, 51, 87, 0.5); */
  background: rgba(3, 17, 41, 0.221);
  z-index: 0;
}
.ever-footer a {
  color: var(--hover-color) !important;
}
.ever-footer a:hover {
  color: #fff !important;
  transition: 0.3s ease;
}

.ever-footer .btn-info {
  background-color: #fff !important;
  border: none;
  color: #000 !important;
}

.ever-footer .btn-info:hover {
  color: #fff !important;
  background: var(--hover-color) !important;
}

.ever-footer .ever-footer-title {
  opacity: 0.8;
  letter-spacing: 2px;
}
.transforming--ealthcare-footer {
  text-align: center;
  font-size: 100px;
  opacity: 0.5;

  margin-top: 15px;
}
/* ------------------ */

/* ABOUT PAGE START FROM HERE */
/* Service card hover fix */
.card {
  overflow: hidden; /* Prevent image overflow */
}

.card img {
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.08); /* Smooth zoom-in */
}
/* ----- */
/* Smooth fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

/* Text & Accent */
.text-shadow {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}
.text-accent {
  color: #00c2ff;
}

/* Button hover effects */
.hero-btn,
.hero-btn-outline {
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #fff;
  color: #012a63 !important;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-btn-outline {
  border: 2px solid #fff;
}

.hero-btn-outline:hover {
  background-color: #fff;
  color: #012a63 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(3px);
  animation: floatAnim 6s ease-in-out infinite alternate;
}

.shape1 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 8%;
}

.shape2 {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes floatAnim {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-25px);
  }
}

/* ----- */
/* Section look */
.about-section {
  background: #f8fafc;
}

.section-title {
  color: #012a63;
  position: relative;
  display: inline-block;
  font-size: 2rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #00b7ff;
  border-radius: 3px;
  margin-top: 8px;
}

.highlight {
  color: #012a63;
  font-weight: 600;
}

/* Card design */
.about-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(1, 42, 99, 0.2);
}

.img-container {
  overflow: hidden;
  position: relative;
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card:hover .img-container img {
  transform: scale(1.08);
}

/* Card body */
.card-body {
  background: #fff;
  padding: 1.5rem;
}

.card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Responsive */

/* ABOUT PAGE ENDS FROM HERE */

/* VISION PAGE START FROM HERE */
/* Hero text subtle overlay */
/* -------------------- Custom Mission Section -------------------- */
.custom-mission-section {
  background-color: #012a6309;
}
.custom-padding-top {
  padding-top: 0 !important;
}

.custom-section-title {
  color: #012a63;
  position: relative;
  display: inline-block;
  font-size: 2rem;
}

.custom-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00b7ff;
  border-radius: 3px;
  margin: 8px auto 0 auto;
}

.custom-mission-card {
  background-color: var(--brand-color);
  color: #fff;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.custom-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: transparent;
  color: #000;
  border-color: #007bff;
}
.custom-mission-card:hover .custom-icon {
  background: var(--brand-color);
}
.custom-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* -------------------- Custom Core Section -------------------- */
.custom-core-section {
  background-color: #012a63;
  color: #fff;
  padding-bottom: 80px !important;
}

.custom-core-card {
  background-color: #fff;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}
.custom-core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: var(--brand-color);
  color: #fff;
  border-color: #007bff;
}
/* RESUSABLE ANIMAION CODE STARTS */
/* ✅ UCH Hero Section (No conflict) */
.uch-hero-section {
  background: linear-gradient(rgba(1, 42, 99, 0.85), rgba(1, 42, 99, 0.85)),
    url("../background-image/98-1600x600.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: uchHeroFadeIn 1s ease-out forwards;
}

/* ✅ Fade-in animation */
@keyframes uchHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Moving gradient overlay */
.uch-hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0.3;
  animation: uchHeroOverlayMove 6s linear infinite;
}

@keyframes uchHeroOverlayMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* ✅ Title and subtitle smooth entrance */
.uch-hero-title {
  opacity: 0;
  animation: uchSlideUp 1s ease-out 0.3s forwards;
}

.uch-hero-subtitle {
  opacity: 0;
  animation: uchSlideUp 1s ease-out 0.6s forwards;
}

@keyframes uchSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESUSABLE ANIMAION CODE ENDS */
/* VISION PAGE ENDS FROM HERE */

/* MISSION SECTION START FROM HERE */
/* ====== UCH Mission Page Styles (No Conflicts) ====== */

/* Hero */
.uch-mission-hero {
  background: linear-gradient(rgba(1, 42, 99, 0.7), rgba(1, 42, 99, 0.7)),
    url("../background-image/photo-1586773860418-d37222d8fce3.avif")
      center/cover no-repeat;
  min-height: 70vh;
}
.custom__padding {
  padding-bottom: 80px !important;
}
/* Pillars Section */
.uch-mission-pillars {
  background-color: #012a63;
}

/* Mission Cards */
.uch-mission-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.uch-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Titles */
.uch-mission-statement h2,
.uch-mission-commitment h2 {
  color: #012a63;
}

/* Text Colors */
.text-primary {
  color: #012a63 !important;
}

/* Responsive tweaks */

/* MISSION SECTION START FROM HERE */
/* DOCTOR LIST START FROM HERE */

/* ====== Doctor Section ====== */
.uch-team-section {
  background-color: #f9fafc;
}
.doctor-search-area {
  padding: 30px 15px;
  border: 1px solid #e4dddd;
  background: #ffffffb9;
  margin-bottom: 20px;
}
.doctor-search-area input,
select {
  background: transparent;
  border: 0.5px solid #ded0d09e;
  border-radius: 10px !important;
  height: 45px;
}
.custom__search-btn {
  background: var(--brand-color);
  color: #fff;
  cursor: pointer;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
}
.custom__search-btn:hover {
  background: #fff;
  color: #000;
}
.custom__search-btn:hover .custom--icon {
  color: #000;
}
.doctor-search-area input::placeholder {
  color: #000;
  font-weight: normal;
}
.uch-section-title {
  color: #012a63;
  position: relative;
}
.uch-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #00b7ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Card */
.uch-team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.uch-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(1, 42, 99, 0.15);
}

/* Image Wrapper */
.uch-image-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #012a63;
}

/* Doctor Image */
.uch-team-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.uch-team-card:hover .uch-team-image {
  transform: scale(1.08);
}

/* Overlay */
.uch-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 42, 99, 0.1),
    rgba(1, 42, 99, 0.85)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.uch-image-wrapper:hover .uch-team-overlay {
  opacity: 1;
}

/* Social Icons */
.uch-team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.4s ease;
}
.uch-image-wrapper:hover .uch-team-social {
  transform: translateY(0);
  opacity: 1;
}

.uch-team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.uch-team-social a:nth-child(1) {
  background: #1877f2; /* Facebook */
}
.uch-team-social a:nth-child(2) {
  background: #e4405f; /* Instagram */
}
.uch-team-social a:nth-child(3) {
  background: #0077b5; /* LinkedIn */
}
.uch-team-social a:nth-child(4) {
  background: #1da1f2; /* Twitter */
}
.uch-team-social a:hover {
  transform: scale(1.1);
}

/* View Profile Button */
.uch-btn {
  background: #00b7ff;
  color: #fff;
  border-radius: 25px;
  padding: 6px 16px;
  border: none;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}
.uch-image-wrapper:hover .uch-btn {
  opacity: 1;
  transform: translateY(0);
}
.uch-btn:hover {
  background: #fff;
  color: #012a63;
  font-weight: 600;
}

/* Content */
.uch-team-content {
  padding: 15px;
  background: #fff;
}
.uch-team-content h5 {
  color: #012a63;
}
.uch-team-content p {
  color: #6c757d;
  font-size: 15px;
}

/* Bottom Button */
.uch-main-btn {
  background: #012a63;
  color: #fff;
  border-radius: 25px;
  padding: 10px 30px;
  transition: all 0.3s ease;
}
.uch-main-btn:hover {
  background: #00b7ff;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 183, 255, 0.3);
}
/* Image Wrapper */
.uch-image-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #012a63;
}

/* Doctor Image — fully responsive */
.uch-team-image {
  width: 100%;
  aspect-ratio: 4 / 5; /* maintains proportion automatically */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.uch-team-card:hover .uch-team-image {
  transform: scale(1.06);
}

/* Mobile Responsive Fix */

/* DOCTOR LIST START FROM HERE */

/* SEARCH AREA STARTS FROM HERE */
.search-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.search-icon-box {
  background: linear-gradient(135deg, #012a63, #0144a3);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(1, 42, 99, 0.25);
  transition: all 0.3s !important;
  margin-bottom: 20px;
}
.search-icon-box:hover {
  background: linear-gradient(135deg, #0144a3, #0169d9);
  box-shadow: 0 8px 20px rgba(1, 105, 217, 0.45);
}
.search-content {
  text-align: center;
}
.custom--icon-design {
  font-size: 40px;
  color: #fff;
}
.search--description {
  opacity: 0.7;
}
/* SEARCH AREA STARTS FROM HERE */
/* DOCTOR PROFILE PAGE STARTS FROM HERE */
.custom-doctor-profile-bg {
  background: #012169;
}
.custom-brand-bg-btn {
  background: var(--brand-color);
}
.doctor-profile {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.doctor-image img {
  object-fit: cover;
  border-right: 3px solid #012169;
}

/* Button Style */
.custom-btn-border {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #012169;
  color: #012169;
  background: transparent;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.custom-btn-border:hover {
  background: #012169;
  color: #fff;
}

/* Tabs */
.nav-tabs .nav-link {
  /* border: 2px solid #012169; */
  color: #012169;
  margin-right: 8px;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.3s;
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link.active {
  background-color: #fff;
  color: #000 !important;
}

/* Responsive Fix */

/* DOCTOR PROFILE PAGE ENDS */

/* GALLARY PAGE START FROM HERE */

.uch-facility-item img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.uch-facility-item:hover img {
  transform: scale(1.05);
}

.uch-facility-item {
  background: #fff;
  border: 1px solid #eaeaea;
  transition: all 0.4s ease;
}

.uch-facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.custtom-gallery-padding {
  padding-top: 30px !important;
}
/* GALLARY PAGE START FROM HERE */

/* GO0GLE TRANSLATOR  */

/* Remove "Powered by Google Translate" text safely */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Reset container (no height cut-off) */
#google_translate_element {
  overflow: visible !important;
  height: auto !important;
}

/* Style the dropdown */
.goog-te-combo {
  color: #fff !important; /* Default visible color (white) */
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 6px !important;
  padding: 0 6px !important; /* 👈 আরও ছোট padding */
  box-sizing: border-box !important;
  font-size: 15px !important;
}

/* Make first option white */
.goog-te-combo option:first-child {
  color: #fff !important;
  background-color: #012a63 !important;
}

/* Make other options black */
.goog-te-combo option:not(:first-child) {
  color: #000 !important;
  background-color: #fff !important;
}

/* optional: remove extra translate icon space */
.goog-te-gadget {
  font-size: 0 !important;
}

/* GO0GLE TRANSLATOR  */
/* Career SECTION STARTS  */

/* 🌆 Unique Hero Section */
.uch-hero-section {
  text-align: center;
  padding: 130px 20px;
}

.uch-hero-section h1 {
  font-weight: 700;
  margin-bottom: 10px;
}
.uch-hero-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Section Title */
.section-title {
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 25px;
}

/* HR Message */
.hr-message img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--brand-color);
}
.hr-message h5 {
  color: var(--brand-color);
  font-weight: 600;
  margin-top: 15px;
}

/* Job Cards */
.job-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.job-card img {
  /* height: 220px; */
  width: 100%;
  object-fit: cover;
}
.job-card-body {
  padding: 18px;
}
.job-card-body h6 {
  color: var(--brand-color);
  font-weight: 600;
}
.job-card-body a {
  display: inline-block;
  color: #fff;
  background: var(--brand-color);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}
.job-card-body a:hover {
  background: #001a50;
}

/* Employee Events */
.events-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s ease;
}
.events-gallery img:hover {
  transform: scale(1.05);
}

/* MRCP Section */
.mrcp-section {
  background: var(--brand-color);
  padding: 70px 0;
  text-align: center;
}
.mrcp-section h4 {
  color: var(--brand-color);
  font-weight: 700;
  color: #fff !important;
}
.mrcp-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

/* Career SECTION ENDS */

/* FAQ SECTION START FROM HERE */
.text-primary-color {
  color: var(--brand-color);
}

.career-faq-section {
  background-color: #f8f9fa;
}

.career-faq-accordion .accordion-button {
  background-color: #fff;
  color: #012169;
  border-radius: 10px !important;
  box-shadow: none;
  transition: all 0.3s ease;
}

.career-faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--brand-color);
  color: #fff;
  box-shadow: 0 4px 10px rgba(1, 33, 105, 0.2);
}

.career-faq-accordion .accordion-button::after {
  filter: brightness(0) invert(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.career-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}

.career-faq-accordion .accordion-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}
/* FAQ SECTION START FROM HERE */

/* BLOG PAGE START FROM HERE */

:root {
  --uchblog-brand: #012169;
  --uchblog-light: #f8faff;
}

/* ===== HEADER ===== */
.uchblog-header {
  /* background-image: url(../background-image/98-1600x600.jpg); */
  background: linear-gradient(rgba(1, 42, 99, 0.85), rgba(1, 42, 99, 0.85)),
    url("../background-image/98-1600x600.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 120px 20px 100px;
  animation: fadeInHeader 1.5s ease-in-out;
}

.uchblog-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.uchblog-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== BLOG SECTION ===== */
.uchblog-posts {
  background: var(--uchblog-light);
  padding: 50px 0;
}

.uchblog-section-title {
  color: var(--uchblog-brand);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 32px;
  animation: fadeUp 1.2s ease;
}

.uchblog-section-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #6c757d;
  font-size: 16px;
  animation: fadeUp 1.5s ease;
}

.uchblog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  animation: fadeInCard 1.3s ease;
}

.uchblog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.uchblog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uchblog-card:hover .uchblog-card-img {
  transform: scale(1.05);
}

.uchblog-card-body {
  padding: 25px;
}

.uchblog-date {
  color: var(--uchblog-brand);
  font-weight: 600;
  font-size: 14px;
}

.uchblog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-top: 8px;
}

.uchblog-card-text {
  color: #6c757d;
  font-size: 15px;
  margin: 10px 0 20px;
}

.uchblog-btn {
  display: inline-block;
  background: var(--uchblog-brand);
  color: #fff;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.uchblog-btn:hover {
  background: #00164a;
}

/* ===== ICON BOX SECTION ===== */
.uchblog-icons {
  padding: 50px 0;
  background: #fff;
}

.uchblog-icons-title {
  color: var(--uchblog-brand);
  font-weight: 700;
  margin-bottom: 50px;
  animation: fadeUp 1.2s ease;
}

.uchblog-iconbox {
  background: var(--uchblog-light);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  animation: slideUp 1.5s ease;
  border: 1px solid #e5dfdf;
}

.uchblog-iconbox:hover {
  transform: translateY(-10px);
  background: var(--uchblog-brand);
  color: #fff;
}

/* ✅ Icon Circle Background */
.uchblog-iconbox i {
  font-size: 28px;
  background: var(--uchblog-brand);
  color: #fff;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(1, 33, 105, 0.3);
  transition: all 0.3s ease;
}

.uchblog-iconbox:hover i {
  background: #fff;
  color: var(--uchblog-brand);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.uchblog-iconbox h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.uchblog-iconbox p {
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
}

.uchblog-iconbox:hover p {
  color: #f8faff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */

/* BLOG PAGE START ENDS HERE */

/* BLOG DEATILS PAGE STARTS FROM HERE */

.uchbd-main {
  color: #012169;
}
.uchbd-quote {
  animation: fadeIn 1s ease-in;
}
.uchbd-animate {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.uchbd-animate:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.uchbd-subscribe input:focus {
  box-shadow: 0 0 10px rgba(1, 33, 105, 0.3);
  border-color: #012169;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BLOG DEATILS PAGE STARTS ENDS HERE */

/* CONTACT PAGE STARTS FROM HERE */

:root {
  --brand-color: #012169;
}

.uchc-main {
  color: var(--brand-color);
}
.uchc-header {
  animation: fadeUp 1s ease-in-out;
}
.uchc-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}
.uchc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.uchc-btn-brand {
  background: var(--brand-color);
  color: #fff;
  border: none;
  transition: 0.3s;
}
.uchc-btn-brand:hover {
  background: #011a4a;
}
.form-control:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 8px rgba(1, 33, 105, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uchc-main {
  color: var(--brand-color);
}
.uchc-header {
  animation: fadeUp 1s ease-in-out;
}
.uchc-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}
.uchc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.uchc-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(1, 33, 105, 0.08);
  color: var(--brand-color);
  transition: all 0.4s ease;
}

.uchc-card:hover .uchc-icon {
  background: var(--brand-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(1, 33, 105, 0.3);
}

.uchc-btn-brand {
  background: var(--brand-color);
  color: #fff;
  border: none;
  transition: 0.3s;
}
.uchc-btn-brand:hover {
  background: #011a4a;
}
.form-control:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 8px rgba(1, 33, 105, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.uch-contact-card {
  background: #ffffff;
  transition: all 0.3s ease;
}

.uch-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.uch-contact-input:focus,
.uch-contact-textarea:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.25);
}

.uch-contact-btn {
  background: linear-gradient(135deg, #012169, #012169);
  border: none;
  transition: 0.3s ease;
}

.uch-contact-btn:hover {
  background: var(--hover-color);
}

.uch-contact-title {
  letter-spacing: 0.5px;
}

.uch-contact-input,
.uch-contact-textarea {
  font-size: 1rem;
}

.uch-contact-label {
  color: #333;
}

/* CONTACT PAGE ENDS FROM HERE */
/* parent container যেন overflow:hidden না থাকে */
/* OUR ALL DEPARTMENT START FROM HERE */

.department-section {
  background-color: #f9f9f9;
}

.dept-card {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #e1e1e1;
}

.dept-link {
  display: inline-block;
  /* background: var(--brand-color); */
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  /* border-radius: 4px; */
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 15px rgba(1, 33, 105, 0.2);
  background: var(--hover-color);
}

.dept-link:hover {
  background: var(--hover-color);
  color: #000;
}

/* OUR ALL DEPARTMENT START FROM HERE */

/* HEALTH PACKAGE SECTION START FROM HERE */

.uch-packages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  margin-top: 20px;
}

.uch-card {
  position: relative;
  background: rgba(240, 255, 240, 0.5);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 1.5rem;
  width: 100%;
  max-width: 360px;
}

.uch-save-banner {
  position: absolute;
  top: -70px;
  left: 10px;
  transform: rotate(-45deg) translate(-50%, 50%);
  background: var(--uch-brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0.8rem 4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  background: var(--brand-color);
}

.uch-title {
  font-weight: 700;
  color: #36454f;
  text-align: center;
  margin-top: 3.5rem;
  font-size: 1.6rem;
}

.uch-subtitle {
  font-weight: 700;
  color: #36454f;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.uch-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  font-size: 0.95rem;
  color: #36454f;
}

.uch-item span:last-child {
  color: #555;
}

.uch-divider {
  border-top: 2px solid #ccc;
  margin: 1rem 0;
}

.uch-total,
.uch-discount {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  color: #555;
}

.uch-discount strong {
  font-size: 1.1rem;
  color: #000;
}

/* HEALTH PACKAGE SECTION START FROM HERE */
