 body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        .bg-primary-custom {
            background-color: #0d6efd;
        }
        .text-primary-custom {
            color: #0d6efd;
        }
        /* Hero Slider & Form Section */
        .hero-section {
            position: relative;
        }
        .carousel-item {
            height: 85vh;
            min-height: 400px;
            background: no-repeat center center cubic-bezier(0.1, 0, 0, 1);
            background-size: cover;
        }
        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.55);
        }
        .hero-overlay-content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 5;
        }
        .lead-form-box {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            border-top: 5px solid #0d6efd;
        }
        /* Tour Cards */
        .tour-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .card-img-container {
            position: relative;
            height: 220px;
            background-color: #eaeaea;
        }
        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .badge-spiti {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #ffc107;
            color: #000;
            font-weight: 600;
        }
        /* Features/Stats */
        .stat-box {
            padding: 30px;
            border-radius: 10px;
            background: #f8f9fa;
            border-bottom: 4px solid #0d6efd;
        }
        .custom-navbar{padding-top:0px!important;}
        .custom-navbar img{min-height:80px;}
        .custom-text-muted{color: rgb(226 230 233 / 75%) !important;}


        /* Floating WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

/* Soft Pulse Animation (Aapki choice hai, design achha dikhta hai) */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
    opacity: 0.7;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile responsive ke liye adjust (taaki screen se bahar na jaye) */
@media (max-width: 767px) {
      .carousel-item::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0);
        }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .carousel-item { height: auto; min-height: 350px; }
            .hero-overlay-content { position: relative; top: 0; transform: none; padding: 40px 0; background: #111; }
            .lead-form-box { margin-top: 30px; }
        }