body {
    font-family: 'Poppins', sans-serif;
}

/* TOPBAR */
.topbar {
    background: #0c1e3c;
    color: #ffffff;
    padding: 6px 0;
    font-size: 14px;
}

/* MAIN NAVBAR */
.main-navbar {
    background: white;
    padding: 16px 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.logo-space {
    font-size: 26px;
    font-weight: 700;
    color: #0c1e3c !important;
}

.logo-img {
    max-height: 60px;   /* Adjust as per your design */
    width: auto;
}
.logo-small-img {
    max-height: 50px;   /* adjust as needed */
    width: auto;
}



/* NAV LINKS */
.nav-link {
    font-weight: 500;
    color: #0c1e3c !important;
    margin-left: 14px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff6a00 !important;
}

/* Improve toggler visibility */
.custom-toggler {
    border: none;
    padding: 6px;
}

.custom-toggler .toggler-icon {
    width: 28px;
    height: 3px;
    background: #0c1e3c; /* dark visible color */
    margin: 5px 0;
    border-radius: 3px;
}

/* Force visibility in Bootstrap 4 */
.navbar-light .navbar-toggler {
    border-color: transparent !important;
}


/* SCROLL NAVBAR */
.scroll-navbar {
    background: white;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: top 0.4s ease;
}

.logo-space-small {
    font-size: 20px;
    font-weight: 700;
    color: #0c1e3c !important;
}

/* MOBILE MENU MODAL */
.mobile-menu-modal {
    background: #ffffff;
    height: 100vh;
    padding-top: 20px;
}

.close-btn {
    font-size: 30px;
    padding: 10px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 500;
    color: #0c1e3c;
    text-decoration: none;
}

.mobile-nav-links a:hover {
    color: #ff6a00;
}

.modal-fullscreen-sm-down {
    width: 100%;
    margin: 0;
}


/* Main area */
.slider-area2 {
    position: relative;
    overflow: hidden;
}

.slider-area2 .carousel-item {
    height: 80vh;
    min-height: 480px;
    position: relative;
}

/* Background image */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Color overlay */
.slider-area2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c1e3c;
    opacity: 0.55;
    z-index: 1;
}

/* Text content */
.slider-content {
    z-index: 2;
    bottom: 20%;
    text-align: center;
}

.slider-content h1,
.slider-content h2 {
    white-space: normal !important;
    word-break: normal !important;
    line-height: 1.3;
}

/* Button */
.slider-btn {
    display: inline-block;
    background: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #0c1e3c;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #f1f1f1;
}

/* ======================
   MEDIA QUERIES
====================== */

/* Desktop */
@media (min-width: 1200px) {
    .slider-content h1 { font-size: 55px; }
    .slider-content h2 { font-size: 28px; }
    .slider-content p  { font-size: 18px; }
}

/* Tablet */
@media (max-width: 991px) {
    .slider-content h1 { font-size: 40px; }
    .slider-content h2 { font-size: 24px; }
    .slider-content p  { font-size: 16px; }
}

/* Mobile */
@media (max-width: 600px) {
    .slider-area2 .carousel-item {
        height: 70vh;
    }

    .slider-content h1 { font-size: 28px; }
    .slider-content h2 { font-size: 18px; }
    .slider-content p  { font-size: 14px; }

    .slider-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}


/* Floating Call Button */
.float-call {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #163f86; /* brand color */
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 55px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.float-call:hover {
    transform: scale(1.1);
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 55px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .float-call, .float-whatsapp {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }
}




/* About Section */
.about-section {
  background: #f7f9fc;
}

.about-img-box {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.about-img {
  width: 100%;
  transition: 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

/* Title */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1e3c;
  margin-bottom: 15px;
}

/* Paragraph */
.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

/* Custom Button */
.read-btn {
  background: #0c1e3c;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-btn:hover {
  background: #ffffff;
  color: #0c1e3c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 16px;
  }
}


/* Cars Section */
.cars-section {
  background: #0c1e3c;
}

.cars-title {
  color: #ffcc00;
  font-weight: 700;
  font-size: 32px;
}

/* Car Box */
.car-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.car-box:hover {
  transform: translateY(-6px);
}

/* Car Image */
.car-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Names */
.car-name {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 700;
  color: #0c1e3c;
}

/* Bullet Points */
.car-points {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.car-points li {
  font-size: 16px;
  color: #444;
  margin-bottom: 6px;
}

/* WhatsApp Button */
.car-btn {
  display: inline-block;
  background: #0c1e3c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.car-btn:hover {
  background: #163f86;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .car-img {
    height: 150px;
  }
  .car-name {
    font-size: 20px;
  }
}



/* Services Section */
.services-section {
  background: #f5f8ff;
}

.services-title {
  color: #163f86;
  font-size: 32px;
  font-weight: 700;
}

/* Box */
.service-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* Image */
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Title */
.service-name {
  color: #163f86;
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* 12-word paragraph */
.service-text {
  color: #444;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Button */
.service-btn {
  display: inline-block;
  background: #163f86;
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: #fff;
  color: #163f86;
  border: 2px solid #163f86;
}

/* Responsive */
@media (max-width: 768px) {
  .service-img {
    height: 150px;
  }
  .service-name {
    font-size: 20px;
  }
}



/* Gallery Section */
.gallery-section {
  background: #ffffff;
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1e3c;
}

/* Image Box */
.gallery-img-box {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-img {
    height: 170px;
  }
}


.packages-section {
  background-color: #0c1e3c;
}

.package-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: 0.3s;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.package-btn {
  background: #ffffff;
  color: #1d0267;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
}

.package-btn:hover {
  background: #001eff;
  color: #fff;
}



.faq-section {
  background: #ffffff;
}

.faq-header {
  background: #163f86;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
}

.faq-header h5 {
  font-size: 17px;
  margin: 0;
}

.card {
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.card-body {
  background: #f8f9fa;
  font-size: 15px;
}

.card-header:hover {
  background: #0f2d61;
}



.footer-section {
  background: #0c1e3c;
  color: #ffffff;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #dce4f0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dce4f0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* WhatsApp Button */
.footer-wbtn {
  background: #25d366;
  color: #fff;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-wbtn:hover {
  background: #1fa857;
  text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #dce4f0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 20px;
  }
}



.page-banner {
  position: relative;
  width: 100%;
  height: 280px;
  background: url('../images/slider/sl3.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 30, 60, 0.7); /* #0c1e3c with opacity */
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.banner-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.breadcrumb {
  font-size: 16px;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #0035a0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 220px;
  }
  .banner-title {
    font-size: 32px;
  }
  .breadcrumb {
    font-size: 14px;
  }
}



.about-page {
  background: #f8f9fc;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1e3c;
}

.about-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Points */
.about-points {
  padding-left: 18px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.about-points li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0c1e3c;
  font-weight: 600;
}

/* Button */
.about-btn {
  background: #0c1e3c;
  color: #fff;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.about-btn:hover {
  background: #122b53;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 15px;
  }
}



.service-page {
  background: #f8f9fc;
}

.service-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1e3c;
}

/* Service Box */
.service-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* Image */
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Title */
.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c1e3c;
  margin-bottom: 12px;
}

/* Points */
.service-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.service-points li {
  font-size: 15px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

/* Button */
.service-btn {
  background: #0c1e3c;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 25px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: #122b53;
}

/* Responsive */
@media (max-width: 768px) {
  .service-img {
    height: 150px;
  }
  .service-title {
    font-size: 18px;
  }
}



.contact-section {
  background: #f8f9fc;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1e3c;
}

/* Cards */
.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-align: center;
}

.contact-card h4 {
  color: #0c1e3c;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card p, .contact-card a {
  font-size: 15px;
  color: #444;
}

/* Button */
.contact-btn {
  background: #0c1e3c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #122b53;
}

/* Responsive Fixes */
@media(max-width: 768px) {
  .contact-card {
    padding: 18px;
  }
}



/* packages /////////////// */

.package-page {
  background: #ffffff;
  padding: 60px 0;
}

.package-page h2 {
  color: #fff;
  font-size: 32px;
}

.package-box {
  background: #dae9f1;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.package-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.package-box img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.package-content {
  padding: 20px;
}

.package-content h4 {
  color: #163f86;
  font-size: 20px;
  font-weight: bold;
}

.package-content ul {
  margin: 0;
  padding-left: 18px;
}

.package-content ul li {
  color: #333;
  margin-bottom: 6px;
}

.package-btn {
  display: inline-block;
  margin-top: 10px;
  background: #163f86;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  transition: 0.3s;
}

.package-btn:hover {
  background: #0c1e3c;
  color: #fff !important;
}
