/* ==========================================
   CLINICS & ACADEMY PAGE - LUXURY DESIGN
   Premium Brand Design for Dr. INA
   ========================================== */

/* Hero Section */
.clinic-academy-hero {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.clinic-academy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/clinic-academy4.png") center / cover; /* Fixed: Removed backslash and extra semicolon */
  opacity: 0.3;
}

.clinic-academy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(26, 26, 26, 0.8) 100%);
  z-index: 1;
}

.clinic-academy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.clinic-academy-hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #ff8c42;
  border: 2px solid #ff8c42;
  padding: 10px 30px;
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 140, 66, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease;
}

.clinic-academy-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.clinic-academy-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Introduction Section */
.clinic-academy-intro {
  padding: 100px 0 80px;
  background: white;
}

.clinic-academy-intro-text {
  text-align: center;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

/* Section Divider with Icon */
.section-divider {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.divider-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.divider-icon i {
  font-size: 32px;
  color: white;
}

.section-main-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-main-subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Clinics Section */
.clinics-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

/* Clinic Locations Grid */
.clinic-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.clinic-location-card {
  background: white;
  padding: 0;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.clinic-card-content {
  padding: 30px 40px 40px 40px;
}

.clinic-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.clinic-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.clinic-location-card:hover::before {
  transform: scaleX(1);
}

.clinic-location-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.clinic-location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinic-location-icon i {
  font-size: 20px;
  color: white;
}

.clinic-location-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.clinic-location-address {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  padding-left: 70px;
}

.clinic-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 70px;
}

.clinic-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1a1a1a;
}

.clinic-contact-item i {
  color: #ff8c42;
  font-size: 16px;
  width: 20px;
}

.clinic-contact-item a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clinic-contact-item a:hover {
  color: #ff8c42;
}

/* Phone Group Styling */
.clinic-phone-group,
.academy-phone-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clinic-phone-group a,
.academy-phone-group a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  direction: ltr;
  display: inline-block;
}

.clinic-phone-group a:hover,
.academy-phone-group a:hover {
  color: #ff8c42;
}

.phone-divider {
  color: #999;
  font-weight: 400;
}

/* Clinic Social Links */
.clinic-social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.clinic-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 2px solid #f0f0f0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.clinic-social-btn:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-color: #ff8c42;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.25);
}

.clinic-social-btn i {
  font-size: 16px;
}

/* Clinic Gallery Slider - في أعلى الكارد */
.clinic-gallery-slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.clinic-gallery-container {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.clinic-gallery-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.clinic-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.clinic-gallery-slide img:hover {
  transform: scale(1.02);
}

/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav i {
  font-size: 16px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.gallery-nav:hover i {
  color: white;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* Gallery Dots */
.gallery-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
  background: #ff8c42;
  border-color: white;
  transform: scale(1.2);
}


/* Lightbox Styles */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 45px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  color: #ff8c42;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: #ff8c42;
  border-color: #ff8c42;
}

.lightbox-nav i {
  font-size: 20px;
  color: white;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* Departments Section */
.departments-section {
  margin-top: 60px;
}

.departments-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.department-card {
  background: white;
  padding: 35px 30px;
  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
  text-align: center;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.15);
  border-color: #ff8c42;
}

.department-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.department-card:hover .department-icon {
  transform: scale(1.1) rotate(5deg);
}

.department-icon i {
  font-size: 28px;
  color: white;
}

.department-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.department-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Academy Section */
.academy-section {
  padding: 100px 0;
  background: white;
}

.academy-divider {
  margin-bottom: 60px;
}

/* Academy Info Box */
.academy-info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  padding: 40px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 0;
}

.academy-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.academy-info-item i {
  font-size: 28px;
  flex-shrink: 0;
}

.academy-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.academy-info-item span,
.academy-info-item a {
  font-size: 15px;
  font-weight: 300;
  color: white;
}

.academy-info-item a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.academy-info-item a:hover {
  opacity: 0.8;
}



.academy-info-contact > div {
  width: 100%;
}

/* Academy Social Section */
.academy-social-section {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
  border: 2px solid #f0f0f0;
  text-align: center;
}

.academy-social-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.academy-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.academy-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: white;
  border: 2px solid #e0e0e0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.academy-social-btn:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-color: #ff8c42;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 140, 66, 0.3);
}

.academy-social-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.academy-social-btn:hover i {
  transform: scale(1.15);
}

/* Courses Section */
.courses-section {
  margin-bottom: 80px;
}

.courses-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background: #fdfbf7;
  padding: 35px 30px;
  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.course-card.featured-course {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-color: #ff8c42;
}

.course-card.featured-course .course-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0), #ff6b35);
}

.course-card.featured-course .course-title,
.course-card.featured-course .course-desc {
  color: white;
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff8c42;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #ff8c42;
  transition: all 0.4s ease;
}

.course-card:hover .course-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.course-card:hover .course-icon i {
  color: white;
}

.course-icon i {
  font-size: 24px;
  color: #ff8c42;
  transition: color 0.4s ease;
}

.course-title {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.course-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Certifications Section */
.certifications-section {
  padding: 60px;
  background: linear-gradient(135deg, #fdfbf7 0%, #ffffff 100%);
  border: 1px solid #e5e5e5;
}

.cert-header {
  text-align: center;
  margin-bottom: 50px;
}

.cert-main-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.cert-subtitle {
  font-size: 15px;
  color: #666;
  font-weight: 300;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cert-category {
  background: white;
  padding: 30px;
  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
}

.cert-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.15);
  border-color: #ff8c42;
}

.cert-category-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-category-title i {
  color: #ff8c42;
  font-size: 24px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}

.cert-list li i {
  color: #ff8c42;
  font-size: 16px;
  flex-shrink: 0;
}

/* CTA Section */
.clinic-academy-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.clinic-academy-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/clinic-academy3.png") center / cover;
  opacity: 0.5;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 50px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  border: 2px solid #ff8c42;
  box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.cta-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff4500);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.5);
}

.cta-btn-primary:hover::before {
  left: 0;
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff8c42;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 140, 66, 0.25);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .clinic-academy-hero-title {
    font-size: 48px;
  }

  .section-main-title {
    font-size: 38px;
  }

  .clinic-locations-grid {
    grid-template-columns: 1fr;
  }

  .academy-info-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
     .academy-info-contact {
        flex-direction: row;
        align-items: anchor-center;
        gap: 10px;
    }

  .clinic-social-links { 
    align-content: stretch;
    flex-wrap: wrap;
    flex-direction: column;
}

  .clinic-gallery-slider {
    height: 220px;
    margin: -30px -30px 0 -30px;
    width: calc(100% + 60px);
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
  }

  .gallery-prev {
    left: 30px;
  }

  .gallery-next {
    right: 30px;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .clinic-academy-hero {
    height: 60vh;
    min-height: 400px;
  }

  .clinic-academy-hero-title {
    font-size: 36px;
  }

  .clinic-academy-hero-subtitle {
    font-size: 16px;
  }

  .clinic-academy-intro {
    padding: 60px 0 40px;
  }

  .section-main-title {
    font-size: 32px;
  }

  .departments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clinic-location-address,
  .clinic-contact-info {
    padding-left: 0;
  }

  .clinic-location-header {
    flex-direction: column;
    text-align: center;
  }

  .certifications-section {
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .academy-social-links {
    flex-direction: column;
    gap: 15px;
  }

  .academy-social-btn {
    width: 100%;
    justify-content: center;
  }

  .clinic-phone-group,
  .academy-phone-group {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .clinic-gallery-slider {
    height: 180px;
    margin: -20px -20px 0 -20px;
    width: calc(100% + 40px);
  }

  .gallery-nav {
    width: 32px;
    height: 32px;
  }

  .gallery-nav i {
    font-size: 12px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  .clinic-academy-hero-title {
  font-size: 28px;
  }

  .clinic-academy-hero-tag {
    font-size: 9px;
    padding: 8px 20px;
  }

  .section-main-title {
    font-size: 26px;
  }

  .departments-title,
  .courses-title,
  .cert-main-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .academy-social-section {
    padding: 30px 20px;
  }

  .academy-social-title {
    font-size: 20px;
  }

  .clinic-social-btn,
  .academy-social-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* RTL Support */
html[dir="rtl"] .clinic-academy-hero-title,
html[dir="rtl"] .section-main-title,
html[dir="rtl"] .departments-title,
html[dir="rtl"] .courses-title,
html[dir="rtl"] .cert-main-title,
html[dir="rtl"] .cta-title,
html[dir="rtl"] .clinic-location-name,
html[dir="rtl"] .department-title,
html[dir="rtl"] .course-title,
html[dir="rtl"] .cert-category-title,
html[dir="rtl"] .clinic-gallery-title {
  font-family: "Cairo", sans-serif;
}
