/* medical travel section  */
/* Medical Travel Section */
.medical-travel-section {
  background-color: #ffffff;
}

/* Title */
.medical-title {
  font-size: 38px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}

.medical-title span {
  color: #2c3cff;
}

/* Description */
.medical-desc {
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

/* Image */
.medical-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

/* Button */
.btn-primary {
  background-color: #2c3cff;
  border: none;
}

.btn-primary:hover {
  background-color: #1f2fd6;
}

/* Responsive */
@media (max-width: 768px) {
  .medical-title {
    font-size: 30px;
  }

  .medical-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* trusted travel patner */

/* Section */
.medical-partner-section {
  background-color: #ffffff;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 500;
  color: #444;
  margin-bottom: 12px;
}

.section-title .highlight {
  color: #3aa6a0;
  display: block;
}

/* Description */
.section-desc {
  max-width: 700px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Cards */
.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  height: 100%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.info-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.info-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Hover */
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.icon-bg {
  width: 80px;
  height: 70px;
  background: #eaf6f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.icon-bg img {
  width: 36px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

/* medical assistance */
.medical-assistance {
  background: #ffffff;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-title span {
  color: #2ec4b6;
}

.section-subtitle {
  max-width: 720px;
  font-size: 16px;
  color: #6c757d;
}

/* IMAGE CARD */
.image-card {
  border-radius: 18px;
  overflow: hidden;
}

.image-card img {
  border-radius: 18px;
}

/* TRUSTED BOX */
.trusted-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.trusted-box strong {
  display: block;
  font-size: 14px;
}

.trusted-box p {
  font-size: 12px;
  margin: 0;
  color: #6c757d;
}

/* INFO CARDS */
.info-card {
  /* display: flex; */
  gap: 16px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 18px;
}

.info-card h5 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  margin: 0;
  color: #6c757d;
}

/* MEDICAL ASSISTANCE ICON */
.assist-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #e6f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.35s ease;
}

/* INFO CARD HOVER EFFECT */
.info-card {
  transition: all 0.35s ease;
  cursor: pointer;
}

/* medical-support */

/* Theme color */
.text-teal {
  color: #1aa7a1;
}

/* Card Styling */
.support-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Hover lift */
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Icon box */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #f2fbfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.icon-box img {
  width: 32px;
  height: 32px;
}

/* Icon hover background */
.support-card:hover .icon-box {
  background: #fdeee9;
}

/* Card text */
.support-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.support-card p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

/* Number badge (2nd image effect) */
.badge-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1aa7a1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

/* Show badge on hover */
.support-card:hover .badge-number {
  opacity: 1;
  transform: scale(1);
}


/* travel care  */

/* Section spacing */
.travel-care-section {
  background: #ffffff;
}

/* Title */
.section-title {
  font-weight: 600;
  font-size: 32px;
}

/* Image wrapper */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
}

/* Large image */
.img-large {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small image */
.img-small {
  position: absolute;
  right: 0;
  top: 40px;
  width: 38%;
  height: 85%;
  border-radius: 24px;
  overflow: hidden;
}

.img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating card */
.floating-card {
  position: absolute;
  bottom: 30px;
  left: 40%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.floating-card h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.floating-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .image-wrapper {
    height: auto;
  }

  .img-large,
  .img-small {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .floating-card {
    position: relative;
    left: 0;
    transform: none;
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
}


@media (max-width: 991px) {

  .image-wrapper {
    position: relative;
    display: flex;
    gap: 16px;
    max-width: 100%;
    height: auto;
  }

  .img-large,
  .img-small {
    position: relative;
    width: 50%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
  }

  .img-large img,
  .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 576px) {

  .image-wrapper {
    gap: 12px;
  }

  .img-large,
  .img-small {
    height: 180px;
  }
}

@media (max-width: 991px) {
  .floating-card {
    display: none;
  }
}

@media (max-width: 991px) {

  .image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
    max-width: 100%;
  }

  .img-large,
  .img-small {
    position: relative;
    width: 100%;
    height: 240px;
    /* SAME height */
    border-radius: 18px;
    overflow: hidden;
  }

  .img-large img,
  .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {

  .travel-care-section .col-lg-5 {
    text-align: center;
  }

  .travel-care-section p {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
}

@media (max-width: 576px) {

  .img-large,
  .img-small {
    height: 200px;
    /* Smaller but still SAME size */
  }
}

/*  travel package */

.travel-packages {
  background: #ffffff;
}

/* Card Base */
.package-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border: 1px solid #f1f1f1;
}

/* Hover Effect */
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon-box {
  width: 56px;
  height: 56px;
  background: #eef8f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box img {
  width: 28px;
}

/* Headings */
.package-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* Description */
.desc {
  font-size: 14px;
  color: #6c757d;
}

/* List */
.package-card ul {
  padding-left: 18px;
  margin: 16px 0 24px;
}

.package-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Popular Card */
.package-card.popular {
  background: #3e9c93;
  color: #ffffff;
}

.package-card.popular .desc,
.package-card.popular ul li {
  color: #e8f5f4;
}

.package-card.popular .icon-box {
  background: rgba(247, 241, 241, 0.2);
}


/* Popular badge */
.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Buttons */
.package-card .btn {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
}

.package-card.popular .btn {
  border-color: #ffffff;
  color: #ffffff;
}

.package-card.popular .btn:hover {
  background: #ffffff;
  color: #3e9c93;
}

/* Button hover for normal cards */
.package-card:hover .btn-outline-secondary {
  background: #3e9c93;
  border-color: #3e9c93;
  color: #ffffff;
}

/* Popular (green) card icon changes */
.package-card.popular .icon-box {
  background: #ffffff;
  /* white background */
}

/* Make icon green */
.package-card.popular .icon-box img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(1020%) hue-rotate(125deg) brightness(90%) contrast(90%);
}


/* Mobile & Tablet Fix */
@media (max-width: 991px) {
  .package-card {
    text-align: left;
  }

  .icon-box {
    margin-left: 0;
  }

  .package-card h5,
  .package-card p,
  .package-card ul {
    text-align: left;
  }

  .package-card ul {
    padding-left: 18px;
  }

  /* Button on next line & left aligned */
  .package-card .btn {
    display: inline-block;
    margin-top: 10px;
  }
}




/* why choose us */

.why-choose-us {
  background-color: #ffffff;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  font-size: 15px;
}

.feature-card {
  padding: 20px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background-color: #e9f6f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.feature-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* cta */
.travel-banner {
  background-color: #3f9f9a;
  /* Teal green */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.travel-banner h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-banner p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.btn-contact {
  background-color: #2f45ff;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background-color: #1f34cc;
  color: #ffffff;
}
/* video */
.brand-video-section {
  background: #f8f9fa;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Play Button Circle */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Blue Triangle */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 24px solid #2f5bff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn span {
    border-left: 18px solid #2f5bff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}



/* Make video taller */
.video-container video {
  width: 100%;
  height: 500px;
  /* 👈 Increase height */
  object-fit: cover;
  /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
  .video-container video {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .video-container video {
    height: 260px;
  }
}
.video-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;       /* Force 1 line */
  overflow: hidden;
  text-overflow: ellipsis;   /* Add ... if too long */
  max-width: 90%;
}
@media (max-width: 768px) {
  .video-caption {
    font-size: 13px;      /* Smaller font */
    padding: 6px 12px;    /* Less padding */
    bottom: 10px;         /* Slightly closer */
  }
}


.video-container {
  position: relative;
  overflow: hidden;
}

.video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-toggle:hover {
  background: rgba(0,0,0,0.9);
}

/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}

/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

  .end-page h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .end-page p {
    font-size: 14px !important;
    margin-top: 8px;
  }

  .end-page .btn,
  .end-page button {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 6px;
  }

  .end-page {
    padding: 15px 10px !important;
    text-align: center;
  }
}