 .safari-packages-row {
                                  display: grid;
                                  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                                  gap: 25px;
                                  max-width: 1200px;
                                  margin: 0 auto;
                                  padding: 20px;
                                }
                                
                                /* Individual Package Card */
                                .safari-package-card {
                                  border-radius: 7px;
                                  border:1px dashed var(--bd-theme-1);
                                  overflow: hidden;
                                  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                                  background: white;
                                  transition: transform 0.3s;
                                }
                                
                                .safari-package-card:hover {
                                  transform: translateY(-5px);
                                }
                                
                                /* Image with Title Overlay */
                                .safari-card-image {
                                  position: relative;
                                  height: 200px;
                                }
                                
                                .safari-card-image img {
                                  width: 100%;
                                  height: 100%;
                                  object-fit: cover;
                                }
                                
                                .safari-card-image h3 {
                                  position: absolute;
                                  bottom: 0;
                                  left: 0;
                                  right: 0;
                                  margin: 0;
                                  padding: 15px;
                                  color: white;
                                  font-size: 1.3rem;
                                  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
                                  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
                                }
                                
                                .safari-card-image h3 span {
                                  display: block;
                                  font-size: 1rem;
                                  font-weight: normal;
                                  margin-top: 5px;
                                }
                                
                                /* Content Area */
                                .safari-card-content {
                                  padding: 20px;
                                }
                                
                                .safari-card-content p {
                                  margin: 0 0 20px;
                                  color: #555;
                                  font-size: 0.95rem;
                                  line-height: 1.5;
                                  min-height: 60px;
                                }
                                
                                /* Footer with Price + Button */
                                .safari-card-footer {
                                  display: flex;
                                  justify-content: space-between;
                                  align-items: center;
                                }
                                
                                .safari-price {
                                  font-weight: bold;
                                  font-size: 0.9rem;
                                  color: #e67e22;
                                }
                                
                                .safari-book-btn {
                                  padding: 7px 20px;
                                  border:2px solid #e67e22;
                                  color: #e67e22;
                                  border-radius: 15px;
                                  text-decoration: none;
                                  font-weight: bold;
                                  transition: background 0.3s;
                                  text-align:center;
                                }
                                
                                .safari-book-btn:hover {
                                  background: #e67e22;
                                  color:white;
                                }
                                
                                /* Mobile Responsiveness */
                                @media (max-width: 768px) {
                                  .safari-packages-row {
                                    grid-template-columns: 1fr;
                                    max-width: 400px;
                                  }
                                  
                                  .safari-card-content p {
                                    min-height: auto;
                                  }
                                }
                                
/*=========================search box=========================*/
 .search-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-input-wrapper input {
            width: 100%;
            padding: 14px 50px 14px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 16px;
            background: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .search-input-wrapper input:focus {
            outline: none;
            border-color: #b36014;
            box-shadow: 0 4px 12px rgba(179, 96, 20, 0.15);
            background: #fff;
        }
        .search-input-wrapper input::placeholder {
            color: #999;
            font-weight: 400;
        }
        .search-input-wrapper .search-icon {
            position: absolute;
            right: 20px;
            color: #b36014;
            font-size: 18px;
            pointer-events: none;
        }
        .search-input-wrapper .clear-search {
            position: absolute;
            right: 50px;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 20px;
            width: 24px;
            height: 24px;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
        }
        .search-input-wrapper .clear-search:hover {
            color: #b36014;
            background: rgba(179, 96, 20, 0.1);
        }
        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-style: italic;
        }
        .no-results i {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 15px;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .search-input-wrapper {
                max-width: 100%;
                margin: 0 15px;
            }
            .search-input-wrapper input {
                padding: 12px 45px 12px 18px;
                font-size: 15px;
            }
            .search-input-wrapper .search-icon {
                right: 18px;
                font-size: 16px;
            }
            .search-input-wrapper .clear-search {
                right: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .search-input-wrapper input {
                padding: 11px 42px 11px 16px;
                font-size: 14px;
            }
            .search-input-wrapper .search-icon {
                right: 16px;
                font-size: 15px;
            }
            .search-input-wrapper .clear-search {
                right: 42px;
                font-size: 16px;
            }
        }
/*=========================search box=========================*/