.why-choose-us {
    text-align: center;
    padding: 40px;
    background-image: url('../img/banner/whychoose.webp');
    background-size: 100% 100%;
    /* Set the width and height to 100% */
}

.why-choose-us h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.why-choose-us p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.why-choose-us1 p strong {
    font-weight: bold;
    color: #333333;
}

.why-choose-us1 {
    text-align: center;
    padding: 40px;
    /* background-color: #ffffff; */
}

.why-choose-us1 h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 700;
}

.why-choose-us1 p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

.why-choose-us1 p strong {
    font-weight: bold;
    color: #333333;
}

.why-choose-us3 {
    text-align: center;
    padding: 40px;
    background-image: url('../img/about/whychooseus.webp');
    background-size: cover;
    /* Makes the image cover the entire container */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-position: center;
    /* Centers the image within the container */
}

.why-choose-us3 h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 700;
}

.why-choose-us3 p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

.why-choose-us4 {
    text-align: center;
    padding: 15px;
    background-color: #e5be5f;
    background-size: cover;
    /* Makes the image cover the entire container */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-position: center;
    /* Centers the image within the container */
}

.why-choose-us4 h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.benefits {
    margin-left: 18%;
    width: 65%;
    background-color: #fff;
    padding: inherit;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
}

.benefit {
    /* background: #f9f9f9; */
    padding: 15px;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    text-align: center;
    max-width: 300px;
}

.benefit img {
    width: 100px;
    margin-bottom: 15px;
    height: 11vh;
}

.benefit h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 700;
}

.benefit p {
    font-size: 13px;
    color: #666666;
    text-align: revert;
}

/* Large Screens (Desktops) */
@media (max-width: 1200px) {

    .why-choose-us h2,
    .why-choose-us3 h2 {
        font-size: 32px;
    }

    .benefit {
        max-width: 250px;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 768px) {

    .why-choose-us,
    .why-choose-us3 {
        padding: 20px;
    }

    .benefits {
        margin-left: 10%;
        width: 80%;
    }

    .four-phases-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Small Screens (Mobiles) */
@media (max-width: 480px) {

    .why-choose-us h2,
    .why-choose-us3 h2 {
        font-size: 1.5rem;
    }

    .benefits {
        margin-left: 0;
        width: 100%;
        padding: 10px;
    }

    .benefit h3 {
        font-size: 1rem;
    }

    .phase-box h3 {
        font-size: 1rem;
    }

    .phase-box p {
        font-size: 0.8rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        margin: 5px 0;
    }

    .form-container {
        padding: 10px;
        max-width: 300px;
    }
}

/* ======================= */
.section-title1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-title1 .line1 {
    width: 50px;
    /* Adjust the width for smaller lines */
    height: 2px;
    background-color: #daa520;
    margin: 0 10px;
}

.section-title1 .title-text1 {
    font-size: 25px;
    color: #daa520;
    font-weight: 700;
}

/* ---------------------- */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 20px 0; */
    padding-bottom: 0px;
}

.section-title .line {
    width: 50px;
    /* Adjust the width for smaller lines */
    height: 2px;
    background-color: #daa520;
    margin: 0 10px;
}

.section-title .title-text {
    font-size: 25px;
    color: #daa520;
    font-weight: 700;
    /* text-transform: uppercase; */
}

/* ===========ind 4 =========== */
.four-phases-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Four columns by default */
    gap: 20px;
    /* Space between boxes */
    padding: 10px 15%;
    background-color: #ffffff;
}

.phase-box {
    /* text-align: justify; */
    /* background: #f9f9f9; */
    padding: 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.phase-box h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

.phase-box p {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .four-phases-simple {
        grid-template-columns: repeat(3, 1fr);
        /* Three columns on medium screens */
    }
}

@media (max-width: 768px) {
    .four-phases-simple {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on small screens */
        gap: 15px;
        /* Reduce spacing */
    }
}

@media (max-width: 480px) {
    .four-phases-simple {
        grid-template-columns: 1fr;
        /* One column on very small screens */
        gap: 10px;
        /* Further reduce spacing */
    }

    .phase-box {
        padding: 15px;
        /* Adjust padding for smaller screens */
    }

    .phase-box h3 {
        font-size: 14px;
        /* Reduce heading font size */
    }

    .phase-box p {
        font-size: 13px;
        /* Reduce paragraph font size */
    }

    /* **********VDO css */
    /* Background Video */
    .background-video {
        position: fixed;
        /* Keeps the video fixed in place */
        top: 0;
        left: 0;

        object-fit: cover;
        /* Ensures the video covers the screen without distortion */
        z-index: -1;
        /* Ensures the video stays behind all other content */
    }

    .wd {
        width: 100%;
        height: 100%;
    }

    /* Container */
    .container {
        /* display: flex; */
        height: 100%;
        padding: 0 10%;
        align-items: center;
        justify-content: space-between;
    }

    /* Left Column (Text Section) */
    .left-col {
        flex: 1;
        color: white;
    }

    .left-col h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .left-col p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .progress-bar {
        margin: 10px 0;
    }

    .progress-bar div {
        margin-bottom: 15px;
    }

    .progress-bar div span {
        display: block;
        height: 5px;
        background: green;
        width: 90%;
    }

    /* Right Column (Form Section) */
    .form-container {
        flex: 1;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.9);
        /* Semi-transparent white */
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .form-container h2 {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
    }

    .form-container input,
    .form-container select,
    .form-container textarea,
    .form-container button {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .form-container button {
        background-color: #ff4d4d;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .form-container button:hover {
        background-color: #0056b3;
    }

    /* *****************VDO CSS *********** */
    /* ****************feedbck ******************** */
    .testimonials {
        text-align: center;
        padding: 50px 20px;
        background-color: #fff;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .testimonials p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 40px;
    }

    .testimonial-slider {
        overflow: hidden;
        /* Hide the overflowing cards */
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

    .testimonial-track {
        display: flex;
        transition: transform 1s ease-in-out;
    }

    .testimonial-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 10px;
        flex: 0 0 300px;
        /* Each card takes 300px width */
        text-align: center;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .testimonial-card h3 {
        margin: 10px 0 5px;
        font-size: 1.2rem;
    }

    .stars {
        color: #ffc107;
        margin: 5px 0 15px;
    }

    .testimonial-card p {
        font-size: 0.9rem;
        color: #444;
    }

    /* ****************feedbck ******************** */

}