
    /* Fixed Floating Buttons CSS */

    /* Popular Destinations Section */
    .destinations-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 60px 0;
    }

    .destination-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .destination-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border-left: 4px solid #157ff5;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .destination-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .destination-icon {
        width: 50px;
        height: 50px;
        background: #157ff5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .destination-icon i {
        color: white;
        font-size: 20px;
    }

    .destination-info h4 {
        margin: 0;
        color: #333;
        font-size: 16px;
        font-weight: 600;
    }

    .destination-info p {
        margin: 5px 0 0 0;
        color: #666;
        font-size: 14px;
    }

    .section-subtitle {
        text-align: center;
        color: #666;
        font-size: 18px;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Rest of the CSS styles */
    .headings {
        font-weight: 700;
        color: #157ff5;
        margin-bottom: 30px;
    }

    .price-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .price-table th,
    .price-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
    }

    .price-table th {
        background-color: #157ff5;
        color: white;
        font-weight: 600;
    }

    .price-table tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    .price-table tr:hover {
        background-color: #e9ecef;
    }

    .btn-book {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-book:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    .vehicle-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
        border: 1px solid #e9ecef;
    }

    .vehicle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .vehicle-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .vehicle-card-body {
        padding: 20px;
        background: white;
    }

    .page_header_three {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/packages/shimla.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .feature-item:hover {
        background-color: #f8f9fa;
    }

    .feature-icon {
        background-color: #157ff5;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-size: 20px;
    }

    .highlight-box {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin: 25px 0;
        border-left: 4px solid #157ff5;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .highlight-box h3 {
        color: #157ff5;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .highlight-box ul {
        margin: 0;
        padding-left: 20px;
    }

    .highlight-box li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .para {
        line-height: 1.7;
        color: #555;
        font-size: 16px;
    }

    .display-3 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 768px) {
        .display-3 {
            font-size: 2.5rem;
        }

        .page_header_three {
            background-attachment: scroll;
        }

        .feature-item {
            flex-direction: column;
            text-align: center;
        }

        .feature-icon {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .destination-grid {
            grid-template-columns: 1fr;
        }

        .destination-card {
            padding: 15px;
        }
    }

    .back-to-top {
        position: fixed;
        bottom: 100px;
        right: 30px;
        z-index: 99;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #157ff5;
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .back-to-top:hover {
        background: #1269c4;
        transform: translateY(-3px);
    }

    .wow {
        visibility: hidden;
    }

    .animated {
        animation-duration: 1s;
        animation-fill-mode: both;
    }

    .slideInRight {
        animation-name: slideInRight;
    }

    @keyframes slideInRight {
        from {
            transform: translate3d(100%, 0, 0);
            visibility: visible;
        }

        to {
            transform: translate3d(0, 0, 0);
        }
    }

    .fadeIn {
        animation-name: fadeIn;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 0;
    }

    .breadcrumb-item.active {
        color: rgba(255, 255, 255, 0.8);
    }

    .container {
        max-width: 900px;
    }

    h2,
    h3,
    h4 {
        color: #333;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 2rem;
        font-weight: 700;
    }

    h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    ul {
        padding-left: 20px;
    }

    li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .text-center {
        text-align: center;
    }

    .mt-2 {
        margin-top: 0.5rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    .mt-5 {
        margin-top: 3rem;
    }

    .mb-3 {
        margin-bottom: 1rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mb-5 {
        margin-bottom: 3rem;
    }

    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
:root {
  --primary: #ff5e14;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn_hover:hover {
  background: #2863a7 !important;
  color: white !important;
}

.nav-item {
  flex: 0 0 auto;
}

.Whatsapp_btn {
  position: fixed;
  bottom: 0px;
  left: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Whatsapp_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #00833b;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 206, 0, 0.795);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.Phone_btn {
  position: fixed;
  bottom: 0px;
  right: 20px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.Phone_icon {
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #0066ff;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
}


        /* Enquiry Form Styles */
        .enquiry-form {
            background: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 5;
        }

        .enquiry-form label {
            font-weight: 600;
            color: #555;
        }

        .enquiry-form input[type="text"],
        .enquiry-form input[type="email"],
        .enquiry-form input[type="tel"] {
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            background-color: #f8f9fa;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .enquiry-form input:focus {
            outline: none;
            background-color: #fff;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        }

        .enquiry-form button {
            background: #dc3545;
            border: none;
            border-radius: 50px;
            color: #fff;
            padding: 10px 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .enquiry-form button:hover {
            background: #2863a7;
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .carousel-caption {
                width: 90%;
                padding: 15px;
            }

            .enquiry-form {
                padding: 20px;
            }
        }
        

  .enquiry-form {
display: block !important;

            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            border-radius: 30px;
            padding: 10px 15px;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 0px;
        }

        .btn-danger {
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
        }

        /* Extra styling for alignment and padding */
        .form-group {
            margin-bottom: 15px;
        }

        /* For desktop view */
        @media (min-width: 992px) {
            .enquiry-form .row {
                display: flex;
                align-items: center;
            }

            .form-control {
                height: 45px;
            }

            .form-group {
                margin-right: 10px;
            }

            .form-group:nth-child(4) {
                margin-right: 0;
            }
        }
 @media only screen and (max-width: 100px) {
            .slogan {
                font-size: 42px;
            }
        }

        .form-control:focus {
            border-color: #16f0b2;
            box-shadow: 0 0 8px rgba(22, 240, 178, 1);
        }

        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #004085;
        }

        .form-control::placeholder {
            color: #6c757d;
            opacity: 1;
        }

        .form-control:focus::placeholder {
            opacity: 0.5;
        }
        
.form-control {
    border-radius: 1.25rem;
    border-color: #ced4da;
    box-shadow: none;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 75px;
  display: flex;
  align-items: center;
}

/* Active link styling */
.nav-item.nav-link.active {
  color: #ff6b4a;
  font-weight: bold;
}

/* Base nav link */
.navbar .navbar-nav .nav-link {
  margin-right: 13px;
  padding: 20px 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: color 0.3s ease;
}

/* Hover + Active state */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #c8242c;
  font-weight: bold;
}

/* Dropdown arrow (Font Awesome down icon) */
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

/* Mobile nav style */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }

  /* Ensure nested menus work on mobile */
  .dropdown-menu.show .dropdown-menu {
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: block;
    position: relative;
  }
}

/* Desktop dropdown behavior */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover > .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}