/* /assets/css/style.css */

/* hero section - home */
.hero {
    background-image: url('/assets/images/hero-bg10.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: top right;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
} */

.hero-content {
    display: flex;
    /* background-color: red; */
    max-width: 53%;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* margin: 0px -100px; */

}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #121C52;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: black;
    max-width: 90%;
}

.hero_btn .contact_btn {
    padding: 0.7rem 1rem;
    background-color: #121C52;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section.home-about {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* .abt-img1 {
    width: 350px;
    height: 450px;
}

.abt-img1 img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
} */

.abt-img2 {
    width: 500px;
    height: 480px;
}

.abt-img2 img {
    width: 100%;
    border-radius: 20px;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 2rem;
    width: 60%;
}

.right-section .about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.22rem;
    font-weight: 600;
    color: #121C52;
    max-width: 100%;
}

.right-section .about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: black;
    width: 100%;
    text-align: justify;
}

.right-section a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 120px;
    text-decoration: none;
    padding: 0.7rem 0;
    background-color: #121C52;
    text-align: center;
    color: white;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

section.home-services {
    height: 100vh;
    width: 100%;
}

.all-services {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.all-services .title {
    font-family: 'Outfit', sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: #121C52;
    max-width: 100%;
    text-align: center;
}

.all-services .desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-services p {
    max-width: 70%;
    text-align: center;
}

.view-all-services {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-services a {
    text-decoration: none;
    color: white;
    font-family: Outfit;
    font-size: 14px;
}

.view-all-services a {
    background-color: #121C52;
    padding: 1rem 2.2rem;
    border: none;
    cursor: pointer;
}

.view-all-services a:hover {
    background-color: #007bff;
    border: none;
    cursor: pointer;
}

.service-cards {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-cards .single-service-card {
    width: 33%;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding: 20px 10px;
    color: #121C52;
    transition: background-color 0.3s ease;
    border: 1px solid #121C52;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-cards .single-service-card:hover {
    background-color: #121C52;
    color: white;
}

.single-service-card .icon {
    font-size: 50px;
    color: #121C52;
    transition: color 0.3s ease;
}

.single-service-card:hover .icon {
    color: white;
}

.single-service-card .service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #121C52;
    max-width: 100%;
    text-align: center;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.single-service-card:hover .service-title {
    color: white;
}

.single-service-card .service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
    display: -webkit-box;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.single-service-card:hover .service-desc {
    color: white;
}

.single-service-card .service-btn a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 120px;
    text-decoration: none;
    padding: 0.7rem 0;
    background-color: #121C52;
    text-align: center;
    color: white;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.single-service-card:hover .service-btn a {
    background-color: white;
    color: #121C52;
}

/* Home Gallery Section */


.all-gallery {
    text-align: center;
    margin-bottom: 3rem;
}

.all-gallery .title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #121C52;
    margin-bottom: 1rem;
}

.all-gallery h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121C52;
    margin-bottom: 1rem;
}

.all-gallery p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.testimonials {
    width: 100%;
    min-height: 80vh;
    text-align: center;
}

section.testimonials .title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #121C52;
    margin-bottom: 1rem;
}

section.testimonials h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121C52;
    margin-bottom: 1rem;
}

section.testimonials p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-container .user-review {
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
    /* border: 1px solid #121C52; */
    color: white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 0;
}

.user-review .review {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.765);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.user-review img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-review h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #121C52;
}

.user-review h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #121C52;
}

/* latest blogs */

section .latest-blogs {
    width: 100%;
    min-height: 90vh;
    text-align: center;
}

.view-all-blogs {
    width: 100%;
    text-align: center;
}

.view-all-blogs .title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #121C52;
    margin-bottom: 1rem;
}

.view-all-blogs .main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #121C52;
    margin-bottom: 1rem;
}

.blog-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* background: #000; */
    padding: 20px 0;
}

.blog-cards .single-blog-card {
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
    text-align: start;
}

.single-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #121C52;
    text-transform: uppercase;
    padding-top: 4px;
}

.blog-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: black;
    max-width: 700px;
    padding: 10px 0;
    width: 100%;
}

.blog-content .blog-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-content a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.blog-content a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #121C52;
    text-transform: uppercase;
    text-decoration: none;
}


.why-choose-us {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.why-choose-us .section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    color: #121C52;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}


.feature-box {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 40px;
    color: #fff;
    background: #121C52;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.feature-box p {
    color: #666;
    font-size: 14px;
}






/* Mobile View (Max-width: 768px) */
@media (max-width: 768px) {
    section.hero {
        background: url('/assets/images/hero-bg2.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
        border-radius: 10px;
    }



    .hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: white;
    }

    .hero-description {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 1.5rem;
        color: white;
    }

    section.home-about {
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .left-section {
        display: flex;
        gap: 2px;
    }

    /* .abt-img1 {
        display: none;
    } */

    .abt-img2 {
        width: 100%;
        height: auto;
        padding-top: 20px;
    }
    .abt-img2 img {
        width: 100%;
        border-radius: 20px;
    }

    .right-section {
    width: 100%;
}

    .right-section .about-title {
        font-size: 2rem;


    }

    section.home-services {
        height: auto;
        width: 100%;
    }

    .all-services .title {
        font-size: 2rem;
    }

    .service-cards .single-service-card {
        width: 100%;
    }


    .service-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .single-service-card {
        width: 90%;
        max-width: 400px;
    }

    .all-services .desc {
        font-size: 14px;
    }

    .all-services p {
        max-width: 100%;
        text-align: center;

    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* Single column for small screens */
    }

    .testimonial-container .user-review {
        width: 90%;
        /* Adjust width of testimonial */
    }

    .blog-cards .single-blog-card {
        width: 100%;
        /* Stack blog cards on smaller screens */
        margin-bottom: 20px;
    }
}