

#hospital-preloader {
  position: fixed;
  inset: 0;
  background: #f9feff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-wrap {
  position: relative;
  text-align: center;
}

.heartbeat-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.heartbeat-bg polyline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: heartbeatMove 1.6s linear infinite;
}

/* Logo */
.loader-wrap img {
  width: 120px;
  position: relative;
  z-index: 2;
  margin-top: -80px;
  animation: logoPulse 1.4s infinite ease-in-out;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
}

.loader-wrap span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #0aa5a5;
  letter-spacing: 1px;
}

@keyframes heartbeatMove {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes logoPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}
:root {
  --accent: #f02f5a;
  --accent-dark: #d72853;
  --muted: #f6f6f6;
  --hero-height: 680px;
}






.center-menu-wrapper {
  position: absolute;
  top: 65px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 900px) {
  .center-menu-wrapper {
    display: none;
  }
}

.center-menu {
  background: #fff;
  padding: 14px 44px;
  display: flex;
  gap: 48px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  position: relative;
}

.center-menu::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -5px;
  width: 38px;
  height: 74%;
  transform: rotate(136deg);
  background: radial-gradient(circle at right center, transparent 22px, #fff 23px);
}

.center-menu::after {
  content: "";
  position: absolute;
  right: -27px;
  top: 0;
  width: 37px;
  height: 60%;
  transform: rotate(223deg);
  background: radial-gradient(circle at left center, transparent 22px, #fff 23px);
}

.menu-item {
  position: relative;
}

.center-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.has-sub > a::after {
  content: "+";
  margin-left: 6px;
  color: #f78d1e;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s ease;
  z-index: 50;
}
.submenu a {
  padding: 12px 18px;
  display: block;
  font-size: 14px;
}
.submenu a:hover {
  background: #f7f7f7;
  color: #f78d1e;
}

@media (min-width: 901px) {
  .menu-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-toggle {
  display: flex;
  align-items: center;
}
.nav-toggle img {
  width: 26px;
  cursor: pointer;
}

/* ===============================
   DESKTOP OFFCANVAS
================================ */
.desk-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, -webkit-backdrop-filter 0.35s ease;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
  z-index: 2999;
}

.desk-offcanvas {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: linear-gradient(160deg, #0f2027, #203a43, #2c5364);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.35);
}

.desk-offcanvas.active {
  right: 0;
}

.desk-offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.desk-offcanvas-header {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desk-offcanvas-header img {
  height: 42px;
}
.desk-offcanvas-header .desk-close {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
}
.desk-offcanvas-header .desk-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.desk-offcanvas-body {
  padding: 10px 22px 30px;
  overflow-y: auto;
}

.desk-link {
  display: block;
  padding: 14px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.3s ease;
  text-decoration: none;
}
.desk-link:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

.desk-item {
  margin-bottom: 10px;
}

.desk-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 12px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
.desk-title::after {
  content: "+";
  font-size: 22px;
  opacity: 0.7;
  margin-left: auto;
  transition: 0.3s ease;
}
.desk-title:hover {
  background: rgba(255, 255, 255, 0.08);
}

.desk-item.active .desk-title::after {
  content: "−";
}

.desk-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding-left: 10px;
}
.desk-sub a {
  display: block;
  padding: 12px 14px;
  color: #e5e5e5;
  font-size: 14px;
  border-radius: 10px;
  transition: 0.3s ease;
  text-decoration: none;
}
.desk-sub a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f78d1e;
}

@media (max-width: 520px) {
  .desk-offcanvas {
    width: 100%;
    right: -110%;
  }
}
.desk-icon {
  width: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #f78d1e;
  font-size: 18px;
}

.desk-title {
  gap: 10px;
}

.desk-link,
.desk-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.desk-link i,
.desk-sub a i {
  font-size: 15px;
  color: #f78d1e;
  min-width: 18px;
}

.desk-sub a:hover i,
.desk-link:hover i {
  transform: scale(1.1);
  transition: 0.25s ease;
}

.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  padding: 10px;
  border-radius: 20px;
}

.slider,
.swiper,
.swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.swiper,
.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  transform-style: preserve-3d;
  isolation: isolate;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  z-index: 0;
  will-change: transform;
}

.slide-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0.1px);
  -webkit-backdrop-filter: blur(0.1px);
  background: rgba(255, 255, 255, 0.04);
  z-index: 1;
  pointer-events: none;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.25));
  z-index: 2;
}

.slide-content {
  position: absolute;
  left: 80px;
  bottom: 180px;
  max-width: 520px;
  color: #fff;
  z-index: 3;
  transform-style: preserve-3d;
  will-change: transform;
}

.slide-content h2 {
  font-size: 48px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 22px;
  opacity: 0.9;
}

.slide-btn {
  padding: 12px 30px;
  background: #f78d1e;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}
@media (max-width: 580px) {
  .slide-btn {
    padding: 5px 20px;
  }
}

.slide-btn:hover {
  background: #ff9f3f;
  transform: translateY(-2px);
}

.slider-search {
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: 40px;
  z-index: 5;
}
@media (max-width: 580px) {
  .slider-search {
    padding: 5px 16px;
    left: 51%;
    right: -145px;
  }
}
.slider-search i {
  color: #f78d1e;
}

.slider-search input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  width: 220px;
}

.slider-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.slider-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.slider-search button {
  background: #f78d1e;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 580px) {
  .slider-search button {
    padding: 5px 20px;
  }
}

.slider-search button:hover {
  background: #ff9f3f;
}

.slider-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.slider-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-social a:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .slider {
    height: 320px;
    perspective: none;
    margin-top: 70px;
  }
  .slide-content {
    left: 20px;
    bottom: 120px;
  }
  .slide-content h2 {
    font-size: 25px;
  }
  .slide-content p {
    font-size: 14px;
  }
  .slider-social {
    display: none;
  }
  .slider-search {
    bottom: 45px;
  }
}
.slider-appointment {
  position: absolute;
  top: 100px;
  right: 30px;
  z-index: 6;
}
.slider-appointment .appointment-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 15px;
  background: #f78d1e;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.slider-appointment .appointment-btn i {
  font-size: 18px;
  color: #fff;
  transition: transform 0.35s ease;
}
.slider-appointment .appointment-btn:hover {
  background: #f78d1e;
  color: #fff;
  transform: translateY(-3px);
}
.slider-appointment .appointment-btn:hover i {
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
}

@media (max-width: 1024px) {
  .slider-appointment {
    top: 20px;
    right: 20px;
  }
  .slider-appointment .appointment-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .slider-appointment {
    top: 15px;
    right: 15px;
  }
  .slider-appointment .appointment-btn {
    padding: 10px 14px;
    border-radius: 30px;
  }
  .slider-appointment .appointment-btn span {
    display: none;
  }
  .slider-appointment .appointment-btn i {
    font-size: 14px;
  }
}
.about-wrapper {
  padding: 40px 40px;
  background: #fff;
}
@media (max-width: 768px) {
  .about-wrapper {
    padding: 30px 16px;
  }
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #f1d7b8;
}
@media (max-width: 992px) {
  .about-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about-left .tag {
  font-size: 15px;
  font-weight: 700;
  color: #777;
}
.about-left .small-text {
  margin: 20px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.about-center h2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-center h2 {
    font-size: 16px;
  }
}

.about-right img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}
.btn span {
  background: #ff7a00;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
}
.btn.dark {
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 40%;
}
@media (max-width: 480px) {
  .btn.dark {
    width: 60%;
    max-width: 50%;
  }
}
.btn.dark span {
  font-weight: 600;
  font-size: 14px;
}

.btn:hover {
  background: #1b1717;
  color: #ffffff;
}

.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 40px;
  background: #76b73f;
}
@media (max-width: 992px) {
  .about-bottom {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }
}

.image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 450px;
}
@media (max-width: 576px) {
  .image-card {
    height: 350px;
  }
}
.image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}
.image-card .overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.image-card .overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.shuffle-carousel {
  position: relative;
}

.card {
  position: absolute;
  width: 100%;
  background: #f6f6f6;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  cursor: pointer;
  backface-visibility: hidden;
}
.card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card strong {
  display: block;
  font-size: 14px;
}
.card span {
  font-size: 13px;
  color: #777;
}
.card a {
  margin-top: 10px;
  display: inline-block;
  font-size: 13px;
  color: #ff7a00;
  text-decoration: none;
}

.card-stack {
  position: relative;
  height: 412px;
  perspective: 1600px;
}
@media (max-width: 580px) {
  .card-stack {
    height: 315px;
  }
}

.card:nth-child(1) {
  transform: translateY(0) rotateY(0deg);
  z-index: 4;
}

.card:nth-child(2) {
  transform: translateY(18px) rotateY(-8deg) scale(0.96);
  opacity: 0.65;
  z-index: 3;
}

.card:nth-child(3) {
  transform: translateY(36px) rotateY(-14deg) scale(0.92);
  opacity: 0.4;
  z-index: 2;
}

.card.active {
  transform: translateY(0) scale(1) rotateX(0deg);
  opacity: 1;
  z-index: 4;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.dots .dot {
  width: 18px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.dots .dot.active {
  background: #ff7a00;
}

.departments-section {
  padding: 40px 0;
  background: #76b73f;
  color: #fff;
}
.departments-section .section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block !important;
}
.departments-section .section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 55px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.departments-swiper {
  padding-bottom: 10px;
}
.departments-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.department-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 32px;
  background: #ff7a00;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.35s ease;
  overflow: hidden;
}
.department-card:hover {
  transform: translateY(-10px);
}
.department-card .dept-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.department-card .dept-icon img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.department-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  min-height: 26px;
}
.department-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.department-card .read-more-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 22px;
  margin-top: auto;
  border-radius: 30px;
  background: #ffffff;
  color: #ff7a00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.department-card .read-more-btn:hover {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .departments-section .section-title {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .department-card {
    padding: 30px 24px;
  }
}
@media (max-width: 767px) {
  .departments-section {
    padding: 70px 0;
  }
  .departments-section .section-title {
    font-size: 30px;
  }
  .departments-section .section-subtitle {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .department-card h4 {
    font-size: 18px;
  }
  .department-card p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .departments-section .section-title {
    font-size: 34px;
  }
}
@media (max-width: 991px) {
  .department-card {
    padding: 30px 24px;
  }
}
@media (max-width: 767px) {
  .departments-section {
    padding: 30px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .department-card h4 {
    font-size: 18px;
  }
  .department-card p {
    font-size: 14px;
  }
}
.medical-team {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(135deg, #050505 0%, #0d0d0d 40%, #141414 100%);
  overflow: hidden;
}
.medical-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(245, 124, 0, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(0, 180, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.medical-team .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
.medical-team .subheading {
  display: inline-block;
  color: #f57c00;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.medical-team .heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #e7e7e7;
}

.doctor-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.doctor-card:hover {
  transform: translateY(-10px);
}
.doctor-card .image {
  position: relative;
  overflow: hidden;
}
.doctor-card .image img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.doctor-card:hover img {
  transform: scale(1.08);
}
.doctor-card .content {
  padding: 25px 20px;
  background: rgba(111, 178, 63, 0.231372549);
  flex: 1;
}
.doctor-card .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}
.doctor-card .content span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}
.doctor-card .content .social {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.doctor-card .content .social a {
  width: 38px;
  height: 38px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: 0.3s ease;
  text-decoration: none;
}
.doctor-card .content .social a:hover {
  background: #f57c00;
  color: #fff;
  transform: translateY(-3px);
}

.doctorSwiper {
  padding-bottom: 50px;
}
.doctorSwiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.doctorSwiper .swiper-pagination-bullet-active {
  background: #f57c00;
}

@media (max-width: 992px) {
  .medical-team .heading {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .medical-team .heading {
    font-size: 26px;
  }
  .doctor-card .image img {
    height: 390px;
  }
}
.blogs-news {
  padding: 40px 0;
  background: #f9fafb;
}
.blogs-news .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
.blogs-news .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .blogs-news .section-header {
    margin-bottom: 10px;
  }
}
.blogs-news .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.blogs-news .section-header p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}
.blogs-news .section-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}
.blogs-news .section-header .view-all span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f58b2a;
  font-size: 12px;
}
.blogs-news .section-header .view-all:hover {
  transform: translateY(-2px);
}
.blogs-news .blogs-swiper {
  padding-bottom: 60px;
}
.blogs-news .blogs-swiper .swiper-wrapper {
  align-items: stretch;
}
.blogs-news .blogs-swiper .swiper-slide {
  display: flex;
  height: auto;
}
.blogs-news .blog-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}
.blogs-news .blog-card:hover {
  transform: translateY(-6px);
}
.blogs-news .blog-card .image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.blogs-news .blog-card .image img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.blogs-news .blog-card:hover img {
  transform: scale(1.08);
}
.blogs-news .blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
  margin-bottom: 10px;
}
.blogs-news .blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogs-news .blog-card .tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}
.blogs-news .blog-card .tag.blog {
  background: #eef8e8;
  color: #4a8f1f;
}
.blogs-news .blog-card .tag.news {
  background: #f1f7ff;
  color: #2c6ed5;
}
.blogs-news .swiper-button-prev,
.blogs-news .swiper-button-next {
  color: #000;
  top: 40%;
  width: 38px;
  height: 38px;
}
.blogs-news .swiper-button-prev:after,
.blogs-news .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}
.blogs-news .swiper-pagination-bullet {
  background: #f58b2a;
  opacity: 0.3;
}
.blogs-news .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 991px) {
  .blogs-news .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .blogs-news .swiper-button-prev,
  .blogs-news .swiper-button-next {
    display: none;
  }
}
@media (max-width: 576px) {
  .blogs-news {
    padding: 30px 0;
  }
  .blogs-news .section-header h2 {
    font-size: 26px;
  }
  .blogs-news .blog-card .image img {
    height: 180px;
  }
}

.success-stories {
  background: #6fb23f;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.success-stories .container {
  max-width: 1300px;
  margin: auto;
}
.success-stories .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 12px;
}
.success-stories h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.success-stories .subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}
.success-stories .top-avatars {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  position: relative;
  z-index: 20;
}
.success-stories .top-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.9);
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}
.success-stories .top-avatars img.active {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 0 3px #fff, 0 10px 30px rgba(0, 0, 0, 0.45);
}
.success-stories .successSwiper {
  padding-bottom: 70px;
}
.success-stories .successSwiper .swiper-wrapper {
  align-items: stretch;
}
.success-stories .successSwiper .swiper-slide {
  display: flex;
  height: auto;
}
.success-stories .testimonial-card {
  background: #2c2a2a;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.success-stories .testimonial-card .profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.success-stories .testimonial-card .profile img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.success-stories .testimonial-card .profile h4 {
  margin: 0;
  font-size: 16px;
}
.success-stories .testimonial-card .profile span {
  font-size: 13px;
  color: #bbb;
}
.success-stories .testimonial-card .rating {
  color: #f7b731;
  font-size: 14px;
  margin: 10px 0;
  text-align: left;
}
.success-stories .testimonial-card .rating span {
  color: #fff;
  margin-left: 6px;
}
.success-stories .testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #ddd;
  text-align: justify;
}
.success-stories .testimonial-card .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.success-stories .testimonial-card .tags span {
  background: #1f1f1f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.success-stories .swiper-slide-active .testimonial-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.success-stories .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.success-stories .nav-buttons .swiper-button-prev,
.success-stories .nav-buttons .swiper-button-next {
  position: static;
  width: 50px;
  height: 35px;
  background: #2c2a2a;
  border-radius: 20%;
  color: rgba(250, 121, 0, 0.5019607843);
}
.success-stories .nav-buttons .swiper-button-prev:after,
.success-stories .nav-buttons .swiper-button-next:after {
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-avatars {
    position: sticky;
    top: 0;
    background: #6fb23f;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .swiper-slide-active .testimonial-card {
    transform: none;
  }
}
@media (max-width: 480px) {
  .success-stories h2 {
    font-size: 26px;
  }
  .testimonial-card {
    padding: 22px;
  }
}
/* ==========================
   FACILITIES SECTION scss starts here
========================== */
.facilities-section {
  padding: 40px 20px;
  background: #f9fafb;
}
@media (max-width: 576px) {
  .facilities-section {
    padding: 20px;
  }
}

.container {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .section-title {
    margin-bottom: 5px;
  }
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-right: 20px;
  white-space: nowrap;
}
.section-title .title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #f78d1e, transparent);
}
@media (max-width: 576px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section-title .title-line {
    width: 100%;
  }
}

.facilities-swiper {
  position: relative;
  padding-bottom: 50px;
}

.swiper-wrapper {
  align-items: stretch;
}

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

.facility-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.facility-card .icon {
  width: 56px;
  height: 56px;
  min-height: 56px;
  background: #f78d1e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
}

.facility-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
  min-height: 26px;
}

.facility-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  min-height: 5.1em;
  max-height: 5.1em;
}

@media (max-width: 576px) {
  .facility-card p {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    min-height: 3.4em;
    max-height: 3.4em;
  }
}
.swiper-button-next,
.swiper-button-prev {
  color: #f78d1e;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #f78d1e;
  color: #ffffff;
}
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #f78d1e;
  transform: scale(1.3);
}

@media (max-width: 576px) {
  .facility-card {
    padding: 24px;
  }
}
.inner-hero {
  position: relative;
  height: 250px;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0px 45px;
  border-radius: 20px;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .inner-hero {
    height: 200px;
    margin: 0px 20px;
    background-attachment: local;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 53, 95, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50px;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 24px;
  }
}
.hero-content .breadcrumb {
  font-size: 15px;
  padding: 0 50px;
}
@media (max-width: 576px) {
  .hero-content .breadcrumb {
    font-size: 13px;
  }
}
.hero-content .breadcrumb a {
  color: #27c6db;
  text-decoration: none;
  font-weight: 600;
}
.hero-content .breadcrumb span {
  margin: 0 6px;
  color: #fff;
}

.hero-call-inner {
  background: #27c6db;
  border-radius: 60px;
  padding: 14px 28px 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-call-inner:hover {
  background: #1aaec2;
  transform: translateY(-2px);
}

.overview-section {
  background: #f9f9f9;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .overview-section {
    padding: 30px 0;
  }
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.overview-content .overview-tag {
  font-size: 14px;
  font-weight: 600;
  color: #f78d1e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}
.overview-content .overview-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.overview-content .overview-title span {
  color: #f78d1e;
}
@media (max-width: 768px) {
  .overview-content .overview-title {
    font-size: 22px;
  }
}
.overview-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  max-width: 520px;
}
@media (max-width: 576px) {
  .overview-content p {
    line-height: 1.5;
  }
}

.overview-image {
  position: relative;
}
.overview-image img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.vn-bg {
  background: #f5f2eb;
  padding: 40px 20px;
}
@media (max-width: 576px) {
  .vn-bg {
    padding: 1px 20px 10px;
  }
}

.vn-bg2 {
  background: #f5f2eb;
  padding: 0px 20px 65px;
}
@media (max-width: 576px) {
  .vn-bg2 {
    padding: 0px 20px 30px;
  }
}

.vm-wrapper {
  max-width: 1300px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 18px;
  overflow: hidden;
}

.vm-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.85;
}
.vm-tag.light {
  color: #ddd;
}

.vision-card {
  background: #f58220;
  color: #ffffff;
  padding: 60px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.vision-left h2 {
  font-size: 30px;
  margin: 14px 0;
}

.vision-left p {
  line-height: 1.6;
  opacity: 0.9;
}

.vm-point {
  display: flex;
  gap: 70px;
  margin-bottom: 18px;
}
.vm-point span {
  width: 12px;
  height: 12px;
}
.vm-point p {
  font-size: 15px;
  opacity: 0.95;
}

.mission-hero {
  position: relative;
  background: url("../assets/images/mission.png") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mission-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
  align-items: center;
}

.mission-tag {
  font-size: 14px;
  opacity: 0.8;
}

.mission-left h2 {
  font-size: 32px;
  line-height: 1.35;
  margin: 12px 0 36px;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mission-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.mission-point strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.mission-point p {
  font-size: 14px;
  opacity: 0.8;
  max-width: 360px;
}

.shape {
  width: 20px;
  height: 20px;
  background: #fff;
  flex-shrink: 0;
}

.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.diamond {
  transform: rotate(45deg);
}

.pentagon {
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.mission-right h3 {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 22px;
}

.mission-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.mission-btn:hover {
  background: #f58220;
  border-color: #f58220;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-right {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .mission-left h2 {
    font-size: 24px;
  }
  .mission-right h3 {
    font-size: 20px;
  }
}
.excellence-section {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding: 75px;
  background: #f7f7f7;
  border: 1px solid orange;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .excellence-section {
    padding: 15px;
  }
  .excellence-section h2 {
    font-size: 20px !important;
  }
  .sub {
    font-size: 14px;
    margin-bottom: 12px !important;
  }
  .accordion-title {
    padding: 5px 20px !important;
  }
}
.excellence-section h2 {
  font-size: 28px;
}

.sub {
  color: #777;
  margin-bottom: 30px;
}

.accordion {
  text-align: left;
}

.accordion-item {
  border-radius: 14px;
  background: #f5f2eb;
  margin-bottom: 14px;
  overflow: hidden;
  border: 2px solid #dedcd7;
}

.accordion-title {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: 0.35s ease;
  font-size: 14px;
  color: #555;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 16px 20px;
}

.accordion-item.active .accordion-title span {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .vision-card,
  .mission-card-bg {
    padding: 30px 20px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
}
.department-details {
  padding: 50px 48px;
  background: #ffffff;
}
@media (max-width: 576px) {
  .department-details {
    padding: 50px 28px;
  }
}

.department-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #f2c9a5;
  background: #fff;
}

.department-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #6fb23f;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.department-tag img {
  width: 22px;
  height: 22px;
}

.department-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 42px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .department-layout {
    grid-template-columns: 1fr;
  }
}

.department-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}
.department-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-height: 480px) {
  .department-image img {
    min-height: 250px;
  }
}

.department-content h1 {
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 22px;
  color: #111;
}
@media (max-width: 768px) {
  .department-content h1 {
    font-size: 24px;
  }
}
.department-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

@media (max-width: 576px) {
  .department-wrapper {
    padding: 22px;
  }
  .department-tag {
    font-size: 14px;
    padding: 10px 18px;
  }
  .department-content h1 {
    font-size: 22px;
  }
}
html, body {
  overflow-x: hidden;
}

.neuro-focus {
  padding: 40px 50px;
  background: #fff;
}
@media (max-width: 576px) {
  .neuro-focus {
    padding: 20px 50px;
  }
}

.neuro-wrap {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.neuro-text {
  max-width: 420px;
}
.neuro-text h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.neuro-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}
.neuro-text p.small {
  margin-bottom: 0;
}

.neuro-visual {
  display: grid;
  grid-template-columns: auto 300px;
  align-items: center;
  gap: 18px;
}

.pill-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pill {
  position: relative;
  width: 320px;
  padding: 22px 88px 22px 28px;
  border-radius: 42px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.pill span {
  font-size: 13px;
  line-height: 1.3;
  display: block;
}
@media (max-width: 576px) {
  .pill span {
    text-align: left;
  }
}
.pill:hover {
  transform: translateX(6px);
}

.pill-icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.pill-icon-green {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #6fb144;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 25px 25px;
}
.pill-icon-green img {
  width: 32px;
  height: 32px;
}

.pill-icon-green-behind {
  position: absolute;
  right: 24px;
  top: 57%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(112, 177, 68, 0.3294117647);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.pill-icon-orange {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #f59a23;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 25px 25px;
}
.pill-icon-orange img {
  width: 32px;
  height: 32px;
}

.pill-icon-orange-behind {
  position: absolute;
  right: 24px;
  top: 57%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(245, 154, 35, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.pill-icon-purple {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #9b6cc3;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 25px 25px;
}
.pill-icon-purple img {
  width: 32px;
  height: 32px;
}

.pill-icon-purple-behind {
  position: absolute;
  right: 24px;
  top: 57%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(155, 108, 195, 0.3);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.green {
  background: #6fb144;
  margin-left: 30px;
}

.orange {
  background: #f59a23;
}

.purple {
  background: #9b6cc3;
  margin-left: 30px;
}

.circle-box {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .circle-box {
    margin: 0 auto;
  }
}

.circle-box img {
  position: absolute;
  inset: 26px;
  width: calc(100% - 52px);
  height: calc(100% - 52px);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  box-shadow: 3px 8px 6px 1px rgba(73, 80, 87, 0.5411764706);
}

.circle-box svg {
  width: 100%;
  height: 100%;
  transform: rotate(150deg);
}

.arc {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  opacity: 0.25;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 1.4s ease forwards;
  transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

.arc.green {
  stroke: #6fb144;
  stroke-dasharray: 240 1000;
  animation-delay: 0.2s;
}

.arc.orange {
  stroke: #f59a23;
  stroke-dasharray: 220 1000;
  stroke-dashoffset: -260;
  animation-delay: 0.45s;
}

.arc.purple {
  stroke: #9b6cc3;
  stroke-dasharray: 210 1000;
  stroke-dashoffset: -520;
  animation-delay: 0.7s;
}

.arc.active {
  opacity: 1;
  stroke-width: 13;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 1024px) {
  .neuro-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .neuro-visual {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pill {
    margin: auto;
  }
}
.dept-section {
  padding: 40px 20px;
  background: #ffffff;
}
@media (max-width: 576px) {
  .dept-section {
    padding: 20px 20px;
  }
}

.dept-card-abt {
  max-width: 1240px;
  margin: auto;
  background: #f5f3ee;
  border-radius: 10px;
  padding: 42px 46px;
}

.dept-top {
  display: grid;
  grid-template-columns: 2.15fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.dept-col {
  font-size: 13.5px;
  line-height: 1.75;
  color: #2f2f2f;
}
.dept-col p {
  margin-bottom: 14px;
}

.dept-col.main h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 6px;
  color: #000;
}
.dept-col.main .dept-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #f78d1e;
  margin-bottom: 14px;
}

.dept-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.dept-text p {
  font-size: 13.5px;
  margin-bottom: 18px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1CA69D;
    color: #fff;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 12.5px;
    text-decoration: none;
}
.call-btn .call-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.dept-video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.dept-video video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.dept-video .play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f78d1e;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.dept-video .play:hover {
  transform: scale(1.08);
}
.dept-video .play.hidden {
  opacity: 0;
  pointer-events: none;
}
.dept-video .caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 70px;
  font-size: 11.5px;
  line-height: 1.4;
  color: #ffffff;
  z-index: 2;
}

@media (max-width: 992px) {
  .dept-top {
    grid-template-columns: 1fr 1fr;
  }
  .dept-bottom {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .dept-card {
    padding: 26px;
  }
  .dept-top {
    grid-template-columns: 1fr;
  }
}
.dept-card-wrapper {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
}

.dept-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #ff7a00, #e56d00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.dept-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffb26b);
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}

.dept-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.dept-card {
  position: relative;
  padding: 38px 30px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.85));
  border: 1px solid rgba(255, 122, 0, 0.26);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.dept-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.25), transparent 70%);
  top: -50px;
  right: -50px;
  opacity: 0;
  transition: 0.4s ease;
}

.dept-card:hover {
  transform: translateY(-12px);
}

.dept-card:hover::before {
  opacity: 1;
}

.dept-card .icon img {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.dept-card:hover .icon img {
  transform: scale(1.2) rotate(6deg);
}

.dept-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dept-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .dept-card h3 {
    font-size: 16px;
  }
  .dept-card p {
    font-size: 14px;
  }
  .highlight-card h4 {
    font-size: 16px !important;
  }
  .highlight-card p {
    font-size: 14px;
  }
}
.dept-highlights-wrapper {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
}

.dept-highlights {
  text-align: center;
}

.dept-highlights h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(180deg, #ff7a00, #e56d00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.dept-highlights h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffb26b);
  display: block;
  margin: 18px auto 0;
  border-radius: 10px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.highlight-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 122, 0, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), transparent);
  opacity: 0;
  transition: 0.3s;
}

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

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card img {
  width: 64px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ffb26b);
}

.highlight-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.dept-stats-wrapper {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
}

.dept-stats {
  position: relative;
  padding: 70px 40px;
  border-radius: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
  background: linear-gradient(135deg, #ff7a00, #e56d00);
  box-shadow: 0 30px 70px rgba(255, 122, 0, 0.4);
  overflow: hidden;
}
@media (max-width: 600px) {
  .dept-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.dept-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 70%);
}

.stat-box {
  position: relative;
  z-index: 1;
}

.stat-box img {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.stat-box:hover img {
  transform: scale(1.15);
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.stat-box p {
  font-size: 15px;
  color: #fff;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

.dept-final-cta {
  margin: 120px auto 60px;
  padding: 80px 20px;
  text-align: center;
  border-radius: 44px;
  background: radial-gradient(circle at top, rgba(255, 122, 0, 0.15), transparent 70%), linear-gradient(160deg, #ffffff, #f7f7f7);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.dept-final-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.dept-final-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.dept-final-cta button {
  padding: 16px 44px;
  border-radius: 40px;
  border: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a00, #e56d00);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(255, 122, 0, 0.45);
  transition: 0.35s ease;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.appointment-modal.active {
  display: flex;
}

.appointment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.appointment-box {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  width: 100%;
  max-width: 420px;
  z-index: 2;
  animation: popup 0.4s ease;
}
@media (max-width: 576px) {
  .appointment-box {
    margin: 0 10px;
  }
}

@keyframes popup {
  from {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
}

.appointment-box h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.appointment-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.appointment-form .form-group {
  margin-bottom: 16px;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.appointment-form input:focus,
.appointment-form select:focus {
  outline: none;
  border-color: #ff7a00;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a00, #e56d00);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.45);
}

@media (max-width: 480px) {
  .appointment-box {
    padding: 30px 22px;
  }
}
@media (max-width: 576px) {
  .dept-title {
    font-size: 30px;
  }
  .dept-highlights h2,
  .dept-final-cta h2 {
    font-size: 28px;
  }
  .stat-box h3 {
    font-size: 34px;
  }
  .dept-stats {
    padding: 50px 20px;
  }
}
.experts-page {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 10px;
}

.sidebar-toggle {
  display: none;
  background: #f57c00;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
}

.dept-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.dept-sidebar h4 {
  margin-bottom: 15px;
}

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

.dept-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 5px;
  cursor: pointer;
  color: #555;
}

.dept-check input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 5px;
  position: relative;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: 0.2s;
}

.dept-check input:checked + .checkmark {
  background: #f57c00;
  border-color: #f57c00;
}

.dept-check input:checked + .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.view-btn {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #f57c00;
  color: #fff;
  cursor: pointer;
}

.experts-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #68ae3e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1;
}
.tag-btn img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.experts-header h2 {
  margin: 15px 0;
}

.filter-bar {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filter-bar select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.search-input {
  position: relative;
  flex: 1;
}

.search-input input {
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

.doctor-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  background: #fff;
}

.doctor-card:hover {
  transform: translateY(-6px);
  transition: ease-in-out 0.5s;
}

.doctor-card img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-card .info {
  background: #f57c00;
  padding: 15px;
  color: #fff;
}

.doctor-card img {
  transition: transform 0.6s ease;
}

.doctor-card:hover img {
  transform: scale(1.08);
}

.doctor-card .info {
  transition: transform 0.4s ease;
}

.doctor-card:hover .info {
  transform: translateY(-6px);
}

.doctor-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.doctor-link:focus,
.doctor-link:hover {
  text-decoration: none;
}

@media (max-width: 992px) {
  .experts-page {
    grid-template-columns: 1fr;
  }
  .sidebar-toggle {
    display: inline-block;
  }
  .dept-sidebar {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.35s ease;
    margin-bottom: 20px;
  }
  .dept-sidebar.open {
    max-height: 600px;
    padding: 20px;
    opacity: 1;
    transform: translateY(0);
  }
}
.doctor-details-page {
  max-width: 1300px;
  margin: 40px 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid #fde5d6;
}

.doctor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px 10px;
}

.doctor-image {
  border-radius: 20px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-info h2 {
  margin: 0;
  font-size: 26px;
}

@media (max-width: 576px) {
  .doctor-info h2, .overview h3 {
    font-size: 20px;
  }
  .degree {
    font-size: 14px;
  }
  .desc {
    font-size: 13px;
  }
  .speciality-box {
    margin: 10px 0 !important;
  }
  .overview-grid {
    gap: 2px !important;
  }
}
.degree {
  color: #f57c00;
  font-weight: 600;
  margin: 6px 0 14px;
}

.desc {
  color: #555;
  line-height: 1.6;
}

.speciality-box {
  background: #fff3e0;
  padding: 14px 14px;
  border-radius: 14px;
  margin: 20px 0;
  display: inline-block;
  width: 100%;
  border: 1px solid #d18206;
}

.speciality-box span {
  display: block;
  font-size: 13px;
  color: #777;
}

.speciality-box strong {
  font-size: 15px;
  color: #f57c00;
}

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

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 22px;
  cursor: pointer;
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f57c00;
  color: #fff;
  cursor: pointer;
}
.btn-icon img {
  width: 42px;
  height: 42px;
  padding: 10px;
}

.overview h3 {
  margin-bottom: 16px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.overview-grid p {
  color: #555;
  line-height: 1.6;
}

.accordion {
  margin-top: 30px;
}
@media (max-width: 576px) {
  .accordion {
    margin-top: 10px;
  }
}

.accordion-item {
  border: 1px solid #fde5d6;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: #f1e9d5;
  border: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 52px;
}

.accordion-header span {
  position: relative;
  padding-left: 15px;
}

.accordion-header span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #f58322;
  border-radius: 50%;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: #f57c00;
  transition: 0.3s ease;
  background: #dddddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}

.accordion-item.active .accordion-header::after {
  content: "−";
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body p {
  padding: 16px 0;
  color: #555;
}

@media (max-width: 900px) {
  .doctor-card {
    grid-template-columns: 1fr;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f1e1d2;
  padding: 35px 30px;
  margin-bottom: 40px;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.icon {
  font-size: 18px;
  color: #f57c00;
  min-width: 24px;
}
.icon img {
  width: 25px;
  height: 25px;
}

.info-text h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.info-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.info-divider {
  width: 1px;
  height: 50px;
  background: #f1e1d2;
}

@media (max-width: 768px) {
  .contact-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .info-divider {
    display: none;
  }
}
.icon {
  font-size: 18px;
  color: #f57c00;
}

.divider {
  width: 1px;
  height: 60px;
  background: #f1e1d2;
  justify-self: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #eee;
}
.contact-form-box h3 {
  margin-bottom: 10px;
}
.contact-form-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.contact-form-box div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: #f57c00;
}
.contact-form-box textarea {
  resize: none;
  height: 100px;
}
.contact-form-box button {
  margin-top: 10px;
  background: #f57c00;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form-box button:hover {
  background: #e56f00;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 0;
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .divider {
    display: none;
  }
}
.jcbs-careers {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
  color: #0f172a;
  /* LEFT SIDE */
  /* RIGHT SIDE CARD */
  /* HOVER EFFECT */
  /* RESPONSIVE */
}
.jcbs-careers .careers-block {
  padding: 50px 55px;
  border-radius: 36px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.jcbs-careers .intro-block {
  background: radial-gradient(circle at top right, rgba(255, 225, 200, 0.6196078431) 0%, transparent 40%), radial-gradient(circle at bottom left, rgba(218, 235, 207, 0.1803921569) 0%, transparent 45%), linear-gradient(135deg, #f0f9ff, #ecfdf5);
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.jcbs-careers .intro-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 6s infinite;
}
.jcbs-careers .intro-block .section-tag {
  display: inline-block;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #73b44d, #f58220);
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}
.jcbs-careers .intro-block h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.jcbs-careers .intro-block p {
  font-size: 18px;
  color: #475569;
  line-height: 1.9;
}
.jcbs-careers .values-block {
  background: radial-gradient(circle at top left, #e0f2fe 0%, transparent 40%), radial-gradient(circle at bottom right, #dcfce7 0%, transparent 45%), linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 40px;
  box-shadow: 0 70px 140px rgba(15, 23, 42, 0.14);
}
.jcbs-careers .values-block h3 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
}
.jcbs-careers .values-block .block-subtitle {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 45px;
  max-width: 620px;
}
.jcbs-careers .values-block .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.jcbs-careers .values-block .value-card {
  position: relative;
  padding: 48px 35px 42px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: 0 40px 95px rgba(15, 23, 42, 0.16);
  transition: all 0.45s ease;
}
.jcbs-careers .values-block .value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.jcbs-careers .values-block .value-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 75px 130px rgba(15, 23, 42, 0.25);
}
.jcbs-careers .values-block .value-card .value-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #67ae3e, #f58220);
  box-shadow: 0 18px 45px rgba(245, 130, 32, 0.45);
}
.jcbs-careers .values-block .value-card .value-icon i {
  font-size: 30px;
  color: #fff;
}
.jcbs-careers .values-block .value-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}
.jcbs-careers .values-block .value-card p {
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .jcbs-careers .values-block .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .jcbs-careers .values-block h3 {
    font-size: 24px;
  }
  .jcbs-careers .values-block .block-subtitle {
    font-size: 14px;
  }
  .jcbs-careers .values-block .values-grid {
    grid-template-columns: 1fr;
  }
  .jcbs-careers .values-block .value-card {
    padding: 36px 26px;
  }
}
.jcbs-careers .meaning-block {
  padding: 90px 20px;
  background-color: #f6faf7; /* clean hospital light green */
}
.jcbs-careers .meaning-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.jcbs-careers .meaning-left {
  position: relative;
  padding-left: 28px;
}
.jcbs-careers .meaning-line {
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(180deg, #67ae3e, #f58220);
}
.jcbs-careers .meaning-left h3 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  color: #033043;
  margin-bottom: 10px;
}
.jcbs-careers .meaning-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #67ae3e;
}
.jcbs-careers .meaning-right {
  background: #ffffff;
  padding: 42px 46px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}
.jcbs-careers .meaning-right p {
  font-size: 17px;
  line-height: 1.9;
  color: #445d6e;
}
.jcbs-careers .meaning-right:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}
@media (max-width: 768px) {
  .jcbs-careers .meaning-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .jcbs-careers .meaning-left h3 {
    font-size: 28px;
  }
  .jcbs-careers .meaning-right {
    padding: 30px 28px;
  }
  .jcbs-careers .meaning-right p {
    font-size: 14.5px;
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 992px) {
  .jcbs-careers .careers-block {
    padding: 50px 40px;
  }
  .jcbs-careers .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .jcbs-careers .careers-block {
    padding: 30px 26px;
  }
  .jcbs-careers .intro-block h2 {
    font-size: 22px;
  }
  .jcbs-careers .intro-block p {
    font-size: 14px;
  }
  .jcbs-careers .values-grid {
    grid-template-columns: 1fr !important;
  }
  .jcbs-careers .meaning-content {
    padding-left: 22px;
  }
}

.career-tabs {
  max-width: 1300px;
  margin: 40px auto;
  padding: 70px 40px;
  border-radius: 40px;
  background: radial-gradient(circle at top right, rgba(151, 200, 122, 0.3411764706), transparent 45%), radial-gradient(circle at bottom left, #fde8d7, transparent 45%), linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 60px 120px rgba(15, 23, 42, 0.12);
}
.career-tabs .tabs-header {
  text-align: center;
  margin-bottom: 50px;
}
.career-tabs .tabs-header h3 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.career-tabs .tabs-header p {
  color: #64748b;
}
.career-tabs .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.career-tabs .tab-buttons .tab-btn {
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
    .career-tabs .tab-buttons .tab-btn.active {
        /*background: linear-gradient(128deg,rgb(102, 166, 188) 32%, rgb(190, 109, 174) 100%);*/
        background: linear-gradient(128deg,rgb(102, 166, 188) 32%, rgb(190, 109, 174) 100%);
        color: #fff;
    }
.career-tabs .tab-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}
.career-tabs .tab-panel.active {
  display: block;
}
.career-tabs .sub-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.career-tabs .sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  transition: 0.3s ease;
}
.career-tabs .sub-row:hover {
  transform: translateY(-5px);
}
.career-tabs .sub-info {
  max-width: 70%;
}
.career-tabs .sub-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.career-tabs .sub-info p {
  color: #64748b;
  font-size: 14.5px;
}
.career-tabs .row-apply {
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(128deg,rgb(102, 166, 188) 32%, rgb(190, 109, 174) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border:none;
}
@media (max-width: 768px) {
  .career-tabs .sub-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .career-tabs .sub-info {
    max-width: 100%;
  }
  .career-tabs .row-apply {
    align-self: flex-end;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.jcbs-video-careers {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}
.jcbs-video-careers .career-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.jcbs-video-careers .career-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, rgba(11, 60, 60, 0.85), rgba(21, 101, 192, 0.75));
}
.jcbs-video-careers .career-video-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}
.jcbs-video-careers .career-video-content .career-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}
.jcbs-video-careers .career-video-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.jcbs-video-careers .career-video-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.95;
}
.jcbs-video-careers .career-video-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.jcbs-video-careers .career-video-actions .career-btn {
  padding: 14px 34px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s ease;
}
.jcbs-video-careers .career-video-actions .career-btn.primary {
  background: #71b34a;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.35);
}
.jcbs-video-careers .career-video-actions .career-btn.primary:hover {
  transform: translateY(-3px);
}
.jcbs-video-careers .career-video-actions .career-btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.jcbs-video-careers .career-video-actions .career-btn.outline:hover {
  background: #ffffff;
  color: #0b3c3c;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .jcbs-video-careers {
    min-height: 70vh;
  }
  .jcbs-video-careers .career-video-content h2 {
    font-size: 1.6rem;
  }
  .jcbs-video-careers .career-video-content p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .jcbs-video-careers {
    min-height: 65vh;
  }
  .jcbs-video-careers .career-video-content p {
    font-size: 13px;
  }
}
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.apply-modal.active {
  display: flex;
}
.apply-modal .apply-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.apply-modal .apply-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  width: 100%;
  max-width: 800px;
  padding: 40px 36px;
  border-radius: 32px;
  box-shadow: 0 60px 120px rgba(15, 23, 42, 0.35);
  animation: scaleIn 0.35s ease;
}
.apply-modal .apply-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0f172a, #0ea5e9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.apply-modal .apply-box p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 28px;
}
.apply-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #64748b;
  transition: 0.3s ease;
}
.apply-modal .close-modal:hover {
  color: #22c55e;
  transform: rotate(90deg);
}
.apply-modal .apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.apply-modal .apply-form .form-group {
  display: flex;
  flex-direction: column;
}
.apply-modal .apply-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}
.apply-modal .apply-form .form-group input,
.apply-modal .apply-form .form-group select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14.5px;
  transition: 0.3s ease;
}
.apply-modal .apply-form .form-group input:focus,
.apply-modal .apply-form .form-group select:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}
.apply-modal .apply-form .form-group input[type=file] {
  padding: 10px;
}
.apply-modal .apply-form .upload-group .custom-upload {
  position: relative;
}
.apply-modal .apply-form .upload-group input[type=file] {
  display: none;
}
.apply-modal .apply-form .upload-group .upload-box {
  border: 2px dashed #4caf50;
  border-radius: 12px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f9fff9, #f1f8f4);
}
.apply-modal .apply-form .upload-group .upload-box:hover {
  border-color: #2e7d32;
  background: #e8f5e9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}
.apply-modal .apply-form .upload-group .upload-icon {
  font-size: 28px;
  color: #4caf50;
}
.apply-modal .apply-form .upload-group .upload-text strong {
  color: #2e7d32;
  font-size: 16px;
}
.apply-modal .apply-form .upload-group .upload-text small {
  display: block;
  color: #666;
  margin-top: 4px;
}
.apply-modal .apply-form .full-width {
  grid-column: span 2;
}
.apply-modal .apply-form .submit-btn {
  margin-top: 10px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(128deg,rgb(102, 166, 188) 32%, rgb(190, 109, 174) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.4);
  transition: 0.35s ease;
  width: 100%;
}
.apply-modal .apply-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(14, 165, 233, 0.6);
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  .apply-modal .apply-box {
    padding: 32px 24px;
  }
  .apply-modal .apply-form {
    grid-template-columns: 1fr;
  }
  .apply-modal .apply-form .full-width {
    grid-column: span 1;
  }
}

.jcbs-services {
  padding: 45px 0;
  background: #f6f8fb;
}
.jcbs-services .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
.jcbs-services .services-header {
  background: linear-gradient(to right, rgba(26, 115, 232, 0.06), rgba(26, 115, 232, 0.02));
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 70px;
}
.jcbs-services .services-header .header-text .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3e6084;
  margin-bottom: 12px;
}
.jcbs-services .services-header .header-text h2 {
  position: relative;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 26px;
  padding-bottom: 12px;
}
.jcbs-services .services-header .header-text h2 span {
  color: #f58220;
}
.jcbs-services .services-header .header-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #7bb857;
  border-radius: 3px;
}
.jcbs-services .services-header .header-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 620px;
}
@media (max-width: 768px) {
  .jcbs-services .services-header {
    padding: 35px 24px;
    margin-bottom: 50px;
  }
  .jcbs-services .services-header .header-text h2 {
    font-size: 28px;
  }
}
.jcbs-services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.jcbs-services .service-item {
  position: relative;
  background: #fff;
  padding: 34px 26px 32px;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.jcbs-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #f58220, #70b349);
  transition: width 0.35s ease;
  border-radius: 16px 16px 0 0;
}
.jcbs-services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.jcbs-services .service-item:hover::before {
  width: 100%;
}
.jcbs-services .service-item .service-icon {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  background: rgba(26, 115, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.jcbs-services .service-item .service-icon img {
  width: 85px;
  height: 85px;
}
.jcbs-services .service-item .service-icon i {
  font-size: 24px;
  color: #1a73e8;
}
.jcbs-services .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.jcbs-services .service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}
.jcbs-services .service-item .service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.jcbs-services .service-item .service-link::after {
  content: "→";
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.jcbs-services .service-item .service-link:hover {
  color: #0f5cc0;
}
.jcbs-services .service-item .service-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .jcbs-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .jcbs-services {
    padding: 30px 0;
  }
  .jcbs-services .services-header h2 {
    font-size: 26px;
  }
  .jcbs-services .services-grid {
    grid-template-columns: 1fr;
  }
}
.jacobs-footer {
  background: radial-gradient(circle at top, #2b2b2b, #0e0e0e);
  color: #cfcfcf;
}

.footer-top {
  padding: 40px 20px;
}

.footer-top-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.footer-brand img {
  width: 150px;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.brand-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.location-icon {
  width: 14px !important;
  height: 18px;
  margin-top: 3px;
  opacity: 0.9;
  flex-shrink: 0;
}

.brand-address p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-news h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.subscribe-wrap {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border-radius: 30px;
  padding: 10px;
}

.subscribe-wrap input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  width: 200px;
  border-radius: 20px;
  border: 1px solid #ff8c1a;
  outline: none;
}

.subscribe-wrap button {
  background: #ff8c1a;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
}

.send-btn {
  width: 32px;
  height: 32px;
  background: #ff8c1a;
  border-radius: 50%;
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding: 40px 20px;
}

.footer-main-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  color: #cfcfcf;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff8c1a;
}

.certs {
  display: flex;
  gap: 14px;
}

.certs img {
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-pill {
  background: #1b1b1b;
  padding: 8px 14px;
  border-radius: 22px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 125px;
}
@media (max-width: 480px) {
  .socials {
    margin-top: 5px;
  }
}

.socials span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 141, 26, 0.36);
  transition: all 0.3s ease;
}

.socials span a {
  color: #fff;
  font-size: 14px;
}

.socials span:hover {
  background: #ff8c1a;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1300px;
  margin: auto;
  padding: 16px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
}

.bottom-links a {
  margin-left: 18px;
  color: #cfcfcf;
  cursor: pointer;
}

.bottom-links a:hover {
  color: #ff8c1a;
}

@media (max-width: 992px) {
  .footer-main-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-top-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
  .footer-main-inner {
    grid-template-columns: 1fr;
  }
  .subscribe-wrap {
    flex-wrap: wrap;
    gap: 5px;
  }
  .subscribe-wrap input {
    width: 100%;
    margin-bottom: 6px;
  }
  .subscribe-wrap button {
    width: 100%;
    margin-left: 0;
  }
}
.back-to-top {
  --btn-size: 64px;
  --inner-size: 56px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 999px;
  padding: 4px;
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(255, 123, 0, 0.3098039216);
  cursor: pointer;
  z-index: 9999;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(129, 188, 95, 0.2941176471), 0 6px 18px rgba(129, 188, 95, 0.2117647059);
}
@media (max-width: 600px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    --btn-size: 72px;
    --inner-size: 64px;
  }
}
.back-to-top .progress-ring {
  width: var(--inner-size);
  height: var(--inner-size);
  transform: rotate(-90deg);
  display: block;
  pointer-events: none;
}
.back-to-top .progress-ring .progress-ring__bg {
  stroke: rgba(255, 255, 255, 0.08);
}
.back-to-top .progress-ring .progress-ring__fg {
  stroke: #ff7a00;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 120ms linear;
  filter: drop-shadow(0 4px 6px rgba(11, 116, 255, 0.18));
}
.back-to-top .btt-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: calc(var(--inner-size) - 12px);
  height: calc(var(--inner-size) - 12px);
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a00, rgb(229.5, 109.8, 0));
  color: white;
  transform: translateZ(0);
  transition: transform 180ms ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}
.back-to-top .btt-icon svg {
  display: block;
}
.back-to-top:hover .btt-icon, .back-to-top:focus .btt-icon {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
  .back-to-top .progress-ring__fg {
    transition: none;
  }
  .back-to-top .btt-icon {
    transition: none;
  }
}
.back-to-top .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}/*# sourceMappingURL=style.css.map */