 .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;
    }

    .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/haridwar.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: 1200px;
    }

    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;
    }

    /** form control**/
    

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

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

  .form-control {
    height: 45px;
  }

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

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

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

.form-control:focus::placeholder {
  opacity: 0.5;
}
@media only screen and (max-width: 100px) {
  .slogan {
    font-size: 42px;
  }
}

/********** Template CSS **********/
:root {
  --primary: #ff5e14;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 100 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

.topbar-right {
  position: relative;
  background: #d44c4c;
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: #d44c4c;
}

.box_card_new img {
  border-radius: 10px;
  box-shadow: 1px 0px 1px 1px;
}

.box_card_name {
  background-color: black;
  border-radius: 10px;
  margin-top: -10px;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
}



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

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #c8242c;
  font-weight: bold;
}


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

/** mobile tab styling***/
@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}




/*** 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;
}

.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;
}
