:root {
  --primary-color: #000;
  --secondary-color: rgba(212, 175, 55, 1);
  --section-padding: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Libertinus Mono', monospace;
  background-color: var(--primary-color);
  color: white;
  overflow-x: hidden !important;
}

.dropdown-item {
  transition: color .5s all;
  -webkit-transition: color .5s all;
  -moz-transition: color .5s all;
  -ms-transition: color .5s all;
  -o-transition: color .5s all;
}
.dropdown-item:hover {
  color: var(--secondary-color);
  background-color: transparent;
}

.book-btn {
  position: relative;
  left: 60%;
}

.flashing-text {
  animation: flashText 2s infinite;
  color: gold !important;
  font-weight: bold;
}

@keyframes flashText {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* swiper js slider start */
.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove this or override it */
.dr-slider-img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000; /* Optional background */
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.your-journey {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.journey-card {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-5px);
}

.journey-icon {
  font-size: 1.5em;
  margin-right: 10px;
}

.journey-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.journey-card p {
  color: #fff;
  margin-bottom: 15px;
}

.journey-card ul, .journey-card ol {
  color: #fff;
  padding-left: 20px;
}

.journey-card li {
  margin-bottom: 8px;
}
/* swiper js slider end */

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: gold !important;
  border: 2px solid gold;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 20px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: gold;
  transition: all 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  color: black !important; /* Ensures text is black on hover */
  background-color: transparent; /* Prevents background override */
}

.cta-button:hover::before {
  left: 0; /* Slides the gold background in */
}

.cta-container {
  position: relative;
  left: 80%;
  top: 50%;
  transform: translateY(235%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* navbar */
nav {
  padding-block: 5px !important;
}

.navbar {
  background-color: var(--primary-color) !important;
  border-bottom: 1px solid var(--secondary-color);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.uk-egypt {
  position: absolute;
  bottom: 50px;
  left: 31% !important;
  transform: translatey(-50%);
  font-weight: bolder;
  font-style: italic;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color) !important;
  font-size: 1.8rem;
  padding: 0 1rem;
  letter-spacing: 0.5px;
}

.navbar-nav {
  gap: 0.5rem;
  padding: 0 1rem;
}

.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.8s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: rgba(212, 175, 55, 0.1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border-color: var(--secondary-color) !important;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.navbar-nav .nav-link:hover {
  border-bottom: 2px solid var(--secondary-color);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 215, 0, 0.8);
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

.navbar {
  background-color: #000 !important;
  border-bottom: 1px solid var(--secondary-color);
  padding: 20px 60px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color) !important;
  font-size: 2rem;
}

.hero-content {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-content h2 {
  font-size: 4rem; /* Increased size for desktop */
}

.nav-btn {
  background-color: rgba(255, 215, 0, 0.8);
  color: var(--primary-color);
}

header {
  background-color: #000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary-color);
}

header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color);
  font-size: 2rem;
}

nav a {
  color: var(--secondary-color);
  margin-left: 25px;
  text-decoration: none;
  font-size: 1rem;
}

.slider-section {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 600px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
}

.hero-content h2, .hero-content .descreption {
  position: relative;
  left: -8%;
  top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flashy-text {
  color: var(--secondary-color) !important;
  font-weight: bold;
  animation: pulse 1.5s infinite alternate;
}

.navbar-toggler {
  border-color: var(--secondary-color) !important;
}

.section {
  padding-block: var(--section-padding);
}

/* the about section */
.image-doctor img {
  width: 450px;
}
.image-doctor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.info {
  padding: 2rem;
  position: relative;
}
.doctor-name {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}
.credentials {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
}
.achievements {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 100;
}
.achievements li {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  opacity: 0;
}
#about h2 {
  color: var(--secondary-color);
  animation: flash 2s infinite;
  padding-bottom: 15px;
}

/* the papyrus styling start */
.section#about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

/* New wrapper for the right column that will contain the video and text */
.achievements-column-wrapper {
  position: relative;
  height: 800px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* the papyrus styling end */

/* SECTION STYLING */
.section#about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

/* MAIN ROW AND IMAGE */
.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-doctor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* GENERAL H2 STYLING */
#about h2 {
  color: var(--secondary-color);
  animation: flash 2s infinite;
  padding-bottom: 15px;
  text-align: center;
}

/* RIGHT COLUMN WRAPPER - CONTAINS VIDEO AND TEXT OVERLAY */
.col-lg-6.achievements-column-wrapper {
  position: relative;
  height: 550px;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PAPYRUS VIDEO STYLES (BACKGROUND) */
.papyrus-video {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 128%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* DESCRIPTION TEXT CONTAINER (OVERLAY) */
@keyframes appear-after-video {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInContainer {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.info.achievements-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.info.achievements-container.is-visible {
  animation: fadeInContainer 4s forwards;
  -webkit-animation: fadeInContainer 0.4s forwards;
  -webkit-animation: fadeInContainer 7s forwards;
}

/* LIST (UL) STYLES WITHIN THE OVERLAY */
.info.achievements-container ul.achievements {
  color: white !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  max-width: 70% !important;
}

/* LIST ITEM (LI) STYLES WITHIN THE OVERLAY */
.info.achievements-container ul.achievements li {
  color: white !important;
  margin-bottom: 10px !important;
  font-size: 1.1em !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
  opacity: 1 !important;
  transform: translateX(0px) !important;
}
.info.achievements-container.is-visible ul.achievements li {
  animation: appear-after-video 7s ease-out forwards;
  -webkit-animation: appear-after-video 1s ease-out forwards;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    text-align: center;
  }

  .image-doctor img {
    width: 250px;
    margin-bottom: 20px;
  }

  .col-lg-6.achievements-column-wrapper {
    height: 800px;
    width: 120%;
    margin-left: 2%;
    margin-top: 20px;
    position: relative;
    overflow: visible;
  }

  .papyrus-video {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 390%;
    height: 100%;
    object-fit: contain;
  }

  .info.achievements-container {
    padding: 10px;
    height: 100%;
  }

  .info.achievements-container ul.achievements {
    max-width: 90% !important;
    font-size: 0.9em !important;
  }
}

/* services section */
.all-services {
  text-align: center !important;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}
.all-services::before {
  content: "";
  background-color: var(--secondary-color);
  bottom: 0;
  position: absolute;
  width: 230px;
  height: 4px;
}
.uk-egypt div {
  color: black;
  font-size: 30px;
}
.letters span {
  color: var(--secondary-color);
  font-size: 31px;
}

.flight-container {
  width: 100%;
  height: 1000px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-image: url("./pictures/big\ be\ and\ pyraminds\ 3\ \(1\).jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center;
}

.plane-icon {
  position: absolute;
  font-size: 2em;
  color: #007bff;
  top: 20%;
  left: 5%;
  transform: rotate(180deg);
  animation: forwardStraightFly 8s linear infinite;
  z-index: 10;
}

@keyframes forwardStraightFly {
  0% {
    top: 40%;
    left: 0%;
    transform: rotate(0deg);
  }
  100% {
    top: 60%;
    left: 90%;
    transform: rotate(20deg);
  }
}
.location-marker {
  position: absolute;
  font-weight: bold;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
  pointer-events: none;
}

.england {
  top: 50%;
  left: 0%;
}

.egypt {
  bottom: 18%;
  right: 0%;
}

.uk-egypt {
  position: absolute;
  bottom: 100px;
  left: 150px;
  width: 100%;
}
.uk-egypt .letters {
  display: flex;
  align-items: center;
  gap: 10px;
}
.letters {
  font-weight: bold;
}
.letters span {
  opacity: 0;
  display: inline-block;
  color: white;
  transform: translateY(10px);
}

.letters span[style*="color:gold"] {
  color: gold !important;
}

.letters-wrapper.aos-animate .letters span {
  animation: fadeInText 0.5s forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contaier_team .boxes .box {
  padding: 10px;
  border-radius: 12px;
  position: relative;
  border: 3px solid transparent;
  z-index: 1;
  transition: border-color 0.8s ease;
  overflow: hidden;
  height: 700px;
  cursor: pointer;
}
.contaier_team .boxes .box:hover {
  border-color: gray;
}
.contaier_team .boxes .box::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(105, 105, 105, 0.4);
  transition: 0.7s ease;
  z-index: 2;
}
.contaier_team .boxes .box:hover::before {
  width: 100%;
}
.contaier_team .boxes .box .team_info {
  text-align: center;
  padding: 20px;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.contaier_team .boxes .box:hover .team_info {
  opacity: 1;
  transition: opacity 0.7s ease;
}
.contaier_team .boxes .box .team_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.contaier_team .boxes .box .team_img img.Mr-wale {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-10%);
}
@media (max-width: 768px) {
  .contaier_team .boxes .box {
    height: 700px;
    overflow: visible;
  }
  .contaier_team .boxes .box .team_img {
    height: 60%;
    position: relative;
    overflow: hidden;
  }
  .contaier_team .boxes .box .team_img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  .contaier_team .boxes .box .team_img img.Mr-wale {
    width: 110%;
    height: auto;
    transform: translateX(-10%);
    object-fit: contain;
  }
  .contaier_team .boxes .box .team_info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.7s ease;
  }
  .contaier_team .boxes .box:hover .team_info {
    opacity: 1;
    transition: opacity 0.7s ease;
  }
}

.main-title {
  border: 2px solid white;
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  margin: 50px auto;
  position: relative;
  z-index: 1;
  transition: all 0.8s ease;
}
.main-title::after, .main-title::before {
  content: "";
  position: absolute;
  background-color: var(--secondary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.main-title::after {
  right: -30px;
}
.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.6s linear forwards;
}
@keyframes right-move {
  50% {
    width: 10px;
    height: 10px;
    right: 0;
  }
  100% {
    width: 50%;
    height: 100%;
    right: 0;
    border-radius: 0;
  }
}
.main-title::before {
  left: -30px;
}
.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.6s linear forwards;
}
@keyframes left-move {
  50% {
    width: 10px;
    height: 10px;
    left: 0;
  }
  100% {
    width: 50%;
    height: 100%;
    left: 0;
    border-radius: 0;
  }
}

/* packages section */
/* gold package */
.package-card {
  border: 2px solid gold;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.package-card h3 {
  color: var(--secondary-color) !important;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}
.package-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: gold;
  transition: width 0.3s ease;
}
.package-card img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}
.package-card:hover h3::after {
  width: 100px;
}
.package-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: #ffd700;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: 0.5s;
}
.package-card:hover::before {
  left: 100%;
}
.package-card ul li {
  margin: 0.5rem 0;
  transition: transform 0.2s ease;
}
.package-card ul li:hover {
  transform: translateX(5px);
}
.package-card .fas {
  color: gold;
  transition: transform 0.2s ease;
}
.package-card:hover .fas {
  transform: scale(1.1);
}
.package-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: gold;
  border: 2px solid gold;
  border-radius: 2px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.package-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: gold;
  transition: all 0.4s ease;
  z-index: -1;
}
.package-button:hover {
  color: black;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
.package-button:hover::before {
  left: 0;
}
.package-card .package-price {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* platinum package */
.package-card-platinum {
  border: 2px solid #b9f2ff;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.package-card-platinum h3 {
  color: #b9f2ff !important;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}
.package-card-platinum h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #b9f2ff;
  transition: width 0.3s ease;
}
.package-card-platinum img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}
.package-card-platinum:hover h3::after {
  width: 100px;
}
.package-card-platinum:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: #b9f2ff;
}
.package-card-platinum::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #b9f2ff, transparent);
  transition: 0.5s;
}
.package-card-platinum:hover::before {
  left: 100%;
}
.package-card-platinum ul li {
  margin: 0.5rem 0;
  transition: transform 0.2s ease;
}
.package-card-platinum ul li:hover {
  transform: translateX(5px);
}
.package-card-platinum .fas {
  color: #b9f2ff;
  transition: transform 0.2s ease;
}
.package-card-platinum:hover .fas {
  transform: scale(1.1);
}
.package-card-platinum .package-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #b9f2ff;
  border: 2px solid #b9f2ff;
  border-radius: 2px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.package-card-platinum .package-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b9f2ff;
  transition: all 0.4s ease;
  z-index: -1;
}
.package-card-platinum .package-button:hover {
  color: black;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #b9f2ff;
}
.package-card-platinum .package-button:hover::before {
  left: 0;
}

/* silver package */
.package-card-silver {
 

 border: 2px solid silver;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.package-card-silver h3 {
  color: silver !important;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}
.package-card-silver h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: silver;
  transition: width 0.3s ease;
}
.package-card-silver img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}
.package-card-silver:hover h3::after {
  width: 100px;
}
.package-card-silver:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: silver;
}
.package-card-silver::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, silver, transparent);
  transition: 0.5s;
}
.package-card-silver:hover::before {
  left: 100%;
}
.package-card-silver ul li {
  margin: 0.5rem 0;
  transition: transform 0.2s ease;
}
.package-card-silver ul li:hover {
  transform: translateX(5px);
}
.package-card-silver .fas {
  color: silver;
  transition: transform 0.2s ease;
}
.package-card-silver:hover .fas {
  transform: scale(1.1);
}
.package-card-silver .package-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: silver;
  border: 2px solid silver;
  border-radius: 2px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.package-card-silver .package-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: silver;
  transition: all 0.4s ease;
  z-index: -1;
}
.package-card-silver .package-button:hover {
  color: black;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px silver;
}
.package-card-silver .package-button:hover::before {
  left: 0;
}

/* Price styling and animations */
.package-price {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  animation: bounce 2s infinite, fadeAndBrightness 4s infinite;
  transition: all 0.3s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeAndBrightness {
  0% { opacity: 1; filter: brightness(1.2); }
  50% { opacity: 0.5; filter: brightness(0.8); }
  100% { opacity: 1; filter: brightness(1.2); }
}
.package-card-silver .package-price {
  color: silver;
  background-color: rgba(192, 192, 192, 0.2);
}
.package-card .package-price {
  color: gold;
  background-color: rgba(255, 215, 0, 0.2);
}
.package-card-platinum .package-price {
  color: #b9f2ff;
  background-color: rgba(185, 242, 255, 0.2);
}
.package-price {
  margin-bottom: 20px;
}

/* services-section-w-icons section */
.services-section-w-icons img {
  width: 100px;
}

/* contact us */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-select option {
  background: #1a1a1a;
  color: #fff;
}

.contact-form button.package-button {
  margin-top: 1rem;
  min-width: 200px;
}

/* our hospitals */
#our-hospitals .col-12.col-md-6 .p-3.border.rounded.text-center {
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}
#our-hospitals .col-12.col-md-6 .p-3.border.rounded.text-center:hover {
  box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.8), 0 0 30px 10px rgba(212, 175, 55, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.8);
}
#our-hospitals .col-12.col-md-6 .p-3.border.rounded.text-center img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#our-hospitals img {
  height: auto;
}

.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-radius: 10px;
}
.social-icons i {
  font-size: 30px;
  color: var(--secondary-color);
  margin-top: 20px;
  transition: color background-color 0.4s ease-in-out;
  padding: 8px;
}
.social-icons i:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
}

.text-center.mt-4 {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
}

/* Footer styling */
body .footer {
  background-color: #000 !important;
  color: var(--secondary-color);
  padding: 40px 20px;
  border-top: 2px solid var(--secondary-color);
  font-family: 'Libertinus Mono', monospace;
  background-image: none !important;
  background: #000 !important;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #ffd700;
  transform: translateY(-2px);
  text-decoration: underline;
}

.emergency-contact {
  font-weight: bold;
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 10px;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.text-center.mt-4 {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

.footer .social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}

.footer .social-icons i {
  font-size: 30px;
  color: var(--secondary-color);
  margin-top: 20px;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
  padding: 8px;
  border-radius: 5px;
}

.footer .social-icons i:hover {
  color: #000;
  background-color: var(--secondary-color);
}

.footer .white-text {
  color: #fff !important;
}
.emergency-contact {
  font-weight: bold;
  color: #ffcc00;
}

.text-center a {
  text-decoration: none;
  color: inherit;
}

.text-center a:hover {
  text-decoration: underline;
}

/* Media Query for Mobile Packages */
@media (max-width: 768px) {
 ေ

.package-card, .package-card-platinum, .package-card-silver {
    min-height: 0;
    height: auto;
    padding: 1rem;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .package-card img, .package-card-platinum img, .package-card-silver img {
    max-width: 100%;
    height: auto;
  }
  .package-card ul, .package-card-platinum ul, .package-card-silver ul {
    padding-left: 10px;
    flex-grow: 1;
  }
  .package-button {
    margin: 10px auto;
    padding: 10px 20px;
    width: 100%;
    max-width: 200px;
  }
}

.slider-video {
  position: absolute;
  top: 55%;
  right: 65px;
  transform: translateY(-50%);
  width: 20%; /* Adjust width as needed */
  height: auto;
  object-fit: cover;
  z-index: 0; /* Behind hero-content */
  box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700; /* Initial gold glow */
  animation: glowPulse 3s infinite ease-in-out;
}

.swiper-slide {
  position: relative;
  overflow: visible; /* Ensure video isn't cropped */
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700; /* Subtle glow */
  }
  50% {
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 60px #FFD700; /* Stronger glow */
  }
  100% {
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700; /* Back to subtle */
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 40px 0; /* Increased padding for more space */
  }

  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px; /* Added margin to separate from video */
  }

  .hero-content h2, .hero-content .descreption {
    position: static;
    left: 0;
    top: 0;
    margin-bottom: 10px; /* Adjusted margin for better spacing */
  }

  .hero-content h2 {
  font-size: 4rem; /* Increased size for desktop */
}

  .slider-video {
    position: static;
    display: block;
    width: 100%;
    max-width: 300px; /* Reduced max-width for better fit */
    margin: 20px auto;
    transform: none;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    animation: glowPulse 3s infinite ease-in-out;
  }

  .cta-container {
    position: static;
    transform: none;
    left: 0;
    top: 0;
    margin-top: 30px; /* Increased margin to separate from video */
  }
}
/* Mobile: stack text → video → button */
/* ──────────────────────────────────────────────────────────
   MOBILE‑ONLY HERO SLIDER FIX (max‑width:768px)
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* 1) Stack slide & make taller */
  .slider-section .swiper,
  .slider-section .swiper-slide {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    min-height: 120vh !important;
    padding: 2rem 0 !important;
    background: url('./pictures/slider-1.webp') center/cover no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: visible !important;
  }

  /* 2) Hide fallback image on mobile */
  .slider-section .swiper-slide > img {
    display: none !important;
  }

  /* 3) Hero text: move to the right and drop lower */
  .slider-section .hero-content {
    order: 1 !important;
    position: relative !important;
    width: 80% !important;
    margin: 0 auto !important;
    top: 5px !important;
    left: 90px !important;
    transform: translateX(20%) !important;
    text-align: left !important;
  }

  /* 4) Video: stay full-width and under the text */
  .slider-section .slider-video {
    order: 2 !important;
    position: relative !important;
    top: 55px !important;
    right: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 320px !important;
    margin: 0 0 15px !important;
    z-index: 2 !important;
  }

  /* 5) CTA button: move slightly to the left */
  .slider-section .cta-container {
    order: 3 !important;
    position: relative !important;
    top: 5px !important;
    left: -120px !important;
    width: auto !important;
    margin: 10 auto !important;
    transform: translateX(-10%) !important;
    text-align: center !important;
  }
}






