
#map {
    height: 600px;
    width: 100%;
   
}


.search-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #93c020;
    position: relative;
    padding: 20px;
}

.typing-effect {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #343a40;
    height: 30px;
    position: relative;
}

.typing-effect::after {
    content: '|';
    /* Blinking cursor */
    position: absolute;
    right: -5px;
    animation: blink 0.7s infinite;
    color: #343a40;
    /* Same color as the text */
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 30px;
    background-color: #fff;
    padding: 10px 20px;
    width: 100%;
    max-width: 800px; /* Limit the max width for larger screens */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding: 5px 5px;
}

.search-box button {
    background-color: #93c020;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 10px;
    cursor: pointer;
}

.search-box button:hover {
    background-color: #218838;
}

.search-box input::placeholder {
    color: #6c757d;
}

.suggestions {
    color: #b0b0b0;
    text-align: center;
    margin-top: 10px;
}

.dog-image {
    position: absolute;
    bottom: 0;
    right: 10%;
}

.dog-image img {
    width: 150px;
    height: auto;
    border-radius: 50%;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .search-box {
        width: 100%;
        padding: 10px;
    }

    .search-box button {
        padding: 8px 15px;
    }

    .typing-effect {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .search-box {
        flex-direction: row;
        align-items: center; /* Center all items vertically */
    }

    .search-box i {
        font-size: 1.2rem; /* Adjust icon size for mobile */
        margin-right: 10px; /* Space between icon and input */
        display: flex;
        align-items: center; /* Ensure icon is centered vertically */
        height: 100%; /* Match the height of the input */
    }

    .search-box input {
        flex-grow: 1; /* Allow input to take available space */
        padding: 10px; /* Adjust padding to ensure proper spacing */
        margin: 0; /* Remove any default margins */
        height: auto; /* Ensure the input height is adaptive */
    }

    .search-box button {
        padding: 10px 15px;
        margin-left: 5px; /* Adjust to ensure proper spacing */
    }
}


.popular-searches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /* Small gap between squares */
    margin-top: 20px;
}

.search-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 120px;
    /* Fixed height */
    width: 120px;
    /* Fixed width */
    flex: 1 1 120px;
    /* Flexbox properties to allow wrapping */
    max-width: 120px;
    /* Ensure the squares stay the same size */
}

.search-item i {
    color: #93c020;
    margin-bottom: 10px;
}

.search-item p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #343a40;
}

.search-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .search-item {
        height: 100px;
        /* Smaller squares on mobile */
        width: 100px;
        max-width: 100px;
        padding: 15px;
    }

    .search-item p {
        font-size: 0.8rem;
    }
}


.review-carousel {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.carousel-item {
    padding: 20px;
}

.review-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

.reviewer-name {
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    padding: 10px;
    border-radius: 50%;
}

.offer-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.offer-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Override Bootstrap btn-success background color */
.btn-success {
    background-color: #93c020 !important;
    border-color:  #93c020 !important;
}

.btn-green {
color:#93c020 !important;
}

@media (max-width: 768px) {
    #map {
        height: 400px; /* Adjust the height for smaller screens if needed */
    }
}

.suggestions-box {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e0e0e0; /* Match the border with other elements */
    background-color: #ffffff; /* Same background as the search box */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Consistent with .search-box and .search-item */
    position: absolute;
    width: 100%; /* Adjust width to match the input field */
    max-height: 200px; /* Limit height for better usability */
    overflow-y: auto; /* Enable scroll if there are too many suggestions */
    z-index: 1000;
    border-radius: 0 0 10px 10px; /* Rounded corners for the bottom of the box */
    top: 100%; /* Position the dropdown just below the search box */
    left: 0; /* Align with the left edge of the search box */
    display: none; /* Initially hidden */
}


.suggestions-box {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e0e0e0; /* Match the border with other elements */
    background-color: #ffffff; /* Same background as the search box */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Consistent with .search-box and .search-item */
    position: absolute;
    width: calc(100% - 40px); /* Ensure the dropdown is the same width as the input */
    max-height: 200px; /* Limit height for better usability */
    overflow-y: auto; /* Enable scroll if there are too many suggestions */
    z-index: 1000;
    border-radius: 0 0 10px 10px; /* Rounded corners for the bottom of the box */
    top: calc(100% + 5px); /* Position the dropdown just below the search box */
    left: 20px; /* Align with the left edge of the search box */
    display: none; /* Initially hidden */
}

.suggestions-box.show {
    display: block; /* Show the suggestions box when there are suggestions */
}


.suggestions-box li {
    padding: 10px 20px; /* Consistent padding with .search-box */
    cursor: pointer;
    color: #343a40; /* Match the text color used elsewhere */
    font-size: 1rem; /* Ensure the text size is readable */
}

.suggestions-box li:hover {
    background-color: #f8f9fa; /* Subtle hover effect similar to your review-carousel */
    color: #93c020; /* Highlight text with your primary color */
    font-weight: bold; /* Make the hovered item stand out */
}

#counters {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.counter {
    margin-bottom: 30px;
}

.counter-number {
    font-size: 48px;
    font-weight: bold;
    color: #93c020;
    margin: 0;
}

.counter-label {
    font-size: 18px;
    color: #6c757d;
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .counter-number {
        font-size: 36px;
    }
}
