﻿body {
    position: relative;
    
}


/* Section 1 */

#section1 {
    background-image: url('https://imagedelivery.net/x5o7Q4Fw-NpCgItFFopTxQ/e2077c48-3df0-4d90-3701-10fff3d27200/public');
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 50px;
}

.full-screen-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

    .full-screen-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

.section1-text {
    background-color: #0094ff;
    padding: 10px;
    border-radius: 15px;
}

/* Section 2 */

#section2 {
    min-height: 100vh;
    background-color: #fff;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 15px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.image-section {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

    .image-section img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.text-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Section 3 */

#section3 {
    background-image: url('https://imagedelivery.net/x5o7Q4Fw-NpCgItFFopTxQ/f443cbc0-ad43-47db-7318-3b991b161b00/public');
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    padding: 50px 0;
    margin-bottom: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #0094ff; /* Set your desired color here */
    background-size: 100%, 100%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.carousel-inner {
    width: 100%;
    max-width: 768px;
    height: auto;
}

    .carousel-inner .carousel-item {
        width: 100%;
        max-height: 768px; /* Set a fixed height for all carousel items */
        overflow: hidden; /* Hide any overflow to prevent stretching */
    }

        .carousel-inner .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px; /* Make carousel images rounded */
        }

/* Media Queries for Mobile View */
@media (max-width: 768px) {
    #section3 {
        padding: 20px 10px;
        margin-bottom: 30px;
        text-align: left;
    }

        #section3 img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
        }

        #section3 h1, #section3 h2, #section3 h3, #section3 p {
            font-size: 1.2em;
            line-height: 1.4;
        }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    .carousel-inner {
        max-width: 100%;
    }

        .carousel-inner .carousel-item {
            max-height: 400px;
        }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Section 4 */

#section4 {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    padding: 50px 0;
    margin-bottom: 50px;
}
