/* Container for the moving background */
.color-slider {
    width: 100%;
    height: 20px;
    overflow: hidden;
    position: relative;
    top: 80px;
}

@media screen and (min-width:1550px) {
    .color-slider {
        width: 100%;
        height: 20px;
        overflow: hidden;
        position: relative;
        top: 100px;
    }
}

@media screen and (max-width:768px) {
    .color-slider {
        top: 50px;
    }
}

/* The actual animated background */
.color-slider::before {
    content: "";
    position: absolute;
    width: 300%;
    /* Extend width for a seamless transition */
    height: 100%;
    background: repeating-linear-gradient(to right,
            #428bca 0px, #428bca 250px,
            /* Blue */
            #f4c2c2 250px, #f4c2c2 500px,
            /* Pink */
            #fdb833 500px, #fdb833 750px,
            /* Yellow */
            #d4af37 750px, #d4af37 1000px,
            /* Gold */
            #b68e6a 1000px, #b68e6a 1250px,
            /* Brown */
            #d4af37 1250px, #d4af37 1500px,
            /* Gold */
            #4682b4 1500px, #4682b4 1750px
            /* Steel Blue */
        );
    animation: slideColors 10s linear infinite;
}

/* Keyframes for the continuous movement */
@keyframes slideColors {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


.section1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    margin-top: 6%;
    width: 95%;
    padding: 2rem;
}

.about-text {
    width: 50%;
}

.about-title {
    color: #1A3E9D;
    /* Blue color */
    font-size: 30px;
    font-weight: bold;
}

.about-heading {
    font-size: 30px;
    font-weight: bold;
    color: #222;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.about-images {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-img1 {
    position: relative;
    z-index: 2;
}

.about-img2 {
    position: absolute;
    z-index: 1;
    top: -30px;
    right: -10px;
    width: 300px;
    height: 300px;
    opacity: 0.9;
}

@media screen and (min-width:1550px) {
    .about-img2 {
        top: -40px;
        right: 50px;
    }
}

/* mobile view  */
@media (max-width: 768px) {
    .section1 {
        flex-direction: column;
        padding: 2%;

    }

    .about-title {
        margin-top: 8%;
    }


    .about-text {
        width: 100%;
        text-align: center;
    }

    .about-images {
        flex-direction: column;
        margin-top: 20px;
        justify-content: center;
        align-items: center;
        width: 70%;
        margin: auto;
        margin-top: 30px;
    }

    .about-img1 {
        width: 100%;
        margin-left: -100px;
    }


    .about-img2 {
        width: 100%;
        margin-right: -50px;
        margin-top: -10px;

    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }
}


/* section2 */
.section-container {
    display: flex;
    align-items: center;
    background: #f5f0ed;
    width: 92%;
    margin: auto;
    gap: 4%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.content-container {
    flex: 1;
    /* padding: 20px; */
}

.content-container h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-container p {
    color: #001f99;
    font-weight: bold;
    font-size: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: bold;
}

.feature-text p {
    color: #001f99;
    font-size: 14px;
}

/* mobiel vieww for section2 */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 2rem;
    }

    .image-container {
        width: 100%;
    }

    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .content-container {
        width: 100%;
        text-align: center;
    }

    .content-container h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .content-container p {
        font-size: 1.2rem;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .feature img {
        width: 60px;
        height: 60px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 12px;
    }
}



/* section3 */
.beliefs-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-image: url('../images/paints-bg.svg');
    background-position: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding-top: 4%;
    padding-left: 4%;
    padding-right: 4%;
}

.believes {
    color: #1E1E1E;
}

.para-belive {
    width: 70%;
}

.highlight {
    color: #2F2FD3;
    font-weight: bold;
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%;
    ;
}

.offer-list li::before {
    content: '\2713';
    color: red;
    font-size: 25px;
    margin-right: 10px;
    margin-top: -7px;
}

/* mobile view for section4 */
@media (max-width: 768px) {
    .beliefs-section {
        flex-direction: column;
        padding: 1.5rem;
    }

    .believes {
        font-size: 1.5rem;
        text-align: center;
    }

    h3 {
        text-align: center;
    }

    .para-belive {
        width: 100%;
        font-size: 1rem;
        text-align: center;
    }

    .highlight {
        font-size: 1.2rem;
        text-align: center;
    }

    .offer-list {
        padding: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .offer-list li {
        font-size: 16px;
        justify-content: center;
        margin-bottom: 8px;
    }

    .offer-list li::before {
        font-size: 18px;
        margin-right: 5px;
    }
}

/* unlock */
.unlock-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 2%;
}

@media screen and (max-width:768px) {
    .fw-bold {
        font-size: 20px;
    }

    .fs-5 {
        font-size: 20px !important;
    }
}