*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.top-bar {
    background-color: #222;
    padding: 5px 0;
    height: 3.5vh;
}
.top-bar .social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}
.navbar-custom {
    background-color: var(--bs-danger);
    padding: 10px 0;
    height: 7.5vh;
}
.navbar-custom .navbar-brand img {
    height: 50px;
}
.navbar-custom .nav-link {
    color: #fff !important;
}
.search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
}
.main-slider-img{
    height: 89vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-slider .owl-nav{
    /* width: 25% !important; */
    position: absolute !important;
    width: 100%;
    /* right: 10px !important; */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    /* gap: 2rem !important; */
    bottom: 50%;
}

.main-slider i{
    background-color: rgba(34, 34, 34, 0.8);
    color: #fff;
    font-weight: bold;
    padding: 50px 10px;
    transition: all ease 0.2s;
}
.main-slider i:hover{
    transform: scale(1.2);
    margin: 0px 5px;
}
.meet-ask-outer {
    background-color: #fff;
}
.section-full {
    position: relative;
}
.meet-ask-row {
    margin-top: -50px;
    position: relative;
}
.p-tb30 {
    padding-bottom: 30px;
    padding-top: 30px;
}
.meet-ask-row > .row {
    position: relative;
    z-index: 2;
    display: table;

}
.meet-ask-row:after {
    content: "";
    width: 1920px; /* Default width for larger screens */
    height: 100%;
    border-right: 7px solid #2b3036;
    display: block;
    position: absolute;
    right: -60px;
    top: 0;
    z-index: 1;
    -moz-transform: skewX(35deg);
    -webkit-transform: skewX(35deg);
    -o-transform: skewX(35deg);
    -ms-transform: skewX(35deg);
    transform: skewX(35deg);
    box-shadow: 0 0 12px -5px #000;
    -webkit-box-shadow: 0 0 12px -5px #000;
    background-color: var(--bs-danger);
    background-image: url(../images/meet-ask-row.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .meet-ask-row:after {
        width: 100%; /* Full width on smaller screens */
        right: 0; /* Align to the right */
        border-right: none; /* Remove border for smaller screens */
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
        box-shadow:none;
        -webkit-box-shadow: none;
        background-image: none;
    }
}
.book-appointment-modal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.book-appointment-modal .steps-body::-webkit-scrollbar {
    width: 6px;
}

.book-appointment-modal .steps-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.book-appointment-modal .steps-body::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 3px;
}

.book-appointment-modal .steps-body::-webkit-scrollbar-thumb:hover {
    background: #bb2d3b;
}
.book-appointment-modal .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0.5;
    border: 2px solid rgba(34, 34, 34, 0.8);
}
.book-appointment-modal .steps.active .step-circle {
    border-color: var(--bs-danger);
    opacity: 1;
}
.book-appointment-modal .steps.active .progress-bar {
    border-style: solid;
    opacity: 1;
}
.book-appointment-modal .progress-bar {
    width: 60px;
    height: 0px;
    border: 1px solid var(--bs-danger);
    opacity: 0.5;
    border-style: dashed;
}
@media (max-width: 768px) {
    .book-appointment-modal .step-circle {
        width: 30px; /* Adjusted width for small screens */
        height: 30px; /* Adjusted height for small screens */
    }
    .book-appointment-modal .progress-bar {
        width: 40px;
    }
}
.book-appointment-modal #map {
    height: 100%;
    width: 100%;
}
.location-select{
    transition: all ease 0.2s;
    cursor: pointer;
}
.location-select.selected{
    background-color: var(--bs-danger);
}
.location-select.selected *{
    color: #fff;
}
.service-card {
    cursor: pointer;
}
.service-card.selected{
    background-color: var(--bs-danger);
}
.service-card.selected *{
    color: #fff;
}
/* Calendar styles */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}
.calendar div {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.day-header {
    font-weight: bold;
    background: #f0f0f0;
}
.disabled {
    color: #ccc;
    pointer-events: none;
}
.highlight {
    background: var(--bs-danger) !important;
    color: white;
}
.today {
    border: 2px solid var(--bs-danger);
    border-radius: 50%;
    font-weight: bold;
}
.book-appointment-modal #timeSlots{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.available-slot{
    cursor: pointer;
}
.available-slot.selected{
    background-color: var(--bs-danger);
    color: #fff;
}
.available-slot.selected *{
    color: #fff;
}
.loader-overlay{
    height: 100%;
    width: 100%;
    display: flex;
    z-index: 999;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
}
.personal-details-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.personal-details-form .form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.testimonials-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.testimonials-carousel .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #dc3545 !important;
    color: white !important;
}

.testimonials-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.testimonials-carousel .owl-nav button.owl-next {
    right: -50px;
}

.testimonials-carousel .owl-dots {
    margin-top: 20px;
}

.testimonials-carousel .owl-dot span {
    background: #dee2e6 !important;
}

.testimonials-carousel .owl-dot.active span {
    background: #dc3545 !important;
}

.testimonial-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.error-toast-popup {
    background-color: #fff !important;
    color: #dc3545 !important;
    border-left: 4px solid #dc3545 !important;
}

.error-toast-close-button {
    color: #dc3545 !important;
}

.swal2-icon.swal2-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.services-section .card, .services-section .card i {
    transition: .25s all ease-in-out;
    cursor: default;
}

.services-section .card:hover {
    background-color: #dc3545 !important;
    color: #fff !important;
}

.services-section .card:hover i {
    color: #fff !important;
}

.why-choose-us .feature-box {
    transition: .25s all ease-in-out;
    cursor: default;
}

.why-choose-us .feature-box:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonials-carousel .owl-nav button.owl-prev {
        left: 0; /* Adjusted for small screens */
    }
    .testimonials-carousel .owl-nav button.owl-next {
        right: 0; /* Adjusted for small screens */
    }
}

#home-map {
    height: 400px;
    width: 100%;
}



.blog-container .content{
    overflow: hidden;
}

.blog-container .content img{
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: cover;
}