 * {
     margin: 0px;
     padding: 0px;
 }
	
.div-whatsapp {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 100px;
    left: 20px;
    line-height: 40px;
    cursor: pointer;
    display: block;
    z-index: 1000;
    transition: transform 0.3s ease;
}

 a {
     text-decoration: none;
 }

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.7;
 }

 img.img-logo {
     width: 100%;
     max-width: 140px;
 }

 /* Base Header */
 .top-header {
     background-color: #f5a623;
     font-family: 'Poppins', sans-serif;
     padding: 8px 7px;
 }

 /* Container */
 .header-container {
     max-width: 1286px;
     margin: auto;
     padding: 0px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 /* Left Section */
 .header-contact {
     display: flex;
     gap: 16px;
 }

 .header-contact a {
     color: #000;
     font-size: 14px;
     text-decoration: none;
 }

 .header-contact i {
     margin-right: 6px;
 }

 #mail {
     border-right: 2px solid black;
     padding-right: 16px;
 }

 /* Right Section */
 .header-social {
     display: flex;
     gap: 12px;
 }

 .header-social a {
     color: #000;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 /* Mobile Responsive */
 @media (max-width: 600px) {
     .header-contact {
         flex-wrap: wrap;
         flex-direction: column;
         gap: 8px;
     }

     .header-contact a {
         font-size: 13px;
     }

     #mail {
         border-right: none;
     }
 }

 /* Navbar Styling */
 header {
     background: #f5a623;
 }

 header ul {
     list-style-type: none;
     margin: 0px;
     padding: 0px;
 }

 .header-div li {
     align-content: center;
 }

 li#nav-item1 {
     border-right: 2px solid white;
     padding-right: 20px;
     height: 50px;
 }

 #header-div-2 ul {
     gap: 20px;
 }

 #header-div-2 i {
     color: black;
 }

 .col-link {
     align-content: center;
 }

 .navbar {
     padding: 0px 0;
     transition: var(--transition);
     background: #ffffffa6;
     position: sticky;
     top: 0px;
     z-index: 11;
 }

 .navbar.scrolled {
     background: rgb(255 255 255 / 84%);
     backdrop-filter: blur(10px);
     padding: 0px 0px;
     box-shadow: var(--shadow-sm);
     z-index: 11;
 }

 .navbar-brand {
     font-family: var(--font-heading);
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff !important;
 }

 .navbar.scrolled .navbar-brand {
     color: white !important;
 }

 .nav-link {
     color: black !important;
     font-weight: 500;
     margin-left: 15px;
     position: relative;
 }

 .navbar.scrolled .nav-link {
     color: #000000 !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--accent-color);
     transition: var(--transition);
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 100%;
 }

 .navbar-toggler {
     border: none;
     outline: none;
 }

 .navbar-toggler .bar {
     display: block;
     width: 25px;
     height: 3px;
     margin: 5px 0;
     transition: 0.4s;
     background-color: white;
 }

 .navbar.scrolled .navbar-toggler .bar {
     background-color: var(--dark-text);
 }

 .hero {
     height: 85vh;
     background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 40%)), url(../images/destination/spiti-banner.jpg) center / cover no-repeat;
     color: #fff;
 }

 .col-content {
     align-content: center;
 }

 .hero h1 {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 700;
 }

 .hero p {
     max-width: 600px;
     font-size: 1.1rem;
 }

.main-location{
    background: #00000070;
    padding: 10px 15px;
    tesxt-align: center;
}

.main-location span{
    margin: 0px 10px;
}

 .btn-custom {
     background-color: #1498c5;
     color: white;
     border-radius: 50px;
     padding: 0.75rem 1.8rem;
     font-weight: 600;
 }

 .btn:hover {
     color: var(--bs-btn-hover-color);
     background-color: #e6951e;
     border: none;
 }

 .section-padding {
     padding: 5rem 0;
 }

 /* landing-form */

 .form-attention-strip {
     background: #f5a623;
     color: #fff;
     padding: 10px;
     border-radius: 6px;
     font-weight: 600;
     text-align: center;
     margin-bottom: 15px;
     font-size: 14px;
     letter-spacing: .4px;
     animation: softBlink 1.4s infinite;
 }

 @keyframes softBlink {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 .landing-form {
     background: #fff;
     padding: 25px;
     border-radius: 10px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
 }

 .form-title {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 5px;
 }

 .form-subtitle {
     font-size: 13px;
     color: #777;
     margin-bottom: 20px;
 }

 .landing-form .form-control,
 .landing-form .form-select {
     margin-bottom: 15px;
     height: 45px;
     font-size: 14px;
 }

 .landing-form button {
     height: 45px;
     font-weight: 600;
     background: #f5a623;
     border: none;
 }

 .landing-form button:hover {
     background: #e6951e;
 }


 /* package-card section */
 .spiti-card {
     border-radius: 16px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     height: fit-content;
 }

 .spiti-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 /* Image */
 .spiti-card-img {
     position: relative;
 }

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

 /* Badges */
 .duration-badge {
     position: absolute;
     top: 15px;
     left: 7px;
     background: rgb(20 152 197);
     color: #fff;
     padding: 7px 14px;
     border-radius: 8px;
     font-size: 13px;
     z-index: 1;
 }

 /* Badge */
 .season-badge {
     position: absolute;
     top: 15px;
     right: 0;
     background: #f5a623;
     color: #fff;
     padding: 6px 16px;
     font-size: 13px;
     font-weight: 500;
     z-index: 1;
     text-align: center;
     display: inline-block;
 }

 /* Top cut */
 .season-badge::before {
     content: "";
     position: absolute;
     left: -10px;
     top: 0;
     width: 18px;
     height: 50%;
     background: #f5a623;
     transform: skewX(45deg);
 }

 /* Bottom cut */
 .season-badge::after {
     content: "";
     position: absolute;
     left: -10px;
     bottom: 0;
     width: 18px;
     height: 50%;
     background: #f5a623;
     transform: skewX(-45deg);
 }

 .price-tag {
     position: absolute;
     bottom: 15px;
     right: 15px;
     background: rgb(0 0 0 / 67%);
     color: #fff;
     padding: 8px 14px;
     border-radius: 30px;
     font-weight: 600;
 }

 /* Body */
 .spiti-card-body {
     padding: 18px;
 }

 .rating {
     color: #f6a737;
     font-size: 14px;
 }

 .fa-location-dot {
     color: #29b409;
 }

 .rating span {
     color: #777;
     font-size: 13px;
 }

 .package-title {
     font-weight: 600;
     margin: 6px 0;
 }

 .package-desc {
     font-size: 14px;
     color: #555;
     margin-bottom: 10px;
 }

 /* Location pill */
 .location-pill {
     background: #eef7ee;
     color: rgb(57 163 74);
     padding: 4px 10px;
     font-size: 12px;
     border-radius: 20px;
     font-weight: 500;
 }

 .rating span {
     color: #777;
     font-size: 13px;
 }

 /* Mini itinerary */
 .mini-itinerary {
     background: #f8f9fa;
     border-radius: 12px;
     padding: 10px 12px;
     font-size: 13px;
     color: #444;
     line-height: 1.6;
 }

 .mini-itinerary div {
     position: relative;
 }

 .mini-itinerary div::before {
     content: "•";
     position: absolute;
     left: 0;
     color: #1498c5;
     font-weight: bold;
 }

 /* Buttons polish */
 .btn-dark {
     border-radius: 12px;
     font-weight: 500;
     padding: 10px;
     background: #f5a623;
     border: none;
 }

 /* Icons polish */
 .icon-btn img {
     width: 20px;
 }

 .icon-actions a {
     font-size: 14px;
 }

 /* Itinerary */
 .itinerary {
     padding: 0;
     margin: 0 0 15px;
     list-style: none;
     font-size: 13px;
     color: #444;
 }

 .itinerary li {
     margin-bottom: 4px;
 }

 /* Mini itinerary base */
 .mini-itinerary {
     background: #f8f9fa;
     border-radius: 12px;
     padding: 10px 12px;
     font-size: 13px;
     color: #444;
     line-height: 1.6;
 }

 /* Items */
 .itinerary-item {
     position: relative;
     padding-left: 12px;
 }

 .itinerary-item::before {
     content: "•";
     position: absolute;
     left: 0;
     color: #1498c5;
     font-weight: bold;
 }

 /* Hidden section */
 .itinerary-more {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease;
 }

 /* Toggle button */
 .view-toggle {
     background: none;
     border: none;
     color: #29b409;
     font-size: 13px;
     font-weight: 500;
     padding: 6px 0 0;
     cursor: pointer;
 }

 /* Expanded state */
 .mini-itinerary.expanded .itinerary-more {
     max-height: 500px;
     /* enough for content */
 }

 .package-price {
    color: #fa821f;
}

 /* Actions */
 .icon-actions {
     display: flex;
     justify-content: space-between;
     gap: 15px;
 }

 .icon-btn {
     width: 42px;
     height: 42px;
     border-radius: 30%;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 18px;
 }

 .div-icon {
     background: #1498c5;
     border-radius: 9px;
     padding: 6px 10px;
     align-content: center;
     color: white;
     transition: transform 0.5s;
 }

 .div-icon:hover {
     transform: translateY(5px)
 }

 /* Section spacing */
 .section-padding {
     padding: 80px 0;
 }

 /* why choose */
 #choose {
     padding: 70px 0px;
 }

 .feature-card {
     background: white;
     padding: 20px;
     border-radius: var(--radius);
     transition: var(--transition);
     height: 100%;
     text-align: center;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
     border-radius: 20px;
 }

 .feature-card:hover {
     background: white;
     transform: translateY(-5px);
 }

 .icon-wrapper {
     width: 80px;
     height: 80px;
     background: #1498c5c4;
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto;
     transition: transform 0.5s;
 }

 .feature-card:hover .icon-wrapper {
     background: rgb(245 166 35);
     color: rgb(255, 255, 255);
     transform: rotateY(180deg);
 }

 .text-muted {
     font-size: 15px;
 }

 .feature-card h4 {
     font-weight: 600;
     margin-bottom: 12px;
 }

 /* CTA Section */
 .cta-section {
     background-image: url("../images/destination/spiti-banner.jpg");
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     background-attachment: fixed;
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .jouney-overlay {
     background: #00000087;
     padding: 50px 0px;
 }

 /* Subtle Glow Effect */
 .cta-section::before {
     content: "";
     position: absolute;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(79, 172, 254, 0.25), transparent 70%);
     top: -150px;
     right: -150px;
 }

 /* Title */
 .cta-title {
     font-size: 2.8rem;
     font-weight: 800;
     line-height: 1.2;
 }

 /* Text */
 .cta-text {
     font-size: 1.05rem;
     max-width: 600px;
     opacity: 0.9;
 }

 /* Buttons Wrapper */
 .cta-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     justify-content: flex-end;
     flex-wrap: wrap;
 }

 /* Primary Button */
 .btn-cta-primary {
     background: #1498c5;
     color: white;
 }

 .btn-cta-primary:hover {
     border: 2px solid rgba(255, 255, 255, 0.6);
     color: #fff;
     padding: 14px 26px;
     font-weight: 600;
     background: transparent;
     transition: all 0.35s ease;
     text-decoration: none;
 }

 /* Call Button */
 .btn-cta-outline {
     border: 2px solid rgba(255, 255, 255, 0.6);
     color: #fff;
     padding: 14px 26px;
     border-radius: 30px;
     font-weight: 600;
     background: transparent;
     transition: all 0.35s ease;
     text-decoration: none;
 }

 .btn-cta-outline i {
     margin-right: 6px;
 }

 .btn-cta-outline:hover {
     background: #1498c5;
     color: white;
     transform: translateY(-3px);
 }

 /* Responsive */
 @media (max-width: 768px) {
     .cta-title {
         font-size: 2.2rem;
     }

     .cta-buttons {
         justify-content: center;
         margin-top: 10px;
     }
 }

 /* footer */
 footer {
     background: #0f1e2e;
     color: #cfd8e3;
 }

 /* popup form */
 /* Overlay */
 .popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.65);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
 }

 /* Popup Box */
 .popup-form {
     background: #fff;
     width: 100%;
     max-width: 380px;
     padding: 25px;
     border-radius: 12px;
     position: relative;
     animation: popupFade 0.3s ease;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
 }

 /* Close button */
 .close-popup {
     position: absolute;
     top: 12px;
     right: 12px;
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
 }

 /* Form */

 .modal-content.rounded-4.shadow-lg.border-0.position-relative.justify-content-center {
     width: 100%;
     max-width: 413PX;
 }

 .modal-body .form-control,
 .modal-body .form-select {
     width: 100%;
     height: 45px;
     margin-bottom: 15px;
     font-size: 14px;
 }

 .btn-submit {
     width: 100%;
     height: 45px;
     background: #f5a623;
     color: #fff;
     font-weight: 600;
     border: none;
     border-radius: 6px;
     cursor: pointer;
 }

 .btn-submit:hover {
     background: #e6951e;
 }

 /* Animation */
 @keyframes popupFade {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 /* Button example */
 .open-popup {
     padding: 12px 20px;
     background: #f5a623;
     color: #fff;
     border: none;
     border-radius: 6px;
     cursor: pointer;
 }

 /* ==thanks page== */
 .thankyou-box {
     background: #ffffff;
     padding: 40px 30px;
     max-width: 34%;
     width: 100%;
     text-align: center;
     border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
 }

 .thankyou-icon {
     width: 80px;
     height: 80px;
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 36px;
     margin: 0 auto 20px;
 }

 .thankyou-box h1 {
     color: #044f82;
     font-size: 28px;
     margin-bottom: 10px;
 }

 .thankyou-box p {
     color: #555;
     font-size: 15px;
     line-height: 1.6;
     margin-bottom: 25px;
 }

 .thankyou-box p strong {
     color: #044f82;
 }

 .btn-group {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn {
     padding: 12px 22px;
     font-size: 14px;
     font-weight: 500;
     border-radius: 6px;
     text-decoration: none;
     transition: all 0.3s ease;
     font-weight: 600;
 }

 .btn-primary {
     background: #f5a623;
     color: #fff;
     border: none;
 }

 .btn-primary:hover {
     background: #e58505;
 }

 .btn-outline {
     border: 2px solid #044f82;
     color: #044f82;
 }

 .btn-outline:hover {
     background: #044f82;
     color: #fff;
 }

 .home {
     margin-right: 12px;
 }

 @media (max-width: 480px) {
     .thankyou-box h1 {
         font-size: 24px;
     }
 }

 /* testimonial */
 /* testimonial */
 /* Section */
 .testimonial-section {
     padding: 90px 0;
     background: linear-gradient(135deg, #f4f7fb, #eaf0f7);
 }

 /* Header */
 .testimonial-title {
     font-size: 2.6rem;
     font-weight: 800;
 }

 .testimonial-subtitle {
     max-width: 600px;
     margin: auto;
     color: #666;
 }

 /* Slider Wrapper */
 .testimonial-slider-wrapper {
     position: relative;
     overflow: hidden;
 }

 /* Slider */
 .testimonial-slider {
     display: flex;
     gap: 20px;
     transition: transform 0.6s ease;
 }

 /* Card */
 .testimonial-card {
     flex: 0 0 50%;
     background: rgba(255, 255, 255, 0.75);
     backdrop-filter: blur(12px);
     border-radius: 22px;
     padding: 20px 35px;
     align-content: center;
 }

 /* Text */
 .testimonial-text {
     font-size: 1rem;
     line-height: 1.7;
     color: #444;
     margin-bottom: 25px;
 }

 /* User */
 .testimonial-user {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .testimonial-user img {
     width: 55px;
     height: 55px;
     border-radius: 50%;
 }

 .testimonial-user h5 {
     margin: 0;
     font-weight: 700;
 }

 .testimonial-user span {
     font-size: 0.85rem;
     color: #777;
 }

 /* Bottom Controls */
 .slider-controls {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 30px;
 }

 /* Reuse Button Style */
 .slider-btn {
     background: #fff;
     border: none;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 1.2rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
 }

 /* Hover Effect */
 .slider-btn:hover {
     background: #4facfe;
     color: #fff;
     transform: translateY(-3px);
 }

 /* Remove old absolute positioning */
 .prev-btn,
 .next-btn {
     position: static;
 }

 /* == footer== */
 .footer {
     background: #111;
     color: #ccc;
     padding: 60px 0;
 }

 .footer h5 {
     color: #fff;
     margin-bottom: 20px;
 }

 .footer a {
     color: #bbb;
     text-decoration: none;
 }

 .footer a:hover {
     color: #fff;
 }

 .footer-social a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .footer-social a:hover {
     transform: translateY(-4px);
 }

 .footer-social i {
     font-size: 18px;
 }

 .footer p {
     font-size: 13px;
     line-height: 1.7;
     color: #f9f9f9 !important;
 }

 .dropdown-links,
 .dropdown-links-two-col {
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.35s ease;
 }

 .dropdown-links.open,
 .dropdown-links-two-col.open {
     max-height: 500px;
     margin-left: 26px;
 }

 .dropdown-btn {
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: start;
 }

 .dropdown-btn i {
     transition: transform 0.25s ease;
     margin-right: 11px;
     margin-left: 11px;
 }

 .dropdown-links-two-col {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     margin-left: 0.75rem;
 }

 .dropdown-links-two-col ul {
     list-style: none;
     padding: 0;
     width: 45%;
     margin: 0;
 }

 .rotate {
     transform: rotate(180deg);
 }

 /* Cards We Accept */
 .card-icon {
     width: 60px;
     height: 48px;
     border-radius: 20%;
     object-fit: contain;
     background: #fff;
     padding: 10px;
     margin: 10px;
 }

 .approval-logo {
     margin: 10px 15px 0 0;
 }

 @media (max-width: 576px) {
     .card-icon {
         width: 50px;
         height: 50px;
     }

     .dropdown-links-two-col ul {
         width: 100%;
     }

     .approval-logo {
         width: 90px;
     }
 }

 .copyright {
     background: #0d0d0d;
     color: #aaa;
     padding: 15px 0;
     text-align: center;
     font-size: 14px;
     margin-top: 1px;
 }

 .company-logo {
     width: 120px;
     max-width: 100%;
     height: auto;
 }

 @media (max-width: 576px) {
     .company-logo {
         width: 90px;
     }
 }

 /* Cards */
 .card-icon {
     width: 100%;
     max-width: 68px;
     height: 51px;
     object-fit: contain;
     background: #fff;
     padding: 10px;
     border-radius: 10%;
 }

 /* Approval logos */
 .approval-logo {
     width: 100%;
     height: auto;
     object-fit: cover;
     max-width: 262px;
 }

 img.gt-logo {
     width: 100%;
     max-width: 100px;
 }

 .fotter-i {
     border: 1px solid #f5a623;
     color: white;
     padding: 7px 30px 7px 12px;
     border-radius: 5px;
     font-size: 22px;
     transition: transform 0.5s;
 }

 .fotter-i:hover {
     background: #f5a623;
     transform: rotateY(360deg);
 }

 footer .img-logo {
     background: white;
 }

 footer i {
     color: #f5a623;
 }

 footer .fa-location-dot {
     color: #f5a623;
 }

 /* Responsive adjustments */
 @media (max-width: 576px) {
     .card-icon {
         width: 50px;
         height: 40px;
     }

     .approval-logo {
         width: 60px;
     }
 }

 /* popup form */
 .modal-body {
     color: black;
 }

 #landingPopup h3 {
     background: #e09710;
     margin: 0px;
     color: white;
     padding: 20px;
     text-align: center;
 }

 .btn-book {
     background: #e09710;
     color: white;
 }

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

 .btn-book:hover {
     background: #71a90a;
     color: white;
 }

 .form-select {
     border: var(--bs-border-width) solid #e09710;
     border-radius: 10px;
 }

 /* Animations */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }