@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-heading-font: "Montserrat", sans-serif;
    --primary-para-font: "Lato", sans-serif;
}

body,
html {
    overflow-x: hidden;
}

/* herolifestysec style start */
#heroreimaginesec {
    font-family: var(--primary-para-font);
    margin-top: -7rem;
}

#heroreimaginesec .banner-container {
    width: 100%;
    height: 90vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
        url('../images/homesreimagined/homereimaginedbanner.webp') center/cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#heroreimaginesec .banner-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 900px;
    z-index: 2;
}

#heroreimaginesec .banner-content h1 {
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 86.05px;
    line-height: 96.81px;
    max-width: 40rem;
    width: 100%;
}

#heroreimaginesec .banner-content p {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 2rem;
    line-height: 96.81px;
}

/* The living well hub section start */
#thelivinghub {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20rem;
}

#thelivinghub .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

#thelivinghub .side-image {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

#thelivinghub .side-image img {
    width: 100%;
    object-fit: cover;
}

#thelivinghub .left-image {
    left: 0;
    transform: translateX(-50%);
    opacity: 0.7;
}

#thelivinghub .right-image {
    right: 0;
    transform: translateX(50%);
    opacity: 0.7;
}

#thelivinghub .left-image.visible {
    transform: translateX(3%);
    opacity: 1;
}

#thelivinghub .right-image.visible {
    transform: translateX(-3%);
    opacity: 1;

}

#thelivinghub .center-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    padding: 0 78px;
}

#thelivinghub .center-content h3 {
    margin-bottom: 30px;
    line-height: 90px;
    font-family: var(--primary-heading-font);
    font-weight: 700;
    color: #801B53;
    font-size: 5rem;
}

#thelivinghub .center-content p {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 37px;
    max-width: 435px;
    width: 100%;
    font-family: var(--primary-para-font);
    font-weight: 400;
    color: #000000;
}

#activelivingofyourlifesec .header h3 {
    padding: 0 10rem;
    font-family: var(--primary-heading-font);
    font-weight: 700;
    color: #801B53;
    font-size: 5rem;
    line-height: 90px;
    margin-bottom: 1rem;
}

#activelivingofyourlifesec .header p {
    font-family: var(--primary-para-font);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
}

#smarthome .smarthometxt h3 {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 5rem;
    line-height: 90px;
    text-align: center;
    color: #801B53;
}


@media (min-width: 1400px) {
    #heroreimaginesec .banner-content {
        top: auto;
        bottom: 0;
    }

    #heroreimaginesec .banner-content h1 {
        font-size: 70px;
        max-width: 100%;
        line-height: normal;
    }

    #heroreimaginesec .banner-content p {
        font-family: var(--primary-heading-font);
        font-weight: 700;
        font-size: 2rem;
        line-height: normal;
    }

    #thelivinghub .right-image.visible {
        width: 30%;
    }

    #thelivinghub .left-image.visible {
        width: 30%;
    }


    #morethanhome .morethanhome-cards {
        gap: .6rem !important;
        flex-wrap: nowrap !important;
    }

    #kitchenwork .kitchenwork-cards {
        flex-wrap: nowrap !important;
        gap: .7rem !important;
    }

    #smarthome .smarthome-cards {
        flex-wrap: nowrap !important;
        gap: .7rem !important;
    }


}

/* Responsive Design */
@media (max-width: 1200px) {
    .side-image {
        width: 300px;
        height: 450px;
    }

    .center-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .side-image {
        width: 250px;
        height: 400px;
    }

    .center-content {
        max-width: 500px;
    }

    .center-content h1 {
        font-size: 2.5rem;
    }

    .center-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .side-image {
        position: relative;
        width: 90%;
        max-width: 350px;
        left: auto;
        right: auto;
    }

    .left-image {
        transform: translateY(-50px);
    }

    .right-image {
        transform: translateY(50px);
    }

    .left-image.visible,
    .right-image.visible {
        transform: translateY(0);
    }

    .center-content {
        padding: 0 20px;
    }

    .center-content h1 {
        font-size: 2rem;
    }
}

/* The living well hub section end */

/* Smart Home & Smart Living section start */

#smarthome {
    margin-top: 20rem;
}

#smarthome .smarthome-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0rem;
    align-items: start;
}

#smarthome .smarthome-voice-card {
    position: relative;
    background-color: #F6F6F6;
    border-radius: 20px;
}

#smarthome .voice-card {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

#smarthome .voice-card-txt {
    text-align: center;
    min-height: 10rem;
}

#smarthome .voice-card-para {
    font-family: var(--primary-para-font);
    font-size: 20px;
    line-height: 25px;
    max-width: 330px;
    width: 100%;
    padding-left: 12%;
    padding-bottom: 2rem;
}

#smarthome .futureready-card {
    font-size: 20px;
    max-width: 400px;
    text-align: center;
    padding: 0px 0px 0px 20px;
}

/* activelivingofyourlifesec style start */
#activelivingofyourlifesec .activelivingpara {
    font-family: var(--primary-heading-font);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
}

/* activelivingofyourlifesec style end */

/* Kitchens work section start */
#kitchenwork {
    padding-top: 10rem;
    padding-bottom: 3rem;
}

#kitchenwork .kitchenworktxt h3 {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    text-align: center;
    color: #801B53;
}

#kitchenwork .kitchenwork-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0rem;
}

#kitchenwork .ergonomic-card-txt {
    min-height: 12rem;
}

#kitchenwork .kitchenwork-ergonomic-card {
    position: relative;
    background-color: #F6F6F6;
    border-radius: 20px;
}

#kitchenwork.ergonomic-card {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 1rem;
}

#kitchenwork .grip-card-image img {
    width: 25rem;
    min-height: 31rem;
    border-radius: 30px;
    object-fit: cover;

}

#kitchenwork .ergonomic-card-txt h3 {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    padding: 1rem 0;
}

#kitchenwork .ergonomic-card-txt p {
    font-size: 20px;
    line-height: 25px;
    max-width: 330px;
    width: 100%;
    padding-left: 10%;
    padding-bottom: 2rem;
    text-align: center;
}

/*Kitchens work section end */


/* bathroomsthatthinkheadsec style start */
#bathroomsthatthinkheadsec {
    background: url('../images/home/activeLivingLife/bgmain.png');
    background-size: cover;
    min-height: 100vh;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    font-family: var(--primary-heading-font);
}

#bathroomsthatthinkheadsec .main-wrapper {
    width: 100%;
}

#bathroomsthatthinkheadsec .header {
    text-align: center;
    margin-bottom: 50px;
}

#bathroomsthatthinkheadsec .header h3 {
    font-family: var(--primary-heading-font);
    color: #801B53;
    font-weight: 700;
    font-size: 5rem;
    line-height: 90px;
    text-align: center;
    margin-bottom: 1rem;
}

#bathroomsthatthinkheadsec .header p {
    font-family: var(--primary-heading-font);
    font-weight: 600;
    font-size: 25px;
    line-height: 25px;
}

#bathroomsthatthinkheadsec .carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin-bottom: 60px;
}

.carousel-container {
    overflow: hidden;
}

#bathroomsthatthinkheadsec .carousel-track {
    display: flex;
    align-items: center;
    /* 🔥 CENTER FIX */
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

#bathroomsthatthinkheadsec .carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    opacity: 0.6;
    transform: scale(0.85);
    transform-origin: center center;
    transition: all 0.5s ease;
}

#bathroomsthatthinkheadsec .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

#bathroomsthatthinkheadsec .carousel-item img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#bathroomsthatthinkheadsec .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

#bathroomsthatthinkheadsec .arrow-left {
    left: 10px;
}

#bathroomsthatthinkheadsec .arrow-right {
    right: 10px;
}

#bathroomsthatthinkheadsec .content-section {
    text-align: center;
    margin-bottom: 30px;
}

#bathroomsthatthinkheadsec .content-section h2 {
    font-size: 32px;
    font-weight: 700;
}

#bathroomsthatthinkheadsec .content-section p {
    font-size: 22px;
}

#bathroomsthatthinkheadsec .pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

#bathroomsthatthinkheadsec .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #6b2456;
}

#bathroomsthatthinkheadsec .dot.active {
    background: #6b2456;
    transform: scale(1.3);
}

/* bathroomsthatthinkheadsec style end */


/* More than home section start*/
#morethanhome {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#morethanhome .morethanhometxt h3 {
    font-family: var(--primary-heading-font);
    color: #801B53;
    font-weight: 700;
    font-size: 5rem;
    line-height: 90px;
    text-align: center;
}

#morethanhome .morethanhome-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0rem;
}

#morethanhome .morethanhome-hobby-card {
    position: relative;
    background-color: #F6F6F6;
    border-radius: 20px;
}

#morethanhome .hobby-card-txt h3 {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    padding: 2rem 0rem 1rem 0rem;
    text-align: center;
}

#morethanhome .hobby-card-para {
    font-size: 20px;
    line-height: 25px;
    max-width: 380px;
    width: 100%;
    padding-left: 0%;
    padding-bottom: 2rem;
    text-align: center;
}

/* More than home section end*/

/* typicalamenitiessec style start */
#typicalamenitiessec {
    background: url('../images/home/activeLivingLife/bgmain.png');
    background-size: cover;
    min-height: 100vh;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    font-family: var(--primary-heading-font);
}

#typicalamenitiessec .main-wrapper {
    width: 100%;
}

#typicalamenitiessec .header {
    text-align: center;
    margin-bottom: 50px;
}

#typicalamenitiessec .header h3 {
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-size: 5rem;
    line-height: 90px;
    text-align: center;
    color: #801B53;
}

#typicalamenitiessec .activelivingpara {
    font-family: var(--primary-heading-font);
    font-weight: 600;
    font-style: Semibold;
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 0%;
}

#typicalamenitiessec .header p {
    padding: 0;
}

#typicalamenitiessec .carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin-bottom: 60px;
}

#typicalamenitiessec .carousel-container {
    overflow: hidden;
}

#typicalamenitiessec .carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

#typicalamenitiessec .carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    opacity: 0.6;
    transform: scale(0.85);
    transform-origin: center center;
    transition: all 0.5s ease;
}

#typicalamenitiessec .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

#typicalamenitiessec .carousel-item img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#typicalamenitiessec .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

#typicalamenitiessec .arrow-left {
    left: 10px;
}

#typicalamenitiessec .arrow-right {
    right: 10px;
}

#typicalamenitiessec .content-section {
    text-align: center;
    margin-bottom: 30px;
}

#typicalamenitiessec .content-section h2 {
    font-size: 32px;
    font-weight: 700;
}

#typicalamenitiessec .content-section p {
    font-size: 22px;
}

#typicalamenitiessec .pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

#typicalamenitiessec .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #6b2456;
}

#typicalamenitiessec .dot.active {
    background: #6b2456;
    transform: scale(1.3);
}

#kitchenwork .grip-card-image img {
    min-height: auto;
}

/* typicalamenitiessec style end */

/* Responsive Design for homesreimagined.css */
/* 1366px */
@media (max-width: 1366px) {

    #heroreimaginesec .banner-content h1 {
        font-size: 4rem;
        line-height: 5rem;
        max-width: 29.5rem;
    }

    #heroreimaginesec .banner-content p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #heroreimaginesec .banner-content {
        left: 35px;
    }

    #thelivinghub .center-content {
        max-width: 307px;
        width: 100%;
        padding: 0 0px;
    }

    #thelivinghub .center-content p {
        max-width: 330px;
        width: 100%;
        font-size: 20px;
        line-height: 25px;
    }

    #thelivinghub .right-image.visible {
        width: 36%;
    }

    #thelivinghub .left-image.visible {
        width: 36%;
    }

    #thelivinghub .center-content h3 {
        font-size: 3rem;
        line-height: 4rem;
    }

    #smarthome .smarthometxt h3 {
        font-size: 4rem;
        line-height: 5rem;
    }

    #smarthome .smarthome-cards {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    #smarthome .voice-card-image img {
        width: 100%;
    }

    #smarthome .voice-card {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-bottom: 1rem;
    }

    #smarthome .voice-card-para {
        font-size: 17px;
        line-height: 20px;
        max-width: 312px;
        padding-left: 0%;
        padding-bottom: 2rem;
    }

    #activelivingofyourlifesec .header h3 {
        padding: 0 12rem;
        font-size: 4rem;
        line-height: 5rem;
    }

    #activelivingofyourlifesec .header p {
        font-size: 18px;
        line-height: 20px;
    }

    #kitchenwork .kitchenworktxt h3 {
        font-size: 4rem;
        text-align: center;
    }

    #kitchenwork .kitchenwork-cards {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .ergonomic-card-image img {
        width: 100%;
    }

    #kitchenwork .grip-card-image img {
        width: 19rem;
        min-height: 24.5rem;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 22px;
        line-height: 30px;
    }

    #kitchenwork .ergonomic-card-txt p {
        font-size: 18px;
        line-height: 25px;
        padding-left: 2%;
    }

    #bathroomsthatthinkheadsec .header h3 {
        font-size: 4rem;
        line-height: 5rem;
    }

    #bathroomsthatthinkheadsec .header p {
        font-size: 22px;
        line-height: 25px;
    }

    #morethanhome .morethanhometxt h3 {
        font-size: 4rem;
        line-height: 5rem;
    }

    #morethanhome .morethanhome-cards {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    #morethanhome .hobby-card-image img {
        width: 100%;
    }

    #morethanhome .hobby-card-txt h3 {
        font-size: 23px;
        line-height: 30px;
    }

    #morethanhome .hobby-card-txt {
        min-height: 190px;
    }

    #morethanhome .hobby-card-para {
        font-size: 17px;
        line-height: 25px;
        padding-left: 0%;
    }

    #typicalamenitiessec .header h3 {
        font-size: 4rem;
        line-height: 5rem;
    }

}

/* 1320px */
@media (max-width: 1320px) {

    #thelivinghub .center-content {
        max-width: 270px;
    }

    #thelivinghub .center-content p {
        font-size: 18px;
        line-height: 22px;
    }

    #smarthome .smarthometxt h3 {
        font-size: 3rem;
        line-height: 4rem;
    }

    #smarthome .voice-card {
        font-size: 1.25rem;
        line-height: 1.75rem;
        padding-bottom: .5rem;
    }

    #smarthome .voice-card-para {
        font-size: 16px;
        line-height: 20px;
    }

    #activelivingofyourlifesec .header h3 {
        padding: 0 12rem;
        font-size: 3rem;
        line-height: 3.5rem;
    }

    #activelivingofyourlifesec .header p {
        font-size: 15px;
        line-height: 20px;
    }

    #activelivingofyourlifesec .dot {
        width: 15px;
        height: 15px;
    }

    #activelivingofyourlifesec .content-section h2 {
        font-size: 30px;
        line-height: 40px;
    }

    #activelivingofyourlifesec .content-section p {
        font-size: 22px;
        line-height: 25px;
    }

    #activelivingofyourlifesec .dot {
        width: 12px;
        height: 12px;
    }

    #kitchenwork .kitchenworktxt h3 {
        font-size: 3rem;
        line-height: 4rem;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 18px;
        line-height: 27px;
    }

    #kitchenwork .ergonomic-card-txt p {
        font-size: 16px;
        line-height: 22px;
        padding-left: 2%;
    }

    #kitchenwork .grip-card-image img {
        min-height: 23.5rem;
    }

    #bathroomsthatthinkheadsec .header h3 {
        font-size: 3rem;
        line-height: 4rem;
        margin-bottom: .5rem;
    }

    #bathroomsthatthinkheadsec .header p {
        font-size: 22px;
        line-height: 25px;
    }

    #bathroomsthatthinkheadsec .content-section h2 {
        font-size: 30px;
        line-height: 35px;
    }

    #bathroomsthatthinkheadsec .dot {
        width: 12px;
        height: 12px;
    }

    #morethanhome .morethanhometxt h3 {
        font-size: 3rem;
        line-height: 4rem;
    }

    #morethanhome .hobby-card-txt h3 {
        font-size: 20px;
        line-height: 35px;
    }

    #morethanhome .hobby-card-para {
        font-size: 15px;
        line-height: 22px;
        padding-left: 5%;
    }

    #typicalamenitiessec .header h3 {
        font-size: 3rem;
        line-height: 4rem;
    }

    #typicalamenitiessec .content-section h2 {
        font-size: 30px;
        line-height: 35px;
    }

    #typicalamenitiessec .dot {
        width: 12px;
        height: 12px;
    }
}

/* 1280 */
@media (max-width: 1280px) {
    #kitchenwork .grip-card-image img {
        min-height: 22.5rem;
    }
}

/* 1024px */
@media (max-width: 1024px) {

    #heroreimaginesec .banner-container {
        height: 499px;
    }

    #heroreimaginesec .banner-content h1 {
        font-size: 3.5rem;
        line-height: 4rem;
        max-width: 26rem;
    }

    #heroreimaginesec .banner-content p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #thelivinghub {
        padding-top: 10rem;
    }

    #thelivinghub .center-content {
        max-width: 265px;
    }

    #thelivinghub .center-content h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #thelivinghub .center-content p {
        font-size: 12px;
        line-height: 18px;
    }

    #smarthome {
        margin-top: 13rem;
    }

    #smarthome .voice-card {
        font-size: 1rem;
        line-height: 1.75rem;
        padding-bottom: .5rem;
    }

    #smarthome .voice-card-para {
        font-size: 12px;
        line-height: 15px;
    }

    #smarthome .voice-card-txt {
        min-height: 0rem;
    }

    #kitchenwork .ergonomic-card-txt p {
        font-size: 14px;
        line-height: 18px;
    }

    #morethanhome .hobby-card-para {
        font-size: 13px;
        line-height: 18px;
        padding-left: 0%;
    }

    #kitchenwork .ergonomic-card-txt {
        min-height: 10rem;
    }

    #kitchenwork .grip-card-image img {
        width: 15rem;
        min-height: 17.5rem;
    }

    #activelivingofyourlifesec .header h3 {
        padding: 0 5rem;
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: .8rem;
    }

    #activelivingofyourlifesec .header p {
        font-size: 12px;
        line-height: 15px;
    }

    #activelivingofyourlifesec .content-section h2 {
        font-size: 25px;
        line-height: 30px;
    }

    #activelivingofyourlifesec .content-section p {
        font-size: 20px;
        line-height: 25px;
    }

    #activelivingofyourlifesec .dot {
        width: 12px;
        height: 12px;
    }

    #kitchenwork {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    #kitchenwork .kitchenworktxt h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 15px;
        line-height: 30px;
    }

    #bathroomsthatthinkheadsec .header h3 {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: .5rem;
    }

    #bathroomsthatthinkheadsec .header p {
        font-size: 18px;
        line-height: 22px;
    }

    #bathroomsthatthinkheadsec .content-section h2 {
        font-size: 25px;
        line-height: 30px;
    }

    #morethanhome {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    #morethanhome .morethanhometxt h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #morethanhome .hobby-card-txt h3 {
        font-size: 15px;
        line-height: 30px;
        padding-bottom: .5rem;
    }

    #morethanhome .hobby-card-txt {
        min-height: 160px;
    }

    #typicalamenitiessec .header h3 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #typicalamenitiessec .content-section h2 {
        font-size: 25px;
        line-height: 30px;
    }
}

/* 768px */
@media (max-width: 768px) {

    #morethanhome .morethanhome-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 0rem;
        margin: 0 1rem;
        align-items: start;
    }

    #morethanhome .morethanhome-cards {
        display: block;
    }

    #heroreimagineMobsec .banner-tagline {
        top: 125%;
        left: 12%;
        padding-right: 15rem;
        position: absolute;
        z-index: 1;
    }

    #heroreimagineMobsec .bannerimg img {
        margin-top: 7rem;
        width: 100%;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        font-size: 2rem;
        line-height: 2.5rem;
        color: #FFFFFF;
        font-family: var(--primary-heading-font);
        font-weight: 700;
        margin-top: -21rem;
    }

    #heroreimagineMobsec .banner-para {
        top: 98%;
        left: 12%;
        padding-right: 10rem;
        position: absolute;
        z-index: 1;
    }

    #heroreimagineMobsec .banner-para p {
        font-size: 1rem;
        line-height: 1.5rem;
        color: #FFFFFF;
        font-family: var(--primary-para-font);
        font-weight: 700;
    }

    #thelivinghubMobSec .thelivinghumMob-txt h3 {
        font-family: var(--primary-heading-font);
        font-weight: 700;
        font-size: 32px;
        line-height: 32px;
        color: #801B53;
        text-align: center;
        padding-top: 5rem;
    }

    #thelivinghubMobSec .thelivinghumMob-txt p {
        font-family: var(--primary-para-font);
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        padding-top: 2rem;
    }

    #thelivinghubMobSec .thelivinghubMob-images {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding-top: 2rem;
        margin: 0 12px;
    }

    #smarthome {
        margin-top: 3rem;
    }

    #smarthome .smarthometxt h3 {
        font-size: 2rem;
        line-height: 2rem;
        padding-right: 11rem;
        padding-left: 13rem;
    }

    #smarthome .smarthome-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* flex-wrap: wrap; */
        gap: 1rem;
        padding: 1rem 0rem;
    }

    #smarthome .voice-card-image img {
        width: 100%;
    }

    #smarthome .voice-card-txt {
        min-height: 0rem;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 0 5px;
    }

    #smarthome .voice-card-para {
        max-width: 230px;
    }

    #smarthome .voice-card {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    #activelivingofyourlifesec .header h3 {
        padding: 0 10rem;
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 1rem;
    }

    #activelivingofMobSec {
        position: relative;
        width: 100%;
        /* mobile safe full height */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;

        /* soft purple -> pink gradient */
        background: radial-gradient(120% 80% at 30% 15%, #d8d6ff 0%, rgba(216, 214, 255, 0) 55%),
            radial-gradient(120% 80% at 70% 90%, #ffc1d6 0%, rgba(255, 193, 214, 0) 55%),
            linear-gradient(180deg, #efeaff 0%, #f6d3ea 100%);
    }

    /* grain/noise overlay (optional but makes it look like your screenshot) */
    #activelivingofMobSec::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.18;
        background-image: url("https://grainy-gradients.vercel.app/noise.svg");
        background-size: 200px 200px;
        mix-blend-mode: overlay;
    }

    /* your content should stay above */
    #activelivingofMobSec>* {
        position: relative;
        z-index: 1;
    }

    #activelivingofMobSec .main-heading {
        font-family: var(--primary-heading-font);
        font-weight: 700;
        font-style: Bold;
        font-size: 26px;
        line-height: 36px;
        padding: 0 200px;
    }

    #activelivingofMobSec .main-para {
        font-family: var(--primary-para-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 30px;
        /* padding: 0 190px; */
    }

    #activelivingofMobSec .title {
        font-family: var(--primary-heading-font);
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        text-align: center;
        padding: 1rem 0rem;
    }

    #activelivingofMobSec .description {
        font-family: var(--primary-para-font);
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        padding: 1rem 0rem;
    }

    #kitchenwork .kitchenworktxt h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    #kitchenwork .kitchenwork-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 0rem;
        margin: 0 1rem;
        align-items: start;
    }

    .ergonomic-card-image img {
        width: 100%;
    }

    #kitchenwork .grip-card-image img {
        width: 100%;
        min-height: 18rem;
        border-radius: 15px;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 20px;
        line-height: 24px;
    }

    #kitchenwork .ergonomic-card-txt p {
        max-width: 235px;
    }

    #kitchenwork .ergonomic-card-txt {
        min-height: 9rem;
    }

    #activelivingofMobSec2 {
        font-family: var(--primary-heading-font), sans-serif;
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: radial-gradient(120% 80% at 30% 15%, #d8d6ff 0%, rgba(216, 214, 255, 0) 55%), radial-gradient(120% 80% at 70% 90%, #ffc1d6 0%, rgba(255, 193, 214, 0) 55%), linear-gradient(180deg, #efeaff 0%, #f6d3ea 100%);
        padding: 3rem 0;
    }
}

#activelivingofMobSec2 .container {
    max-width: 100%;
    margin: 0 auto;
}

#activelivingofMobSec2 .main-heading {
    text-align: center;
    color: #801B53;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    padding: 0 20px;
    font-family: var(--primary-heading-font);
    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    line-height: 36px;
}

#activelivingofMobSec2 .main-para {
    text-align: center;
}

#activelivingofMobSec2 .slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 360px;
}

#activelivingofMobSec2 .slider-wrapper {
    display: flex;
    transition: none;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

#activelivingofMobSec2 .slide {
    flex-shrink: 0;
    width: 185px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    transition: all 0.5s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

#activelivingofMobSec2 .slide.left {
    left: 0;
    opacity: 0.7;
    transform: translateX(0) scale(0.9);
}

#activelivingofMobSec2 .slide.center {
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 250px;
    height: 336px;
    opacity: 1;
    z-index: 10;
}

#activelivingofMobSec2 .slide.right {
    right: 0;
    opacity: 0.7;
    transform: translateX(0) scale(0.9);
}

#activelivingofMobSec2 .slide.hidden {
    opacity: 0;
    pointer-events: none;
}

#activelivingofMobSec2 .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#activelivingofMobSec2 .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#activelivingofMobSec2 .slide.center .slide-overlay {
    opacity: 1;
}

#activelivingofMobSec2 .description {
    font-family: var(--primary-para-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    padding: 0px 10px;
}

#activelivingofMobSec2 .title {
    text-align: center;
    padding: 0px 10px;
}

#activelivingofMobSec2 .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#activelivingofMobSec2 .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #821A52;
    cursor: pointer;
    transition: all 0.3s ease;
}

#activelivingofMobSec2 .dot.active {
    background: #821A52;
    width: 16px;
    height: 16px;
}

#morethanhome .morethanhometxt h3 {
    /* font-size: 2rem;
    line-height: 2.5rem; */
    padding-right: 12rem;
    padding-left: 12rem;
}

#morethanhome .morethanhome-cards {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    gap: 1rem;
    padding: 2rem 0rem;
    margin: 0 1rem;
    align-items: start;
}

#morethanhome .hobby-card-image img {
    width: 100%;
}

#morethanhome .hobby-card-para {
    max-width: 300px;
}

#morethanhome .hobby-card-txt {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    padding: 0 5px;
}


@media (max-width: 625px) {
    #heroreimagineMobsec .banner-tagline {
        top: 98%;
        left: 12%;
        padding-right: 10rem;
    }

    #activelivingofMobSec .main-para {
        padding: 0 3.5rem;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        font-size: 1.8rem;
        line-height: 2.2rem;
        color: #FFFFFF;
        font-family: var(--primary-heading-font);
        font-weight: 700;
        margin-top: -18rem;
    }

    #heroreimagineMobsec .banner-para {
        top: 98%;
        left: 12%;
        padding-right: 10rem;
        position: absolute;
        z-index: 1;
        margin-top: -13rem;
    }

    #smarthome .smarthometxt h3 {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    #activelivingofMobSec .main-heading {
        padding: 0 70px;
    }

    .page-id-14 #heroreimagineMobsec {
        position: relative;
    }

}

/* 480px */
@media (max-width: 480px) {
    .banner {
        padding: 0px 15px 0px 15px;
    }

    #heroreimagineMobsec .banner-tagline {
        top: 83%;
        padding-right: 5.5rem;
    }

    #heroreimagineMobsec .banner-para {
        top: 100%;
        margin-top: -19rem;
        padding-right: 4rem;
    }

    #thelivinghubMobSec .thelivinghumMob-txt p {
        font-size: 14px;
        padding: 27px 40px 16px 40px;
    }

    #thelivinghubMobSec .thelivinghubMob-img1 img,
    .thelivinghubMob-img2 img {
        width: 100%;
    }

    #smarthome .smarthometxt h3 {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    #smarthome .voice-card-image img {
        width: 100%;
    }

    #smarthome .smarthome-cards {
        margin: 0 10px;
        gap: 10px;
    }

    #kitchenwork .kitchenwork-cards {
        gap: 10px;
        margin: 0 10px;
    }

    #smarthome .voice-card {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #smarthome .voice-card-para {
        max-width: 200px;
    }

    #activelivingofMobSec .main-heading {
        padding: 0 44px;
    }

    #activelivingofMobSec .main-para {
        padding: 0 25px;
    }

    #activelivingofMobSec .description {
        font-family: var(--primary-para-font);
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        padding: 0rem 3rem 0rem 3rem;
    }

    .ergonomic-card-image img {
        width: 100%;
    }

    #kitchenwork .ergonomic-card-txt p {
        max-width: 200px;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 17px;
        line-height: 20px;
    }

    #morethanhome .morethanhometxt h3 {
        font-size: 2rem;
        line-height: 2.5rem;
        padding-right: 4rem;
        padding-left: 5rem;
    }

    #morethanhome .hobby-card-image img {
        width: 100%;
    }

    #morethanhome .hobby-card-para {
        max-width: 205px;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        margin-top: -17rem;
    }

    #activelivingofMobSec2 .slide.center {
        left: 50%;
        transform: translateX(-50%) scale(1);
        width: 185px;
        height: 336px;
        opacity: 1;
        z-index: 10;
    }

    .page-id-14 #heroreimagineMobsec {
        position: relative;
    }

}

/* 345px */
@media (max-width: 364px) {
    #heroreimagineMobsec .banner-tagline {
        top: 65%;
        padding-right: 6rem;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #heroreimagineMobsec .banner-para {
        top: 80%;
        padding-right: 7rem;
    }

    #heroreimagineMobsec .banner-para p {
        font-size: .8rem;
        line-height: 1rem;
    }

    #thelivinghubMobSec .thelivinghumMob-txt h3 {
        font-size: 25px;
        line-height: 30px;
        padding-top: 5rem;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        margin-top: -11rem;
    }

    #heroreimagineMobsec .banner-para {
        margin-top: -14rem;
    }

    #thelivinghubMobSec .thelivinghumMob-txt p {
        font-size: 14px;
        padding: 35px 46px 0px 51px;
    }

    #thelivinghubMobSec .thelivinghubMob-img1 img,
    .thelivinghubMob-img2 img {
        width: 100%;
    }

    #smarthome .smarthometxt h3 {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    #smarthome .voice-card-image img {
        width: 100%;
    }

    #smarthome .voice-card {
        font-size: .8rem;
        line-height: 1.25rem;
    }

    #smarthome .voice-card-para {
        max-width: 160px;
    }

    #activelivingofMobSec {
        min-height: 0vh;
    }

    #activelivingofMobSec .main-heading {
        font-size: 25px;
        line-height: 30px;
        padding: 0 20px;
    }

    #activelivingofMobSec .main-para {
        padding: 0 35px;
    }

    #activelivingofMobSec .description {
        padding: 0rem 2rem 0rem 4rem;
    }

    #kitchenwork .kitchenworktxt h3 {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .ergonomic-card-image img {
        width: 100%;
    }

    #kitchenwork .ergonomic-card-txt h3 {
        font-size: 15px;
        line-height: 20px;
    }

    #kitchenwork .ergonomic-card-txt p {
        max-width: 160px;
    }

    #kitchenwork .grip-card-image img {
        width: 10rem;
        min-height: 12rem;
        border-radius: 10px;
    }

    #activelivingofMobSec .main-heading {
        padding: 0 25px;
    }

    #morethanhome .morethanhometxt h3 {
        font-size: 2rem;
        line-height: 2rem;
        padding-right: 0rem;
        padding-left: 1rem;
    }

    #morethanhome .hobby-card-image img {
        width: 100%;
    }

    #morethanhome .hobby-card-para {
        max-width: 161px;
    }

    #morethanhome .hobby-card-txt h3 {
        font-size: 13px;
        line-height: 30px;
        padding-bottom: .5rem;
    }
}

@media (max-width: 992px) {
    #kitchenwork .kitchenwork-cards {
        gap: 10px;
        margin: 0 10px;
        display: block;
    }

    #kitchenwork .ergonomic-card-txt p {
        max-width: 100%;
        font-size: 14px;
    }

    #kitchenwork .grip-card-image img {
        width: 100%;
        min-height: auto;
    }

    #heroreimagineMobsec .banner-tagline {
        top: auto;
        padding-right: 5.5rem;
        bottom: 100px;
    }

    #heroreimagineMobsec .banner-tagline h3 {
        margin-top: auto;
    }

    #heroreimagineMobsec .banner-para {
        margin-top: auto;
        top: auto;
        bottom: 50px;
    }

    #heroreimaginesec {
        font-family: var(--primary-para-font);
        margin-top: 120px;
    }

    #typicalamenitiessec,
    #bathroomsthatthinkheadsec,
    #activelivingofyourlifesec {
        min-height: auto;
    }
}