
    .search-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 15px 20px;
    }
    .search-item {
      flex: 1;
      min-width: 150px;
    }
    .search-label {
      font-weight: 600;
      font-size: 19px;
    }
    .search-value {
      color: #6c757d;
      font-size: 17px;
    }
    .search-btn {
      background: #0d1b4c;
      color: #fff;
      border-radius: 8px;
      padding: 12px 16px;
      border: none;
    }
    .search-btn:hover {
      background: #0b163d;
    }

    .bar{
      position: absolute;
      margin-top: -70px;
    }
    
        body {
            background-color: #f5f5f5;
        }
        
        .tour-image-container {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .tour-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .tour-image-container:hover .tour-image {
            transform: scale(1.1);
        }
        
        .featured-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(52, 58, 64, 0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .photo-count {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tour-image-container:hover .photo-count {
            opacity: 1;
        }
        
        .stars {
            color: #ffc107;
            font-size: 14px;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .participant-count {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #6c757d;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        .option-price-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #6c757d;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .explore-btn {
    background: #03294e;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.3s ease; /* Optional: smooth transition */
}

.explore-btn:hover {
    background-color: transparent; /* Changed from 'none' to 'transparent' */
    border: 2px solid #03294e; /* Added border with color */
    color: #03294e; /* Changed text color */
}
        .dropdown-menu {
            min-width: 800px;
            padding: 25px;
            border: 1px solid #dee2e6;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        .price-range {
            width: 100%;
            margin-top: 15px;
        }
        
        .grid-btn {
            /* border: 1px solid #dee2e6; */
            background: rgba(255, 255, 255, 0);
            padding: 6px 10px;
            margin-left: 2px;
            color: #6c757d;
            border: none;
            font-size: 25px;
        }
        
        .grid-btn.active {
            /* background: #007bff; */
            color:none;
            border: none;background-color: rgba(255, 255, 255, 0);

            /* border-color: #007bff; */
        }
        
        @media (max-width: 768px) {
            .dropdown-menu {
                min-width: 350px;
            }
        }
  

