  
    body {
      margin: 0;
      font-family: Arial, sans-serif;
       
    }

    
   .top-bar {
  background-color: #211E1B;
  color: #ffffff;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  padding: 0 15px;

  margin-top: 15px; /* add space above */
}

  .content {
      margin-top: 130px;  
    }
  
  
  
  
  
 
        .carousel-caption-custom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.5); /* semi-transparent background */
            padding: 20px;
            border-radius: 10px;
            color: #fff;
            text-align: center;
        }
 
 /* NAVBAR STYLING */
.navbar {
    padding: 10px 0;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand img {
    height: 80px;
    width: auto;
    transition: 0.3s;
}

/* Slight shrink on scroll */
.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    color: #ff6600 !important; /* Highlight color */
}

/* BOOK NOW Button */
.btn-primary {
    background-color: #c30010 !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #c30010 !important;
    transform: translateY(-2px);
}

/* Social Icon Styling */
.navbar .fa-facebook,
.navbar .fa-instagram,
.navbar .fa-whatsapp,
.navbar .fa-youtube {
    transition: 0.3s;
}

.navbar .fa-facebook:hover { color: #1877f2; }
.navbar .fa-instagram:hover { color: #e1306c; }
.navbar .fa-whatsapp:hover { color: #25d366; }
.navbar .fa-youtube:hover  { color: #ff0000; }

/* Shadow on scroll */
.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile nav link spacing */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        text-align: center;
        padding: 10px 0;
    }
}

 
 
 
 
.whatsapp-float {
    position: fixed;
    width: 60px; 
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.whatsapp-float i {
    margin-top: 15px;
}
.whatsapp-float:hover {
    background-color: #20b358;
}
 
    /* Page content so you can scroll and test */
    main { min-height: 200vh; padding: 40px; font-family: Arial, sans-serif; }

    /* Floating call button */
    .call-button {
      position: fixed;
      left: 5px;               /* bottom-left */
      bottom: 20px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgb(255,119,0);
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
      z-index: 99999;
      text-decoration: none;
      transition: transform .12s ease, box-shadow .12s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .call-button:hover,
    .call-button:focus { transform: scale(1.06); box-shadow: 0 10px 22px rgba(0,0,0,0.30); }

    .call-button svg { width: 28px; height: 28px; display: block; fill: #fff; }

    /* In case some parent has pointer-events turned off */
    .call-button, .call-button * { pointer-events: auto; }
   
    .marquee {
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      background: #fff;
      border: 1px solid #ccc;
    }

    .text-track {
      display: inline-block;
      padding-left: 100%;   /* start off-screen */
      animation: slide-left 12s linear infinite;
      font-size: 50px;
      font-weight: bold;
      /* color: #ffad32ff; text-danger */
    }

    @keyframes slide-left {
      0%   { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }
 
  



 
/* Ensure all carousel images are the same height */
.carousel-img {
    height: 500px; /* Change height as needed */
    object-fit: cover;
}

/* Caption overlay */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.4);  
    padding: 30px 20px;
    border-radius: 15px;
    max-width: 80%;
    animation: fadeIn 1s ease-in-out;
}

/* Caption text */
.carousel-caption-custom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(167, 24, 24, 0.7);
}

.carousel-caption-custom p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Button style */
.carousel-caption-custom .btn {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: transform 0.3s;
}

.carousel-caption-custom .btn:hover {
    transform: scale(1.1);
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -45%);}
    to { opacity: 1; transform: translate(-50%, -50%);}
}

/* Carousel controls style */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
}
 



 
.offer-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}
.offer-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
    height: 220px;
}

.card-footer {
    border-top: none;
}





/* Banner Styling */
.banner-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap; /* ✅ Keeps the text on one line */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* ✅ Responsive heading adjustments */
@media (max-width: 992px) {
    .banner-title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
        white-space: normal; /* ✅ Allow wrap only on very small screens */
        padding: 0 10px;
    }
}



     /*package*/

 
    .package-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 20px;
    }
    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .image-wrapper {
        height: 220px;
        overflow: hidden;
    }
    .image-wrapper img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }
    .image-wrapper img:hover {
        transform: scale(1.1);
    }

    .btn-gradient {
        background: linear-gradient(45deg, #2243ffff, #2600ffff);
        color: #fff;
        font-weight: 600;
        border-radius: 12px;
        /*transition: background 0.3s ease, transform 0.2s ease;*/
    }
    .btn-gradient:hover {
        /*background: linear-gradient(45deg, #e64a19, #f57c00);*/
        /*transform: scale(1.05);*/
    }
 

    @media (max-width: 768px) {
        .image-wrapper {
            height: 180px;
        }
    }

 
/* Blog card hover effect */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image wrapper with uniform height */
.blog-image-wrapper {
    height: 220px;
    overflow: hidden;
}
.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Gradient button */
.btn-gradient {
    /*background: linear-gradient(45deg, #2243ff, #2600ff);*/
    /*color: #fff;*/
    font-weight: 600;
    border-radius: 12px;
    /*transition: all 0.3s ease;*/
}
.btn-gradient:hover {
    /*background: linear-gradient(45deg, #e64a19, #f57c00);*/
    /*transform: scale(1.05);*/
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-image-wrapper {
        height: 180px;
    }
}
 
 
 /*home page*/
    .scroll-box {
        max-height: 320px;      /* Controls scroll height */
        overflow-y: auto;        /* Adds vertical scroll */
        background: #fafafa;
        border-radius: 8px;
        padding: 20px;
        border: 1px solid #eee;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .scroll-box h4 {
        color: #e65c4f;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .scroll-box ol {
        padding-left: 20px;
        margin: 0;
    }

    .scroll-box li {
        margin: 8px 0;
        font-size: 15px;
    }
 
 
 /*table*/
 .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pricing-table thead {
    background: #ff6b5a;
    color: #fff;
    text-align: left;
    font-size: 18px;
}

.pricing-table th, .pricing-table td {
    padding: 15px 18px;
    font-size: 16px;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.pricing-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.pricing-table td.price {
    font-weight: bold;
    color: #e65c4f;
    font-size: 17px;
}

.pricing-table tbody tr:hover {
    background: #ffece9;
    transition: 0.3s;
}
 

 

 