/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Carousel Styles */
.carousel {
    padding: 50px 0;
}

.carousel-inner {
    width: 100%;
    margin: 0 auto; /* Center the carousel */
}

.carousel-slide {
    display: flex;
    align-items: center;
}

.left-content {
    width: 80%;
    padding-right: 20px;
}

.highlight {
    color: #FF9A4F;
}

.search-box {
    margin-top: 20px;
    border: 1px solid #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.filter-text {
    border: none;
    padding: 10px;
    flex: 1;
}

.search-icon {
    background-color: #FF8BAF;
    border: none;
    padding: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}

/* Get Help Today Section Styles */
.get-help {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.concern-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.concern-btn {
    background-color: #fff;
    border: 2px solid #FF9A4F;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
}

/* Meet Professionals Section Styles */
.meet-professionals {
    padding: 50px 0;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {    
    border: 2px solid #FF9A4F;
    border-radius: 10px;
    overflow: hidden;
}

.top-content {
    display: flex;
    align-items: center;
    padding: 20px;
}

.image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-right: 2px solid #FF9A4F;
    padding-right: 20px;
}

.details {
    flex: 1;
}

.bottom-content {
    background-color: #fff;
    color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-now-btn {
    background-color: #fff;
    border: 2px solid #FF9A4F;
    color: #000;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
}

.txt-p{
    font-size: 12px;
}

/* Button Section Styles */
.button-section {
    text-align: center;
    padding: 50px 0;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .nav-right {
        margin-left: auto;
    }
}
