/* About Us Section */
.about-us{
    padding: 50px 20px;
}
.about-us-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.about-text{
    flex: 1;
    max-width: 800px;
    margin-left: 30px;
    padding-right: 30px;
}
.about-text h2{
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(107, 27, 64, 1);
}
.about-text p{
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.about-image{
    flex: 1;
    text-align: center;
    margin-top: 20px;
}
.about-image img{
    width: 90%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}
.about-image img:hover{
    transform: scale(1.05);
}

/* Reviews Client Section */
.reviews-client{
    width: 250px;
    background-color: #F9F9F9;
}
/* Video Section */
.video-section{
    padding: 50px 20px;
}
.video-row{
    display: flex;
    align-items: center;
    gap: 30px;
}
.video-container {
    flex: 1;
    height: 480px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.video-container video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s;
}
.video-container video:hover{
    transform: scale(1.02);
}

/* Video Text */
.video-text{
    flex: 1;
    max-width: 600px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    text-align: center;
}
.video-text p{
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Testimonials Section */
#testimonials{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 60px 20px;
    background: #f3f3f3;
    color: white;
}

/* Testimonial Heading */
.testimonial-heading{
    text-align: center;
    margin-bottom: 40px;
}
.testimonial-heading h2{
    font-size: 32px;
    color: rgb(107, 27, 64);
    font-weight: 700;
    letter-spacing: 1px;
}
.testimonial-heading .highlight{
  font-size: 18px;
    font-weight: 600;
    color: #F5C300;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Testimonial Box Container */
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

/* Individual Testimonial Box */
.testimonial-box{
    width: 100%;
    max-width: 400px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #ffffff;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.testimonial-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.profile-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}
.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name and Username */
.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: rgb(107, 27, 64);
    font-size: 1.1rem;
    font-weight: 600;
}
.name-user span{
    color: #777777;
    font-size: 0.9rem;
}

/* Star Rating */
.reviews{
    color: #F5C300;
    font-size: 1.2rem;
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

/* Client's Comment */
.client-comment p{
    font-size: 1rem;
    color: #4b4b4b;
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

/* Media Query */
@media (max-width: 768px) {
    /* About Us Section */
    .about-us{
        padding: 40px 15px;
    }
    .about-us-row{
        flex-direction: column;
        align-items: center;
    }
    .about-text{
        margin-left: 0;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .about-text h2{
        font-size: 24px;
        line-height: 36px;
    }
    .about-text p{
        font-size: 16px;
    }
    .about-image{
        margin-top: 20px;
        text-align: center;
    }
    .about-image img{
        width: 80%;
        max-width: 350px;
    }

    /* Video Section */
    .video-section{
        padding: 40px 15px;
    }
    .video-row{
        flex-direction: column;
        align-items: center;
    }
    .video-container{
        height: 300px;
    }
    .video-text{
        font-size: 16px;
        text-align: center;
    }

    /* Testimonials Section */
    #testimonials{
        padding: 40px 15px;
    }
    .testimonial-box-container{
        flex-direction: column;
        align-items: center;
    }
    .testimonial-box{
        max-width: 90%;
        margin-bottom: 20px;
    }

    /* Client's Comment */
    .client-comment p{
        font-size: 0.9rem;
    }
}

@media (max-width: 480px){
    /* About Us Section */
    .about-us{
        padding: 30px 10px;
    }
    .about-text h2{
        font-size: 20px;
        line-height: 30px;
    }
    .about-text p{
        font-size: 14px;
    }
    .about-image img{
        width: 70%;
    }

    /* Video Section */
    .video-section{
        padding: 30px 10px;
    }
    .video-container{
        height: 250px;
    }
    .video-text{
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Testimonials Section */
    #testimonials{
        padding: 30px 10px;
    }
    .testimonial-box{
        max-width: 100%;
        margin-bottom: 15px;
    }
    .client-comment p{
        font-size: 0.85rem;
    }
}