@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #E41E26;
  --secondary-color: #007bff;
  --tertiary-color: #000;
  --gray-color: #666666;
  --green-color: #01C878;
  --gray-color-2: #0fea93;
  --dark-blue: #02132C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Poppins', sans-serif;
  overflow-x: hidden;
  direction: rtl;
}

a {
  text-decoration: none;
  color: #fff;
}

/* top header */
header .top-header {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* social media */
header .top-header .container .social-media {
  display: flex;
  gap: 20px;
}

header .top-header .container .social-media a {
  color: #fff;
  text-decoration: none;
}

/* contact info */
header .top-header .container .contact-info {
  display: flex;
  gap: 20px;
}

header .top-header .container .contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
}

/* language and currency */
header .top-header .container .language-currency {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

header .top-header .container .language-currency .selected-lang,
header .top-header .container .language-currency .selected-currency {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
}

header .top-header .container .language-currency .selected-lang i,
header .top-header .container .language-currency .selected-lang span,
header .top-header .container .language-currency .selected-currency i,
header .top-header .container .language-currency .selected-currency span {
  font-size: 12px;
}

header .top-header .container .custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0; /* Changed from right to left */
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  min-width: 105px;
  height: 0;
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.3s ease;
  transform: translateY(5px);
  transform-origin: top;
  border-radius: 5px;
  overflow: hidden;
}

header .top-header .container .custom-dropdown-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
}

header .top-header .container .custom-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  border-radius: 5px;
  height: auto;
}

header .top-header .container .custom-dropdown-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
  color: #000;
}

header .top-header .container .language,
header .top-header .container .currency {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

header .top-header .container .flag-icon,
header .top-header .container .currency-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

header .bottom-header .container .language-currency {
  display: none;
}

header .bottom-header .container .language-currency {
  display: none;
  align-items: center;
  gap: 30px;
}

header .bottom-header .container .custom-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0; /* Changed from left to right */
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  width: 100px;
  padding: 5px 0;
}

header .bottom-header .container .custom-dropdown-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
}

header .bottom-header .container .custom-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  border-radius: 5px;
  height: auto;
}

header .bottom-header .container .custom-dropdown-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
  color: #000;
}

header .bottom-header .container .language,
header .bottom-header .container .currency {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
header .bottom-header .container .language .selected-lang,
header .bottom-header .container .currency .selected-currency {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
header .bottom-header .container .flag-icon,
header .bottom-header .container .currency-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Media Queries for Top Header version 1*/
/* @media screen and (max-width: 1024px) {
  header .top-header .container .language-currency {
      gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  header .top-header .container {
      flex-wrap: wrap;
      gap: 10px;
      padding: 0 10px;
  }

  header .top-header .container .contact-info {
      justify-content: center;
      flex-wrap: wrap;
  }
  header .top-header .container .contact-info a span {
      display: none;
  }
}

@media screen and (max-width: 576px) {
  header .top-header {
      padding: 10px 0;
  }
  header .top-header .container .language-currency {
      gap: 15px;
  }
  header .top-header .container .social-media , header .top-header .container .contact-info {
      gap: 15px;
  }
} */

/* Media Queries for Top Header version 2*/
@media screen and (max-width: 1024px) {
  header .top-header .container {
      padding: 0 15px;
  }

  header .top-header .container .contact-info {
      gap: 15px;
  }

  header .top-header .container .language-currency {
      gap: 20px;
  }

  header .top-header .container .language-currency {
      display: none;
  }
}

@media screen and (max-width: 768px) {
  header .top-header {
      justify-content: center;
  }

  header .top-header .container {
      justify-content: center;
      gap: 10px;
  }

  header .top-header .container .contact-info {
      order: 3;
      justify-content: center;
      flex-wrap: wrap;
  }

  header .top-header .container .social-media {
      order: 1;
  }

  header .top-header .container .contact-info a span {
      display: none;
  }

  header .top-header .container .social-media {
      gap: 40px;
      align-items: center;
      margin-inline-start: 20px; /* Changed from margin-inline-end */
      font-size: 18px;
  }

  header .top-header .container .contact-info {
      gap: 40px;
      align-items: center;
  }

  header .top-header .container .contact-info a {
      font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  header .top-header {
      padding: 15px 0;
  }

  header .top-header .container .social-media {
      gap: 25px;
      align-items: center;
      margin-inline-end: 10px; 
  }

  header .top-header .container .contact-info {
      gap: 25px;
      align-items: center;
  }

  header .top-header .container .language-currency {
      gap: 15px;
  }


}

/* bottom header */
header .bottom-header {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .bottom-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header .bottom-header .container .logo img {
  height: 60px;
  width: auto;
}

header .bottom-header .container .nav-menu .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding-right: 0; /* Changed from padding-left */
  padding-inline-end: 0; /* Changed from padding-inline-start */
  margin-bottom: 0;
}

header .bottom-header .container .nav-menu .nav-item {
  position: relative;
}

header .bottom-header .container .nav-menu .nav-item a {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

header .bottom-header .container .nav-menu .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%; /* Changed from left */
  width: 120%;
  height: 4px;
  background-color:  #008cf3;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: translate(50%, 0); /* Changed from translate(-50%, 0) */
}

header .bottom-header .container .nav-menu .nav-item a:hover {
  color: #008cf3;
}

header .bottom-header .container .btn-book-appointment {
  background-color:#008cf3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

header .bottom-header .container .nav-list .btn-book-appointment {
  display: none;
}

header .bottom-header .container .btn-book-appointment:hover {
      background-color: white;
    color: #008cf3;
    border: 1px solid;
}

header .bottom-header .container .menu-toggle,
header .bottom-header .container .close-menu {
  display: none;
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dropdown styles */
.has-dropdown {
  position: relative;
}

header .bottom-header .container .nav-menu .nav-item.has-dropdown.active::after {
  display: none;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0; /* Changed from left */
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  padding-right: 0; /* Changed from padding-left */
  border: 1px solid #8888888f;
  list-style: none;
  border-radius: 10px;
  padding: 10px;
}

.dropdown-item.active,
.dropdown-item:active {
  background: transparent;
}

.dropdown-menu li {
  text-align: center;
  padding: 5px;
}

.has-submenu {
  position: relative;
}

.submenu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.submenu {
  display: none;
  position: absolute;
  right: 100%; /* Changed from left */
  top: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding-right: 0; /* Changed from padding-left */
  padding: 10px;
  list-style: none;
  border-radius: 10px;
}

.submenu-toggle i {
  transform: rotate(90deg); /* Changed from rotate(270deg) */
}

/* Mobile styles */
@media (max-width: 992px) {
  .dropdown-menu, .submenu {
      display: flex;
      opacity: 0;
      visibility: hidden;
      max-height: 0;
      transition: all 0.3s ease;
      padding: 0;
  }

  .dropdown-menu,
  .submenu {
      position: static;
      box-shadow: none;
  }

  .submenu-toggle i {
      transform: rotate(0deg);
  }

  /* Show dropdown when active */
  .has-dropdown.active {
      width: 100%;
  }
  .has-dropdown.active>.dropdown-menu,
  .has-submenu.active>.submenu {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 5px;
  }

  .has-submenu.active>.submenu , .has-dropdown.active>.dropdown-menu{
      opacity: 1;
      visibility: visible;
      max-height: 100%;
      padding: 10px;
      max-width: fit-content;
  }
}

/* Desktop hover styles */
@media (min-width: 993px) {
  .has-dropdown:hover>.dropdown-menu {
      display: block;
  }

  .has-submenu:hover>.submenu {
      display: block;
  }
}

/* Bottom Header Media Queries */
@media screen and (max-width: 1024px) {
  header .bottom-header .container {
      padding: 0 15px;
  }

  header .bottom-header .container .nav-menu .nav-list {
      gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  header .bottom-header {
      padding: 10px 0;
  }

  header .bottom-header .container .menu-toggle,
  header .bottom-header .container .close-menu,
  header .bottom-header .container .nav-list .btn-book-appointment {
      display: block;
  }

  header .bottom-header .container .nav-menu {
      position: fixed;
      top: 0;
      left: -100%; /* Changed from right */
      width: 270px;
      height: 100vh;
      background-color: #fff;
      padding: 60px 20px;
      transition: opacity 0.4s ease, visibility 0.4s ease, left 0.3s ease; /* Changed from right */
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Changed from -2px */
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      overflow-y: auto;
  }

  header .bottom-header .container .nav-menu.active {
      left: 0; /* Changed from right */
      opacity: 1;
      visibility: visible;
      z-index: 1001;
  }

  header .bottom-header .container .nav-menu .nav-list {
      flex-direction: column;
      gap: 40px;
      align-items: center;
      justify-content: center;
  }

  header .bottom-header .container .nav-menu .nav-item.active::after {
      width: 170%;
      right: 50%; /* Changed from left */
      transform: translate(50%, 0); /* Changed from translate(-50%, 0) */
  }

  header .bottom-header .container .nav-menu .close-menu {
      position: absolute;
      top: 20px;
      left: 20px; /* Changed from right */
      font-size: 24px;
      color: #333;
      background: none;
      border: none;
      cursor: pointer;
  }

  header .bottom-header .container .btn-book-appointment {
      display: none;
  }

  header .bottom-header .container .language-currency {
      display: flex;
  }
}

@media screen and (max-width: 576px) {
  header .bottom-header .container {
      padding: 0 15px;
  }

  header .bottom-header .container .logo img {
      height: 50px;
  }
}

/* about section */
#about-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  flex-wrap: wrap;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.about-Container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-Container .about-left {
		display:none!important;

  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
}

.about-Container .about-left img {
  width: 100%;
  height: auto;
  transition: 0.3s all;
  border-radius: 20px;
}

.about-Container .about-left img:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.about-right {
 /* max-width: 550px; */
  max-width: 100%;
  padding-top: 2rem;
}

.about-right ul li {
  display: flex;
  align-items: center;
}

.about-right h4 {
	text-align:center;
  color: #008cf3;
   font-size:20px!important;
  margin-bottom: 50px;
}

.about-right h1 {
color:#008cf3;
  font-size: 50px;
  margin-bottom: 5px;
}

.about-right p {
  color: var(--gray-color);
  line-height: 26px;
  font-size: 16px;
}

.about-right .address {
  margin: 25px 0;
}

.about-right .address ul li {
  margin-bottom: 10px;
}

.address .address-logo {
  margin-inline-start: 12px; /* Changed from margin-inline-end */
  color: var(--primary-color);
}

.address .saprater {
  margin: 0 15px;
}

.about-right h4 {
  font-size: 24px;
}

@media (max-width: 768px) {
  .about-right {
    padding: 0 15px;
  }
  #about-section {
    padding: 40px 10px;
  }
  .about-Container {
    gap: 40px;
  }
  .about-Container .about-left img:hover {
    transform: scale(1);
  }
  .about-right ul li {
    justify-content: flex-start;
  }
  .about-right h1 {
    color:#008cf3;
    font-size: 305x;
    margin-bottom: 5px;
  }
  .about-right p {
    line-height: 22px;
    font-size: 14px;
  }
  .about-right .address ul li {
    margin-bottom: 7px;
  }
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to top, #008cf3, #008cf3)
  bottom: 40%;
  left: 65%; /* Changed from right */
  transform: translate(40%, 38%); /* Changed from translate(-40%, 38%) */
  z-index: -1;
  opacity: 0.5;
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  right: calc(50% - 180px); /* Changed from left */
  z-index: -1;
}

@media (max-width: 850px) {
  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(40%, 30%); /* Changed from translate(-40%, 30%) */
    left: 50%; /* Changed from right */
  }
}

@media (max-width: 480px) {
  .big-circle {
    display: none;
  }
  .about-Container .about-left {
    max-width: 300px;
  }
}

/* Footer Section */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 60px 0 30px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer .footer-brand {
  max-width: 300px;
}

.footer .footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer .footer-description {
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer .footer-content .footer-links-grid {
  display: flex;
  gap: 3rem;
  padding: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer .social-links {
  display: flex;
  gap: 15px;
}

.footer .social-link {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer .social-link:hover {
  color: var(--primary-color);
}

.footer .footer-links h3,
.footer .footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
}

.footer .footer-links h3::after,
.footer .footer-contact h3::after {
  content: '';
  position: absolute;
  right: 0; 
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #008cf3;
}

.footer .footer-links h3::before,
.footer .footer-contact h3::before {
  content: '';
  position: absolute;
  right: 0; /* Changed from left */
  bottom: -8px;
  width: 200px;
  height: 2px;
  background-color: #343D67;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  margin-bottom: 12px;
}

.footer .footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer .contact-info i {
  color: #008cf3;
}

.footer .payment-methods {
  padding: 20px;
  text-align: center;
  max-width: 1400px;
  margin: 1rem auto 0;
  background: #052759ae;
  border-radius: 5px;
}

.footer .payment-methods p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer .payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer .payment-icons img {
  height: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
  .footer .footer-content {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 40px 0 20px;
  }

  .footer .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .footer .footer-brand {
      text-align: center;
      margin: 0 auto;
  }

  .footer .social-links {
      justify-content: center;
  }

  .footer .footer-links h3,
  .footer .footer-contact h3 {
      text-align: center;
  }

  .footer .footer-links h3::after,
  .footer .footer-contact h3::after {
      right: 20px; /* Changed from left */
      transform: translateX(50%); /* Changed from translateX(-50%) */
  }

  .footer .footer-links ul {
      text-align: center;
  }

  .footer .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 576px) {
  .footer {
      padding: 30px 0 15px;
  }

  .footer .footer-content {
      gap: 30px;
      justify-content: center;
  }

  .footer .footer-logo {
      max-width: 150px;
  }

  .footer .payment-icons img {
      height: 25px;
  }

  .footer .payment-methods {
      margin: 1rem 10px 0;
  }
}

.about{
    margin-left: 1%;
    width: 100%;
    visibility: visible;
    box-shadow: 0 0 12px #286da8;
    padding: 15px;
    line-height: 22px;
    margin-top: 30px;
    border-radius: 42px;
    background-color: #fff;
    font-size: 14px;
}


.icon-box i {
    font-size: 42px;
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    margin-top: 18px;
}
















.Medical-Packages
{
	position: relative;
	padding: 50px 0;
}


.bg-img
{
	position: relative;
	padding: 100px 0;
	z-index: 0;
}

.bg-img-b
{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;    
	z-index: 0;
	background: linear-gradient(40deg, rgba(176, 211, 231, 0.3) 0%, rgba(196, 224, 236, 1) 100%);
}

.title-w{
    color: rgba(0, 140, 243, 1);
    font-size: 50px;
    font-weight: 700;
	position: relative;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-bottom: 0px;
	z-index: 9;
}

.title-w span{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
   display: block;
}


.bg-gray
{
	position: relative;    
	z-index: 0;
	padding: 30px 0;
	font-size: 18px;
	background: rgba(238, 242, 249, 1);
}


.title2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}


.title3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}



.menu-left
{    
margin-top:0px;
z-index: 99;    
width: 100%;
overflow:hidden;
background-color:#fff;
border-radius:0px;
}


.menu-left ul
{
    padding-right:0;
    margin:0;
    font-size:18px;
}
.menu-left ul a:hover
{
    text-decoration:none;
    
}

.menu-left ul li
{
    padding:5px 10px;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;    
    color: #000;
	font-weight: 700;
    transition: 0.3s;
	margin: 5px 0;
	border-right: 5px #FFFFFF solid;	
}
 


.menu-left ul a:hover li
{
   background-color:rgb(255 255 255 / 32%);
   color:#000;
	border-right: 5px rgba(0, 140, 243, 1) solid;	
   text-decoration:none;
   -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.menu-left-active
{
	border-right:5px rgba(0, 140, 243, 1) solid !important;	
}


.payment-methods {
    display: none;
}


.medical-tourism {
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}


.medical-tourism .mt-text {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}


.medical-tourism .mt-container {
    max-width: 1100px;
    margin: auto;
}


.medical-tourism .mt-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 34px;
    color: #1d3557;
    position: relative;
}

.medical-tourism .mt-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #e63946;
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}


.medical-tourism .mt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.medical-tourism .mt-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}


.medical-tourism .mt-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.medical-tourism .mt-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}


.medical-tourism .mt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.medical-tourism .mt-card:hover img {
    transform: scale(1.1);
}

.medical-tourism .mt-card h3 {
    margin-bottom: 10px;
    color: #e63946;
    font-size: 20px;
}
.medical-tourism .mt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.medical-tourism .mt-card ul {
    padding-left: 18px;
}

.medical-tourism .mt-card li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


.medical-tourism .mt-card {
    opacity: 0;
    transform: translateY(30px);
    animation: mtFadeUp 0.8s ease forwards;
}

.medical-tourism .mt-card:nth-child(2) {
    animation-delay: 0.2s;
}
.medical-tourism .mt-card:nth-child(3) {
    animation-delay: 0.4s;
}
.medical-tourism .mt-card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes mtFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .medical-tourism .mt-grid {
        grid-template-columns: 1fr;
    }
}