/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

i {
    font-family: 'FontAwesome' !important;
}

body {
    min-height: 100vh;
    color: white;
}

.py-15 {
    padding: 15px 0px;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
    font-family: "Roboto Serif", serif !important;
}
p{ font-family: "Poppins", serif !important;}

.unordered-list {
    color: #000000;
}

.unordered-list li::marker {
    color: #dc5562;
    font-size: 25px;
}

.text-black {
    color: #000;
}

.position-relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.red-color {
    color: #dc5562;
}

.fs-heading {
    font-size: 28px;
}

.mt-3 {
    margin-top: 1.2rem;
}

.fw-600 {
    font-weight: 600;
}

.flex-direction-row {
    flex-direction: column;
    align-items: center;
}

.p-30 {
    padding: 30px 0px;
}


/* Navbar Styles */
.navbar {
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

/* Logo Styles */
.logo {
    height: 200px;
    position: relative;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}





/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #dc5562;
}


/* Action Button */
.action-btn {
    position: relative;
    background: #dc5562;
    border: none;
    color: white;
    padding: 10px 30px;
        border-radius: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn {
    width: 200px;
}

.action-btn a {
    text-decoration: none;
    color: #fff;
}

.btn-text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: all 0.3s ease;
}

.action-btn:hover .btn-effect {
    opacity: 0.2;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #94a3b8;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0%);
}


.mobile-menu.active {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.close-icon {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #94a3b8;
    transform: rotate(45deg);
}

.close-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #94a3b8;
    transform: rotate(90deg);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 60px;
}

.menu-link {
    display: flex;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #dc5562;

}

.menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.mobile-action-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #60a5fa20, #a78bfa20);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-action-btn:hover {
    background: linear-gradient(45deg, #60a5fa40, #a78bfa40);
}


/* Hero Section  */

.banner-div {
    position: relative;
}

.background-image {
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    padding: 0px 100px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.hero-text .content {
    margin-bottom: 50px;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    background-color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    border-radius: 50px;
}

.search-bar button {
    background-color: #e74c3c;
    position: absolute;
    position: absolute;
    right: 0px;
    height: 65px;
    width: 80px;
    border: none;
    color: white;
    padding: 10px 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}

.search-bar button i {
    font-size: 16px;
}

.heading-banner {
    font-size: 32px;
    font-weight: bold;
}


/* 3 Cards */

.overlap-div {
    position: relative;
    /* Change from absolute to relative */
    padding: 15px 80px;
    background: #fff;
    -webkit-box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
    -moz-box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
    box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
    border-radius: 20px;
    width: 100%;
    margin-top: -100px;
    max-width: 1200px;
}
.overlap-div.container h3{margin-top:20px;}

.card-container {
    display: flex;
    margin-bottom: 10px;
    padding: 40px 0px 40px 0px;
    gap: 60px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    padding: 30px;
    color: white;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 25%;
}

.card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* About Section */

.section-margin {
    margin-top: 100px;
}

.about-content {
    padding: 0px 25px;
}

.unordered-list {
    margin-top: 10px;
}

.unordered-list li {
    padding: 5px;
    font-size:18px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.d-flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.about-img {
    height: 300px;
    width: 500px;

}

.about-img img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}


/* Airline Section */

.box-shadow {
    border-radius: 20px;
    -webkit-box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
    -moz-box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
    box-shadow: 1px 2px 9px 7px rgba(0,0,0,0.23);
}

.slick-slide {
    margin: 10px !important;
}

.airline-slider {
    margin-top: 20px;
}

.slick-prev,
.slick-next {
    background: #dc5562 !important;
    padding: 20px;
    width: 30px !important;
    height: 30px !important;
    border-radius: 20px;
}

.slick-prev {
    background: #dc5562 !important;
    padding: 20px;
    width: 30px !important;
    height: 30px !important;
    border-radius: 20px;
}

.noshadow {
    box-shadow: none;
}



/* Blog section */



.mb-7 {
    margin-bottom: 1.75rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}



.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media screen and (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid .card {
    width: 100%;
    padding: 0px;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card-body {
    padding: 1rem;
}

.card-date {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

.mt-30{margin-top: 30px;}

.card-title {
    color: #6ecdde;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    height: 4rem;
    overflow: hidden;
}

.card-description {
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    height: 3.25rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.read-more {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
}

.read-more i {
    color: #d29d2c;
}

.read-blogs-btn {
    background-color: #0284c7;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-blogs-btn:hover {
    background-color: #fbbf24;
}


/* faq Section */




.faq-container {
    width: 100%;
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 10px;

    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin-bottom: 10px;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    color: #000000;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background-color: #fff;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.open {
    max-height: 200px; /* Adjust for longer answers */
    padding: 15px 20px;
  }

  .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .arrow.open {
    transform: rotate(90deg);
  }

  .navbar.d-view {
    display: flex;
  }
  
  .mobile-navbar.m-view {
    display: none;
  }
  .airline-slider.m-view{display: block;}
  .container-airline.d-view{display: none;}

  .footer {
    background-color: #d9534f;
    padding: 40px 0px;
}
.footer .disclaimer {
    margin-bottom: 20px;
    padding: 20px 0px;
}
.footer .disclaimer p {
    margin: 5px 0;
}
.footer .links {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}
    .footer .container-fluid{margin-left: 100px;margin-right: 100px;}
    .footer .links div {
        margin: 5px;
        min-width: 200px;
    }
    .footer .links div h3 {
        margin-bottom: 25px;
    }
    .footer .links div ul {
        list-style: none;
        padding: 0;
    }
    .footer .links div ul li {
        margin: 5px 0px 20px 0px;
    }
    .footer .links div ul li a {
        color: white;
        text-decoration: none;
    }
    .footer .links div ul li a:hover {
        text-decoration: underline;
    }

  /* Responsive Design */
  @media (max-width: 768px) {
    .faq-question {
      font-size: 14px;
      padding: 15px;
    }
    .navbar.d-view {
        display: none;
      }
      
      .mobile-navbar.m-view {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 0px;
      }


      .mobile-navbar.m-view .action-btn {
        position: relative;
        background: #dc5562;
        border: none;
        color: white;
        padding: 10px 10px;
        border-radius: 6px;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

      .mobile-navbar.m-view .logo{height: 100%;width: 180px;}
      .card{width: 100%;}
      
      .banner-div{height: 650px;}
      .background-image{object-fit: cover;overflow: hidden;}
      .airline-slider.m-view{display: none;}
      .container-airline.d-view{display: grid;margin-top: 50px;}
      .footer .container-fluid {
        margin-left: 0px;
        margin-right: 0px; 
    }
    .footer .links {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        flex-direction: column;
    }
    .footer {
        background-color: #d9534f;
        padding: 40px 20px;
    }

    .faq-answer {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .faq-container {
      max-width: 100%;
    }
  }


  /* Footer */
.detail-wrapper {
    padding-bottom: 70px;
}
.mt-5 {
    margin-top: 3rem !important;
}
.cm-page-center {
    margin: 0 auto;
}
  .detail-row {
    display: flex
;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
}
.detail-wrapper .column-left {
    width: 65%;
}
.text-center {
    text-align: center !important;
}
.justify-content-center {
    justify-content: center !important;
}
.d-inline-flex {
    display: inline-flex !important
;
}
.detail-wrapper .column-left img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.detail-wrapper img {
    margin-bottom: 20px;
}
.detail-wrapper img {
    margin-bottom: 20px;
}
.mt-5 {
    margin-top: 3rem !important;
}
.accordion {
    border: 1px solid #000;
    color: #000000;
    margin-bottom: 20px;
    padding: 5px 20px;
    border-radius: 3px;
}
.accordion .contents {
    display: none;
    color: #000000;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }
    .hero-text{
        position: absolute;
        top: 13%;
        left: 0%;
        width: 100%;
        padding: 0px 20px;
        text-align: left;
        transform: translate(0%, 0%);
    }
    .search-bar {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        background-color: white;
        border-radius: 50px;
        padding: 0px 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    .search-bar button {
        background-color: #e74c3c;
        position: absolute;
        position: absolute;
        right: 0px;
        height: 41px;
        width: 80px;
        border: none;
        color: white;
        padding: 10px 20px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        cursor: pointer;
    }
    .navbar{display: none;}

    .card-container {
        display: flex;
        margin-bottom: 10px;
        padding: 40px 0px 40px 0px;
        gap: 60px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-img{width: 100%;margin-top: 10px;}
    .about-section .d-flex{
        flex-direction: column;
    }
    .airline-slider {
        max-width: 100%;
        margin: 0 auto;
    }
    .card.noshadow.slick-slide{width: 100% !important;}
    .mobile-toggle {
        display: block;
    }


    .container-airline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
    }
    .item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .item img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #cce7f0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .item p {
        margin-top: 10px;
        color: #d9534f;
        font-size: 16px;
    }
    
    .overlap-div,.box-shadow{border-radius: 0px;}
    .fs-heading{font-size: 24px;}


    .navbar {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}








.social-media {
  display: flex;
  justify-content: center;
}

.social-media a {
  display: flex;
  background: #e3edf7;
  height: 50px;
  width: 50px;
  margin: 0 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: transform 0.5s;
}

.social-media a i {
  font-size: 30px;
  color: #777;
  transition: transform 0.5s;
}

.social-media a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1),
    0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.01);
  transform: translateY(2px);
}

.social-media a:hover i {
  transform: scale(0.9);
}

.social-media a:hover .fa-facebook {
  color: #3b5998;
}

.social-media a:hover .fa-twitter {
  color: #00acee;
}

.social-media a:hover .fa-github {
  color: #000000;
}

.social-media a:hover .fa-instagram {
  color: #f14843;
}

.social-media a:hover .fa-linkedin-in {
  color: #3b5998;
}
.cm-pos-absolute.fixed-callnow {
    width: 100%;
    background: #6fcddc;
    border-top: 1px solid #fff;
    z-index: 1000;
    position: fixed;
    padding: 10px 0px;
    bottom: 0;
    color: white;
}
.cm-page-center {
    margin: 0 auto;
}
.cm-pos-absolute.fixed-callnow a {
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: bold;
    color: #ffff;
}
.text-deco-none a {
    text-decoration: none;
}
.cm-pos-absolute.fixed-callnow img {
    width: 40px;
}



.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}



.row  {
  display: flex;
  flwx-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: #00bcd4;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: #00bcd4;
}

@media (max-width: 991px) {

  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}
