.news-section {
  width: 100%;
  padding: 60px 4%;
  background-color: #fafafa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.news-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.news-section .section-header {
  margin-bottom: 40px;
}
.news-section .section-header h2 {
  font-size: 32px;
  color: #1E3A8A;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.news-section .section-header .news-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #0284C7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-section .featured-news-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 50px;
  align-items: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .featured-news-box:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
.news-section .featured-news-box:hover .featured-image img {
  transform: scale(1.03);
}
.news-section .featured-news-box .featured-image {
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background-color: #f1f5f9;
}
.news-section .featured-news-box .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.news-section .featured-news-box .featured-info {
  padding: 40px;
}
.news-section .featured-news-box .featured-info .news-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.news-section .featured-news-box .featured-info .news-meta .badge-category {
  background-color: #E0F2FE;
  color: #1E3A8A;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.news-section .featured-news-box .featured-info .news-meta .date-text {
  color: #718096;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-section .featured-news-box .featured-info .news-meta .date-text i {
  font-size: 13px;
}
.news-section .featured-news-box .featured-info .featured-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.news-section .featured-news-box .featured-info .featured-title a {
  color: #1a202c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-section .featured-news-box .featured-info .featured-title a:hover {
  color: #0284C7;
}
.news-section .featured-news-box .featured-info .featured-desc {
  color: #718096;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.news-section .featured-news-box .featured-info .read-more-link {
  color: #E65353;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .featured-news-box .featured-info .read-more-link i {
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .featured-news-box .featured-info .read-more-link:hover {
  gap: 10px;
  opacity: 0.9;
}
.news-section .news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-section .news-cards-grid .clinic-news-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .news-cards-grid .clinic-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.news-section .news-cards-grid .clinic-news-card:hover .card-img-holder img {
  transform: scale(1.05);
}
.news-section .news-cards-grid .clinic-news-card:hover .card-news-title a {
  color: #0284C7;
}
.news-section .news-cards-grid .clinic-news-card:hover .card-action-btn {
  gap: 9px;
  color: #1E3A8A;
}
.news-section .news-cards-grid .clinic-news-card .card-img-holder {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}
.news-section .news-cards-grid .clinic-news-card .card-img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.news-section .news-cards-grid .clinic-news-card .card-img-holder .card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #1E3A8A;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}
.news-section .news-cards-grid .clinic-news-card .card-img-holder .card-badge.bg-gilos {
  background-color: #E65353;
  color: #ffffff;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info {
  color: #718096;
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info i {
  font-size: 13px;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title a {
  color: #1a202c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
  color: #718096;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn {
  margin-top: auto;
  color: #0284C7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn i {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .news-section {
    padding: 50px 4%;
  }
  .news-section .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news-section .featured-news-box {
    gap: 24px;
    margin-bottom: 40px;
  }
  .news-section .featured-news-box .featured-info {
    padding: 32px;
  }
  .news-section .featured-news-box .featured-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .news-section .featured-news-box .featured-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .news-section {
    padding: 45px 4%;
  }
  .news-section .section-header {
    margin-bottom: 32px;
  }
  .news-section .section-header h2 {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .news-section .section-header .news-subtitle {
    font-size: 13px;
  }
  .news-section .featured-news-box {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    margin-bottom: 36px;
  }
  .news-section .featured-news-box .featured-image {
    min-height: 280px;
    height: 280px;
    order: -1;
  }
  .news-section .featured-news-box .featured-info {
    padding: 28px;
  }
  .news-section .featured-news-box .featured-info .featured-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .news-section .featured-news-box .featured-info .featured-desc {
    font-size: 13.5px;
    margin-bottom: 20px;
  }
  .news-section .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder {
    height: 200px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder {
    padding: 20px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
    font-size: 16px;
    margin-bottom: 10px;
    min-height: 45px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .news-section {
    padding: 40px 16px;
  }
  .news-section .section-header {
    margin-bottom: 28px;
  }
  .news-section .section-header h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .news-section .section-header .news-subtitle {
    font-size: 12px;
  }
  .news-section .featured-news-box {
    border-radius: 16px;
    margin-bottom: 32px;
  }
  .news-section .featured-news-box .featured-image {
    min-height: 240px;
    height: 240px;
  }
  .news-section .featured-news-box .featured-image img {
    border-radius: 16px 16px 0 0;
  }
  .news-section .featured-news-box .featured-info {
    padding: 24px;
  }
  .news-section .featured-news-box .featured-info .news-meta {
    gap: 12px;
    margin-bottom: 16px;
  }
  .news-section .featured-news-box .featured-info .news-meta .badge-category {
    padding: 3px 10px;
    font-size: 11px;
  }
  .news-section .featured-news-box .featured-info .news-meta .date-text {
    font-size: 12px;
  }
  .news-section .featured-news-box .featured-info .featured-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .news-section .featured-news-box .featured-info .featured-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .news-section .featured-news-box .featured-info .read-more-link {
    font-size: 14px;
  }
  .news-section .featured-news-box .featured-info .read-more-link i {
    font-size: 12px;
  }
  .news-section .news-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-section .news-cards-grid .clinic-news-card {
    border-radius: 16px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder {
    height: 200px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder .card-badge {
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 10px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder {
    padding: 18px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info i {
    font-size: 12px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
    font-size: 16px;
    margin-bottom: 10px;
    min-height: 45px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title a {
    text-decoration: none;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
    font-size: 12.5px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn {
    font-size: 13px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn i {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .news-section {
    padding: 32px 14px;
  }
  .news-section .section-header {
    margin-bottom: 24px;
  }
  .news-section .section-header h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .news-section .section-header .news-subtitle {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
  .news-section .featured-news-box {
    margin-bottom: 28px;
  }
  .news-section .featured-news-box .featured-image {
    min-height: 200px;
    height: 200px;
  }
  .news-section .featured-news-box .featured-info {
    padding: 20px;
  }
  .news-section .featured-news-box .featured-info .news-meta {
    gap: 10px;
    margin-bottom: 14px;
  }
  .news-section .featured-news-box .featured-info .news-meta .badge-category {
    padding: 3px 9px;
    font-size: 10px;
  }
  .news-section .featured-news-box .featured-info .news-meta .date-text {
    font-size: 11px;
  }
  .news-section .featured-news-box .featured-info .featured-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .news-section .featured-news-box .featured-info .featured-desc {
    font-size: 12.5px;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .news-section .featured-news-box .featured-info .read-more-link {
    font-size: 13px;
  }
  .news-section .news-cards-grid {
    gap: 14px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder {
    height: 180px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder .card-badge {
    top: 10px;
    left: 10px;
    padding: 2px 8px;
    font-size: 10px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder {
    padding: 16px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
    font-size: 15px;
    margin-bottom: 8px;
    min-height: 40px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
    font-size: 12px;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .news-section {
    padding: 28px 12px;
  }
  .news-section .section-header {
    margin-bottom: 20px;
  }
  .news-section .section-header h2 {
    font-size: 20px;
  }
  .news-section .section-header .news-subtitle {
    font-size: 10px;
  }
  .news-section .featured-news-box {
    margin-bottom: 24px;
  }
  .news-section .featured-news-box .featured-image {
    min-height: 180px;
    height: 180px;
  }
  .news-section .featured-news-box .featured-info {
    padding: 16px;
  }
  .news-section .featured-news-box .featured-info .news-meta {
    gap: 8px;
    margin-bottom: 12px;
  }
  .news-section .featured-news-box .featured-info .news-meta .badge-category {
    padding: 2px 8px;
    font-size: 9px;
  }
  .news-section .featured-news-box .featured-info .news-meta .date-text {
    font-size: 10px;
  }
  .news-section .featured-news-box .featured-info .featured-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .news-section .featured-news-box .featured-info .featured-desc {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .news-section .featured-news-box .featured-info .read-more-link {
    font-size: 12px;
  }
  .news-section .news-cards-grid {
    gap: 12px;
  }
  .news-section .news-cards-grid .clinic-news-card {
    border-radius: 12px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder {
    height: 160px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder .card-badge {
    top: 8px;
    left: 8px;
    padding: 2px 7px;
    font-size: 9px;
    border-radius: 8px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder {
    padding: 14px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-date-info {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
    font-size: 14px;
    margin-bottom: 6px;
    min-height: 35px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-action-btn {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .news-section {
    padding: 24px 10px;
  }
  .news-section .section-header h2 {
    font-size: 18px;
  }
  .news-section .section-header .news-subtitle {
    font-size: 9px;
  }
  .news-section .featured-news-box {
    margin-bottom: 20px;
  }
  .news-section .featured-news-box .featured-image {
    min-height: 160px;
    height: 160px;
  }
  .news-section .featured-news-box .featured-info {
    padding: 14px;
  }
  .news-section .featured-news-box .featured-info .featured-title {
    font-size: 15px;
  }
  .news-section .featured-news-box .featured-info .featured-desc {
    font-size: 11px;
  }
  .news-section .news-cards-grid {
    gap: 10px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-img-holder {
    height: 140px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder {
    padding: 12px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-title {
    font-size: 13px;
  }
  .news-section .news-cards-grid .clinic-news-card .card-content-holder .card-news-desc {
    font-size: 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #F8FAFC;
  color: #0F172A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.topbar {
  width: 100%;
  background: linear-gradient(135deg, #F1F5F9 0%, #E8ECEF 100%);
  border-bottom: 1px solid #E2E8F0;
  padding: 0.75rem 0;
}
@media (max-width: 768px) {
  .topbar {
    padding: 0.5rem 0;
  }
}
.topbar .topbar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .topbar .topbar-container {
    padding: 0 1rem;
  }
}
.topbar .upnav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .topbar .upnav {
    display: none;
  }
}
.topbar .upnav a {
  font-size: 0.875rem;
  color: #0F172A;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}
.topbar .upnav a:hover {
  color: #1E3A8A;
}
.topbar .upnav a .badge-red {
  background: #DC2626;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}
.topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .topbar .topbar-right {
    gap: 1rem;
  }
}
.topbar .topbar-right .lang-switcher select,
.topbar .topbar-right .currency-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: #0F172A;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .topbar .topbar-right .lang-switcher select,
  .topbar .topbar-right .currency-btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }
}
.topbar .topbar-right .lang-switcher select:hover,
.topbar .topbar-right .currency-btn:hover {
  border-color: #1E3A8A;
  background: #EFF6FF;
}
.topbar .topbar-right .currency-btn {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar .topbar-right .currency-btn .flag-icon {
  width: 1.25rem;
  height: auto;
  border-radius: 2px;
}
.topbar .topbar-right .currency-btn i {
  font-size: 0.75rem;
}

.main-navbar {
  background: #FFFFFF;
  padding: 1rem 0;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.main-navbar .navbar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .main-navbar .navbar-container {
    padding: 0 1rem;
    gap: 1rem;
  }
}
.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.main-navbar .navbar-brand .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 2.5rem;
}
.main-navbar .navbar-brand .logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-navbar .navbar-brand .medal-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #FCD34D 0%, rgb(251.1546961326, 198.6022099448, 26.8453038674) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .main-navbar .navbar-brand .medal-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.main-navbar .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .main-navbar .menu-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }
}
.main-navbar .menu-toggle .bar {
  width: 1.5rem;
  height: 0.25rem;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-navbar .menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(0.625rem, 0.625rem);
}
.main-navbar .menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.main-navbar .menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}
.main-navbar .main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
@media (max-width: 768px) {
  .main-navbar .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.4s all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .main-navbar .main-nav.active {
    right: 0;
  }
}
.main-navbar .main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-navbar .main-nav .nav-item {
    width: 100%;
  }
}
.main-navbar .main-nav .nav-item a {
  text-decoration: none;
  color: #0F172A;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main-navbar .main-nav .nav-item a {
    width: 100%;
    font-size: 1rem;
  }
}
.main-navbar .main-nav .nav-item a:hover {
  color: #1E3A8A;
}
.main-navbar .main-nav .nav-item .dropdown-arrow {
  font-size: 0.75rem;
  color: #64748B;
  transition: transform 0.3s ease;
  margin-top: 0.125rem;
}
.main-navbar .main-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  list-style: none;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid #E2E8F0;
}
.main-navbar .main-nav .nav-item .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 1rem;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
}
.main-navbar .main-nav .nav-item .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem;
  color: #0F172A;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
}
.main-navbar .main-nav .nav-item .dropdown-menu li a i {
  color: #1E3A8A;
  font-size: 1rem;
  width: 1.25rem;
  flex-shrink: 0;
}
.main-navbar .main-nav .nav-item .dropdown-menu li a:hover {
  background: #EFF6FF;
  color: #1E3A8A;
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .main-navbar .main-nav .nav-item .dropdown-menu {
    position: relative;
    top: 0;
    background: #F8FAFC;
    border: none;
    box-shadow: none;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    margin-left: 1rem;
    transform: none;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .main-navbar .main-nav .nav-item .dropdown-menu::before {
    display: none;
  }
  .main-navbar .main-nav .nav-item .dropdown-menu li a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.main-navbar .main-nav .nav-item.has-hover:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navbar .main-nav .nav-item.has-hover:hover .dropdown-arrow {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .main-navbar .main-nav .nav-item.has-hover:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
}
.main-navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .main-navbar .navbar-actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }
}
.main-navbar .navbar-actions .phone-btn {
  background: #1E3A8A;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main-navbar .navbar-actions .phone-btn {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .main-navbar .navbar-actions .phone-btn span {
    display: none;
  }
}
.main-navbar .navbar-actions .phone-btn i {
  font-size: 1rem;
}
.main-navbar .navbar-actions .phone-btn:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.search-section {
  background: #FFFFFF;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E2E8F0;
}
@media (max-width: 768px) {
  .search-section {
    padding: 1rem 0;
  }
}
.search-section .search-container-box {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .search-section .search-container-box {
    padding: 0 1rem;
  }
}
.search-section .search {
  width: 100%;
}
.search-section .search .search-container {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F1F5F9 0%, #E8ECEF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .search-section .search .search-container {
    border-radius: 16px;
    padding: 0.375rem 0.375rem 0.375rem 1rem;
  }
}
.search-section .search .search-container:focus-within {
  background: #FFFFFF;
  border-color: #1E3A8A;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.08);
}
.search-section .search .search-container .search-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 0.9375rem;
  color: #0F172A;
}
@media (max-width: 768px) {
  .search-section .search .search-container .search-input {
    font-size: 0.875rem;
  }
}
.search-section .search .search-container .search-input::-moz-placeholder {
  color: #64748B;
}
.search-section .search .search-container .search-input::placeholder {
  color: #64748B;
}
.search-section .search .search-container .search-btn {
  background: #1E3A8A;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .search-section .search .search-container .search-btn {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 12px;
    justify-content: center;
  }
  .search-section .search .search-container .search-btn span {
    display: none;
  }
}
.search-section .search .search-container .search-btn i {
  font-size: 0.875rem;
}
.search-section .search .search-container .search-btn:hover {
  background: #DC2626;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.search-section .search .search-container .search-btn:active {
  transform: scale(0.98);
}

.banner {
  max-width: 1240px;
  margin: 1.5rem auto;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
@media (max-width: 1024px) {
  .banner {
    height: 280px;
    margin: 1rem auto;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 180px;
    margin: 0.75rem 1rem;
    border-radius: 12px;
  }
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: slideAnimation 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.banner img:nth-child(1) {
  animation-delay: 0s;
}
.banner img:nth-child(2) {
  animation-delay: 4s;
}
.banner img:nth-child(3) {
  animation-delay: 8s;
}
.banner img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes slideAnimation {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.services-section {
  background: #F8FAFC;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .services-section {
    padding: 1.5rem 0;
  }
}
.services-section .services-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .services-section .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services-section .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .services-section .services-container {
    grid-template-columns: 1fr;
  }
}
.services-section .service-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .services-section .service-card {
    border-radius: 14px;
    padding: 1.25rem;
    min-height: 180px;
  }
}
.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(30, 58, 138, 0.2);
}
.services-section .service-card .card-icon-wrapper {
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .services-section .service-card .card-icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
  }
}
.services-section .service-card .card-icon-wrapper .card-icon {
  font-size: 1.5rem;
  color: #1E3A8A;
}
.services-section .service-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .services-section .service-card .card-title {
    font-size: 0.9375rem;
  }
}
.services-section .service-card .card-desc {
  font-size: 0.875rem;
  color: #64748B;
  margin-bottom: auto;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .services-section .service-card .card-desc {
    font-size: 0.8125rem;
  }
}
.services-section .service-card .card-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #F8FAFC;
  color: #64748B;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-radius: 10px;
  margin-top: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E2E8F0;
}
@media (max-width: 768px) {
  .services-section .service-card .card-btn {
    padding: 0.625rem 0;
    font-size: 0.75rem;
  }
}
.services-section .service-card .card-btn:hover {
  background: #1E3A8A;
  color: #FFFFFF;
  border-color: #1E3A8A;
}

.about-section {
  background: #FFFFFF;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0;
  }
}
.about-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .about-section .container {
    padding: 0 1rem;
  }
}
.about-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .about-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.about-section .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .about-section .section-header h2 {
    font-size: 1.5rem;
  }
}
.about-section .section-header .btn-more-top {
  color: #1E3A8A;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about-section .section-header .btn-more-top {
    font-size: 0.875rem;
  }
}
.about-section .section-header .btn-more-top:hover {
  gap: 0.75rem;
  color: #DC2626;
}
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.about-section .main-card {
  background: linear-gradient(135deg, #1E3A8A 0%, rgb(34.5535714286, 66.8035714286, 158.9464285714) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
}
@media (max-width: 768px) {
  .about-section .main-card {
    padding: 2rem;
    min-height: auto;
  }
}
.about-section .main-card .main-card-content {
  position: relative;
  z-index: 2;
}
.about-section .main-card .main-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about-section .main-card .main-card-content h3 {
    font-size: 1.25rem;
  }
}
.about-section .main-card .main-card-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .about-section .main-card .main-card-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.about-section .main-card .btn-white {
  display: inline-block;
  background: #FFFFFF;
  color: #1E3A8A;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
@media (max-width: 768px) {
  .about-section .main-card .btn-white {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
  }
}
.about-section .main-card .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: #F0F9FF;
  color: #DC2626;
}
.about-section .main-card .circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
}
.about-section .main-card .circle-1 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
}
.about-section .main-card .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
}
.about-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .about-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .about-section .stats-grid {
    grid-template-columns: 1fr;
  }
}
.about-section .stat-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about-section .stat-card {
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
  }
}
.about-section .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(30, 58, 138, 0.2);
}
.about-section .stat-card .icon-box {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-bottom: 1.5rem;
}
.about-section .stat-card .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .about-section .stat-card .stat-number {
    font-size: 1.5rem;
  }
}
.about-section .stat-card .stat-label {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.4;
}

.appointment-banner {
  background: linear-gradient(135deg, #1E3A8A 0%, rgb(34.5535714286, 66.8035714286, 158.9464285714) 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: calc(100% - 2.5rem);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
}
@media (max-width: 768px) {
  .appointment-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    margin: 1.5rem 1rem;
    max-width: calc(100% - 2rem);
    gap: 1.5rem;
  }
}
.appointment-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.appointment-banner__title {
  color: #FFFFFF;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .appointment-banner__title {
    font-size: 1.125rem;
  }
}
.appointment-banner__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .appointment-banner__text {
    font-size: 0.875rem;
  }
}
.appointment-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #DC2626;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  .appointment-banner__btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }
}
.appointment-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
.appointment-banner__btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.appointment-banner__btn:hover i {
  transform: translateX(3px);
}

.doctors-section {
  padding: 3rem 0;
  background: #F8FAFC;
}
@media (max-width: 768px) {
  .doctors-section {
    padding: 2rem 0;
  }
}
.doctors-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .doctors-section .container {
    padding: 0 1rem;
  }
}
.doctors-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .doctors-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.doctors-section .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
}
@media (max-width: 768px) {
  .doctors-section .section-header h2 {
    font-size: 1.5rem;
  }
}
.doctors-section .section-header .btn-more-link {
  color: #1E3A8A;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.doctors-section .section-header .btn-more-link:hover {
  color: #DC2626;
  gap: 0.75rem;
}
.doctors-section .slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0.75rem 0;
}
.doctors-section .slider-track {
  display: flex;
  gap: 1.25rem;
  width: 200%;
  animation: scrollCarousel 20s linear infinite;
}
@media (max-width: 768px) {
  .doctors-section .slider-track {
    gap: 1rem;
  }
}
.doctors-section .slider-track:hover {
  animation-play-state: paused;
}
.doctors-section .doctor-card {
  flex: 0 0 220px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #E2E8F0;
}
@media (max-width: 768px) {
  .doctors-section .doctor-card {
    flex: 0 0 180px;
  }
}
.doctors-section .doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(30, 58, 138, 0.2);
}
.doctors-section .doctor-card .image-box {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}
@media (max-width: 768px) {
  .doctors-section .doctor-card .image-box {
    height: 200px;
  }
}
.doctors-section .doctor-card .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctors-section .doctor-card .card-info {
  padding: 1rem 0.75rem;
}
.doctors-section .doctor-card .card-info h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.375rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .doctors-section .doctor-card .card-info h3 {
    font-size: 0.875rem;
  }
}
.doctors-section .doctor-card .card-info p {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.3;
  margin: 0 0 0.25rem 0;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer {
  background: #1E3A8A;
  color: #FFFFFF;
  padding: 3rem 0 0 0;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 0 0;
    margin-top: 2rem;
  }
}
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem 1.25rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 1.5rem 1rem;
  }
}
.footer-col h3 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #DC2626;
  border-radius: 2px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 3rem;
  width: auto;
}
.footer-about {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}
.footer-socials a:hover {
  background: #DC2626;
  transform: translateY(-3px);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}
.footer-contacts {
  list-style: none;
}
.footer-contacts li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-contacts li i {
  color: #DC2626;
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contacts li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contacts li a:hover {
  color: #DC2626;
}
.footer-contacts li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  display: block;
}
.footer-bottom {
  background: #0F172A;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-bottom-links a:hover {
  color: #FFFFFF;
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  body {
    line-height: 1.5;
  }
  .banner {
    height: 140px;
    border-radius: 10px;
  }
  .services-section .services-container {
    gap: 0.75rem;
  }
  .appointment-banner {
    margin: 1rem;
  }
  .footer-container {
    gap: 1rem;
  }
}/*# sourceMappingURL=news.css.map */