@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;
}
a {
  text-decoration: none;
  color: #fff;
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
/* 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%;
  right: 0;
  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%;
  left: 0;
  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-end: 20px;
      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-left: 0;
  padding-inline-start: 0;
  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;
  left: 50%;
  width: 120%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 10px;
  transition: all 0.3s ease;

  transform: translate(-50%, 0);

}

header .bottom-header .container .nav-menu .nav-item a:hover {
  color: var(--primary-color);
}

header .bottom-header .container .btn-book-appointment {
  background-color: var(--primary-color);
  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: #ff0008ac;
  color: #fff;
}

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%;
  left: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  padding-left: 0;
  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;
  left: 100%;
  top: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding-left: 0;
  padding: 10px;
  list-style: none;
  border-radius: 10px;

}

.submenu-toggle i {
  transform: 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;
      right: -100%;
      width: 270px;
      height: 100vh;
      background-color: #fff;
      padding: 60px 20px;
      transition: opacity 0.4s ease, visibility 0.4s ease, right 0.3s ease;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      overflow-y: auto;
  }

  header .bottom-header .container .nav-menu.active {
      right: 0;
      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%;
      left: 50%;
      transform: translate(-50%, 0);
  }

  header .bottom-header .container .nav-menu .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      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;
  }
}


.packages  {
  padding: 60px 0;
}

.packages .container .packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.packages .container .packages-card {

    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: black;    
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 410px;
}

.packages .container .packages-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.packages .container .packages-icon {
    width: 80px;
    height: 80px;
    margin: 20px 0;
    display: flex;
}

.packages .container .packages-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.packages .container .packages-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.packages .container .packages-card h3 span {
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: #008cf3;
    margin-top: 10px;
}
.packages .container .packages-card p {
    font-size: 0.95rem;
    opacity: 1;
	height: 120px;
	overflow: hidden;
    line-height: 1.6;
    color: #666666;
    transition: color 0.3s ease;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .packages .container .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .packages {
        padding: 0px 0 50px;
    }
}

@media (max-width: 576px) {
    .packages .container .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages .container .packages-card {
        padding: 20px;
    }
}





/* 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;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer .footer-links h3::before,
.footer .footer-contact h3::before {
  content: '';
  position: absolute;
  left: 0;
  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: var(--primary-color);
}

.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 {
      left: 20px;
      transform: 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;
  }
}


.payment-methods {
    display: none;
}



