﻿body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway';
}

p {
    font-family: 'Jost';
}
/* Base hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
    will-change: transform;
}

/* Left */
.slide-left {
    transform: translateX(-70px);
}

/* Right */
.slide-right {
    transform: translateX(70px);
}
/* Slide from top */
.slide-top {
    transform: translateY(-70px);
}

/* Slide from bottom */
.slide-bottom {
    transform: translateY(70px);
}
/* When visible */
.animate.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}





/*------ FOR TEXT COME FROM IN TO OUT---------*/
.hidden {
    opacity: 0;
    /*transform: scale(0.6);*/ /* aur chhota start karega */
    /*transition: all 0.9s ease-out;*/ /* thoda slow bhi rakha */

    transform: scale(0.4); /* bahut chhota se start hoga */
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show {
    opacity: 1;
    transform: scale(1); /* final normal size */
}







.header-mobile {
    display: none;
}
/* ==== HEADER STYLING ==== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 99999;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==== HEADER INNER BAR ==== */
.header-menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: auto;
    padding: 25px 20px;
}

/* ==== NAVIGATION ==== */
.nav-container {
    display: flex;
}

.nav-link {
    position: relative;
}

    .nav-link a {
        font-family: 'Jost';
        font-weight: 400;
        font-size: 17px;
        color: #000;
        padding: 15px 20px;
        display: block;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

        .nav-link a:hover {
            color: #FFB100;
            background-color: rgba(255, 177, 0, 0.08);
        }

/* ==== SUB NAV (DROPDOWN) ==== */
.head-sub-navlink {
    position: absolute;
    width: 15vw;
    background: rgba(255, 255, 255, 0.97);
    border-top: 2px solid #FFB100;
    border-bottom: 2px solid #FFB100;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    display: none;
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.arrow:hover .head-sub-navlink {
    display: block;
    pointer-events: auto;
    transform: translateY(0);
}

/* ==== SUB NAV LINKS ==== */

.sub-navlink a {
    padding: 15px 15px;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .sub-navlink a:hover {
        background-color: rgba(255, 177, 0, 0.08);
        color: #FFB100;
    }

/* ==== ARROW ICON ==== */
.arrow > a::after {
    content: "▼";
    font-size: 13px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Second-level dropdown */
.inner-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 15vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateX(15px);
    transition: all 0.3s ease;
    border-top: 2px solid #FFB100;
}

/* Show submenu when hovering the parent */
.sub-navlink:hover .inner-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Inner submenu links */
.inner-submenu a {
    display: block;
    padding: 11px 15px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

    .inner-submenu a:hover {
        background-color: rgba(255, 177, 0, 0.08);
        color: #FFB100;
    }

/* Right arrow on sub items */
.arrow-right > a::after {
    content: "›";
    font-size: 25px;
    margin-left: auto;
    float: right;
    color: #666;
    transition: transform 0.3s ease;
}

.arrow-right:hover > a::after {
    transform: translateX(3px);
    color: #FFB100;
}


/* ==== LOGO ==== */
.header-logo {
    width: 20%;
    transition: transform 0.5s ease;
}

    .header-logo img:hover {
        transform: scale(1.05);
    }


.header.shrink {
    padding: 8px 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .header.shrink .header-menubar {
        padding: 10px 20px;
    }

    .header.shrink .header-logo img {
        transition: height 0.3s ease;
    }




/*---------FOOTER PAGE---------*/

.footer {
    position: relative;
    background-color: #2F2F30;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
}

.footer-container {
    display: grid;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 40px 30px 40px 30px;
}

.footer-logo {
    width: 60%;
    margin-top: 105px;
}

.footer-heading h6 {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0;
    color: white;
}

.divider1 {
    width: 50%;
    height: 2px;
    background-color: white;
    margin-top: -20px;
}

.fb {
    margin-top: 35px;
}

.fb-img {
    width: 45px;
    transition: 0.5s ease all;
}

    .fb-img:hover {
        transform: scale(1.2);
    }
.footer-p a {
    display: block; /* keeps each item on its own line */
    margin: 5px 0;
    color: white;
    font-family: 'Poppins';
    font-size: 17px;
    font-weight: 500;
}

    /* span holds the underline */
    .footer-p a span {
        position: relative;
        display: inline-block; /* important: underline only word width */
        padding: 15px 0 0px;
        transition: 0.3s ease;
    }

        /* underline hidden */
        .footer-p a span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #FFB100;
            transition: width 0.3s ease;
        }

    /* hover effects */
    .footer-p a:hover span {
        color: #FFB100;
        font-weight: 600;
    }

        /* underline visible */
        .footer-p a:hover span::after {
            width: 100%;
        }


.location-p {
    font-family: 'Jost';
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: white;
}

.footer-container3 {
    margin-top: 30px;
}


.footer-flex {
    display: flex;
    gap: 10px;
    margin: -15px 0 -25px 0;
}

.location {
    width: 60px;
    height: 60px;
    border: 2px solid black;
    border-radius: 50%;
    transition: 0.5s ease all;
    margin: auto;
}

.email-img1 {
    width: 45px;
    align-content: center;
    margin-left: -15px;
}

    .email-img1 img {
        padding: 8px;
    }

.email-img {
    width: 37px;
    align-content: center;
}

    .email-img img {
        padding: 5px;
    }





.section5 {
    background-color: #FFD45A;
}

.section5-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-around;
    margin: auto;
    padding: 75px 0 65px 0;
}

.section5-container1 {
    width: 38%;
}

.section5-txt h1 {
    color: #1E1810;
    font-size: 43px;
    line-height: 60px;
    font-weight: 700;
}

.section5-txt p {
    font-family: 'Jost';
    font-size: 18px;
    line-height: 30px;
    color: #62615C;
    font-weight: 400;
}

.call-flex {
    background-color: white;
    border-radius: 10px;
    margin: 45px 200px 0 0px;
    padding: 12px 28px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .call-flex:hover {
        transform: scale(1.05);
    }
    /* Make whole block clickable and perfectly aligned */
    .call-flex a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: inherit;
        white-space: nowrap; /* ✅ Prevent line break */
    }

    .call-flex:hover {
        background-color: #353131;
    }

        .call-flex:hover .call-txt p {
            color: white;
        }

.call-img img {
    width: 22px;
    transition: filter 0.3s ease;
}

/* Image turns white on hover */
.call-flex:hover .call-img img {
    filter: brightness(0) invert(1);
}

.call-txt p {
    color: #353131;
    font-family: 'Helvetica';
    font-size: 20px;
    margin: 0;
}

.section5-container2 {
    width: 33%;
    background-color: #353131;
    border-radius: 15px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.contact-form {
    margin: 0px 25px 0px 25px;
}

.contact-heading h3 {
    font-size: 25px;
    color: white;
    text-align: center;
    padding: 25px 10px 0px 10px;
}

.contact-form1 {
    width: 100%;
    padding-bottom: 80px;
}

.label {
    padding: 10px 30px 10px 30px;
}

.name {
    padding: 9px 10px 8px 10px;
    font-size: 15px;
    font-family: 'Jost';
    border-radius: 10px;
    width: 100%;
    color: black;
    font-weight: 500;
    background-color: #EDE9E1;
}

.button {
    margin: 10px 0px 0px 30px;
}

.submit {
    color: #353131;
    background-color: #f2bd1e;
    padding: 9px 45px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Jost';
    transition: 0.5s ease all;
}

.button:hover .submit {
    background-color: #1E1810;
    color: white;
}




/*---------Copyright-Block-----------*/

.copyright {
    width: 100%;
    background-color: #BEBCC2;
}

.copyright-inner-part {
    display: flex;
    width: 100%;
    padding: 10px;
}

.left {
    font-family: 'Jost';
    color: black;
    font-size: 17px;
    width: 50%;
    text-align: center;
}

.right {
    font-family: 'Jost';
    border-right: none;
    width: 50%;
    text-align: center;
}

    .right a {
        color: black;
        font-size: 17px;
    }




.book-desktop {
    top: 455px;
    background-color: #ED1C24;
    padding: 13px 16px;
    display: block;
    position: fixed;
    z-index: 999;
    right: -81px;
    transform: rotate(-90deg);
}

    .book-desktop:hover span {
        color: #FFB100;
    }

    .book-desktop span {
        color: white;
        font-size: 17px;
        font-family: 'Jost';
    }





.book-mobile {
    display: none;
}

.book-mobile {
    bottom: 0px;
    position: fixed;
    left: 0px;
    width: 100%;
    right: 0px;
}

.design-flex {
    display: flex;
    background-color: #ED1C24;
    padding-bottom: 10px;
}


.flex {
    width: 100%;
    display: flex;
}

.design-flex span {
    color: white;
    font-size: 16px;
    font-family: 'Jost';
}

.design {
    width: 50%;
    padding: 13px 0px;
    text-align: center;
    border-right: 3px solid #FFB100;
}

.toll-free {
    width: 50%;
    padding: 13px 0px;
    text-align: center;
}

    .toll-free span {
        color: white;
        font-size: 16px;
        font-family: 'Jost';
    }





/*------- for Png Block Bottom to Top Click --------*/
.png {
    display: block;
    position: fixed;
    bottom: 35px;
    z-index: 5;
    right: 30px;
}

.png-inner {
    padding: 9px 13px;
    background-color: #F2BD1E;
    font-size: 20px;
    transition: 0.5s ease all;
    border-radius: 50%;
}

.png :hover {
    background-color: #333132;
    transform: scale(1.1);
}

.png-inner :hover .btb {
    /* filter values for pure red */
    filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(7480%) hue-rotate(1deg) brightness(97%) contrast(107%);
}

#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}


    #backToTopBtn:hover {
        opacity: 1;
    }






/*------HOME PAGE-------*/
.swiper-mobile {
    display: none;
}

.swiper-desktop {
    margin-top: 109px;
    display: block;
    width: 100%;
}

.custom-swiper-prev::after,
.custom-button-next::after {
    display: none;
}


/* Custom navigation buttons */
.custom-swiper-next,
.custom-swiper-prev {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .custom-swiper-prev img,
    .custom-swiper-next img {
        width: 32px;
        z-index: 1;
        object-fit: contain;
    }

/* Button positions */
.custom-swiper-prev {
    left: 0px;
}

.custom-swiper-next {
    right: 0px;
}




.section1 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #F2BD1E;
    padding: 20px 0 0px 0;
    width: 100%;
}

.section1-container {
    display: flex;
    margin: auto;
}

.section1-txt {
    width: 50%;
    padding: 100px 154px 0px 175px;
}

    .section1-txt h2 {
        font-size: 45px;
        font-weight: 700;
        color: white;
        letter-spacing: 4px;
        line-height: 55px;
    }

    .section1-txt p {
        font-size: 20px;
        line-height: 30px;
        color: black;
    }

.explore {
    margin: 50px 0 150px 0;
}

    .explore:hover .exp {
        background-color: white;
        color: #2F2F30;
    }

.exp {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: "Helvetica";
    background-color: #2F2F30;
    padding: 15px 30px;
}

/* === IMAGE PARALLAX === */
.section1-img {
    position: relative;
    overflow: hidden;
    width: 50%;
}

    .section1-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.2s ease-out;
        transform-origin: center;
        will-change: transform;
    }





.section2 {
    position: relative;
    width: 100%;
}

.section2-containers {
}

.section2-heading {
    text-align: center;
    font-family: "Helvetica", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #1E1810;
}

.section2-containers {
    background-color: #BEBCC2;
}

.section2-container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    padding: 0px 0 70px 0;
}

.section2-container1 {
    width: 50%;
    padding: 0 10px;
}

.section2-img {
    transition: 0.5s ease all;
    overflow: hidden;
}

    .section2-img img {
        transition: 0.5s ease all;
    }

    .section2-img:hover.section2-img img {
        transform: scale(1.1);
    }

.section2-container11 {
    background-color: #FFFFFF;
    padding: 20px 198px 20px 50px;
}

.section2-container11-heading {
    font-size: 22px;
    color: #1E1810;
}

.section2-txt {
    font-size: 18px;
    line-height: 30px;
    line-height: 33px;
    color: #62615C;
}

.explore1 {
    margin: 40px 0 50px 0;
}

    .explore1:hover .exp1 {
        background-color: #2F2F30;
        color: white;
    }

.exp1 {
    color: #2F2F30;
    font-size: 15px;
    font-weight: 600;
    font-family: "Helvetica";
    background-color: #f2bd1e;
    padding: 15px 35px;
    transition: 0.5s ease all;
}





.section3-containers {
    width: 100%;
    background-color: #BEBCC2;
}

.section3 {
    background-image: url('../img/worker.png');
    background-size: cover;
    width: 100%;
    max-width: 1600px;
    margin: auto;
}

.section3-bg-overlay {
    background-color: #000000;
    opacity: 0.3; /*
    inset: 0;*/
    position: absolute;
}

.section3-container {
    position: relative;
    padding: 0px 0px 200px 0px;
}

.section3-headings {
    color: white;
    font-size: 37px;
    text-transform: uppercase;
    text-align: center;
    padding: 215px 0px 0px 0px;
    letter-spacing: 3px;
}

.section3-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    opacity: 0.99;
}

.section3-content1 {
    background-color: #2F2F30;
    padding: 40px 0px 40px 0px;
    transition: 0.5s ease all;
}

    .section3-content1:hover {
        background-color: #5F5E61;
    }

.section3-contents-img {
    width: 25px;
    justify-self: center;
}

.section3-contents-heading {
    font-size: 22px;
    text-align: center;
    letter-spacing: 1px;
}

.dif {
    background-color: #F2BD1E;
}

    .dif:hover {
        background-color: #141313;
    }

.diff {
    background-color: white;
}

.white {
    color: white;
}

.rate {
    color: #2F2F30;
}





.section4 {
    width: 100%;
    background-color: #BEBCC2;
    padding: 50px 0 0 0;
}

.section4-container {
    width: 100%;
    margin: auto;
    max-width: 1000px;
}

.section4-heading {
    color: #1E1810;
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 5px;
}

.section4-swiper {
}

.swiper-txt {
    padding: 30px 90px 30px 90px;
}

    .swiper-txt p {
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 70px;
        color: #000000;
    }

    .swiper-txt h5 {
        color: #222222;
        text-align: center;
        font-family: 'Jost';
        font-size: 17px;
        font-weight: 500;
    }

.swiper-left::after,
.swiper-right::after {
    display: none;
}


/* Custom navigation buttons */
.swiper-right,
.swiper-left {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .swiper-left img,
    .swiper-right img {
        width: 42px;
        z-index: 1;
        object-fit: contain;
    }

/* Button positions */
.swiper-left {
    left: 0px;
}

.swiper-right {
    right: 0px;
}





/*---------SERVICES PAGE--------*/
.common-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 100px 0px 100px;
}

.common-h1-h3-heading h1 {
    color: white;
    font-size: 63px;
    line-height: 75px;
    font-weight: 700;
}

.common-h1-h3-heading h3 {
    color: white;
    font-size: 26px;
    font-weight: 700;
}

.common-heading h3 {
    color: #ffffff;
    font-size: 30px;
    font-family: 'Jost';
    font-weight: 400;
    text-align: center;
    line-height: 40px;
}

.divider {
    background: white;
    width: 15%;
    height: 3px;
    margin: auto;
}

.common-txt p {
    font-size: 19px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 33px;
}

.section3-heading h2 {
    color: #1E1810;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.mix-css {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}











.service-section1 {
    width: 100%;
    margin-top: 109px;
    position: relative;
    overflow: hidden;
}

.service-container {
    display: flex;
    width: 100%;
}

.service-contain {
    display: flex;
    width: 100%;
}

.service-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/modern-kitchen.png');
    padding: 200px 50px 200px 200px;
}

.parallax-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform-origin: center center;
    transition: transform 0.2s linear;
    z-index: 1;
}

.service-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
    z-index: 2;
}

.service-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.service-container2 {
    width: 50%;
    align-content: center;
}

.service-container2-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 100px 0px 100px;
}

.service-container2-content1 {
    border-right: 3px solid #62615C;
}

.home-txt p:hover {
    color: #FFB100;
}

.service-container2-content1:hover .home-img img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
    /* Yellow color #FFB100 filter */
    transition: 0.3s ease;
}

.home-img {
    width: 55px;
}

.home-img1 {
    width: 50px;
}

.home-img img {
    transition: 0.3s ease;
}

.kitchen-container2-content1:hover .home-img img {
    filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
    /* Yellow color #FFB100 filter */
    transition: 0.3s ease;
}

.home-txt p {
    color: #000000;
    font-size: 20px;
    line-height: 30px;
}

.kitchen-container2-content1:hover .home-txt p {
    color: #FFB100;
}

.explore-service {
    margin: 60px 0 50px 0;
    justify-self: center;
}

.explore1:hover .exp1 {
    background-color: #2F2F30;
    color: white;
}

.exp-service {
    color: #2F2F30;
    font-size: 15px;
    font-weight: 600;
    font-family: "Helvetica";
    background-color: #f2bd1e;
    padding: 15px 35px;
    transition: 0.5s ease all;
}

    .exp-service:hover {
        background-color: #2F2F30;
        color: white;
    }





.service-section2 {
    width: 100%;
}

.service-section2-container1 {
    width: 50%;
    align-content: center;
}

.service-section2-container2 {
    background-image: url('../img/bedroom-wardrobe.png');
    width: 50%;
    position: relative;
    padding: 200px 50px 200px 200px;
}




.service-section3 {
    width: 100%;
}

.service-section3-container1 {
    background-image: url('../img/wardrobe.png');
    width: 50%;
    position: relative;
    padding: 150px 50px 150px 200px;
}

.service-section3-container2 {
    width: 50%;
    align-content: center;
}





/*-------KITCHEN PAGE------*/
.kitchen-section1 {
    width: 100%;
    margin-top: 111px;
    overflow: hidden;
    position: relative;
}

.kitchen-container {
    width: 100%;
    display: flex;
}

.kitchen-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/kitchen2.png');
    padding: 165px 50px 188px 200px;
}

.kitchen-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.kitchen-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.kitchen-container2 {
    width: 50%;
    align-content: center;
}

.kitchen-container2-content1 {
    border-right: 3px solid #62615C;
}





.kitchen-section2 {
    position: relative;
    width: 100%;
    background-color: #BEBCC2;
}

.kitchen-section2-container {
    width: 100%;
    margin: auto;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0 70px 0;
}

.kitchen-section2-container1 {
    width: 100%;
    padding: 0 10px 20px 10px;
}

.kitchen-section2-container11 {
    background-color: #FFFFFF;
    padding: 20px 198px 20px 50px;
}

.kitchen-section2-container11-heading {
    font-size: 22px;
    color: #1E1810;
}

.kitchen-container2 {
    width: 50%;
    align-content: center;
}

.kitchen-container2-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 100px 0px 100px;
}

.kitchen-container2-content1 {
    border-right: 3px solid #62615C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.kitchen-section2-img {
    transition: 0.5s ease all;
    overflow: hidden;
}

    .kitchen-section2-img img {
        transition: 0.5s ease all;
    }

    .kitchen-section2-img:hover.kitchen-section2-img img {
        transform: scale(1.1);
    }

.kitchen-section2-txt {
    font-size: 18px;
    line-height: 30px;
    color: #62615C;
}





/*---------HANDLELESS KITCHEN PAGE--------*/

.kitchen-section1-container {
    width: 100%;
    display: flex;
}

.kitchen-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.kitchen-section3-content1 {
    width: 100%;
    background-color: #C7CFD3;
    padding: 35px 59px 35px 59px;
    transition: 0.5s ease all;
}

    .kitchen-section3-content1:hover {
        background-color: #FFB100;
    }


.kitchen-section4-txt h4 {
    color: #1E1810;
    font-size: 20px;
    letter-spacing: 3px;
    line-height: 24px;
    text-align: center;
}

.kitchen-section4-txt p {
    color: #62615C;
    font-size: 16px;
    line-height: 28px;
}

.kitchen-section4-contents {
    width: 33%;
    background-color: #F8F7F3;
    padding: 50px 85px 80px 85px;
}







.handleless-section1 {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
    position: relative;
}

.handleless-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/handle-less-kitchen2.png');
    padding: 150px 50px 162px 200px;
}

.handleless-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}


.handleless-container2 {
    width: 50%;
    align-content: center;
}


.handleless-container2-content1 {
    border-right: 3px solid #62615C;
}

    .handleless-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.handleless-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.handleless-section2-container {
    max-width: 846px;
    width: 100%;
    margin: auto;
}





.handleless-section3 {
    width: 100%;
}

.handleless-section3-heading h2 {
    color: #1E1810;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.handleless-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.alg {
    background-color: #1F2528;
    transition: 0.5s ease all;
}

    .alg:hover {
        background-color: #2F2F30;
    }



.yellow {
    color: #F2BD1E;
}

.handleless-section3-txt h4 {
    text-align: center;
    font-size: 23px;
    line-height: 29px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.handleless-section3-txt p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}




.handleless-section4 {
    width: 100%;
}

.handleless-section4-container {
    display: flex;
}

.handleless-section4-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/handle-less-kitchen3.png');
}

    .handleless-section4-img img {
        height: 100%;
    }






/*---------LAMINATED KITCHEN PAGE--------*/
.laminated-section1 {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
    position: relative;
}

.laminated-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/laminated-kitchen-worktops.png');
    padding: 171px 50px 168px 200px;
}

.laminated-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}


.laminated-container2 {
    width: 50%;
    align-content: center;
}



.laminated-container2-content1 {
    border-right: 3px solid #62615C;
}

    .laminated-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.laminated-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.laminated-section2-container {
    max-width: 804px;
    width: 100%;
    margin: auto;
}







.laminated-section3 {
    width: 100%;
}

.laminated-section3-heading h2 {
    color: #1E1810;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.laminated-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.laminated-section3-content1 {
    width: 100%;
    background-color: #C7CFD3;
    padding: 35px 59px 35px 59px;
}

.laminated-section3-txt h4 {
    text-align: center;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.laminated-section3-txt p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}




.laminated-section4 {
    width: 100%;
}

.laminated-section4-container {
    display: flex;
}

.laminated-section4-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/modern-laminated-kitchen.png');
}

    .laminated-section4-img img {
        height: 100%;
    }






/*---------CONTEMPORARY KITCHEN PAGE--------*/
.contemporary-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}


.contemporary-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/contemporary-kitchens3.png');
    padding: 240px 50px 200px 200px;
}

.contemporary-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.contemporary-container2 {
    width: 50%;
    align-content: center;
}


.contemporary-container2-content1 {
    border-right: 3px solid #62615C;
}

    .contemporary-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }






.contemporary-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.contemporary-section2-container {
    max-width: 804px;
    width: 100%;
    margin: auto;
}




.contemporary-section3 {
    width: 100%;
}

.contemporary-section3-heading h2 {
    color: #1E1810;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.contemporary-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.contemporary-section3-content1 {
    width: 100%;
    background-color: #C7CFD3;
    padding: 35px 59px 35px 59px;
}

.contemporary-section3-txt h4 {
    text-align: center;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contemporary-section3-txt p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}




.contemporary-section4 {
    width: 100%;
}

.contemporary-section4-container {
    display: flex;
}

.contemporary-section4-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/contemporary-kitchens2.png');
}

    .contemporary-section4-img img {
        height: 100%;
    }





/*---------STONE WORKTOPS KITCHEN PAGE--------*/
.stone-section1 {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
}


.stone-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/stone-worktop-kitchen.png');
    padding: 107px 50px 140px 200px;
}


.stone-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.stone-container2 {
    width: 50%;
    align-content: center;
}

.stone-container2-content1 {
    border-right: 3px solid #62615C;
}

    .stone-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.stone-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.stone-section2-container {
    max-width: 804px;
    width: 100%;
    margin: auto;
}







.stone-section3 {
    width: 100%;
}

.stone-section3-heading h2 {
    color: #1E1810;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.stone-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.stone-section3-content1 {
    width: 100%;
    background-color: #C7CFD3;
    padding: 35px 59px 35px 59px;
}

.stone-section3-txt h4 {
    text-align: center;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stone-section3-txt p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}




.stone-section4 {
    width: 100%;
}

.stone-section4-container {
    display: flex;
}

.stone-section4-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/stone-worktop-kitchen2.png');
}

    .stone-section4-img img {
        height: 100%;
    }






/*-------BEDROOMS PAGE------*/
.bedroom-section1 {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
    position: relative;
}

.bedroom-container {
    width: 100%;
    display: flex;
}

.bedroom-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/bedroom-wardrobe.png');
    padding: 200px 50px 200px 200px;
}

.bedroom-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
    z-index: 2;
}

.bedroom-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}


.bedroom-container2 {
    width: 50%;
    align-content: center;
}

.bedroom-container2-content1 {
    border-right: 3px solid #62615C;
}





.bedroom-section2 {
    position: relative;
    width: 100%;
}

.bedroom-section2-container {
    background-color: #BEBCC2;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0 70px 0;
}

.bedroom-section2-container1 {
    width: 100%;
    padding: 0 10px 20px 10px;
}

.bedroom-section2-container11 {
    background-color: #FFFFFF;
    padding: 20px 198px 20px 50px;
}

.bedroom-section2-container11-heading {
    font-size: 22px;
    color: #1E1810;
}

.bedroom-container2 {
    width: 50%;
    align-content: center;
}

.bedroom-container2-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 100px 0px 100px;
}

.bedroom-container2-content1 {
    border-right: 3px solid #62615C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .bedroom-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }

.bedroom-section2-img {
    transition: 0.5s ease all;
    overflow: hidden;
}

    .bedroom-section2-img img {
        transition: 0.5s ease all;
    }

    .bedroom-section2-img:hover.bedroom-section2-img img {
        transform: scale(1.1);
    }

.bedroom-section2-txt {
    font-size: 18px;
    line-height: 33px;
    color: #62615C;
}





/*---------CONTEMPORARY BEDROOM KITCHEN PAGE--------*/

.bedroom-section3-txt p {
    color: #62615C;
    font-size: 16px;
    line-height: 28px;
}

.bedroom-section3-img img {
    height: 100%;
}

.bedroom-section3-contents {
    width: 33%;
    background-color: #F8F7F3;
    padding: 80px 50px 80px 50px;
}







.contemporary-bedroom-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.contemporary-bedroom-container {
    width: 100%;
    display: flex;
}

.contemporary-bedroom-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/contemporary-bedroom2.png');
    padding: 155px 50px 200px 200px;
}

.contemporary-bedroom-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
    z-index: 2;
}

.contemporary-bedroom-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.contemporary-bedroom-container2 {
    width: 50%;
    align-content: center;
}


.contemporary-bedroom-container2-content1 {
    border-right: 3px solid #62615C;
}

    .contemporary-bedroom-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.contemporary-bedroom-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.contemporary-bedroom-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}







.contemporary-bedroom-section3 {
    width: 100%;
}

.contemporary-bedroom-section3-container {
    display: flex;
}

.bedroom-section3-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/contemporary-bedroom3.png');
}





/*---------MODERN BEDROOM KITCHEN PAGE--------*/
.modern-bedroom-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.modern-bedroom-container {
    width: 100%;
    display: flex;
}

.modern-bedroom-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/modern-bedroom.png');
    padding: 130px 50px 135px 200px;
}

.modern-bedroom-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
    z-index: 2;
}

.modern-bedroom-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.modern-bedroom-container2 {
    width: 50%;
    align-content: center;
}

.modern-bedroom-container2-content1 {
    border-right: 3px solid #62615C;
}

    .modern-bedroom-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.modern-bedroom-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.modern-bedroom-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}






.modern-bedroom-section3 {
    width: 100%;
}

.modern-bedroom-section3-container {
    display: flex;
}

.modern-bedroom-section3-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/modern-bedroom2.png');
}




/*---------CLASSIC BEDROOM KITCHEN PAGE--------*/
.classic-bedroom-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.classic-bedroom-container {
    width: 100%;
    display: flex;
}

.classic-bedroom-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/classic-bedroom2.png');
    padding: 160px 50px 185px 200px;
}

.classic-bedroom-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.classic-bedroom-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.classic-bedroom-container2 {
    width: 50%;
    align-content: center;
}

.classic-bedroom-container2-content1 {
    border-right: 3px solid #62615C;
}

    .classic-bedroom-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }






.classic-bedroom-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.classic-bedroom-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}






.classic-bedroom-section3 {
    width: 100%;
}

.classic-bedroom-section3-container {
    display: flex;
}

.classic-bedroom-section3-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/classic-bedroom3.png');
}


.bedroom-section3-txt p {
    color: #62615C;
    font-size: 16px;
    line-height: 28px;
}

/*---------KIDS BEDROOM KITCHEN PAGE--------*/
.kid-bedroom-section1 {
    width: 100%;
    margin-top: 110px;
    overflow: hidden;
    position: relative;
}

.kid-bedroom-container {
    width: 100%;
    display: flex;
}

.kid-bedroom-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/kids-bedroom3.png');
    padding: 130px 50px 145px 200px;
}

.kid-bedroom-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.kid-bedroom-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.kid-bedroom-container2 {
    width: 50%;
    align-content: center;
}

.kid-bedroom-container2-content1 {
    border-right: 3px solid #62615C;
}

    .kid-bedroom-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }






.kid-bedroom-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.kid-bedroom-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}






.kid-bedroom-section3 {
    width: 100%;
}

.kid-bedroom-section3-container {
    display: flex;
}

.kid-bedroom-section3-img {
    width: 67%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/kids-bedroom4.png');
}






/*-------WARDROBE PAGE------*/
.wardrobe-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.wardrobe-container {
    width: 100%;
    display: flex;
}

.wardrobe-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/wardrobe.png');
    padding: 170px 50px 175px 200px;
}

.wardrobe-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.wardrobe-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.wardrobe-container2 {
    width: 50%;
    align-content: center;
}


.wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
}






.wardrobe-section2 {
    position: relative;
    width: 100%;
}

.wardrobe-section2-container {
    background-color: #BEBCC2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0 70px 0;
}

.wardrobe-section2-container1 {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 0 10px 20px 10px;
}

.wardrobe-section2-container11 {
    background-color: #FFFFFF;
    padding: 20px 30px 20px 50px;
}

.wardrobe-section2-container11-heading {
    font-size: 22px;
    color: #1E1810;
}

.wardrobe-container2 {
    width: 50%;
    align-content: center;
}

.wardrobe-container2-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0px 100px 0px 100px;
}

.wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .wardrobe-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }


.wardrobe-section2-img {
    transition: 0.5s ease all;
    overflow: hidden;
}

    .wardrobe-section2-img img {
        transition: 0.5s ease all;
    }

    .wardrobe-section2-img:hover.wardrobe-section2-img img {
        transform: scale(1.1);
    }

.wardrobe-section2-txt {
    font-size: 18px;
    line-height: 30px;
    line-height: 33px;
    color: #62615C;
}






/*---------SLIDING WARDROBE PAGE--------*/

.wardrobe-section3-txt h4 {
    text-align: center;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wardrobe-section3-txt p {
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
}

.wardrobe-section3-content1 {
    width: 100%;
    background-color: #1F2528;
    padding: 30px 150px 30px 150px;
    transition: 0.5s ease all;
}

    .wardrobe-section3-content1:hover {
        background-color: #2F2F30;
    }





.sliding-wardrobe-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.sliding-wardrobe-container {
    width: 100%;
    display: flex;
}

.sliding-wardrobe-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/sliding-wardrobe2.png');
    padding: 200px 50px 200px 200px;
}

.sliding-wardrobe-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.sliding-wardrobe-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.sliding-wardrobe-container2 {
    width: 50%;
    align-content: center;
}

.sliding-wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
}

    .sliding-wardrobe-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.sliding-wardrobe-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.sliding-wardrobe-section2-container {
    max-width: 804px;
    width: 100%;
    margin: auto;
}




.sliding-wardrobe-section3 {
    width: 100%;
}

.sliding-wardrobe-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}


.alg1 {
    background-color: #5F5E61;
}

    .alg1:hover {
        background-color: #2F2F30;
    }





/*---------FITTED WARDROBE PAGE--------*/
.fitted-wardrobe-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.fitted-wardrobe-container {
    width: 100%;
    display: flex;
}

.fitted-wardrobe-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/fitted-wardrobe2.png');
    padding: 200px 50px 200px 200px;
}

.fitted-wardrobe-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.fitted-wardrobe-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.fitted-wardrobe-container2 {
    width: 50%;
    align-content: center;
}

.fitted-wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
}

    .fitted-wardrobe-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.fitted-wardrobe-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.fitted-wardrobe-section2-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}






.fitted-wardrobe-section3 {
    width: 100%;
}

.fitted-wardrobe-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}





/*---------LOFT WARDROBE PAGE--------*/
.loft-wardrobe-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.loft-wardrobe-container {
    width: 100%;
    display: flex;
}

.loft-wardrobe-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/loft-wardrobe.png');
    padding: 115px 50px 150px 200px;
}

.loft-wardrobe-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.loft-wardrobe-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.loft-wardrobe-container2 {
    width: 50%;
    align-content: center;
}

.loft-wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
}

    .loft-wardrobe-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }






.loft-wardrobe-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.loft-wardrobe-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}





.loft-wardrobe-section3 {
    width: 100%;
}

.loft-wardrobe-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}






/*---------WALK-IN WARDROBE PAGE--------*/
.walk-in-wardrobe-section1 {
    width: 100%;
    margin-top: 109px;
    overflow: hidden;
    position: relative;
}

.walk-in-wardrobe-container {
    width: 100%;
    display: flex;
}

.walk-in-wardrobe-container1 {
    width: 50%;
    position: relative;
    background-image: url('../img/walk-in-wardrobe3.png');
    padding: 200px 50px 200px 200px;
}

.walk-in-wardrobe-section1-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.3;
}

.walk-in-wardrobe-section1-contents {
    position: relative;
    z-index: 3;
    color: #fff;
}

.walk-in-wardrobe-container2 {
    width: 50%;
    align-content: center;
}

.walk-in-wardrobe-container2-content1 {
    border-right: 3px solid #62615C;
}

    .walk-in-wardrobe-container2-content1:hover .home-img img {
        filter: brightness(0) saturate(100%) invert(66%) sepia(72%) saturate(1600%) hue-rotate(2deg) brightness(101%) contrast(101%);
        transition: 0.3s ease;
    }





.walk-in-wardrobe-section2 {
    background-color: #1F2528;
    width: 100%;
    padding: 50px 0 50px 0;
}

.walk-in-wardrobe-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}





.walk-in-wardrobe-section3 {
    width: 100%;
}

.walk-in-wardrobe-section3-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.walk-wardrobe-section3-content1 {
    width: 100%;
    background-color: #1F2528;
    padding: 35px 59px 35px 59px;
}

    .walk-wardrobe-section3-content1:hover {
        background-color: #5F5E61;
    }







/*-------ABOUT PAGE-------*/
.about-section1-mob {
    display: none;
}

.about-section1 {
    margin-top: 109px;
    display: block;
    width: 100%;
}

.about-section1-container {
    display: flex;
    width: 100%;
}

.about-section1-container1 {
    background-color: #F2BD1E;
    width: 50%;
    padding: 100px 0px 0 0px;
}

.about-section1 h1 {
    color: white;
    line-height: 100px;
    font-size: 80px;
    letter-spacing: 2px;
    text-align: center;
}

.about-section1-txt h5 {
    font-size: 16px;
    line-height: 28px;
    color: #1E1810;
}

.about-section1-txt strong {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Jost';
    color: #62615C;
    line-height: 28px;
}

.about-section1-txt p {
    font-size: 16px;
    font-weight: 400;
    color: #62615C;
    line-height: 30px;
}

.about-section1-container2 {
    width: 50%;
    padding: 50px 120px 70px 120px;
}




.about-section2 {
    width: 100%;
}

.about-section2-container {
    width: 100%;
    display: flex;
}

.about-section2-container1 {
    width: 50%;
    padding: 30px 122px 30px 122px;
}

.about-section2-txt p {
    font-size: 16px;
    font-weight: 400;
    color: #62615C;
    line-height: 30px;
}

.about-section2-container2 {
    width: 50%;
}

.about-section2-img {
    height: 100%;
}

    .about-section2-img img {
        height: 100%;
    }




.about-section3 {
    width: 100%;
}

.about-section3-container {
    padding: 20px 122px 50px 122px;
}

.about-section3-txt p {
    font-size: 16px;
    font-weight: 400;
    color: #62615C;
    line-height: 30px;
}




.about-section4 {
    width: 100%;
    background-color: #BEBCC2;
    padding: 30px 0 0 0;
}

.about-section4-container {
}

.about-section4-heading h1 {
    font-size: 55px;
    text-align: center;
    color: #2F2F30;
}

.about-section4-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 35px;
}

.about-section4-content1 {
    padding: 60px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.one {
    background-color: black;
    transition: 0.5s ease all;
}

    .one:hover {
        background-color: #2F2F30;
    }

.two {
    background-color: white;
    transition: 0.5s ease all;
}

    .two:hover {
        background-color: #feb40c;
    }

.three {
    background-color: #BEBCC2;
    transition: 0.5s ease all;
}

    .three:hover {
        background-color: #5F5E61;
    }

.four {
    background-color: #F2BD1E;
    transition: 0.5s ease all;
}

    .four:hover {
        background-color: #1F2528;
    }

.about-section4-img {
    width: 25px;
}

.about-section4-txt h2 {
    font-size: 46px;
    margin: 20px 0 15px 0;
    text-align: center;
}

.about-section4-txt p {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 5px 0 0px 0;
    font-weight: 500;
}





.about-section5 {
    width: 100%;
    position: relative;
    background-image: url('../img/about-parth-kitchen3.png');
}

.about-section5-bg-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.5;
}

.about-section5-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 200px 331px 200px 0px;
}

.about-section5-txt h2 {
    font-size: 60px;
    color: #FFFFFF;
}

.about-section5-txt p {
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}





/*-------TESTIMONIAL PAGE-------*/
.testimonial-section {
    position: relative;
    width: 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1E1810;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 140px 0px 140px 0px;
    background-image: url('../img/Happy Customer.jpg');
}

.testimonial-section-bg-overlay {
    opacity: 0.64;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-color: #1E1810;
    inset: 0;
    position: absolute;
}

.testimonial-section-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.testimonial-txt h1 {
    color: white;
    font-size: 70px;
    text-align: center;
    font-weight: 700;
}

.testimonial-txt h3 {
    color: white;
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}




.testimonial-section2 {
    width: 100%;
    background-color: #F8F7F3;
}

.testimonial-section2-container {
    padding: 40px 20px 50px 20px;
}




.testimonial-section3 {
    background-color: #F8F7F3;
    width: 100%;
    margin-top: -100px;
    height: 120px;
    z-index: 100000;
    position: relative;
}





/*---------FAQ PAGE-------*/
.faq-section {
    width: 100%;
    margin-top: 111px;
    background-color: #FFFCFC;
}

.faq-section-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 25px 0 50px 0;
}

.faq-section-heading {
    font-size: 22px;
    text-align: center;
}

.faq-section-txt {
}

.accordion {
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    font-size: 17px;
    font-family: 'Raleway';
    transition: 0.4s;
    position: relative;
    background-color: #BEBCC2;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 60px;
}
    /* the +/- icon */
    .accordion::before {
        content: '+'; /* default is plus */
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        line-height: 1;
    }

    /* when active, change to minus */
    .accordion.active::before {
        content: '–'; /* Unicode “en‑dash” (looks like a minus) */
    }

    /* the +/- icon */
    .accordion::after {
        /* content: '+';*/
        content: '\25BC'; /* default is plus */
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        line-height: 1;
    }

    /* when active, change to minus */
    .accordion.active::after {
        content: '\25B2'; /* Unicode “en‑dash” (looks like a minus) */
    }



    .accordion:hover,
    .accordion.active {
        background-color: #363636;
        color: white;
    }

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #FFFCFC;
    margin-bottom: 10px;
}

    .panel p {
        font-size: 17px;
        line-height: 30px;
        letter-spacing: 0px;
        color: #363636;
    }

    .panel li {
        font-size: 17px;
        font-family: 'Jost';
        line-height: 30px;
        letter-spacing: 0px;
        color: #363636;
    }





/*-------BLOGS PAGE-------*/
.blog {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog-heading h1 {
    font-size: 74px;
    text-align: center;
    color: #1e1810;
    font-weight: 700;
    padding-top: 20px;
    margin-bottom: 30px;
}

.blog-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding-bottom: 50px;
}

.blog-contents {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.blog-content1 {
    background-color: #F5F5F5;
    box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease all;
}

.blog-img {
    overflow: hidden;
}

    .blog-img img {
        transition: 0.5s ease all;
    }

.blog-content1:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content1-part {
    padding: 15px 15px 15px 15px;
}

.blog-content1-txt h2 {
    font-size: 19px;
    color: #FFB100;
    line-height: 26px;
}

.date-info::before {
    content: '\1F4C5\FE0E'; /* 📅 calendar symbol (text version) */
    color: #777;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}

.date-info {
    color: #777;
    font-size: 13px;
    font-family: Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    opacity: 0.8;
}

.blog-content1-txt p {
    color: #777;
    font-size: 15px;
}

.read-more {
    font-size: 15px;
    color: #54595f;
    text-decoration: none;
    font-family: 'Jost';
    opacity: 0.9;
    transition: color 0.3s ease;
    position: relative;
}

    .read-more::after {
        content: '»'; /* right arrow symbol */
        margin-left: 5px;
        font-size: 16px;
        color: #333;
        transition: margin-left 0.3s ease;
    }

    .read-more:hover {
        color: #FFB100; /* text color on hover */
    }

        .read-more:hover::after {
            margin-left: 10px;
            color: #FFB100;
            font-size: 20px; /* slight move on hover */
        }





/*--------BLOG1 PAGE--------*/
.blog1 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog1-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog1-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog1-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog1-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog1-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.previous {
    border-top: 1px solid grey;
    padding-top: 40px;
}

.prev-post {
    font-size: 17px;
    color: #f5b74a; /* soft orange shade */
    text-decoration: none;
    font-family: 'Jost';
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

    .prev-post::before {
        content: '←'; /* left arrow symbol */
        margin-right: 6px;
        font-size: 18px;
        color: #f5b74a;
        transition: margin-right 0.3s ease;
    }





.blog2 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog2-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog2-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog2-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog2-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog2-img2 {
    width: 80%;
    opacity: 0;
    transform: scale(0.85);
    animation: zoomFadeIn 0.9s ease-out forwards;
}

@keyframes zoomFadeIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blog2-txt h4 {
    color: #1E1810;
    font-size: 32px;
}

.blog2-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.next {
    padding-top: 40px;
    float: right;
    margin-top: -63px;
}

.next-post {
    font-size: 17px;
    color: #f5b74a; /* soft orange shade */
    text-decoration: none;
    font-family: 'Jost';
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

    .next-post::after {
        content: '→'; /* left arrow symbol */
        margin-right: 6px;
        font-size: 18px;
        color: #f5b74a;
        transition: margin-right 0.3s ease;
    }




/*--------BEST MODULAR KITCHEN CONSULTANT------*/
.blog3 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog3-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog3-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog3-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog3-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog3-img2 {
    width: 80%;
}

.blog3-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog3-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog3-flex {
    display: flex;
    width: 100%;
    gap: 30px;
}

.blog3-img1 {
    width: 50%;
}

    .blog3-img1:hover img {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.blog3-txt-flex {
    width: 50%;
}

    .blog3-txt-flex p {
        color: #62615C;
        font-family: 'Jost';
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }





/*--------HIRE A PROFESSIONAL MODULAR KITCHEN DESIGNER------*/
.blog4 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog4-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog4-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog4-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog4-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog4-img2 {
    width: 80%;
}

.blog4-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog4-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog4-flex {
    display: flex;
    width: 100%;
    gap: 30px;
}

.blog4-img1 {
    width: 50%;
}

    .blog4-img1:hover img {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.blog4-txt-flex {
    width: 50%;
}

    .blog4-txt-flex p {
        color: #62615C;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }





/*--------BEST MODULAR WARDROBE2 PAGE------*/
.blog5 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog5-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog5-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog5-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog5-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog5-img2 {
    width: 80%;
}

.blog5-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog5-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog5-flex {
    display: flex;
    width: 100%;
    gap: 30px;
}

.blog5-img1 {
    width: 50%;
}

    .blog5-img1:hover img {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.blog5-txt-flex {
    width: 50%;
}

    .blog5-txt-flex p {
        color: #62615C;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }






/*--------LATEST MODULAR KITCHEN DESIGN SERVICE------*/
.blog6 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog6-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog6-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog6-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog6-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog6-img2 {
    width: 80%;
}

.blog6-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog6-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog6-flex {
    display: flex;
    width: 100%;
    gap: 30px;
}

.blog6-img1 {
    width: 50%;
}

    .blog6-img1:hover img {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.blog6-txt-flex {
    width: 50%;
}

    .blog6-txt-flex p {
        color: #62615C;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }





/*--------FIVE BEST REASON PAGE------*/
.blog7 {
    width: 100%;
    margin-top: 109px;
    background-color: #F8F7F3;
}

.blog7-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 0 70px 0px;
}

.blog7-heading h1 {
    color: #1E1810;
    font-size: 32px;
}

.blog7-img {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog7-heading span {
    font-family: 'Jost';
    font-weight: 500;
    font-size: 16px;
    color: #F9C349;
}

.blog7-img2 {
    width: 80%;
}

.blog7-txt h2 {
    color: #1E1810;
    font-size: 32px;
}

.blog7-txt p {
    color: #62615C;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog7-flex {
    display: flex;
    width: 100%;
    gap: 30px;
}

.blog7-img1 {
    width: 50%;
}

    .blog7-img1:hover img {
        animation: floatY 1s ease-in-out infinite alternate;
    }

@keyframes floatY {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.blog7-txt-flex {
    width: 50%;
}

    .blog7-txt-flex h4 {
        font-weight: 700;
        font-size: 19px;
        line-height: 25px;
        color: #1E1810;
    }

    .blog7-txt-flex p {
        color: #62615C;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 30px;
    }






/*--------CONTACT PAGE------*/
.contact-section1 {
    margin-top: 109px;
    width: 100%;
    background-color: #BEBCC2;
}

.contact-section1-container {
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-section1-container1 {
    width: 50%;
    background-color: #F2BD1E;
    padding: 200px 50px 200px 200px;
}

    .contact-section1-container1 h1 {
        color: white;
        line-height: 110px;
        font-size: 80px;
        letter-spacing: 2px;
        font-weight: 700;
    }

.contact-section1-container2 {
    width: 50%;
    position: relative;
    background-image: url(../img/contact-us.png);
    align-content: center;
    background-position: center center;
    padding: 0px 122px 0px 122px;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-section1-container2-bg-overlay {
    inset: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
}

.contact-container2-contents {
    position: relative;
}

.contact-section1-txt p {
    font-size: 25px;
    color: white;
    font-weight: 400;
}

.explore-contact {
    margin: 60px 0 50px 0;
}




.contact-section2 {
    width: 100%;
    background-color: #BEBCC2;
    padding: 70px 0 120px 0;
}

.contact-section2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.get-heading h1 {
    font-size: 137px;
    font-weight: 500;
    font-family: 'Jost';
    text-transform: uppercase;
    margin: 0 0 -105px 0;
    color: rgba(10, 20, 29, 0.02);
}

.contactd-heading h3 {
    color: #1E1810;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 50px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.content1 {
    display: flex;
    background-color: #FFFFFF;
    gap: 25px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 20px 20px 20px;
}

.main-img {
    margin-top: 20px;
}

    .main-img img {
        border-radius: 50%;
        border: 2px solid #F8F7F3;
        padding: 15px 15px;
    }

.main-txt h3 {
    color: #1E1810;
    font-weight: 700;
    font-size: 26px;
    margin: 20px 0 10px 0;
}

.main-txt p {
    color: #62615c;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}




.contact-section3 {
    width: 100%;
    height: 500px;
}

.contact-map {
    height: 100%;
    width: 100%;
}

    .contact-map iframe {
        height: 100%;
        width: 100%;
    }





.book-section {
    width: 100%;
    margin-top: 109px;
}

.book-section-container {
    display: flex;
}

.book-section-img {
    width: 50%;
    position: relative;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
    background-image: url('../img/book-a-design-visit.png');
}

    .book-section-img img {
        height: 100%;
    }

.book-section-contents {
    width: 50%;
    background-color: #F8F7F3;
    padding: 50px 85px 80px 85px;
}

.contact-forms {
    margin: 0 0 0 0;
}

.book-section-txt h4 {
    color: #1E1810;
    font-size: 32px;
}



.labels {
    padding: 16px 0px 20px 0px;
}

.buttons {
    margin: 15px 0px 0px 0px;
}

.book-section-txt p {
    color: #62615C;
    font-size: 18px;
    line-height: 28px;
}





/*-------THANK YOU PAGE----------*/

.thank-page-v2 {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #353131;
    font-family: Poppins;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #EA1723;
    margin-bottom: 15px;
    font-family: Poppins;
}
