﻿
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    flex: 1 1 calc(25% - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 240px;
}

    .feature-box img {
        width: 60px;
        height: auto;
        margin-bottom: 15px;
    }

    .feature-box b {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
    }

@media (max-width: 768px) {
    .feature-box {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .feature-box {
        flex: 1 1 100%;
    }
}





.mySlides {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Flex container for image and text */
.slide-content {
    display: flex;
    flex-wrap: wrap;
    width: auto;
}

/* Column for the image */
.col-left {
    flex: 1;
    max-width: 50%; /* 50% width on desktop */
    text-align: center;
}

    .col-left img {
        width: 400px;
        height: 400px;
    }

/* Column for the text */
.col-right {
    flex: 1;
    max-width: 50%; /* 50% width on desktop */
    padding: 20px;
}

    .col-right h4 {
        margin-bottom: 10px;
    }

.text {
    font-size: 18px !important;
    line-height: 1.6;
}

/* Styling for the navigation dots */
.text-align {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .dot.active, .dot:hover {
        background-color: #717171;
    }

/* Prev/Next buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: black;
    color: white;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.next {
    right: 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .slide-content {
        flex-direction: column; /* Stack the columns vertically on smaller screens */
    }

    .col-left, .col-right {
        max-width: 100%; /* Take up full width */
        padding: 10px;
    }

    .prev, .next {
        position: absolute;
        top: 50%;
    }
}




/* Style for the slider container */
.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Style for individual slides */
.slider-slide {
    display: none;
    width: 100%;
    text-align: center;
}

    /* Style for images in slides */
    .slider-slide img {
        max-width: 100%;
        height: auto;
    }

    /* Style for text in slides */
    .slider-slide p {
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
    }


