/* ---------------------- NAVBAR AREA ---------------------- */
body {
    font-family: 'Poppins', sans-serif;
}

.custom-navbar {
    height: 75px;
    background: #1c1c45; /* Brand Color */
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    transition: background 0.3s ease;
}

.navbar-brand .nav-logo {
    height: 58px;
    width: auto;
}

.nav-menu li {
    list-style: none;
    margin-left: 25px;
}

.nav-menu li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #ffc107;
}

/* ---------------------- MOBILE TOGGLE ---------------------- */
.mobile-toggle {
    width: 32px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.4s;
}

/* ---------------------- SIDEBAR ---------------------- */
.sidebar {
    position: fixed;
    top: 0;
    left: -270px;
    width: 270px;
    height: 100%;
    background: #1c1c45;
    padding-top: 70px;
    transition: 0.4s ease-in-out;
    z-index: 9999;
}

.sidebar .close-btn {
    position: absolute;
    top: 18px;
    right: 15px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.sidebar-menu {
    padding-left: 0;
}

.sidebar-menu li {
    list-style: none;
    padding: 15px 25px;
}

.sidebar-menu li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-menu li a:hover {
    color: #ffc107;
    margin-left: 5px;
}

/* ---------------------- SCROLLING NAVBAR EFFECT ---------------------- */
.custom-navbar.scrolled {
    background: #141433;
}

/* ---------------------- MEDIA QUERIES ---------------------- */

@media (max-width: 768px) {
    .navbar-brand .nav-logo {
        height: 55px; /* smaller logo */
    }
}



/* ---------------------- SLIDER AREA ---------------------- */

/* ================= HERO SECTION ================= */
.new-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    background-image: url('../images/slider/sl1.png'); /* CHANGE IMAGE */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #001d4eb0; /* Brand Orange Opacity */
    z-index: 1;
}

.hero-left {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    margin-top: 15px;
    max-width: 450px;
}

/* ================= FORM AREA ================= */
.hero-right {
    position: relative;
    z-index: 2;
}

.booking-horizontal {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.booking-horizontal input {
    height: 45px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    flex: 1;
    min-width: 160px;
}

.hero-submit-btn {
    background: #0c1e3c;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    flex-basis: 100%;
    transition: 0.3s;
}

.hero-submit-btn:hover {
    opacity: 0.9;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
    .new-hero {
        height: auto;
        padding: 60px 0;
    }

    .hero-left {
        text-align: center;
        margin-bottom: 25px;
    }

    .booking-horizontal {
        flex-direction: column;
    }

    .booking-horizontal input {
        width: 100%;
    }

    .hero-submit-btn {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .hero-left h1 {
        font-size: 32px;
    }
}



/* ---------------------- ABOUT US SECTION ---------------------- */

.about-section {
    background: #f7f8fc;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    color: #1c1c45;
    margin-bottom: 15px;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.phone-link {
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
}

.phone-link:hover {
    color: #ffdd40;
}

.about-img-box img {
    border-radius: 18px;
    transition: 0.4s;
}

.about-img-box img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ---------------------- MEDIA QUERIES ---------------------- */
@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }
    .about-text {
        font-size: 16px;
    }
}



/* ---------------------- TRAVELLER SEATING SECTION ---------------------- */
.traveller-title {
    font-size: 38px;
    font-weight: 700;
    color: #1c1c45;
}

.traveller-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 8px;
}

.trav-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.trav-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.trav-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.trav-content {
    padding: 20px;
    text-align: center;
}

.trav-name {
    font-size: 24px;
    font-weight: 700;
    color: #1c1c45;
    margin-bottom: 15px;
}

.trav-points {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.trav-points li {
    font-size: 16px;
    margin-bottom: 6px;
    color: #444;
}

/* Book Now Button */
.btn-trav {
    background: #ffc107;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-trav:hover {
    background: #ffdb47;
    color: #000;
}

/* ---------------------- MEDIA QUERIES ---------------------- */
@media (max-width: 768px) {
    .trav-name {
        font-size: 20px;
    }
    .trav-img {
        height: 180px;
    }
}


/* ---------------------- SERVICES SECTION ---------------------- */

.services-title {
    font-size: 38px;
    font-weight: 700;
    color: #1c1c45;
}

.services-subtitle {
    font-size: 17px;
    color: #666;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #1c1c45;
    margin-bottom: 12px;
}

.service-text {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    background: #ffc107;
    color: #000;
    padding: 10px 25px;
    font-size: 17px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background: #ffdb47;
}

/* ---------------------- MEDIA QUERIES ---------------------- */

@media (max-width: 768px) {
    .service-name {
        font-size: 20px;
    }
    .service-img {
        height: 180px;
    }
}


/* WHY CHOOSE US SECTION */
.why-choose-us {
    position: relative;
    background: url('../images/slider/about.png') center/cover no-repeat;
    padding: 70px 0;
    color: #fff;
}

.why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1c1c45cb;
    opacity: 0.85;
}

.why-choose-us .section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.choose-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    color: #000;
    box-shadow: 0 5px 18px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    z-index: 2;
}

.choose-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.choose-box .icon {
    font-size: 40px;
    color: #1c1c45;
    margin-bottom: 10px;
}

.call-btn {
    margin-top: 30px;
    display: inline-block;
    background: #ffffff;
    color: #1c1c45;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(255,255,255,0.2);
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.call-btn:hover {
    background: #f5f5f5;
    color: #000;
}

/* Responsive */
@media (max-width: 767px) {
    .choose-box {
        margin-bottom: 20px;
    }
    .why-choose-us .section-title {
        font-size: 28px;
    }
}




/* ---------------------- GALLERY ---------------------- */
.gallery-section {
  background: #f7f8fc;
}

.gallery-title {
  font-size: 34px;
  font-weight: 700;
  color: #1c1c45;
}

.gallery-subtitle {
  color: #555;
  margin-bottom: 25px;
  font-size: 16px;
}

.gallery-box img {
  border-radius: 12px;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.gallery-box img:hover {
  transform: scale(1.05);
}

/* Modal image styling */
.modal-dialog img {
  border-radius: 15px;
  width: 100%;
}



/* ---------------------- FOOTER ---------------------- */
.footer-section {
  background: #1c1c45;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #eee;
  font-size: 15px;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #ffc107;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact li i {
  margin-right: 10px;
  color: #ffc107;
}

.footer-contact li a {
  color: #eee;
  text-decoration: none;
}

.footer-contact li a:hover {
  color: #ffc107;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.social-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffc107;
  text-align: center;
  line-height: 38px;
  color: #1c1c45;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ffdd40;
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #131336;
}

.footer-bottom p {
  color: #ccc;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 20px;
  }
}



/* ---------------------- PAGE BANNER ---------------------- */
.page-banner {
    position: relative;
    width: 100%;
    height: 280px;
    background-image: url('../images/slider/sl2.png'); /* your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 54, 0.68); /* #131336 opacity */
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.banner-breadcrumb {
    background: transparent;
    padding-left: 0;
}

.banner-breadcrumb .breadcrumb-item a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
}

.banner-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

/* ---------------------- RESPONSIVE ---------------------- */
@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }

    .banner-title {
        font-size: 30px;
    }
}



.service-page {
  background: #f5f7ff;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.btn-service {
  display: inline-block;
  background: #1c1c45;
  color: #fff;
  padding: 8px 20px;
  margin-top: 10px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-service:hover {
  background: #ffb703;
  color: #000;
}



.packages-section {
  background: #eef2ff;
}

.package-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.package-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.btn-package {
  display: inline-block;
  background: #1c1c45;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  margin-top: 10px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.btn-package:hover {
  background: #ffb703;
  color: #000;
}





/* ---------------- CONTACT PAGE ---------------- */

.contact-card {
    background: #edf7ff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.contact-link {
    color: #1c1c45;
    font-weight: 600;
}

.btn-contact-submit {
    background: #1c1c45;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-contact-submit:hover {
    background: #ffb703;
    color: #000;
}

.map-container iframe {
    border-radius: 12px;
    width: 100%;
}



/* Floating CALL Button (Left) */
.float-call {
    position: fixed;
    left: 15px;
    bottom: 20px;
    background: #0c1e3c;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    z-index: 9999;
}

.float-call:hover {
    background: #102d5c;
    transform: scale(1.1);
}

/* Floating WHATSAPP Button (Right) */
.float-whatsapp {
    position: fixed;
    right: 15px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    z-index: 9999;
}

.float-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media(max-width: 480px) {
    .float-call, .float-whatsapp {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 15px;
    }
}


/* ================== BOOKING FORM (Slider) ================== */
.booking-form {
    width: 350px;
    background: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 10px;
    z-index: 3;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.25);
    animation: slideIn 0.8s ease;
}

.booking-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2A2A2A;
}

.booking-form input {
    height: 42px;
    font-size: 15px;
}

.book-submit-btn {
    width: 100%;
    height: 45px;
    background: #102d5c;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.book-submit-btn:hover {
    opacity: 0.9;
}

/* Animation */
@keyframes slideIn {
    from { transform: translateY(25px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ================ RESPONSIVE (Mobile) ================= */
@media (max-width: 600px) {
    .booking-form {
        width: 100%;
        margin-top: 20px;
        padding: 18px;
    }

    .booking-form h3 {
        font-size: 20px;
    }
}
