/***
* 
* Hero Section (start)
*
* */

.hero-section {
    background: linear-gradient(to top, black, transparent), url('/img/main/hero_home.webp') no-repeat;
    background-size: 170%;
    background-position: center center;
    height: 400px;
    display: grid;
    place-items: center;
}

@media screen and (min-width: 768px) {
    .hero-section {
        background: linear-gradient(to top, black, transparent), url('/img/main/hero_home.webp') no-repeat;
        background-size: 120%;
        background-position: center center;
        height: 600px;
    }
}

@media screen and (min-width: 1024px) {
   .hero-section {
        background: linear-gradient(to top, black, transparent), url('/img/main/hero_home.webp') no-repeat;
        background-size: 120%;
        background-position: center center;
        height: 800px;
    }
}

@media screen and (min-width: 1024px) {
   .hero-section {
        background-size: 100%;
    }
}

.hero-content-container {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
}

.hero-section .label {
    font-family: var(--alternative-font);
    max-width: 200px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFFFFF;
    text-align: center;
}

.hero-section p {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.hero-section .hero-content-container  a {
    font-family: var(--sub-heading-font);
    padding: 4px 8px;

    color: var(--secondary-color);
    box-shadow: 0 0 0 rgba(253, 92, 99, 0.5);
    animation: pulse 2s infinite;

    background: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(253, 92, 99, 0.5);
}

.hero-section .hero-content-container  a:hover {
    background: transparent;
    border: 1px solid rgba(253, 92, 99, 0.5);
    color: #FFFFFF;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 92, 99, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(253, 92, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 92, 99, 0);
    }
}

/***
* 
* Hero Section (end)
*
* */



/***
* About Shining Star (start)
* */
.ss-about .label {
    font-family: var(--alternative-font);
    max-width: 120px;
    color: #FFFFFF;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
    margin-bottom: 4px;
}

.ss-about h2 {
    font-size: 2rem;
    color: var(--heading-color);
}

.ss-about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ss-about .content p {
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .ss-about h2 {
        font-size: 3rem;
    }

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

    /**
    * bento image (start)
    */
.ss-about .bento_img-container {
    display: grid;
    gap: 10px;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.ss-about .bento_img-container div{
    background-size: 100%;
    display: flex;
    border-radius: 10px;
    width: 100%;
    height: 200px;
}

.ss-about .bento_img-container div:nth-child(1),
.ss-about .bento_img-container div:nth-child(2) {
    background-size: cover;
    background-position: center center;
}

.ss-about .bento_img-container div:nth-child(3),
.ss-about .bento_img-container div:nth-child(4) {
    background-size: 120%;
}

@media screen and (min-width: 768px) {
    .ss-about .bento_img-container div {
        width: 100%;
        height: 250px;
        background-position: center center;
        background-size: cover;
    }
}


    /**
    * bento image (end)
    */

/***
* About Shining Star (end)
* */

/**
* Why Choose Us (start)
* **/

.wcs_wrapper .wcs_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 100px 0;
}

@media screen and (min-width: 1024px) {
    .wcs_wrapper .wcs_container {
        flex-direction: row;
    }
}

.wcs_container .wcs_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.wcs_container .wcs_item .img-container {
    border-radius: 8px;
    background: rgba(253, 92, 99, 0.3);
    padding: 8px;
}

.wcs_container .wcs_item .img-container {
    fill: rgba(253, 92, 99, 1);
}

.wcs_container .wcs_item:first-child .img-container {
   stroke: rgba(253, 92, 99, 1);

}

.wcs_container .wcs_item h4 {
    font-weight: 500;
    /* color: rgba(253, 92, 99, 1); */
    color: var(--heading-color);
}

.wcs_container .wcs_item p {
    font-size: .9rem;
}

@media screen and (min-width: 768px) {
    .wcs_container .wcs_item p {
        font-size: 1rem;
    }
}


/**
*
* Our Cleaning Services (start)
*
*/

.ocs-wrapper {
    background-color: rgba(232, 249, 253, 0.5);
    padding: 150px 0;
}

.ocs-wrapper .content-container{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.ocs-wrapper .label {
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 120px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}
.ocs-wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
}


/** card container **/
.ocs-wrapper .service_card-container {
    margin: 100px 0 0 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    place-items: center;
    grid-gap: 30px;
}

@media screen and (min-width: 768px) {
    .ocs-wrapper .service_card-container {
        place-items: center;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}


@media screen and (min-width: 1440px) {
    .ocs-wrapper .service_card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/** card **/

.ocs-wrapper .service_card-container .service-card {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-size: 100%;
    background-position: center;
    position: relative;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    overflow: hidden;
}


@media screen and (min-width: 768px) {

    .ocs-wrapper .service_card-container .service-card {
        width: 100%;
        height: 200px;
    }
    
}

@media screen and (min-width: 1024px) {

    .ocs-wrapper .service_card-container .service-card {
        width: 100%;
        height: 300px;
    }
    
}


@media screen and (min-width: 1440px) {

    .ocs-wrapper .service_card-container .service-card {
        width: 100%;
        height: 400px;
    }
    
}


/**** 
*
* card text content (start)
*
* ****/

.service-card .text-content {
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
}

.service-card .text-content h6{
    margin: 0 0 10px 0;
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.service-card .text-content a {
    font-family: var(--sub-heading-font);
    color: var(--primary-color);
    text-decoration: none;
    font-size: .95rem;
    background: #FFFFFF;
    padding: 8px 8px;
    border-radius: 8px;
    font-size: clamp(.8rem, 1vw, 0.9rem);
}

.service-card .text-content a svg {
    fill: var(--primary-color);
    transition: transform .3s  ease-in;
}

.service-card .text-content a:hover svg {
    transform: translateX(5px);
}


/**** 
*
* card text content (end)
*
* ****/

/** card **/


/**
*
* Our Cleaning Services (end)
*
*/


/* background: rgba(253, 92, 99, 0.3); */

/**
* Why Choose Us (end)
* **/


/****
* 
* Clients Who Trust Us (start)
*
**/

.our_clients-wrapper {
    padding: 150px 0;
}

.our_clients-wrapper .content-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.our_clients-wrapper .content-container .label{
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 120px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}

.our_clients-wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
    margin: 0 0 100px 0;
}

.marquee {
    margin: 30px 0 0 0;
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 20s linear infinite;
}

.marquee .marquee__content span img{
    width: 100%;
    height: auto;
}
.marquee .marquee__content span {
    display: flex;
    align-items: center;
    width: 200px;
    height: 200px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/****
* 
* Clients Who Trust Us (end)
*
**/


/****
* 
* Client Review (start)
*
**/
.client-reviews_wrapper {
    background-color: rgba(232, 249, 253, 0.5);
    padding: 150px 0;
}
.client-reviews_wrapper .content-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.client-reviews_wrapper .content-container .label {
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 150px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}


.client-reviews_wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
    margin: 0 0 100px 0;
}

.client-reviews_wrapper .review-card{
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;

    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.client-reviews_wrapper .review-card .review_content {
    flex-grow: 1;
    font-style: italic;
}

.client-reviews_wrapper .review-card .reviewer {
    color : rgba(253, 92, 99, 1);
}

.client-reviews_wrapper .blaze_ui {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 80px 0 0 0;
}

.client-reviews_wrapper .blaze-prev,
.client-reviews_wrapper .blaze-next {
    border: none;
    border-radius: 20px;
    background: var(--primary-color);
}

.client-reviews_wrapper .blaze-pagination{
    align-items: center;
}


.client-reviews_wrapper .blaze-pagination {
    display: flex;
    gap: 20px;
    justify-content: center;

}
.client-reviews_wrapper .blaze-pagination button {
    background: none;
    border: none;
    font-size: 0;
    background-color: #cdd9e3;
    padding: 5px;
    border-radius: 10px;

    transition: background-color .3s ease-in-out;
}
.client-reviews_wrapper .blaze-pagination button.active {
    background-color: var(--primary-color);
}

/****
* 
* Client Review (end)
*
**/

/*****
*
* Contact Us Section (start)
*
*/

.contact-us_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 500px;
}

@media screen and (min-width: 1024px) {
    .contact-us_wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}

.text-content-container {
    display: grid;
    place-items: center;
    max-width: 800px;
    padding: 25px;
}

.text-content-container .label {
    color: #FFFFFF;
    font-family: var(--alternative-font);
    max-width: 200px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
    max-width: 70px;
}

.text-content-container .text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-content-container .text-content h3{
    color: var(--primary-color);
}

.text-content-container .text-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--alternative-font);
}

.text-content-container .text-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/*****
*
* Contact Us Section (end)
*
*/
