.time-font {
  font-family: "Poppins-Bold";
  font-weight: bold;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins-Regular";
}

.top-gap {
  height: 30px;
  background-color: #f2f2f2;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Hero Section */
.hero {
  height: 80vh; /* Large height to ensure visual impact */
  background-image: url("./images/header1.jpg");
  background-size: cover; /* Cover the entire section */
  background-position: center top; /* Center the image */
  background-repeat: no-repeat; /* Prevent image tiling */
  margin-bottom: 0; /* Remove any gaps below the image */
}

/* Corporate Travel Solutions Section */
.corporate-travel-solutions {
  padding: 40px 20px; /* Add spacing around content */
  background-color: #ffffff; /* White background for contrast */
}

/* Qualities Section */
.qualities {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  background: url("./images/airplane-dec.png") no-repeat center center;
  background-size: cover;
}

.qualities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity for darkness */
  z-index: 1;
}

.qualities > * {
  position: relative;
  z-index: 2; /* Ensures content is above the overlay */
}

.qualities-heading {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.qualities-description {
  margin: 20px 0 40px;
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.quality-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.quality-item {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-5px);
}

.quality-item img {
  max-width: 100%;
  margin-bottom: 15px;
}

.quality-item h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
/* Corporate Travel Solutions */
/* Corporate Travel Solutions */
.corporate-travel-solutions {
  padding: 60px 80px;
  background-color: #ffffff;
}

.content-container {
  display: flex;
  gap: 40px;
}

.left-content h2 {
  color: #2c3e50;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.right-content p {
  color: #34495e;
  font-size: 18px;
  line-height: 1.7;
}

/* Corporate Travel Management Process */
.process {
  padding: 60px;
  text-align: center;
  background-color: #f9f9f9;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #1a1a2e;
  font-weight: 700;
  letter-spacing: -1px;
}

.process > p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 300;
}

/* MTCL Difference Section */
.difference {
  padding: 40px 20px;
  position: relative;
  overflow: hidden; /* Prevents blur overflow */
}

.difference::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/MTCL-diff.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px); /* Adjust the blur strength */
  z-index: 0; /* Behind the overlay and content */
}

.difference::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
  z-index: 1; /* On top of the blurred background */
}

.difference > * {
  position: relative;
  z-index: 2; /* Ensures content appears above the blur and overlay */
}

.difference-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 90vw;
}

.difference h2 {
  text-align: left;
  color: #fff;
  font-size: 3.2rem;
  font-family: "Poppins-Bold";
  position: relative;
}

.difference-notes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.difference-notes .note {
  flex: 1;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-notes .note:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.note-content h3 {
  margin-bottom: 15px;
  color: #000000;
  font-size: 1.5rem;
  font-family: "Poppins-Black";
}

.note-content p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.7;
  text-align: left;
  word-spacing: -1px;
}

.carousel-controls {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .difference-notes {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    gap: 20px;
    padding: 0 0px;
  }

  .process {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .difference-notes::-webkit-scrollbar {
    display: none; /* WebKit */
  }

  .difference-notes .note {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: center;
    min-width: calc(100% - 40px);
    box-sizing: border-box;
    min-height: 400px; /* Increased height to prevent text cut-off */
    display: flex; /* Added to ensure vertical content alignment */
    flex-direction: column;
    justify-content: center; /* Align content to the top */
  }

  .difference h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 0 20px; /* Added padding to prevent text cut-off */
  }

  .note-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.3; /* Improved line height for readability */
  }

  .note-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 10px; /* Added slight padding */
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .carousel-btn {
    background-color: #283891;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
  }
}

/* Discover More Section */
.discover {
  padding: 60px 20px;
  text-align: center;
  background-color: #1f1f1f;
}

.discover h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.discover-content {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.discover-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.discover-item:hover {
  transform: scale(1.05);
}

.discover-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.discover-item h3 {
  margin: 20px 0 15px;
  color: #333;
  font-size: 1.4rem;
}

.discover-item p {
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.discover-item button {
  margin-bottom: 20px;
  padding: 12px 25px;
  background-color: #283891;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.discover-item button:hover {
  background-color: #19256d;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: skew(-15deg);
  z-index: 1;
}

.cta h2 {
  max-width: 90vw;
  margin: 0 auto;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 30px;
  padding: 15px 35px;
  background-color: white;
  color: #283891;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 50px 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
    max-width: 100%;
    padding: 0 15px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Corporate Travel Solutions Section Styles */
.corporate-travel-solutions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #ffffff;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-content {
  flex: 1;
  margin-right: 20px;
}

.left-content h2 {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
}

.right-content {
  flex: 2;
}

.right-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Hero Mobile Responsive*/
@media screen and (max-width: 768px) {
  .content-container {
    flex-direction: column;
    text-align: center;
  }

  .left-content,
  .right-content {
    flex: 1 100%;
    width: 100%;
  }

  .left-content h2 {
    font-size: 1.5rem;
  }

  .right-content p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 20px 10px;
  }
}

/* Qualities */

@media (min-width: 769px) {
  .qualities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .quality-item {
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    width: 220px;
    max-width: 100%;
    transition: transform 0.3s ease;
  }

  .quality-item:hover {
    transform: translateY(-10px);
  }

  .quality-item img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .quality-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .qualities {
    overflow: hidden;
    position: relative;
  }

  .qualities-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 250px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }

  .quality-item {
    position: absolute;
    width: 200px;
    height: 200px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    opacity: 1; /* Ensure full visibility */
    pointer-events: auto; /* Enable interaction */
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .quality-item img {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/*Cprporate */

/* Discover */

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .discover-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .discover-item {
    max-width: 90%;
    width: 100%;
  }

  .discover h2 {
    font-size: 1.8rem;
  }

  .discover-item img {
    height: 200px;
  }

  .discover-item h3 {
    font-size: 1.2rem;
  }

  .discover-item p {
    font-size: 0.9rem;
  }

  .discover-item button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Header  */
@media (max-width: 768px) {
  .hero {
    height: 90vh; /* Enlarge the image for better display */
    background-size: cover; /* Keep the image covered */
    background-position: top; /* Focus on the top part of the image */
  }

  .corporate-travel-solutions .content-container {
    gap: 15px; /* Slightly reduce spacing for compactness */
  }
}

.social-media-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.social-media-icon {
  width: 50px;
  height: 50px;
  background-color: #707070;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  opacity: 0.5;
}

.social-media-icon:hover {
  color: #333;
  background-color: #f5f5f5;
  transition: 0.4s ease;
}

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #707070;
  color: white !important;
  border: none;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: bolder !important;
  text-align: center;
  font-weight: bolder;
  opacity: 1 !important;
}

/* Hide mobile content by default */
.mobile-content {
  display: none;
}

/* Show desktop content by default */
.desktop-content {
  display: block;
}

/* For screens smaller than 768px (Mobile screens) */
@media (max-width: 768px) {
  .desktop-content {
    display: none;
  }
  .mobile-content {
    display: block;
  }
}

.international-timing {
  margin-top: 0 !important;
}
