 @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  height: 100vh;
  background: #f0f2f5;
  overflow-y: auto;
}

    .sidebar {
      width: 83px;
      background: #1B2A41;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: width 0.3s;
      position: relative;
      overflow: hidden;
      z-index: 10;
    }

    .sidebar:hover {
      width: 220px;
    }

    .logo {
      width: 100%;
      text-align: center;
      padding: 20px 10px;
    }

    .logo img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .nav {
      width: 100%;
    }
    .phone-dial {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #3e5694;
  color: white;
  padding: 12px 0;
  font-size: 18px;
  border-radius: 150px;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.phone-dial i {
  margin-right: 8px;
}

.phone-dial:hover {
  background-color: #1ebe5b;
}
    .nav a {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      font-size: 1.05em;
      white-space: nowrap;
      transition: background 0.3s;
    }

    .nav a i {
      font-size: 1.5em;
      min-width: 35px;
      text-align: center;
    }

    .nav a span {
      opacity: 0;
      margin-left: 10px;
      transition: opacity 0.2s;
    }

    .sidebar:hover .nav a span {
      opacity: 1;
    }

    .nav a:hover {
      background: #263A5D;
    }

    .main-content {
      flex: 1;
      position: relative;
      height: 100vh;
      overflow-y: auto;
    }

    .carousel {
      width: 100%;
      height: 60vh;
      position: relative;
    }

    .carousel video {
      position: absolute;
      width: 100%;
      height: 90%;
      object-fit: cover;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .carousel video.active {
      opacity: 1;
    }

    .slogan-container {
      position: absolute;
      top: 6%;
      height: 80px;
      left: 50%;
      width: 100%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 20px 40px;
      mix-blend-mode: screen;
      text-align: center;
      z-index: 2;
    }

    .slogan-container h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4em;
      color: black;
      margin-top: -15px;
      letter-spacing: 2px;
    }

    .line {
      position: absolute;
      top: 95%;
      left: 50%;
      transform: translateX(-50%);
      width: 300px;
      height: 2px;
      background: rgb(3, 12, 54);
      z-index: 2;
    }
    .services-section {
  background: #fff;
  padding: 60px 40px;
  text-align: center;
  z-index: 5;
  position: relative;
}

.services-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #1B2A41;
  letter-spacing: 1px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5em;
  color: #1B2A41;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  color: #555;
  font-size: 1em;
}
.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.airlines-section {
  background: #cad7e1;
  padding: 60px 40px;
  text-align: center;
}

.airlines-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3em;
  margin-bottom: 40px;
  color: #1B2A41;
  letter-spacing: 1px;
}

.airlines-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.airlines-grid img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.airlines-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.why-choose-section {
  background: #fff;
  padding: 60px 40px;
  text-align: center;
  height: 400px;
  position: relative;
}
.why-choose-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3em;
  color: #1B2A41;
  margin-bottom: 40px;
}

.choose-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.choose-us-circle {
  background: #f5f7fa;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #000; /* Black border */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.choose-us-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #e0e0e0; /* Change background color on hover */
}

.choose-us-circle i {
  font-size: 2.2em;
  color: #1B2A41;
  margin-bottom: 10px;
}

.choose-us-circle p {
  font-size: 0.95em;
  color: #333;
  max-width: 80%;
  line-height: 1.3;
}
/* 📍 Footer Styles */
.footer {
  background-color: #31425b;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-content > div {
  flex: 1 1 220px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.footer p, .footer li, .footer a {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #d4c8c8;
  font-size: 10px;
  margin-top:2pc;
  color: #aaa;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 1000;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.whatsapp-float a:hover {
  background-color: #1ebe5b;
}

.chat-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background-color: #ffffff;
  color: #333;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

/* Chat bubble arrow */
.chat-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}

/* Show on hover */
.whatsapp-float a:hover .chat-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(-5px);
  pointer-events: auto;
}
.language-toggle {
  margin-top: auto;
  padding: 15px 20px;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.language-toggle:hover {
  background-color: #0056b3;
}

.language-toggle i {
  margin-right: 8px;
}
@media (max-width: 1440px){
   .slogan-container h1 {
     font-size: 2.5rem;
     margin-top: -8px;
    }
}
@media (max-width: 1024px) {
    .slogan-container h1 {
      font-size: 2.2rem;
      margin-top: -4px;
    }
    .main-content .why-choose-section .choose-us-circle{
     width: 120px;
     height: 150px;
    }
}
/* Media Queries */
@media (max-width: 768px) {
    .slogan-container h1 {
      font-size: 1.7em;
      margin-top: 18px;
      letter-spacing: 1px;
    }
    .why-choose-section {
        height: 550px;
    }
    .sidebar:hover  ~ .main-content .slogan-container h1 {
        font-size: 1.3rem;
        margin-top: 15px;
    }
    .sidebar:hover ~ .main-content  .why-choose-section {
        height: 520px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content{
        font-size: 10px;
        height: 110px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content p{
        font-size: 8px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content li{
        font-size: 8px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content a{
        font-size: 8px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content .footer-bottom{
        font-size: 8px;
        margin-top: 2pc;
    }
     .sidebar:hover ~ .main-content .footer .footer-contact h4{
        margin-top: -60px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social {
        margin-top: -30px;
     }
     .sidebar:hover ~ .main-content .footer .footer-contact p{
        margin-top: 2px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social .social-icons {
        margin-top: -1px;
     }
}
@media (max-width: 512px){
     .sidebar {
      width: 65px;
    }
    .logo img {
      width: 40px;
      height: 40px;
    }
    .nav a {
      font-size: 10px;
      margin-left: -6px;
    }
     .nav span {
      font-size: 1.2em;
    }
    .slogan-container h1 { 
        font-size: 1.2rem;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    .sidebar:hover ~ .main-content .slogan-container h1 {
        font-size: 0.8rem;
        margin-top: 8px;
    }
     .main-content .why-choose-section {
        height: 600px;
    }
    .main-content .why-choose-section .choose-us-circle p {
     font-size: x-small;
    }
     .sidebar:hover ~ .main-content .why-choose-section {
        height: 980px;
    }
    .main-content .why-choose-section .choose-us-circle{
     width: 100px;
     height: 120px;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle{
     width: 100px;
     height: 120px;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle h3{
        font-size: 0.8rem;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle p{
        font-size: 0.6rem;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle i{
        font-size: 1.5rem;
    }
    .sidebar:hover ~ .main-content .footer .footer-content{
        font-size: 6px;
        height: 180px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content p{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content .footer-links{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content li{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content a{
        font-size: 6px;
        margin-top: -10px;
    }
     .sidebar:hover ~ .main-content .footer .footer-contact{
        margin-top: 25px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social {
        margin-top: -30px;
     }
     .sidebar:hover ~ .main-content .footer .footer-contact p{
        margin-top: -2px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social .social-icons {
        margin-top: -10px;
     }
     .sidebar:hover ~ .main-content .footer .footer-content .footer-bottom p{
        font-size: 2px;
        margin-top: 30pc;
    }
    .sidebar:hover ~ .main-content .footer .footer-bottom {
        display: none;
    }
}
@media (max-width: 425px) {
    .sidebar {
      width: 60px;
    }
    /* .nav i {
      font-size: 1.2em;
      margin-left: -2px;
    } */
    .nav span {
      font-size: 1.2em;
    }
    .slogan-container h1 {
        font-size: 1rem;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    .sidebar:hover ~ .main-content .slogan-container h1 {
        font-size: 0.6rem;
        margin-top: 8px;
    }
    .main-content .why-choose-section {
        height: 650px;
    }
    .main-content .why-choose-section .choose-us-circle{
     width: 120px;
     height: 130px;
    }
      .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle h3{
        font-size: 0.8rem;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle p{
        font-size: 0.6rem;
    }
    .sidebar:hover ~ .main-content .why-choose-section .choose-us-circle i{
        font-size: 1.5rem;
    }
    .sidebar:hover ~ .main-content .why-choose-section {
        height: 980px;
    }
      .sidebar:hover ~ .main-content .footer .footer-content{
        font-size: 6px;
        height: 180px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content p{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content .footer-links{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content li{
        font-size: 6px;
        margin-top: -10px;
    }
    .sidebar:hover ~ .main-content .footer .footer-content a{
        font-size: 6px;
        margin-top: -10px;
    }
     .sidebar:hover ~ .main-content .footer .footer-contact{
        margin-top: 25px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social {
        margin-top: -30px;
     }
     .sidebar:hover ~ .main-content .footer .footer-contact p{
        margin-top: -2px;
     }
     .sidebar:hover ~ .main-content .footer .footer-social .social-icons {
        margin-top: -10px;
     }
     .sidebar:hover ~ .main-content .footer .footer-content .footer-bottom p{
        font-size: 2px;
        margin-top: 30pc;
    }
    .sidebar:hover ~ .main-content .footer .footer-bottom {
        display: none;
    }
}
@media (max-width: 409px) {
     .main-content .why-choose-section {
        height: 1000px;
    }
}
@media (max-width: 375px) {
  .main-content .why-choose-section {
      height: 1000px;
  }
}
@media (max-width: 325px) {
   .slogan-container h1 {
    font-size: 15px;
    margin-top: 0px;
   }
    .main-content .why-choose-section {
    height: 1050px;
    }
}

