@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

/* ========== Global Reset ========== */
* {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #009DC3;
  outline: none;
  border-radius: 20px !important;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

button:focus {
  outline: 0;
}

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

img {
  max-width: 100%;
}

/* ========== Color Utilities ========== */
.color1 {
  color: #FE0000;
}

.color2 {
  color: #009DC3;
}

.BG1 {
  background-color: #FE0000;
}

.BG2 {
  background-color: #009DC3;
}

/* ========== Typography ========== */
p {
  line-height: 34px;
  color: #555;
}

/* ========== Body ========== */
body {
  padding-top: 0;
  direction: rtl;
  text-align: right;
  background-color: #fff;
  overflow-x: hidden;
}

/* ========== Spinner / Loader ========== */
.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  align-items: center;
  gap: 4px;
}

.loader div {
  background-color: #009DC3;
  height: 35px;
  width: 6px;
  border-radius: 3px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.loader .rect2 { animation-delay: -1.1s; }
.loader .rect3 { animation-delay: -1.0s; }
.loader .rect4 { animation-delay: -0.9s; }
.loader .rect5 { animation-delay: -0.8s; }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1.0);
  }
}

/* ========== Header ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  height: 55px;
  width: auto;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-desktop .nav-item {
  position: relative;
  padding-bottom: 0;
}

.nav-desktop .nav-item::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background-color: #FE0000;
  border-radius: 4px;
  transition: all .3s ease-in-out;
}

.nav-desktop .nav-item:hover::after {
  width: 100%;
}

.nav-desktop .nav-item a {
  padding: 10px 12px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  display: block;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-desktop .nav-item a:hover {
  color: #009DC3;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding-left: 20px !important;
}

.dropdown-toggle::after {
  content: "\f107";
  display: inline;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: bold;
  border: none !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: all .3s ease-in-out;
  font-size: 12px;
}

.dropdown:hover .dropdown-toggle::after {
  transform: translateY(-50%) rotate(0deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 1001;
  border: none;
  animation: fadeIn 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding: 8px 16px !important;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
}

.dropdown-item:hover {
  background-color: #009DC3 !important;
  color: #fff !important;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s;
}

.mobile-menu-btn:hover {
  color: #009DC3;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  padding: 20px;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar .close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-sidebar .close-btn:hover {
  color: #FE0000;
  transform: rotate(90deg);
}

.mobile-sidebar .sidebar-logo {
  margin-bottom: 30px;
  padding-top: 10px;
}

.mobile-sidebar .sidebar-logo img {
  height: 50px;
}

.mobile-sidebar .nav-item {
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-sidebar .nav-item a {
  display: block;
  padding: 12px 5px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.mobile-sidebar .nav-item a:hover {
  color: #009DC3;
  padding-right: 15px;
}

.mobile-sidebar .dropdown-menu {
  position: static;
  box-shadow: none;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 5px 0;
  display: none;
  animation: none;
}

.mobile-sidebar .dropdown.open .dropdown-menu {
  display: block;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

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

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  body {
    padding-top: 75px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
  .navbar-brand img {
    height: 45px;
  }
}

/* ========== Section Titles ========== */
.title {
  text-align: center;
  margin-bottom: 40px;
}

.title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.title img {
  width: 80px;
  display: block;
  margin: 0 auto;
}

.title p {
  margin-top: 15px;
  color: #777;
  font-size: 16px;
}

/* ========== Main Slider ========== */
#MainSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.MainSlider-container {
  width: 100%;
  height: 85vh;
}

.mainSlideItem {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.mainSlideItem--featured {
  background-size: cover;
  background-position: center center;
  background-color: #2f2b27;
  overflow: hidden;
}

.mainSlideItem--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.3), rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.08) 70%, rgba(0,0,0,0.24)),
    linear-gradient(180deg, rgba(0,0,0,0.08), transparent 35%, rgba(0,0,0,0.18));
  pointer-events: none;
  z-index: 1;
}

.hero-slide-actions {
  position: absolute;
  right: 50%;
  bottom: 18%;
  transform: translateX(50%);
  z-index: 2;
}

.hero-slide-btn {
  min-width: 170px;
  min-height: 50px;
  border-radius: 8px;
  background: #009DC3;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(0, 70, 88, 0.35);
  transition: all 0.3s ease;
}

.hero-slide-btn:hover {
  background: #0084a5;
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 70, 88, 0.45);
}

.mainSlideItem .Des {
  position: absolute;
  bottom: 15%;
  right: 8%;
  color: #fff;
  max-width: 500px;
}

.mainSlideItem .Des h1 {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.mainSlideItem .Des h1 i {
  margin-left: 10px;
}

.mainSlideItem .Des p {
  color: #fff;
  font-size: 16px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  line-height: 30px;
}

.main-slider-next,
.main-slider-prev {
  color: #fff !important;
  background: rgba(0,0,0,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.main-slider-next:hover,
.main-slider-prev:hover {
  background: rgba(0, 157, 195, 0.8);
}

.main-slider-next::after,
.main-slider-prev::after {
  font-size: 18px !important;
}

.goDownDiv {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.goDown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.goDown:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.goDown i {
  font-size: 22px;
  color: #f59e0b;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .MainSlider-container {
    height: auto;
    aspect-ratio: 1600 / 902;
    min-height: 0;
    background: #2f2b27;
  }
  .mainSlideItem--featured {
    background-size: cover;
    background-position: center center;
    background-color: #2f2b27;
  }
  .mainSlideItem--featured::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.06) 58%, rgba(0,0,0,0.48)),
      linear-gradient(90deg, rgba(0,0,0,0.08), transparent 24%, transparent 76%, rgba(0,0,0,0.08));
  }
  .hero-slide-actions {
    bottom: 34px;
  }
  .hero-slide-btn {
    min-width: 132px;
    min-height: 40px;
    padding: 9px 18px;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(0, 70, 88, 0.32);
  }
  .main-slider-next,
  .main-slider-prev {
    width: 44px;
    height: 44px;
  }
  .goDownDiv {
    bottom: 8px;
  }
  .goDown {
    width: 36px;
    height: 36px;
  }
  .goDown i {
    font-size: 17px !important;
  }
  .mainSlideItem .Des h1 {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .MainSlider-container {
    height: auto;
    aspect-ratio: 1600 / 902;
    min-height: 0;
  }
  .hero-slide-actions {
    bottom: 32px;
  }
  .hero-slide-btn {
    min-width: 124px;
    min-height: 38px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .main-slider-next,
  .main-slider-prev {
    width: 40px;
    height: 40px;
  }
  .goDown {
    width: 34px;
    height: 34px;
  }
}

/* ========== Services Section ========== */
#services {
  padding: 80px 0;
  background-color: #fff;
}

#services .row {
  margin: 0;
}

#services > .container > .row:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#services > .container > .row:first-of-type p {
  font-size: 16px;
  color: #555;
  line-height: 32px;
  padding: 15px;
}

.serviceIcon {
  text-align: center;
  padding: 30px 15px;
  border-radius: 12px;
  background: #f8fbfc;
  margin: 8px;
  transition: all 0.4s ease;
  border: 1px solid #eef5f7;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.serviceIcon:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 157, 195, 0.15);
  border-color: #009DC3;
  background: #fff;
}

.serviceIcon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009DC3, #00b8e6);
  margin-bottom: 15px;
  transition: all 0.4s;
}

.serviceIcon:hover span {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #FE0000, #ff4444);
}

.serviceIcon span i {
  font-size: 26px;
  color: #fff;
}

.serviceIcon h5 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* ========== Background Div (Booking Banner) ========== */
.bgDiv {
  position: relative;
  background-image: url('https://elajrowad.com/Site/img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bgDiv .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 157, 195, 0.85), rgba(0, 80, 100, 0.9));
}

.bgDiv .content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.bgDiv .content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 42px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* ========== Specialties Section ========== */
.specialties {
  padding: 80px 0;
  background-color: #f8fbfc;
}

.specialtyCol {
  padding: 8px !important;
}

.specialtyCol a {
  text-decoration: none;
}

.specialty {
  background: #fff;
  border-radius: 12px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #eef5f7;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.specialty:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 157, 195, 0.15);
  border-color: #009DC3;
}

.specialty > div:first-child {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009DC3, #00b8e6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.4s;
}

.specialty:hover > div:first-child {
  background: linear-gradient(135deg, #FE0000, #ff4444);
  transform: scale(1.1);
}

.specialty i {
  font-size: 24px;
  color: #fff;
}

.specialty h5 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 24px;
}

/* ========== Doctors Section ========== */
.doctors {
  padding: 80px 0;
  background: #fff;
}

.team-container {
  padding: 20px 0 40px;
}

.team-container .swiper-slide {
  padding: 10px;
}

.tamInfo {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.tamInfo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 157, 195, 0.15);
}

.tamInfo img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center top;
  background: #eef3f5;
}

.tamInfo span {
  display: block;
  margin-top: 15px;
  color: #009DC3;
  font-size: 13px;
  font-weight: 600;
}

.tamInfo h6 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 8px 0 5px;
}

.tamInfo p {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
  padding: 0 10px;
}

.contactTeam {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}

.contactTeam a.btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #555;
  transition: all 0.3s;
  padding: 0;
  font-size: 16px;
}

.contactTeam a.btn:hover {
  background: #009DC3;
  color: #fff;
  transform: translateY(-3px);
}

.doctors .swiper-button-next,
.doctors .swiper-button-prev {
  color: #009DC3 !important;
  background: rgba(255,255,255,0.9);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.doctors .swiper-button-next:hover,
.doctors .swiper-button-prev:hover {
  background: #009DC3;
  color: #fff !important;
}

.doctors .swiper-button-next::after,
.doctors .swiper-button-prev::after {
  font-size: 16px !important;
}

/* ========== Gallery Section ========== */
.gallery {
  padding: 80px 0;
  background: #f8fbfc;
}

/* ========== Inner Pages ========== */
.inner-page {
  background: #f8fbfc;
}

.inner-hero {
  margin-top: 71px;
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0, 91, 113, 0.86), rgba(0, 157, 195, 0.82)),
    url('https://elajrowad.com/Site/img/bg.jpg') center/cover no-repeat;
}

.inner-hero h1 {
  font-size: 34px;
  font-weight: 800;
  margin: 15px 0 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.breadcrumb-nav a,
.breadcrumb-nav span,
.breadcrumb-nav strong {
  color: #fff;
}

.form-section {
  padding: 70px 0;
}

.content-card {
  background: #fff;
  border: 1px solid #eef2f3;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  padding: 32px;
}

.compact-title {
  margin-bottom: 25px;
}

.compact-title h2 {
  font-size: 26px;
}

.site-form .form-group {
  margin-bottom: 18px;
}

.site-form label {
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid #dfe8eb;
  border-radius: 8px;
  color: #333;
  font-size: 15px;
  padding: 12px 14px;
  transition: all 0.3s;
}

.site-form textarea {
  resize: vertical;
  min-height: 120px;
}

.site-form input:focus,
.site-form textarea:focus {
  border-color: #009DC3;
  box-shadow: 0 0 0 3px rgba(0, 157, 195, 0.12);
}

.primary-action {
  border: 0;
  border-radius: 8px;
  background: #009DC3;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  min-height: 46px;
  padding: 12px 28px;
  transition: all 0.3s;
}

.primary-action:hover {
  background: #0084a5;
  transform: translateY(-2px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.contact-list i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 157, 195, 0.1);
  color: #009DC3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.contact-list a {
  color: #333;
}

.contact-list a:hover {
  color: #009DC3;
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eef2f3;
  height: 260px;
  margin-bottom: 18px;
}

.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.map-action {
  width: 100%;
}

.gallery .row {
  margin: 0;
}

.gallery .col-lg-3,
.gallery .col-md-4,
.gallery .col-6 {
  padding: 6px !important;
}

.gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery a::after {
  content: '\f00e';
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 157, 195, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: all 0.4s;
}

.gallery a:hover::after {
  opacity: 1;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s;
  display: block;
}

.gallery a:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery img {
    height: 150px;
  }
}

/* ========== News Section ========== */
.news {
  padding: 80px 0;
  background: #fff;
}

.news .d-flex .color1 {
  font-weight: 700;
  font-size: 15px;
  transition: color 0.3s;
}

.news .d-flex .color1:hover {
  color: #009DC3 !important;
}

.oneNews {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.oneNews:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 157, 195, 0.15);
}

.oneNews > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.oneNews .date {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 20px 5px;
  color: #009DC3;
  font-weight: 600;
  font-size: 14px;
}

.oneNews .date .day {
  font-size: 28px;
  font-weight: 700;
  color: #FE0000;
  line-height: 1;
}

.oneNews .date .month {
  font-size: 13px;
  color: #009DC3;
}

.oneNews .date .year {
  font-size: 13px;
  color: #999;
}

.oneNews h5 {
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 28px;
}

.oneNews p {
  padding: 0 20px;
  font-size: 14px;
  color: #777;
}

.oneNews .btn {
  display: inline-block;
  margin: 10px 20px 20px;
  background: linear-gradient(135deg, #009DC3, #00b8e6);
  color: #fff !important;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.oneNews .btn:hover {
  background: linear-gradient(135deg, #FE0000, #ff4444);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 0, 0, 0.3);
}

/* ========== Footer ========== */
footer.page-footer {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #ccc;
  padding-top: 50px;
}

footer h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #009DC3, #00b8e6);
  border-radius: 3px;
}

footer ul li {
  padding: 6px 0;
}

footer ul li a {
  color: #aaa;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}

footer ul li a:hover {
  color: #009DC3;
  padding-right: 8px;
}

footer p {
  color: #aaa;
  font-size: 14px;
  line-height: 28px;
}

.footer-copyright {
  background: rgba(0,0,0,0.2);
  color: #888;
  font-size: 13px;
  margin-top: 40px;
  padding: 15px 0;
}

.footer-copyright a {
  color: #009DC3;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-copyright a:hover {
  color: #00b8e6;
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .title h2 {
    font-size: 26px;
  }
  #services,
  .specialties,
  .doctors,
  .gallery,
  .news {
    padding: 50px 0;
  }
  .bgDiv {
    padding: 60px 0;
  }
  .bgDiv .content h4 {
    font-size: 18px;
    line-height: 34px;
  }
}

@media (max-width: 576px) {
  .title h2 {
    font-size: 22px;
  }
  .serviceIcon {
    min-height: 130px;
    padding: 20px 10px;
  }
  .specialty {
    min-height: 120px;
    padding: 20px 10px;
  }
  .specialty h5 {
    font-size: 12px;
  }
  .tamInfo img {
    height: 280px;
  }
  .oneNews > img {
    height: 180px;
  }
}

/* ========== Lightbox Modal ========== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  transition: all 0.3s;
  background: none;
  border: none;
  z-index: 100001;
}

.lightbox-close:hover {
  color: #FE0000;
  transform: rotate(90deg);
}

/* ========== Swiper Custom ========== */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}
