/* public/css/schedule-home-section.css */

/* General styles for the custom home section */
.sh-custom-home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    margin-top: 20px;
}

/* Flex container for content */
.sh-custom-home-section__content {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

/* Styles for the image */
.sh-custom-home-section__image {
    flex: 1 1 50%;
    padding: 10px;
}

/* Ensuring the image is responsive */
.sh-custom-home-section__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Styles for the text */
.sh-custom-home-section__text {
    flex: 1 1 50%;
    padding: 10px;
}

/* Heading styling */
.sh-custom-home-section__text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Paragraph styling */
.sh-custom-home-section__text p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Styling for the buttons */
.sh-custom-home-section__buttons {
    display: flex;
    gap: 10px;
}

/* Button styles */
.sh-custom-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.sh-custom-btn:hover {
    background-color: #0056b3;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .sh-custom-home-section__content {
        flex-direction: column;
        align-items: center;
    }

    .sh-custom-home-section__image, .sh-custom-home-section__text {
        flex: 1 1 100%;
    }

    .sh-custom-home-section__text h2 {
        text-align: center;
    }

    .sh-custom-home-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .sh-custom-btn {
        width: 100%;
        text-align: center;
    }
}

/* Styles for the reverse section */
.sh-custom-home-section--reverse .sh-custom-home-section__content {
    flex-direction: row-reverse;
}



/* schedule-home-section1 css styling-----schedule-home-section1 css styling---schedule-home-section1 css styling */
/* schedule-home-section1 css styling-----schedule-home-section1 css styling---schedule-home-section1 css styling */

/* public/css/schedule-alt-home-section.css */

/* General styles for the alternate home section */
.alt-home-section {
    display: block;
    padding: 30px;
    background-color: #f0f8ff;
    margin-top: 30px;
}

/* Flex container for content */
.alt-home-section__content {
    display: flex;
    max-width: 1100px;
    flex-direction: column;
    align-items: center;
}

/* Styles for the image */
.alt-home-section__image {
    width: 100%;
    padding: 15px;
}

/* Ensuring the image is responsive */
.alt-home-section__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Styles for the text */
.alt-home-section__text {
    padding: 20px;
    text-align: center;
}

/* Heading styling */
.alt-home-section__text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

/* Paragraph styling */
.alt-home-section__text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #666;
}

/* Styling for the buttons */
.alt-home-section__buttons {
    margin-top: 20px;
}

/* Button styles */
.alt-btn {
    display: inline-block;
    padding: 12px 25px;
    color: #fff;
    background-color: #28a745;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.alt-btn:hover {
    background-color: #218838;
}

/* Responsive styles for larger screens */
@media (min-width: 992px) {
    .alt-home-section__content {
        flex-direction: row;
        justify-content: space-between;
    }

    .alt-home-section__image {
        flex: 1 1 40%;
    }

    .alt-home-section__text {
        flex: 1 1 55%;
        padding-left: 40px;
        text-align: left;
    }
}

.btn{
    margin: 10px;
}

/* schedule-home-section1 css styling-----schedule-home-section1 css styling---schedule-home-section1 css styling */
/* schedule-home-section1 css styling-----schedule-home-section1 css styling---schedule-home-section1 css styling */

