/* @import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu' !important;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


html,
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
label,
div,
option {
    font-family: "Open Sans" !important;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Ubuntu' !important;
}

button {
    font-family: 'Ubuntu' !important;
    cursor: pointer;
}



.updatenow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.updatenowinput {
    width: 49%;
}


.header-main {
    position: fixed;
    /* top: 0; */
    width: 100%;
    background: rgb(0 0 0 / 77%);
       transition: all 1.3s ease !important;
    z-index: 999999999;
}

.headerlinks {
    display: flex;
    justify-content: space-between;
    width: 99%;
    margin: auto;
    align-items: center;
    padding-right: 10px;
}

.bannervideo video {
    width: 100%;
}

.headerlinks {
    position: relative;
}

.header-linkss {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 24px;
    margin: 0;
    padding: 25px 0px;
}

.header-linkss li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 25px 0px;
}


.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.video-background .content {
    position: absolute;
    top: 35%;
    left: 18px;
    z-index: 1;
    color: white;
    padding: 20px;
}

.content h1 {
    font-size: 54px;
    font-weight: 600;
    margin: 0;
}

.content p {
    line-height: 26px;
    font-size: 16px;
}

.content span {
    line-height: 26px;
}

#selectedFlag img {
    width: 30px;
    height: 30px;
}

.language-text {
    color: white;
}

.custom-dropdown-menu li img {
    width: 30px;
    height: 30px;
}

.custombtn {
    border: navajowhite;
    background:  rgb(0, 68, 235);
    padding: 10px 22px;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.custombtn:hover {
    background: #007bff;
    cursor: pointer;
    transform: translateY(-2px);
}

.allservices2demo ul li a {
    color: black !important;
    font-size: 18px !important;
    padding: 0 !important;
}

.allservices2demo ul li a:hover {
    color: #003bc8 !important;
}

.servicesdropdown-content {
    position: absolute;
    top: 67px;
    left: 22%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 18 %;
    opacity: 0;
    visibility: hidden;
    transition: all .35s linear;
    /* padding: 20px 30px; */
    border-radius: 10px;
    z-index: 999999999999999999999;
}

.servicesdropdown-content1 {
    position: absolute;
    top: 67px;
    right: 28%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 22%;
    opacity: 0;
    visibility: hidden;
    transition: all .35s linear;
    border-radius: 10px;
    z-index: 999999999999999999999;
}

#servicesdropdown:hover .servicesdropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
}

#servicesdropdown1:hover .servicesdropdown-content1 {
    opacity: 1 !important;
    visibility: visible !important;
}

.services-links {
    width: 100%;
    /* display: flex; */
}

.dropimg {
    width: 30%;
}

.allservices ul {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 35px;
    list-style: none;
}

.allservices ul li {
    padding: 4px 30px;
}

.allservices {
    width: 100%;
}

.allservices-main {
    position: relative;
}

.menuimg {
    width: 100%;
    height: 320px;
    border-radius: 12px;
}

.menuimg img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.allservices ul li a:hover {
    color: #0044EB;
}


/* bannerimg */
.banner-bg {
    /* background: url(images/bannermainimage.jpg);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -10px;
    margin-left: -5px;
    background-size: cover; */

    position: relative;
}

.banner-content {
    position: relative;
    z-index: 9999999 !important;
    ;
}

.main-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 5s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


.main-banner-image {
    position: absolute;
    top: -41px;
    height: 100% !important;
    width: 100%;
}



.banner-content {
    width: 97%;
    padding-top: 150px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    z-index: 9999999 !important;
    position: relative;
    justify-content: space-between;
}

.banner-text {
    width: 80%;
}

.banner-imgs {
    width: 37%;
    display: flex;
    align-items: center;
    display: none;
    justify-content: end;
    position: relative;
}

.bannercounting {
    display: flex;
    justify-content: space-between;
    padding: 70px 0px;
    position: relative;
    z-index: 9999999 !important;
    align-items: center;
}

.counting {
    width: 57%;
}

.text {
    width: 37%;
}

.text p {
    color: white;
    font-size: 14px;
    margin: 0;
    padding: 0px 62px 0px 0px;
    line-height: 29px;
}

.rightimg {
    width: 90%;
    height: 450px;

}

.rightimg img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.shortimg {
    position: absolute;
    top: 30%;
    left: 0;
    width: 200px;
    height: 200px;
}

.shortimg img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.banner-text h1 {
    margin: 0;
    color: white;
    font-size: 79px;
    font-weight: 700;
    width: 81%;
}

.btn-logo {
    display: flex;
    gap: 30px;
    align-items: center;
}

.btn-logo button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-logo button svg {
    display: block !important;
    width: 35px;
    height: 35px;
}

.logo {
    height: 64px;
    width: 200px;
}

.logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dotimages {
    position: absolute;
    left: 0;
    bottom: 152px;
}

.dotimages img {
    position: relative;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.banner-text p {
    color: white;
    font-size: 20px;
    margin: 0;
    padding: 12px 162px 30px 0px;
    line-height: 38px;
}

.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat .language-toggle{
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.number {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.labelafter {
    font-size: 18px;
    margin-top: 10px;
    color: white;
}


.label3 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    color: white;
}







/* Presentationseation */


.presentationseation {
    width: 97%;
    margin: 0px auto;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}


.presentation-text {
    width: 45%;
    position: relative;
    padding-top: 40px;
}

.presentation-img {
    width: 45%;
    position: relative;
}


.custombtn2 {
    border: 1px solid black;
    background: none;
    padding: 10px 30px;
    border-radius: 100px;
    color: black;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.custombtn2:hover {
    background: #0044EB;
    cursor: pointer;
    color: white;
    border: 1px solid white;
}

.screen-img1 {
    width: 450px;
    height: 450px !important;
    position: absolute;
    right: 0;
    top: 90px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.17);
    border-radius: 30px;
}

.screen-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: -1;
    position: relative;
}

.screnn-img2 {
    width: 350px;
    height: 350px !important;
    position: absolute;
    left: 0;
    top: 124px;
    z-index: -1;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.17);
    border-radius: 30px;
}

.screnn-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.sub-titles {
    opacity: 1;
    padding: 0px 0px 66px 30px;
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #0044EB !important;
    margin: 0 !important;
    line-height: 0px !important;
}


.presentation-text h2 {
    font-size: 38px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 30px;
}

.functional {
    margin: -22px 0px 0px 30px;
}

.functional p {
    font-size: 14px;
    line-height: 24px;
    padding: 0px 87px 30px 0px;
    font-weight: 400;
    margin: 0;
}





/* ourservices */

.services-seaction {
    background: #fff;
    position: relative;
}

.services-left-img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
}

.modernmainbox h1 {
    font-size: 20px;
}

.modernmainbox p {
    margin: 0;
    font-size: 16px;
}

.services-left-img img {
    width: 43%;
    height: 100%;
}

.services-content {
    width: 91%;
    margin: 0 auto;
    padding: 0 15px;
}

.services-heading-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
}

.logomokup {
    position: absolute;
    left: 27%;
    top: -100px;
}

.logomokup img {
    width: 88%;
    opacity: 0.1;
    height: 100%;
}

.Sustainabilityh3 {
    color: #0044EB !important;
    font-size: 18px !important;
    margin: 0px 0px 15px 0px !important;
    line-height: 0px !important;
}

.services-heading-sub h1 {
    font-size: 45px;
    color: #1C1C1C;
    max-width: 500px;
    line-height: 1.3;
}

.services-heading-description p {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    line-height: 1.6;
}

.services-card-main {
    display: flex;
    justify-content: space-between;
}

.service-cards {
    height: 100%;
    width: 100%;
    position: relative;
}

.servicecard-link {
    width: 7%;
}

.service-card-img {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}

.services-card-text {
    border: 1px solid rgba(0, 0, 0, 0.135);
    background: white;
    height: 100%;
    gap: 30px;
    padding: 30px;
    width: 78%;
    margin: auto;
    position: absolute;
    bottom: -193px;
    border-radius: 12px;
    transition: all 0.35s linear;
    left: 3%;
}

.service-text h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 10px;
    color: black;
}

.service-text p {
    font-size: 15px;
    color: black;
    padding-bottom: 10px;
    margin: 0;
    font-weight: 400;
    line-height: 26px;
}

.service-cards:hover .service-card-img img {
    transform: scale(1.1) rotate(5deg);
    /* Zoom and rotate */
    cursor: pointer;
}

.service-cards:hover .services-card-text {
    box-shadow: 0 7px 15px -3px rgba(0, 0, 0, 0.15);
}

.service-cards:hover .service-icon svg path {
    fill: #0044EB;
}

.service-cards:hover {
    cursor: pointer;
}

.service-icon img {
    width: 50px;
    height: 50px;
}



/* workingprosess-seaction */



.workingprosess-seaction {
    background: #1D1B1B;
    margin: 0px auto;
    background-image: url(https://kitchen.azeetechnology.com/wp-content/uploads/2025/01/abs-bg4.png);
    /* height: 600px; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px;
    position: relative;
}


.mainworking {
    width: 97%;
    position: relative;
}


.working-bigtext {
    font-size: 120px;
    position: absolute;
    opacity: 1;
    left: 28%;
    top: 10%;
    color: #353542;
    font-weight: 800;
    z-index: 0;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #30303b;
    margin: 0;
}

.workingflow-headeing {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.workingflow-headeing h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
}

.howh3 {
    margin: 0 !important;
    font-size: 20px !important;
    color: #0044EB !important;
    font-weight: 500 !important;
}

.working-prosess-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.workingprosess-main-cards {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.pros-img2 {
    display: none;
}

.img-icon-pros {
    width: 100px;
    height: 100px;
    border-radius: 500%;
    background: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}




.pros-img {
    width: 50px;
    height: 50px;
}

.pros-img img {
    width: 100%;
    height: 100%;
}

.count {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    background: #0044EB;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.working-prosess-card:hover .count {
    background: rgb(44, 44, 44);
}

.working-prosess-card:hover .img-icon-pros {
    background: #0044EB;
}

.working-prosess-card:hover .pros-img2 {
    display: block;
}

.working-prosess-card:hover .pros-img1 {
    display: none;
}

.working-prosess-card:hover {
    cursor: pointer;
}

.count span {
    font-size: 14px;
}

.text-proses-content {
    margin-top: 10px;
}

.text-proses-content h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.text-proses-content p {
    font-size: 14px;
    margin: 0;
    color: white;
    line-height: 22px;
    padding-top: 5px;
}



/* servicescardds */

.custom-card-container {
    display: flex;
    width: 97%;
    gap: 25px;
    margin: auto;
    cursor: pointer;
}

.custom-card-container a {
    text-decoration: none;
    color: black;
}

.custom-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 287px;
    text-align: center;
    position: relative;
    height: 417px;
}

.custom-image-wrapper {
    position: relative;
    overflow: hidden;
}


.wood-floor {
    height: 250px;
}

.wood-floor img {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-icon-wrapper {
    position: absolute;
    top: 20px;
    left: 44%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.45s;
}

.custom-icon-wrapper img {
    width: 30px;
    height: 30px;
}

.custom-card:hover .custom-icon-wrapper {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.custom-hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.custom-card:hover .custom-hover-overlay {
    width: 140%;
    height: 140%;
    opacity: 1;
}

.repairflo {
    padding: 20px;
}

.repairflo h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    padding-bottom: 10px;
}

.repairflo p {
    font-size: 14px;
    margin: 0;
    line-height: 23px;
}

.custom-card-container2 {
    margin-top: 25px;
}

.hvr-box-shadow-outset {
    border-radius: 15px !important;
}



/* mobileheader */
.mobile-header {
    display: none;
}

.mobile-header {
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

.mobile-main {
    display: flex;
    justify-content: space-between;
    width: 97%;
    margin: auto;
    align-items: center;
    z-index: 9999999999999999999;
    position: relative;
}


.sidebar .menu-icon {
    cursor: pointer;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 250px;
    height: 100vh;
    background-color: #1e1e1e;
    color: white;
    transition: right 1.2s ease-in-out;
    /* Smooth slide-in/out transition */
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
    /* Scrollable content if needed */
    z-index: 99999999999;
}

.mobile-sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
}

.mobile-sidebar ul {
    margin: 50px 0px 0px 0px;
    /* To make space for the close button */
    list-style: none;

    padding: 0px;

}

.mobile-sidebar ul li {
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid white;
}

.mobile-sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.mobile-sidebar.show {
    right: 0;
}

.about-main {
    width: 96%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 80px 0px;
}

.about-images {
    width: 50%;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.istoclpoto {
    position: absolute;
    bottom: -190px;
    left: -70px;
}

.about-text {
    width: 46%;
    position: relative;
}

.h10back {
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
}

.leftsimages {
    width: 48%;
}

.rightsimages {
    width: 48%;
    height: 100%;
}

.leftsimages img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 47%;
    margin-bottom: 20px;
}

.rightsimages img {
    width: 100%;
    border-radius: 15px;
    height: 96%;
    object-fit: cover;
}

/* New content styling with previous design aesthetic */
.mainhh3 {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #0044EB !important;
    margin: 0 !important;
}

.about-main-text h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 65px;
    color: black;
    padding-right: 65px;
    margin: 20px 0;
}

.about-content {
    margin: 40px 0;
}

.mission-section,
.vision-section,
.philosophy-section {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.vision-section h1 {
    font-size: 24px;
    font-weight: 600;
    color: #0044EB;
    margin: 0 0 15px 0;
}

.about-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: black;
    padding-right: 65px;
}

.traditional {
    display: flex;
    gap: 33px;
    align-items: center;
    margin-top: 40px;
}

.traditionaltext {
    margin-top: -14px;
}

.traditionaltext h1 {
    margin: 0;
    font-size: 44px;
    font-weight: 600;
}

.traditionalimg img {
    width: 64px;
    height: 64px;
}

.traditionalimg {
    height: fit-content;
}

.h10back2 {
    position: absolute;
    bottom: -160px;
    z-index: -1;
    right: 0;
}

.h10back2 img {
    width: 100%;
    height: 100%;
}

.h10back img {
    width: 100%;
    height: 100%;
}

.viewbtn button {
    border: navajowhite;
    background: #0044EB;
    padding: 5px 26px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.viewbtn button:hover {
    background: #003bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);

}

.kitchendesigns {
    width: 96%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 70px 0px;
    position: relative;
}

.kitchendesigns-left {
    width: 46%;
    padding-left: 20px;
}

.kitchendesigns-right {
    width: 46%;
    position: relative;
}

.rightsbg {
    position: absolute;
    top: 0px;
    right: -124px;
    height: 100%;
}

.rightsbg img {
    height: 900px;
    width: 100%;
}

.Loyaltyh3 {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: #0044EB !important;
    margin: 0 !important;
    line-height: 0px !important;
}

.kitchendesigns-rightmain-text h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 63px;
    color: black;
}


.kitchendesigns-rightmain-text h2 {
    font-size: 20px;
    margin: 0;
}

.kitchendesigns-rightmain-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    color: #7a7a7a;
}

.boscombining1 {
    background: #e68f50;
    height: 150px;
    border-radius: 15px;
    width: 300px;
}

.combiningmain {
    margin-top: 50px;
    position: relative;
}

.boscombining2 {
    background: rgb(31, 31, 31);
    height: 150px;
    border-radius: 15px;
    width: 300px;
    position: absolute;
    top: -20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.boscombining2 h2 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.boscombining2 h1 {
    font-size: 21px;
    font-weight: 500;
    line-height: 29px;
    color: #FFFFFF;
}


.modernmain {
    font-weight: 400;
    line-height: 22px;
    color: #0c0c0c;
}

.modernmain {
    display: flex;
    gap: 20px;
}

.modernmain2 {
    margin-top: 30px;
}

.comparison-slider {
    position: relative;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 2;
    cursor: ew-resize;
}

.slider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-circle svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.labelafter {
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    position: absolute;
}

.before-image .labelafter {
    left: 20px;
}

.after-image .labelafter {
    right: 20px;
}

.afterBeforesection {
    position: relative;
    padding: 100px 0px;
}

.aboutlog {
    position: absolute;
    top: -100px;
    left: 0;
}
.aboutlog img{
        height: 100%;
    width: 100%;
}

.aboutlo2 {
    position: absolute;
    top: -100px;
    right: 0;
}
.aboutlo2 img{
    width: 100%;
    height: 100%;
}



.services-heading-main {
    width: 95%;
    margin: auto;
    padding-bottom: 30px;
}

.areas-of-operations {
    width: 95%;
    margin: auto;
    padding-top: 170px;
}

.chooserow {
    width: 96%;
    margin: auto;
    padding-top: 160px;
    display: flex;
    justify-content: space-between;
}

.emptydiv {
    width: 50%;
}

.choosecol {
    width: 50%;
    background: #fafafa;
    padding: 25px;
}

.about-main-text h1 {
    margin-bottom: 20px;
}



.main-product {
    padding: 40px 0px 60px 0px;
    position: relative;
    overflow: hidden;
    background: url(images/abs-bg3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.main-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('path/to/pattern.svg'); */
    opacity: 0.03;
    pointer-events: none;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Modern Heading Styles */
.product-heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 30, 36, 0.1);
    color: #0044EB;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-heading h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(120deg, rgba(227, 30, 36, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%);
    padding: 0 10px;
    border-radius: 4px;
}

.product-heading p {
    color: #666;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Grid Layout */
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    perspective: 1000px;
    width: 78%;
    margin: auto;
}

/* Card Styles */
.product-card {
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.card-inner {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-inner {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.product-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0044EB;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Content Section */
.product-content {
    padding: 20px 30px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrapper {
    position: relative;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-shadow {
    position: absolute;
    width: 64px;
    height: 16px;
    bottom: -8px;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    transition: all 0.3s ease;
}

.product-card:hover .icon-circle {
    transform: translateY(-4px);
}

.product-card:hover .icon-circle svg {
    color: white;
    transform: scale(1.1);
}

.product-card:hover .icon-shadow {
    transform: scaleX(0.9) translateY(4px);
    opacity: 0.6;
}

/* Feature List */
.feature-list {
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.check-icon {
    color: #0044EB;
    flex-shrink: 0;
}

/* Footer Section */
.card-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-labelafter {
    font-size: 14px;
    color: #666;
}

.action-button {
    width: 100%;
    border: navajowhite;
    background: #0044EB;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: center;
}


.action-button:hover {
    background: #003bc8;
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);
}

.action-button:hover::before {
    transform: translateX(100%);
}

/* Responsive Design */



.distributor-points h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    padding-right: 100px;
    padding-bottom: 5px;
}

.distributor-points p {
    font-size: 18px !important;
}

.distributor-points img {
    width: 50px;
    height: 50px;
}

.modernmainbox img {
    width: 64px;
    height: 64px;
}

.growing-networkss {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.services-seactiondemo {
    padding-bottom: 16%;
}

.areas-of-operationsaddnew {
    width: 100%;
    padding: 0% 0px 8% 0px;
    background: url(images/mainbgg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.areas-containeraddnew {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.areas-headeraddnew {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.areas-headeraddnew h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.header-lineaddnew {
    width: 100px;
    height: 4px;
    background: #0044EB;
    margin: 0 auto;
    border-radius: 2px;
}

.areas-contentaddnew {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.area-itemaddnew {
    display: flex;
    align-items: center;
    gap: 60px;
}

.area-itemaddnew:nth-child(even) {
    flex-direction: row-reverse;
}

.area-imageaddnew {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.area-imageaddnew img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.area-itemaddnew:hover .area-imageaddnew img {
    transform: scale(1.05);
}

.image-overlayaddnew {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.area-textaddnew {
    flex: 1;
    padding: 40px;
}

.area-iconaddnew {
    width: 80px;
    height: 80px;
    background: rgba(224, 116, 37, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.icon-containeraddnew svg {
    color: #0044EB;
    transition: all 0.3s ease;
}

.service-cardaddnew:hover .icon-containeraddnew svg {
    transform: rotateY(360deg);
    transition: all 0.35s linear;
}

.area-itemaddnew:hover .area-iconaddnew {
    background: #0044EB;
}

.area-itemaddnew:hover .area-iconaddnew svg {
    color: white;
    transform: scale(1.1);
}

.area-textaddnew h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.area-textaddnew p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}



.areas-highlightsaddnew {
    text-align: center;
}

.areas-highlightsaddnew h1 {
    font-size: 35px;
    padding-bottom: 20px;
    color: #1a1a1a;
    margin: 0;
}

.areas-gridaddnew {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.areas-itemaddnew {
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.areas-itemaddnew::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.areas-itemaddnew:hover::before {
    border-color: #0044EB;
    transform: scale(1.05);
}

.areas-item-iconaddnew {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.areas-itemaddnew:hover .areas-item-iconaddnew {
    background: #0044EB;
}

.areas-itemaddnew:hover .areas-item-iconaddnew svg {
    color: white;
    transform: scale(1.1);
}

.areas-itemaddnew h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.areas-itemaddnew p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-containeraddnew {
    font-family: 'Ubuntu' !important;
}

.service-rowaddnew {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    gap: 20px;
}

.service-cardaddnew {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 6px;
    background: #F5F5F5;
    border-radius: 24px;
    padding: 30px;
    transition: 0.4s;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

/*
.service-cardaddnew::before {
    background-color: #1d1b1b;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: .35s linear all;
} */

.service-cardaddnew:hover::before {
    width: 100%;
    height: 100%;
    transition: .35s linear all;
}

.service-cardaddnew .titleaddnew {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.service-cardaddnew .contentaddnew {
    font-size: 15px;
    position: relative;
    line-height: 24px;
    z-index: 1;
}

.icon-containeraddnew {
    height: 80px;
    width: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.icon-containeraddnew img {
    height: 40px;
    width: 40px;
}

.service-cardaddnew:hover .icon-containeraddnew img {
    transform: rotateY(360deg);
    transition: .35s linear all;
}

.service-cardaddnew button {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.service-cardaddnew a {
    color: black;
    text-decoration: none;
    text-align: start;
}

.hightlisht-haddnew {
    margin-bottom: 60px;
}

.gallery-bg-left {
    position: absolute;
    top: -30px;
    left: -50px;
}

.gallery-bg-left img {
    width: 100%;
    height: 100%;
}

.imagesgallerynew {
    padding: 30px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}

.gallery-containernew {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-headernew {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-headernew h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gallery-headernew .header-linenew {
    width: 100px;
    height: 4px;
    background: #0044EB;
    margin: 0 auto;
    border-radius: 2px;
}

.gallery-gridnew {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-itemnew {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-imagenew {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlaynew {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-itemnew:hover .gallery-overlaynew {
    transform: translateY(0);
}

.gallery-itemnew:hover .gallery-imagenew {
    transform: scale(1.1);
}

.gallery-titlenew {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.gallery-categorynew {
    color: #0044EB;
    font-size: 16px;
    margin: 10px 0 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.gallery-itemnew:hover .gallery-titlenew,
.gallery-itemnew:hover .gallery-categorynew {
    opacity: 1;
    transform: translateY(0);
}

.gallery-itemnew::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-itemnew:hover::before {
    transform: scale(1);
}

/* Lightbox styles */
.lightboxnew {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightboxnew.active {
    display: flex;
    opacity: 1;
}

.lightbox-contentnew {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-imagenew {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-closenew {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.lightbox-titlenew {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: white;
    font-size: 20px;
    margin: 0;
}


footer {
    background-size: cover;
    padding: 70px 0px 0px 0px;
    position: relative;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.155);
}

.footer-content {
    position: relative;
    z-index: 1;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr 1.3fr;
    gap: 80px;
}

.footer-section {
    margin-bottom: 40px;

}

.footer-section img {
    height: 55px;
}

.footer-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0044EB;
}

.footer-section form {
    position: relative;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #aaa;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 12px;
}

.footer-services li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services li a:hover {
    color: #0044EB;
}

.footer-services li a svg {
    width: 16px;
    height: 16px;
    color: #0044EB;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    font-size: 14px;
}

.contact-info li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #0044EB;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #0044EB;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: white;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.newsletter-button svg {
    width: 20px;
    height: 20px;
    color: #0044EB;
}

.copyright p {
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.324);
    text-align: center;
    padding: 30px 0px 30px 0px;
    margin: 0;
}


.area-itemaddnew {
    background: url(images/abs-bg4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.bg-lefts {
    position: absolute;
    top: -100px;
    left: -30px;
}

.bg-lefts img {
    z-index: -1;
    position: relative;
    height: 100%;
    width: 100%;
}





.about-banner {
    height: 261px;
    width: 100%;
    position: relative;
    padding-top: 75px;
    display: flex;
    align-items: center;
    margin-top: -39px;
    justify-content: center;
    text-align: center;
}

.about-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}


.vs {
    position: absolute;
    top: 0;
    left: 36%;
    width: 32%;
}

.about-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-breadcrumb a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: #0044EB;
}

.about-separator {
    color: #0044EB;
    font-size: 16px;
}

.about-current {
    color: #0044EB;
    font-size: 16px;
}



@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.mission-corporate-section {
    min-height: 600px;
    background: url('https://kitchen.azeetechnology.com/wp-content/uploads/2025/01/image36-copyright.jpg') center/cover fixed no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.mission-corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.mission-corporate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.section-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #ffffff, #0044EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    perspective: 1000px;
}

.mission-box,
.philosophy-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.philosophy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(224, 116, 37, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-box:hover,
.philosophy-box:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(224, 116, 37, 0.3);
}

.mission-box:hover::before,
.philosophy-box:hover::before {
    opacity: 1;
}

.section-title {
    color: #0044EB;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0044EB;
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-box:hover .section-title::after,
.philosophy-box:hover .section-title::after {
    transform: scaleX(1);
}

.section-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.icon-container {
    margin-bottom: 25px;
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(224, 116, 37, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-container svg {
    width: 30px;
    height: 30px;
    color: white;
    transition: all 0.3s ease;
}

.mission-box:hover .icon-container,
.philosophy-box:hover .icon-container {
    background: #0044EB;
    transform: rotateY(180deg);
}

.mission-box:hover .icon-container svg,
.philosophy-box:hover .icon-container svg {
    color: white;
    transform: rotateY(-180deg);
}

/* Quote Popup Styles */
.quote-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999999999;
    justify-content: center;
    align-items: center;
}

.quote-popup.active {
    display: flex;
}

.quote-popup-content {
    background: white;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    width: 81%;
    gap: 30px;
    position: relative;
    height: 96vh;
    margin: 20px;
}

.quote-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px 10px;
}

.quote-popup-content h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.quote-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.quote-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 53px;
    margin-bottom: 20px;
}

.form-row>*:last-child {
    grid-column: 1 / -1;
    /* Span across all columns */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    height: 40px;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: 'Ubuntu' !important;
    transition: all 0.3s ease;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0044EB;
    box-shadow: none;
}

.form-group input:focus {
    box-shadow: none !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    height: 120px;
    width: 100%;
    resize: none;
}

.submit-btn {

    border: navajowhite;
    background: #0044EB;
    padding: 9px 30px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 30px;

}

.submit-btn:hover {
    background: #003bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);

}



.contact-us-content {
    padding: 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    margin-top: -100px;
}

.about-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(0 0 0 / 48%), rgb(0 0 0 / 20%));
    z-index: 1;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.page-badge {
    color: #0044EB;
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.about-banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    padding: 15px 0px;
    line-height: 1.2;
    color: white;
}

.banner-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.floating-contact-card {
    max-width: 88%;
    margin: -100px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}




.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(165deg, #0044EB, #0044EB);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(224, 116, 37, 0.2);
}

/* .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
} */

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.info-description {
    font-size: 17px;
    opacity: 0.9;
    color: white;
    margin-bottom: 40px;
    line-height: 27px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-container {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.icon-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.info-item:hover .icon-container {
    transform: translateY(-5px) rotate(8deg);
    background: rgba(255, 255, 255, 0.25);
}

.info-item:hover .icon-container::before {
    transform: translateX(0);
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.info-content {
    color: white;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.info-content a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.info-content a:hover {
    opacity: 1;
}



.social-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon:hover::before {
    transform: translateY(0);
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    margin-top: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.input-container textarea {
    height: 94px;
}

.input-container input:focus,
.input-container textarea:focus {
    border-color: #0044EB;
    background: white;
    transform: translateY(-2px);
}

.input-container svg {
    position: absolute;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
}

.input-container input:focus+svg,
.input-container textarea:focus+svg {
    color: #0044EB;
    transform: scale(1.1);
}

.submit-button {
    background: none;
    color: black;
    border: 1px solid #0000004a;
    padding: 11px 35px;
    border-radius: 100px;
    font-size: 16px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    background: #0044EB;
    color: white;
}

.submit-button:hover::before {
    transform: translateX(100%);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.ventless-content {
    width: 50%;
}

.tech-image-wrapper {
    width: 50%;
}

.tech-image-wrapper img {
    width: 100%;
}

.ventless-tech-section {
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.tech-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ventless-content {
    flex: 1;
}

.tech-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 68, 235, 0.1);
    color: #0044EB;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tech-title {
    font-size: 42px;
    color: #1a1a1a;
    margin: 0px;
    font-weight: 600;
}

.tech-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tech-feature {
    text-align: center;
}

.feature-icon {
    background: #0044EB;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.tech-feature h4 {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.feature-icon23 svg {
    color: #0044EB;
}

.ventless-button {
    background: #0044EB;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ventless-button:hover {
    background: #003bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);
}

.tech-image-wrapper {
    flex: 1;
    position: relative;
}

.tech-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tech-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.tech-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-image:hover .image-overlay {
    opacity: 1;
}

.floating-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#0044EB 2px, transparent 2px);
    background-size: 18px 18px;
    top: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.15;
}




.featureaesthetics2 {
    background: rgba(255, 255, 255, 0.868);
}

.service-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-text {
    max-width: 800px;
    margin: 0 auto;
}

.service-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.service-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0044EB;
    margin-top: 15px;
}

.service-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrap {
    width: 30px;
    height: 30px;
    background: #0044EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature:hover .feature-icon-wrap {
    background: #003bc7;
}

.feature-icon {
    color: #fff;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content {
    text-align: left;
}

.feature-title {
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-weight: 600;
}

.feature-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.detail-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-weight: 600;
}

.detail-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.estimation-cta {
    padding: 80px 0;
    background: #0044EB;
    position: relative;
    color: #fff;
    text-align: center;
}

.estimation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin: 0 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 18px;
    margin: 0 0 40px;
    line-height: 1.6;
}

.cta-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.service-text1 {
    padding-right: 60px;
}

.service-text1 h2 {
    font-size: 45px !important;
    color: #1C1C1C;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.service-text2 {
    padding-left: 60px;
}

/* Why Choose V-Clair Cabinetry Section */
.whyChooseV-ClairCabinetry {
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
}



.whyChooseV-ClairCabinetry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-size: 48px;
    color: #ffffff;
    margin: 0 0 24px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0044EB;
    margin: 30px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-showcase {
    gap: 60px;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.features-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    width: 41%;
    gap: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item2 {
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.183);
    width: 90%;
    gap: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.feature-item2 p {
    font-size: 16px;
    margin: 0;
    line-height: 25px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044EB;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #0044EB;
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 600;
    line-height: 1.4;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}






.CabinetryOfferings {
    width: 95%;
    padding: 30px 0px 40px 0px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    position: relative;
}

.offringbg {
    position: absolute;
    right: -30px;
    top: -70px;
    opacity: 0.4;
    height: 200px;
    width: 400;

}

.ofbg2 {
    position: absolute;
    bottom: 0;
    width: 40%;
    height: 30%;
    left: 30%;
    opacity: 0.4;
}

.ofbg2 img {
    width: 100%;
    height: 100%;
    z-index: -1 !important;
    position: relative;

}

.offringbg img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1 !important;
}

.cabinetryOfferings-title h1 {
    font-size: 52px;
    margin: 0;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
    padding-top: 50px;
    text-align: center;
}


.cabinetryOfferings-image {
    width: 40%;
}

.cabinetryOffering-main-card {
    width: 57%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}


.cabinetryOfferings-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.cabinetryOffering-card {
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 9px 12px 17px 1px #8080801c;
    background: white;
    border: 1px solid #0000001a;
    width: 47%;
}

.cabinetryOffering-card h2 {
    margin: 0;
    font-size: 18px
}

.cabinetryOffering-card ul {
    margin: 20px 0px 0px 0px;
    line-height: 25px;
    padding: 0;
    list-style: none;
}

.cabinetryOffering-card ul li {
    display: flex;
    font-size: 15px;
    align-items: self-start;
    margin-bottom: 10px;
    gap: 6px;
}

.cabinetryOffering-card ul li img {
    width: 20px;
    height: 20px;
}

.measure-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.measure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.07;
    z-index: 0;
}

.measure-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.measure-hero-content {
    padding-right: 50px;
}

.measure-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0044EB 0%, #0066FF 100%);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 68, 235, 0.2);
}

.measure-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.measure-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.measure-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
}

.measure-hero-image:hover {
    transform: translateY(-10px);
}

.measure-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-measure {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.why-measure-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.measure-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.measure-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.measure-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.point-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 68, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044EB;
    transition: all 0.3s ease;
}

.measure-point:hover .point-icon {
    background: #0044EB;
    color: white;
}

.measure-point p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.measurement-steps {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.measurement-steps h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #0044EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 68, 235, 0.2);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.step-icon {
    color: #0044EB;
    opacity: 0.2;
    position: absolute;
    bottom: 30px;
    right: 30px;
    transform: scale(1.5);
}




.measuring-tips {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.measuring-tips h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 68, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044EB;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tip-item:hover .tip-icon {
    background: #0044EB;
    color: white;
    transform: scale(1.1);
}

.tip-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.submit-measurements {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.submit-measurements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-pattern.svg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.submit-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.submit-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    margin-top: 0px;
    padding-bottom: 20px;
}

.submit-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0044EB, #0066FF);
    border-radius: 2px;
}

.submit-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.submit-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.submit-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(0, 68, 235, 0.02);
    transition: all 0.3s ease;
}

.submit-step:hover {
    background: rgba(0, 68, 235, 0.05);
    transform: translateY(-2px);
}

.step-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0044EB 0%, #0066FF 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 68, 235, 0.2);
    transition: all 0.3s ease;
}

.submit-step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 68, 235, 0.3);
}

.submit-step-content {
    flex: 1;
}

.submit-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.submit-step a {
    color: #0044EB;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-step a::after {
    content: '→';
    transition: transform 0.3s ease;
}

.submit-step a:hover {
    color: #003cc8;
}

.submit-step a:hover::after {
    transform: translateX(4px);
}

.submit-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.submit-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.submit-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: rgba(0, 68, 235, 0.1);
    border-radius: 50%;
}

.submit-checklist li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 4px;
    color: #0044EB;
    font-size: 12px;
    font-weight: bold;
}

.submit-note {
    margin-top: 40px;
    padding: 24px;
    background: rgba(0, 68, 235, 0.05);
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.customer-info-form {
    max-width: 92%;
    margin: 100px auto 0;
    position: relative;
    z-index: 1;
}

.form-container {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

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

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 0px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 16px;
    margin-top: 0px;
    border-bottom: 2px solid rgba(0, 68, 235, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.form-group input,
.form-group select {
    height: 40px;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #0044EB;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 68, 235, 0.1);
}

.form-group select:focus {
    border-color: #0044EB;
    outline: none;
    box-shadow: none;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.submit-button {
    border: navajowhite;
    background: #0044EB;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 68, 235, 0.3);
}

.need-help {
    margin: 100px 0px 0px 12px;
    padding: 60px 30px;
    background: linear-gradient(135deg, #0044EB 0%, #0066FF 100%);
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.need-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-pattern.svg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.help-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.help-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.help-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-button {
    background: none;
    color: white;
    border: 1px solid white;
    border-radius: 100px;
    padding: 14px 39px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 5%);
}



.sustainability-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-leaf-pattern.svg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.sustainability-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.sustainability-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    margin-top: 0;
}

.sustainability-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
}

.sustainability-highlights {
    margin-top: 60px;
}

.sustainability-highlights h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlights-list li {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlights-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 68, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0044EB;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlights-list li:hover .highlight-icon {
    color: white;
    transform: scale(1.1);
}

.highlights-list li p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.customization-section {
    width: 94%;
    margin: 30px auto;
    padding: 0 30px;
}

.customization-content {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.customization-header {
    text-align: center;
    margin-bottom: 60px;
}

.customization-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    margin-top: 0px;
}

.customization-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.option-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0px;
}

.option-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.option-examples {
    margin-top: 20px;
}

.option-examples h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.example-list {
    list-style: none;
    padding: 0;
}

.example-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.example-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #0044EB;
    border-radius: 50%;
}



.success-storieshome {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.success-stories {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.success-stories2 {
    padding: 0px 0px 40px 0px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.success-stories-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.stories-badge {
    display: inline-block;
    padding: 8px 30px;
    background: #0044EB;
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-stories-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.testimonials-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    z-index: 9999999;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    transition: all 0.3s ease;
}

.testimonial-content {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
    height: 87%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #0044EB;
}


.testimonial-icon svg {
    width: 32px;
    height: 32px;
    color: #0044EB;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    flex-grow: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    margin-top: auto;
}

.author-info h1 {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.focus-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 68, 235, 0.08);
    color: #0044EB;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-slide,
.next-slide {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide svg,
.next-slide svg {
    width: 24px;
    height: 24px;
    color: #0044EB;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: #0044EB;
    border-color: #0044EB;
}

.prev-slide:hover svg,
.next-slide:hover svg {
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6e6e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0044EB;
    transform: scale(1.2);
}


.services-content-main-newadd {
    padding: 70px 0px 20px 0px;
    position: relative;
    overflow: hidden;
    width: 97%;
    margin: auto;
}

.bg1ser {
    position: absolute;
    left: -40px;
    top: 40%;
    transform: translateY(-50%);

    z-index: -1;
    width: 350px;
}

.bg2ser {
    position: absolute;
    left: -180px;
    top: -50px;
    opacity: 0.2;
    z-index: -1;
    width: 350px;
}

.bg3ser {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 350px;
}

.service-header-newadd {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.badge-newadd {
    background: rgba(0, 68, 235, 0.1);
    color: #0044EB;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.service-header-newadd h1 {
    font-size: 48px;
    margin: 20px 0;
    font-weight: 700;
    color: #1C1C1C;
}

.highlight-newadd {
    color: #0044EB;
}

.subtitle-newadd {
    color: #666;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-section-main-sab-van {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-section {
    position: relative;
}

.service-section.reverse .service-content-wrapper {
    flex-direction: row-reverse;
}

.service-content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-text {
    flex: 1;
    max-width: 600px;
}

.service-text h2 {
    font-size: 42px;
    color: #1C1C1C;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.service-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0044EB;
    margin-top: 15px;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    background: #f1f3f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrap {
    background: #0044EB;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke: white;
}

.feature-content {
    flex: 1;
}

.feature-title {
    display: block;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 5px;
    font-size: 18px;
}

.feature-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.service-image-grid {
    flex: 1;
    max-width: 600px;
}

.image-showcase {
    margin-bottom: 30px;
}

.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 11/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-container:hover .service-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.image-container:hover .image-content {
    opacity: 1;
    transform: translateY(0);
}

.image-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.image-content p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.service-section-main-sab-van>*:first-child {
    margin-bottom: 50px;
    /* Yahan apni desired margin value de sakte hain */
}

.estimate-btn {
    margin: 30px 0px;
    background: #0044EB;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.estimate-btn:hover {
    background: #003bc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 68, 235, 0.2);
}


.featureaesthetics {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 25px;
    border: 1px solid rgba(0, 0, 0, 0.183);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.featureaesthetics:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.distributor-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.distributor-hero {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(44, 95, 45, 0.1) 100%);
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 20px;
}

.distributor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('{{asset(' images/whybecomebg.jpg')}}') center/cover;
    opacity: 0.1;
    z-index: 0;

}

.distributor-hero-content {
    position: relative;
    z-index: 1;
}

.distributor-hero h1 {
    font-size: 3em;
    color: black;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.distributor-hero p {
    font-size: 1em;
    color: black;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.distributor-benefit-section {
    margin-bottom: 120px;
}

.distributor-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.distributor-benefit-item::before {
    content: '';
    position: absolute;
    width: 100%;
    background: linear-gradient(135deg, rgb(44 95 45 / 19%) 0%, rgb(44 95 45 / 3%) 100%);
    height: 100%;
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.distributor-benefit-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

.distributor-benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.distributor-benefit-image {
    flex: 1;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.distributor-benefit-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.2) 0%, rgba(44, 95, 45, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.distributor-benefit-image:hover::after {
    opacity: 1;
}

.distributor-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.distributor-benefit-image:hover img {
    transform: scale(1.1);
}

.distributor-benefit-content {
    flex: 1;
    padding: 60px;
}

.distributor-benefit-content h2 {
    font-size: 2.2em;
    color: black;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.distributor-benefit-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #0044EB, transparent);
}

.distributor-benefit-content p {
    font-size: 1.1em;
    color: black;
    line-height: 1.5;
    margin-bottom: 30px;
}

.distributor-steps {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.02) 0%, rgba(44, 95, 45, 0.08) 100%);
    padding: 40px 0;
    margin: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.distributor-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3') center/cover;
    opacity: 0.02;
    z-index: 0;
}

.distributor-steps-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.distributor-steps h2 {
    font-size: 2em;
    color: black;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.distributor-steps h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, #2C5F2D, transparent);
}

.distributor-step-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.distributor-step-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, #2C5F2D, transparent);
    z-index: 0;
}

.distributor-step {
    flex: 1;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.distributor-step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distributor-step-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 95, 45, 0.15);
}

.distributor-step-icon svg {
    width: 35px;
    height: 35px;
    color: black;
}

.distributor-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(44, 95, 45, 0.2);
}

.distributor-step h3 {
    font-size: 16px;
    color: black;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.distributor-step p {
    color: black;
    line-height: 1.5;
    font-size: 15px;
    max-width: 250px;
    margin: 0 auto;
}

.distributor-cta {
    text-align: center;
    padding: 100px 0;
    background: url('https://kitchen.azeetechnology.com/wp-content/uploads/2025/01/modern-kitchen-cta-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 80px 0;
}

.distributor-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
}

.distributor-cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.distributor-cta h2 {
    font-size: 3em;
    margin-bottom: 30px;
}

.distributor-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.distributor-apply-btn {
    display: inline-block;
    padding: 9px 34px;
    background: white;
    font-family: 'Ubuntu' !important;
    color: black;
    text-decoration: none;
    border-radius: 7px;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.distributor-apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.distributor-contact {
    text-align: center;
    padding: 40px 0;
    background: #f9f9f9;
    border-radius: 20px;
}

.distributor-contact h2 {
    font-size: 2em;
    color: black;
    margin-bottom: 40px;
    margin-top: 0;
}

.distributor-contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.distributor-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.distributor-contact-icon {
    width: 20px;
    height: 20px;
    color: #2C5F2D;
}


/* Wizard Form Styles */
.distributorform-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.distributorform-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.distributorform-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #f0f0f0;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
}

.distributorform-progress-bar {
    position: absolute;
    top: 50%;
    left: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2196F3, #64B5F6);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.distributorform-step {
    position: relative;
    z-index: 3;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #757575;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.distributorform-step::after {
    content: attr(data-title);
    position: absolute;
    top: 60px;
    font-size: 12px;
    font-weight: 500;
    color: #757575;
    white-space: nowrap;
}

.distributorform-step.active {
    border-color: #2196F3;
    color: #2196F3;
    box-shadow: 0 0 0 5px rgba(33, 150, 243, 0.1);
}

.distributorform-step.completed {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    border-color: #2196F3;
    color: #fff;
}

.distributorform-content {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.distributorform-content.active {
    display: block;
}

.distributorform-content h2 {
    color: black;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.distributorform-group {
    margin-bottom: 30px;
    width: 100%;
}

.distributorform-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #424242;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.distributorform-input {
    width: 95%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    font-family: 'Ubuntu' !important;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fafafa;
}


.distributorform-input:hover {
    border-color: #BBDEFB;
}

.distributorform-input:focus {
    border-color: #2196F3;
    outline: none;
    background: #fff;
    box-shadow: none;
}

.distributorform-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.distributorform-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    font-family: 'Ubuntu' !important;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fafafa;
}




.distributorform-radio-label:hover {
    border-color: #BBDEFB;
    background: #fff;
}

.distributorform-radio {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #2196F3;
}

.distributorform-buttons {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    width: 95%;
    margin: auto;
}

.distributorform-btn {
    padding: 8px 33px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.distributorform-btn-prev {
    background: #f5f5f5;
    color: #424242;
    border: none;
}

.distributorform-btn-next {
    background: #0044EB;
    color: #fff;
    border: none;
}

.distributorform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.distributorform-btn:active {
    transform: translateY(0);
}

.distributorform-textarea {
    width: 96%;
    padding: 14px 18px;
    font-family: 'Ubuntu' !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-height: 120px;
    resize: vertical;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fafafa;
}



.distributorform-textarea:hover {
    border-color: #BBDEFB;
}

.distributorform-textarea:focus {
    border-color: #2196F3;
    outline: none;
    background: #fff;
    box-shadow: none;
}


.ventless-section {
    padding: 40px 0;
    background: #fff;
}

.ventless-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ventless-intro {
    text-align: center;
    margin-bottom: 40px;
}

.ventless-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.ventless-product-showcase {
    margin-bottom: 50px;
}

.ventless-product-showcase:last-child {
    margin-bottom: 0;
}

.ventless-product-title {
    font-size: 2.5em;
    color: black;
    margin-bottom: 30px;
    margin-top: 0;
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}

.ventless-product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a73e8;
}

.ventless-product-description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.ventless-features-container {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ventless-features-title {
    font-size: 2.2em;
    color: black;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    margin-top: 0px;
}

.ventless-features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1a73e8;
}

.ventless-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
    gap: 30px;
}

.ventless-feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.ventless-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.1);
    border-color: rgba(26, 115, 232, 0.3);
}

.ventless-feature-icon {
    width: 25px;
    height: 25px;
    padding: 10px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 8px;
    color: #1a73e8;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ventless-feature-item:hover .ventless-feature-icon {
    color: #ffffff;
}

.ventless-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.ventless-feature-text strong {
    display: block;
    color: #1a73e8;
    font-size: 1em;
    margin-bottom: 8px;
}

.ventless-specs-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ventless-specs-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0px;
}

.ventless-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ventless-spec-item {
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* .ventless-spec-item:hover {
    background: #1a73e8;
    color: #fff;
}

.ventless-spec-item:hover .ventless-spec-icon {
    color: #fff;
} */

.ventless-spec-icon {
    width: 24px;
    height: 24px;
    color: #1a73e8;
    transition: color 0.3s ease;
}

.ventless-spec-text {
    font-size: 1.1em;
    line-height: 1.5;
}

.ventless-faq-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.success-storiesadddemo {
    margin-top: 40px;
}

.ventless-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ventless-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ventless-faq-header h4 {
    margin: 0;
    padding: 50px;
    font-size: 20px;
    font-weight: 600;
}

.ventless-faq-badge {
    display: inline-block;
    padding: 6px 26px;
    background: #1a73e8;
    color: white;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.ventless-faq-header h2 {
    font-size: 2.5em;
    color: #333;
    margin: 0px 0px 20px 0px;
}

.ventless-faq-subtitle {
    font-size: 1.1em;
    color: #666;
    max-width: 80%;
    margin: 0 auto;
}



.ventless-faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ventless-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ventless-faq-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ventless-faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: 'Ubuntu' !important;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ventless-faq-title {
    font-size: 1.3em;
    font-family: 'Ubuntu' !important;
    color: #333;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.ventless-faq-icon {
    width: 24px;
    height: 24px;
    stroke: #1a73e8;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.ventless-faq-item.active .ventless-faq-icon {
    transform: rotate(180deg);
}

.ventless-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ventless-faq-item.active .ventless-faq-content {
    max-height: 500px;
}

.ventless-faq-content p,
.ventless-faq-content ul {
    padding: 0 20px 20px;
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    text-align: start;

}

.ventless-faq-content ul {
    padding-left: 40px;
}

.ventless-faq-content li {
    margin-bottom: 10px;
}


.singuploy-loyalty-form-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.singuploy-form-wrapper {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
}

.singuploy-form-header {
    background: linear-gradient(135deg, #111111, #0f172a);
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.singuploy-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.singuploy-form-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.singuploy-form-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.singuploy-progress-bar {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
}

.singuploy-progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.singuploy-progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.singuploy-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.singuploy-step-label {
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.singuploy-progress-step.active .singuploy-step-label {
    opacity: 1;
    padding-top: 25px;
}

.singuploy-form-content {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.singuploy-form-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.03), transparent);
    pointer-events: none;
}

.singuploy-form-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow:
        0 4px 24px -4px rgba(0, 0, 0, 0.03),
        0 12px 48px -6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    width: 41%;
}

.singuploy-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.singuploy-form-section:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.05),
        0 20px 64px -12px rgba(0, 0, 0, 0.03);
}

.singuploy-form-section h2 {
    font-size: 22px;
    font-weight: 700;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    letter-spacing: -0.02em;
}

.singuploy-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e293b, rgba(15, 23, 42, 0.3));
    border-radius: 3px;
}

.singuploy-form-group {
    margin-bottom: 25px;
    position: relative;
}

.singuploy-submission-info ul li svg {
    width: 20px;
}

.singuploy-submission-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.singuploy-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: black;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.singuploy-input-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.singuploy-form-group input[type="text"],
.singuploy-form-group input[type="email"],
.singuploy-form-group input[type="tel"],
.singuploy-form-group input[type="date"],
.singuploy-form-group input[type="number"],
.singuploy-form-group select,
.singuploy-form-group textarea {
    width: 90%;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
    padding: 12px 16px;
}


.singuploy-form-group2 input {
    width: 90%;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
    padding: 12px 16px;
}

.djcvn {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.singuploy-form-group input:hover,
.singuploy-form-group select:hover,
.singuploy-form-group textarea:hover {
    border-color: rgba(30, 41, 59, 0.3);
    background: #fff;
}

.singuploy-form-group input:focus,
.singuploy-form-group select:focus,
.singuploy-form-group textarea:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: none;
}

.singuploy-checkbox-options-lables {
    font-weight: 300 !important;
    font-size: 13px !important;
}

.singuploy-checkbox-options {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    /* Ensures exactly 3 columns */
    gap: 20px;
    margin-top: 15px;
}

.singuploy-checkbox-label {
    position: relative;
    /* padding: 24px; */
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px 10px;
    backdrop-filter: blur(4px);
}

.singuploy-checkbox-label:hover {
    border-color: #2196F3;
    outline: none;
    box-shadow: none;
}





@keyframes checkmark {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

.singuploy-radio-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.singuploy-radio-label {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    backdrop-filter: blur(4px);
}

.singuploy-radio-label:hover {
    border-color: #2196F3;
    outline: none;
    box-shadow: none;
}

.singuploy-radio-text {
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    font-size: 16px;
}

.singuploy-radio-label input:checked+.singuploy-radio-text {
    color: #0f172a;
    font-weight: 600;
    transform: scale(1.02);
}

.singuploy-radio-label input:checked+.singuploy-radio-text::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #1e293b;
    border-radius: 18px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    z-index: -1;
}

.singuploy-agreement-text {
    padding: 12px 17px;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: black;
    border: 1px solid rgba(229, 231, 235, 0.6);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.singuploy-submit-btn {
    padding: 12px 30px;
    background: #0044EB;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.singuploy-submit-btn:hover {
    transform: translateY(-2px) scale(1.01);
    background: #003bc8;
}

.singuploy-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.singuploy-submit-btn:hover::before {
    left: 100%;
}


.singuploy-submission-info {
    margin-top: 60px;
    padding: 40px;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    border: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
    overflow: hidden;
}

.singuploy-submission-info::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.2),
            rgba(30, 41, 59, 0.1),
            rgba(30, 41, 59, 0),
            rgba(30, 41, 59, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.singuploy-submission-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.01em;
}

.singuploy-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.singuploy-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
}

.singuploy-contact-method:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.06),
        0 4px 16px -4px rgba(0, 0, 0, 0.03);
    background: #fff;
    border-color: rgba(30, 41, 59, 0.2);
}

.singuploy-contact-method svg {
    width: 28px;
    height: 28px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.singuploy-contact-method:hover svg {
    transform: scale(1.1);
    color: #0f172a;
}

.singuploy-loyalty-signup-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.loyalty-program-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.loyalty-program-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 120px 20px;
    color: white;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.loyalty-program-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
}

.loyalty-program-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.program-how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.program-work-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-work-card:hover {
    transform: translateY(-10px);
}

.program-work-card .icon {
    font-size: 2.5em;
    color: #1e3799;
    margin-bottom: 20px;
}

.program-work-card h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.program-work-card ul {
    list-style: none;
    padding: 0;
}

.program-work-card ul li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 24px;
    font-size: 15px;
}

.program-work-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1e3799;
}

.program-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.program-benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

/* .program-benefit-card:hover {
    background: #1e3799;
    color: white;
} */


.program-benefit-card icon img {
    width: 60px !important;
}


.program-benefit-card p {
    font-size: 16px;
    line-height: 24px;
}

.program-benefit-card:hover .icon {
    color: white;
}

.program-join-section {
    background: linear-gradient(135deg, #1e3799, #0c2461);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.program-join-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.program-join-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.program-step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.cta-button2 {
    display: inline-block;
    padding: 10px 36px;
    background: #fff;
    color: #1e3799;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button2:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.program-contact-info {
    text-align: center;
    margin-top: 60px;
}

.program-contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.program-contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.program-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-contact-item svg {
    width: 24px;
    height: 24px;
}

.be-heaidngs h2 {
    text-align: center;
    font-size: 30px;
    margin: 0;
}

.grid-contect-info {
    display: flex;
    gap: 70px;
    width: 98%;
}

.distributorform-radio-label2 {
    display: flex;
    align-items: flex-start;
    width: 100%;
    cursor: pointer;
    padding: 12px 16px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
    gap: 12px;
}



.distributorform-radio-label2:hover {
    border-color: #BBDEFB;
}

.popupForm {
    width: 48%;
    padding: 20px;
}

.popupFormimg {
    width: 52%;
    position: relative;

}

.logopopup {
    position: absolute;
    top: 43%;
    left: 14%;
}

.popimag {
    width: 100%;
    height: 100%;
}

.popimag img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9999999999;
}

.popupimg {
    position: relative;
    width: 100%;
    height: 100%;
}

.popupimg img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0px 15px 15px 0px;
}

.blackOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* 0.5 is 50% opacity */
    z-index: 1;
}


.form-group input[type="file"] {
    display: none;
}

.form-group .file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 96%;
    padding: 9px 20px;
    background: white;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 14px;
}

.form-group .file-upload-label:hover {
    border-color: #2196F3;
    background: #fff;
}

.form-group .file-upload-label svg {
    width: 18px;
    height: 18px;
    stroke: #6c757d;
}

.form-group .file-upload-label:hover svg {
    stroke: #2196F3;
}

.file-name {
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
    display: none;
}

.file-name.active {
    display: block;
}

/* Language Dropdown Styling */
.custom-dropdown-language {
    position: relative;
    z-index: 1000;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: 1px solid rgb(255 255 255 / 42%) !important;
    padding: 3px 21px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.custom-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    width: 24px;
    height: 24px;
    display: none;
    border-radius: 50%;
}

.language-text {
    color: white;
    font-size: 13px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.custom-dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 4px;
}

.custom-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-dropdown-menu li:hover {
    background: #f5f5f5;
}

.custom-dropdown-menu li.selected {
    background: #e9ecef;
}

.custom-dropdown-menu li img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.custom-dropdown-menu li span {
    color: #333;
    font-size: 14px;
}

.viewer-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 86%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.pdf-embed {
    flex-grow: 1;
    border: none;
    width: 100%;
    height: 100%;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f4f6fc;
    border-top: 1px solid #ccc;
}

.nav-btn {
    padding: 10px 20px;
    font-size: 16px;
    background: #6a11cb;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #2575fc;
}

.nav-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.page-indicator {
    font-size: 16px;
    color: #333;
}

.psdvies {
    position: relative;
    margin-bottom: 100px;
}

.mobile-header .custom-dropdown-menu.show {
    display: block !important;
}

.chatbot-logo img {
    height: 100%;
}

.chatbot-logo {
    width: 50px;
    height: 50px;
    padding: 15px;
    background: black;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    z-index: 9999999999999 !important;
    right: 20px;
    cursor: pointer;
    z-index: 9999;
}

.chatbot-container {
    width: 350px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 99999999;
}

df-messenger {
    width: 100%;
    height: 100%;
}

.checksallinputs p {
    font-size: 17px;
    font-weight: 300;

}

.formInstallers label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.formInstallers {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
}


.formInstallers input {
    width: 20px;
    height: 20px;
}


.ourothercompanysotherss {
    background: #fafafa;
    padding-top: 2%;
}

.containerotherss {
    width: 80%;
    margin: 0 auto;
    padding: 0rem 2rem 3rem 2rem;
}

.herootherss {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.herootherss::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #003bc8;
    border-radius: 2px;
}

.herootherss h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 1rem;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.herootherss p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.comparisonotherss {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.comparisonotherss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #eeeeee;
}

.cardotherss {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cardotherss:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #0000001f;
}

.card-headerotherss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}

.card-titleotherss {
    font-size: 27px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 13px;
    color: #0a0a0a;
}

.price-tagotherss {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0044EB;
}

.featuresotherss {
    list-style: none;
    margin: 0;
    padding: 0;
}

.featureotherss {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.featureotherss:last-child {
    border-bottom: none;
}

.featureotherss:hover {
    transform: translateX(10px);
}

.feature-iconotherss {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-textotherss {
    font-size: 13px;
    color: #333333;
    line-height: 27px;
}

.highlightotherss {
    margin-top: 2rem;
    padding: 17px 40px;
    background: #0044EB;
    font-size: 13px;
    color: white;
    border-radius: 7px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 10px 20px rgb(114 114 114 / 20%);
    transition: all 0.3s ease;
}


.titledscd {
    max-width: 900px;
    text-align: center;
    position: relative;
    margin: auto;
}

.homevstop {
    position: absolute;
    left: 20px;
    top: -100px;
    opacity: 0.1;
}

.homevstop2 {
    opacity: 0.1;
    width: 25%;
    rotate: 40deg;
    position: absolute;
    right: -290px;
    top: 40px;
    height: 100%;
}

.titledscd h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: black;
    padding-top: 40px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.titledscd::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.highlightotherss:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 51, 102, 0.3);
}

.badgeotherss {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #0044EB;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgb(106 106 106 / 30%);
}

@keyframes fadeInotherss {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cardotherss {
    animation: fadeInotherss 0.6s ease forwards;
    opacity: 0;
}

.cardotherss:nth-child(1) {
    animation-delay: 0.2s;
}

.cardotherss:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideInotherss {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.featureotherss {
    animation: slideInotherss 0.5s ease forwards;
    opacity: 0;
}

.featureotherss:nth-child(1) {
    animation-delay: 0.6s;
}

.featureotherss:nth-child(2) {
    animation-delay: 0.7s;
}

.featureotherss:nth-child(3) {
    animation-delay: 0.8s;
}

.featureotherss:nth-child(4) {
    animation-delay: 0.9s;
}

.featureotherss:nth-child(5) {
    animation-delay: 1.0s;
}

.featureotherss:nth-child(6) {
    animation-delay: 1.1s;
}

.featureotherss:nth-child(7) {
    animation-delay: 1.2s;
}


.kitchen-configurationsotherss {
    background: #fafafa;
    padding: 2rem 0;
    position: relative;
}

.confivsimg {
    width: 25%;
    position: absolute;
    left: 0;
    top: -90px;
    opacity: 0.1;
}

.configurations-gridotherss {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}



.config-cardotherss {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.config-cardotherss:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #0044EB;
}

.config-imageotherss {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.config-imgotherss {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.config-cardotherss:hover .config-imgotherss {
    transform: scale(1.05);
}

.config-contentotherss {
    padding: 2rem;
}

.config-titleotherss {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.config-detailsotherss {
    color: #666666;
}

.config-includesotherss {
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.price-optionsotherss {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-optionotherss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f6f3f3;
    border-radius: 8px;
}



.option-typeotherss {
    font-size: 14px;
    color: #333333;
    line-height: 22px;
}

.priceotherss {
    font-weight: 500;
    color: #0044EB;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.config-imageotherss img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.containefvrotherss {
    width: 90%;
    margin: auto;
}



.lasttwotableadd-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 40px;
}

.lasttwotableadd-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.lasttwotableadd-section-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0px 0px 20px 0px;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.lasttwotableadd-section-header p {
    font-size: 1.3rem;
    color: black;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.lasttwotableadd-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.lasttwotableadd-comparison-card {
    background: #ffffff;
    border: 1px solid #0000001a;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lasttwotableadd-comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.lasttwotableadd-card-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #0044EB;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lasttwotableadd-card-header {
    margin-bottom: 20px;
}

.lasttwotableadd-card-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.lasttwotableadd-card-header p {
    color: #666666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0px;
}

.lasttwotableadd-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lasttwotableadd-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #0000002e;
}

.lasttwotableadd-feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 51, 102, 0.03);
    border-color: rgba(255, 51, 102, 0.1);
}

.lasttwotableadd-feature-icon {
    width: 28px;
    height: 28px;
    margin-right: 20px;
    color: #0044EB;
    flex-shrink: 0;
}

.lasttwotableadd-feature-content {
    flex: 1;
}

.lasttwotableadd-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0px;
    color: #0a0a0a;
}

.lasttwotableadd-feature-content p {
    font-size: 14px;
    color: #666666;
    margin: 5px 0px 5px 0px;
    line-height: 1.6;
}

.lasttwotableadd-price-tag {
    margin-top: 40px;
    padding: 10px 30px;
    background: #0044EB;
    color: white;
    border-radius: 8px;
    display: inline-block;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
    transition: transform 0.3s ease;
}

.lasttwotableadd-price-tag:hover {
    transform: translateY(-3px);
}


.doors-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
}

.doors-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.doors-slide {
    min-width: 20%;
    padding: 10px;
}

.doors-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
}

.doors-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    overflow: hidden;
}

.doors-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.doors-image-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.doors-image-container:hover .doors-image-main {
    opacity: 0;
}

.doors-image-container:hover .doors-image-hover {
    opacity: 1;
}

.doors-card-title {
    padding: 15px 0;
    font-size: 14px;
    color: #333;
}

.doors-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 96%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.doors-prev-btn,
.doors-next-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: auto;
}

.doors-prev-btn:hover,
.doors-next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}



.calendarra {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 90%;
    max-width: 800px;
    margin: auto;
    border: 1px solid #00000024;
}

.calendarra:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.calendarra-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendarra-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.calendarra-header button:hover {
    transform: scale(1.1);
}

.calendarra-header svg {
    width: 24px;
    height: 24px;
    fill: #4b5563;
}

#monthYearra {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.calendarra-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    color: #6b7280;
}

.calendarra-dateras {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 8px;
}

.datera {
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    color: #1f2937;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.datera:hover {
    background-color: #e5e7eb;
}

.todayra {
    background-color: #3b82f6;
    color: white;
}

.bookedra {
    background-color: #0044EB;
    color: white;
    cursor: not-allowed;
}

.modalra {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modalra-content {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    width: 600px;
    height: 200px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modalra-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modalra-heading h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #111827;
}

.modalra-cross-svg {
    font-size: 1.8rem;
    color: #6b7280;
    cursor: pointer;
}

.modalra-cross-svg:hover {
    color: #ef4444;
}

.modalra-body h3 {
    margin-bottom: 10px;
    color: black;
}

.modalra-body p {
    margin-bottom: 15px;
    color: #374151;
}

.modalra-footer {
    display: flex;
    justify-content: end;
    margin-top: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.modalra-footer button {
    padding: 10px 30px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
}

.modalra-footer button:hover {
    background-color: #2563eb;
}

/* New form modal styles */
.booking-form-modal {
    display: none;
    position: fixed;
    top: 23px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    z-index: 99999999999999999999999999999 !important;
    align-items: center;
    z-index: 1000;
}

.booking-form-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 650px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 459px;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-form-content input,
.booking-form-content button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

.booking-form-content input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    width: 48%;
    background: #f8f9fa;

    height: 49px;
}

.booking-form-content input:focus {
    box-shadow: none;
    outline: none;
}

.booking-form-content button {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.booking-form-content button:hover {
    background-color: #2563eb;
}

.booking-form-cross {
    position: absolute;
    top: 25px;
    right: 31px;
    font-size: 2.3rem;
    color: #6b7280;
    cursor: pointer;
}

.calendarramain {
    margin: 70px 0px;
}

.time-slots {
    margin: 20px 0;
    width: 100%;
}

.time-slots h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.time-slot-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.time-slot {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.time-slot label {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    padding: 9px;
}

.time-slot input[type="radio"]:checked+label {
    color: white;
    background: #0044EB;
}

.time-slot input[type="radio"]:checked~label {
    color: white;
    background: #0044EB;
}

.time-slot input[type="radio"]:checked+label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #007bff;
    border-radius: 5px;
    z-index: -1;
}

.booking-form-content h3 {
    margin: 0;
    font-size: 20px;
    padding-bottom: 10px;
}


.ourpackages-container {
    max-width: 88%;
    margin: 0 auto;
    padding: 0px 0px;
    position: relative;
}

.ourpackages-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.ourpackages-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    margin-top: 0px;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.ourpackages-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.ourpackages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    width: 99%;
    margin: auto;
}

.ourpackages-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: 488px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ourpackages-card:hover {
    background: #0044EB;
    color: #fff;
    transform: translateY(-10px);
}

.ourpackages-card:hover .ourpackages-label,
.ourpackages-card:hover .ourpackages-subtitle,
.ourpackages-card:hover .ourpackages-features li,
.ourpackages-card:hover .original-price,
.ourpackages-card:hover .discount {
    color: rgba(255, 255, 255, 0.7);
}


.ourpackages-card:hover .ourpackages-price {
    color: white;
}

.ourpackages-card:hover .ourpackages-title {
    color: white;
}


.ourpackages-card:hover .ourpackages-button {
    background: #fff;
    color: black;
}

.mainpricecardss {
    font-size: 22px;
}

.ourpackages-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #888;
    transition: all 0.4s ease;
}

.ourpackages-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.ourpackages-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.ourpackages-price {
    font-size: 3.5rem;
    font-weight: 600;
    display: flex;
    margin: 10px 0px;
    align-items: baseline;
    gap: 5px;
    transition: all 0.4s ease;
}

.original-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 10px;
    transition: all 0.4s ease;
}

.discount {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    transition: all 0.4s ease;
}

.ourpackages-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    flex-grow: 1;
}

.ourpackages-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
    transition: all 0.4s ease;
}

.ourpackages-features li i {
    color: #0044EB;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.ourpackages-card:hover .ourpackages-features li i {
    color: #fff;
}

.ourpackages-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: #0044EB;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ourpackages-featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0044EB;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ourpackages-process {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 60px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ourpackages-process-header {
    text-align: center;
    margin-bottom: 20px;
}

.ourpackages-process-header h3 {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ourpackages-process-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ourpackages-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.ourpackages-process-steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #0044EB 0%, #0044EB 25%,
            #0044EB 25%, #0044EB 50%,
            #0044EB 50%, #0044EB 75%,
            #0044EB 75%, #0044EB 100%);
    z-index: 0;
}

.ourpackages-process-step {
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.ourpackages-process-step .step-number {
    width: 50px;
    height: 50px;
    background: #0044EB;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0px 73px 30px 73px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ourpackages-process-step:hover .step-number {
    transform: scale(1.1);
}

.ourpackages-process-step .step-icon1 {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.ourpackages-process-step .step-icon i {
    font-size: 2rem;
    color: #0044EB;
    transition: transform 0.3s ease;
}

.ourpackages-process-step:hover .step-icon {
    background: #0044EB;
}

.ourpackages-process-step:hover .step-icon i {
    color: #fff;
    transform: scale(1.1);
}

.ourpackages-process-step .step-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ourpackages-process-step .step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.ourpackages-modal {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999999999999999999999999999999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ourpackages-modal.active {
    display: flex;
    opacity: 1;
}

.ourpackages-modal-content {
    background: #fff;
    height: 78vh;
    overflow-y: auto;
    padding: 29px 40px;
    border-radius: 10px;
    width: 79%;
    margin: auto;
    position: relative;
    transform: translateY(20px);

    z-index: 9999999999999999999999999999999;
    transition: transform 0.3s ease;
}

.ourpackages-modal.active .ourpackages-modal-content {
    transform: translateY(0);
}

.ourpackages-modal-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ourpackages-modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.ourpackages-modal-subtitle {
    color: #666;
    font-size: 1rem;
}

.ourpackages-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.ourpackages-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ourpackages-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 24px;
}

.ourpackages-form-group {
    margin-bottom: 20px;
}

.ourpackages-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

.ourpackages-form-group input,
.ourpackages-form-group select,
.ourpackages-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
}

.ourpackages-form-group input {
    width: 90%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
}

.ourpackages-form-group input:focus,
.ourpackages-form-group select:focus,
.ourpackages-form-group textarea:focus {
    outline: none;
    border-color: #0044EB;
    box-shadow: none;
}

.ourpackages-form-group textarea {
    height: 100px;
    resize: vertical;
}

.ourpackages-payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ourpackages-payment-method {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.ourpackages-payment-method:hover {
    border-color: #0044EB;
    background: rgba(37, 99, 235, 0.05);
}

.ourpackages-payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.ourpackages-payment-method input[type="radio"]:checked+label {
    color: #0044EB;
}

.ourpackages-payment-method input[type="radio"]:checked+label:before {
    border-color: #0044EB;
    background: #0044EB;
}

.ourpackages-payment-method label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.ourpackages-payment-method label:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ourpackages-payment-method input[type="radio"]:checked+label:before {
    border-color: #0044EB;
    background: #0044EB;
    box-shadow: inset 0 0 0 4px #fff;
}

.ourpackages-payment-method i {
    font-size: 1.4rem;
    color: #666;
    margin-right: 5px;
}

.ourpackages-payment-method .ourpackages-method-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ourpackages-payment-method .ourpackages-method-name {
    font-weight: 500;
}

.ourpackages-payment-method .ourpackages-method-description {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

.ourpackages-order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.ourpackages-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ourpackages-summary-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 600;
}

.ourpackages-btn-secondary {
    background: #f1f5f9;
    color: #1a1a1a;
}

.ourpackages-btn-secondary:hover {
    background: #e2e8f0;
}

.mainourpallsin {
    background: #f8f9fa;
    padding-top: 40px;
}

.ourpackages-btn-secondary:hover {
    background: #e2e8f0;
}

/* Newsletter Popup Styles */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    z-index: 9999999999999999999;
}

.newsletter-container {
    background: white;
    width: 900px;
    height: 500px;
    display: flex;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.newsletter-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: auto;
    z-index: 1;
}


.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    z-index: 1;
}

.newsletter-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-subtitle {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}

.newsletter-inputtt {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-inputtt:focus {
    outline: none;
    border-color: #1a1a1a;
}

.newsletter-inputtt::placeholder {
    color: #666;
}

.newsletter-buttong {
    width: fit-content;
    padding: 15px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-weight: 500;
}

.newsletter-buttong:hover {
    background: #333;
    transform: translateY(-1px);
}

.newsletter-description {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}





.cabinet-collection-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.cabinet-collection-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabinet-collection-item {
    min-width: 15%;
    padding: 15px;
}

.cabinet-collection-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cabinet-collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cabinet-collection-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
    background: #f5f5f5;
}

.cabinet-collection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabinet-collection-image-default {
    opacity: 1;
}

.cabinet-collection-image-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.cabinet-collection-card:hover .cabinet-collection-image-default {
    opacity: 0;
}

.cabinet-collection-card:hover .cabinet-collection-image-hover {
    opacity: 1;
}

.cabinet-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cabinet-collection-title {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.cabinet-collection-card:hover .cabinet-collection-overlay {
    opacity: 1;
}

.cabinet-collection-card:hover .cabinet-collection-title {
    transform: translateY(0);
}

.cabinet-collection-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 95%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.cabinet-collection-prev,
.cabinet-collection-next {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cabinet-collection-prev::before,
.cabinet-collection-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0044EB, #0044EB);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cabinet-collection-prev::after {
    content: "←";
    position: relative;
    z-index: 1;
}

.cabinet-collection-next::after {
    content: "→";
    position: relative;
    z-index: 1;
}

.cabinet-collection-prev:hover,
.cabinet-collection-next:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cabinet-collection-prev:hover::before,
.cabinet-collection-next:hover::before {
    opacity: 1;
}

.cabinet-collection-prev:hover::after,
.cabinet-collection-next:hover::after {
    color: white;
}



.cabinetryvid-section {
    position: relative;
    padding: 50px 0px 90px 0px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    overflow: hidden;
}

.cabinetryvid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.cabinetryvid-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cabinetryvid-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.cabinetryvid-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0044EB, #0044EB);
}

.cabinetryvid-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cabinetryvid-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cabinetryvid-video-wrapper:hover {
    transform: translateY(-10px);
}

.cabinetryvid-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.cabinetryvid-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.cabinetryvid-decoration::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 68, 235, 0.1) 0%, rgba(0, 68, 235, 0.1) 100%);
    border-radius: 50%;
}

.cabinetryvid-decoration::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 68, 235, 0.1) 0%, rgba(0, 68, 235, 0.1) 100%);
    border-radius: 50%;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 240px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 396px;
    border-radius: 10px;
    display: none;
    padding: 12px 0px;
}

.sub-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    line-height: 29px !important;
}

.dropdown-trigger:hover .sub-dropdown {
    display: block;
}


.loginf-main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/LuxuryCabinetry.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.loginf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.loginf-container {
    width: 37%;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.loginf-container:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.loginf-header {
    text-align: center;
    margin-bottom: 2rem;
}

.loginf-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.loginf-subtitle {
    font-size: 0.875rem;
    color: white;
}

.loginf-form-group {
    margin-bottom: 1.5rem;
}

.loginf-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.loginf-form-input {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.loginf-form-input:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.5);
}

.loginf-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.loginf-remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loginf-forgot-password {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s;
}

.loginf-forgot-password:hover {
    color: #0891b2;
}

.loginf-btn-login {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #0044EB;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.loginf-btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.loginf-btn-login:hover::before {
    left: 100%;
}

.loginf-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 68, 235, 0.4);
}

.loginf-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.loginf-divider::before,
.loginf-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.loginf-divider::before {
    left: 0;
}

.loginf-divider::after {
    right: 0;
}

.loginf-signup-link {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.loginf-signup-link a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.loginf-signup-link a:hover {
    color: #0891b2;
}


.submit-measurements-form-main {
    display: flex;
    justify-content: space-between;
    width: 97%;
    margin: auto;
}

.submit-measurementsa2 {
    width: 31%;
}


.measurement-form-main {
    display: flex;
    justify-content: space-between;
}

.measurement-form-main-child1 {
    width: 48%;
}


.packformsmain {
    display: flex;
    justify-content: space-between;
}

.packformsmainchild {
    width: 46%;
}


/* .imagesgallerynew2bottom{
    margin-bottom: 30%;
} */


.imagesgallerynews {
    margin: 70px 0px;
}


.dropdown-usdcad {
    position: relative;
    width: 89px;
    user-select: none;
}

.dropdown-toggle-usdcad {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 3px 15px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: background 0.3s ease !important;
}

.dropdown-toggle-usdcad:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-options-usdcad {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #4a4a4a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: none;
    flex-direction: column;
    z-index: 10;
}

.dropdown-options-usdcad.active {
    display: flex;
}

.dropdown-option-usdcad {
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: white;
}

.dropdown-option-usdcad:hover {
    background: rgba(255, 255, 255, 0.1);
}

#selectedCurrency {
    color: white;
    font-size: 12px;
}


.booking-form-fields-mainss {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: #0044EB;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.prev-slide,
.next-slide {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    opacity: 0.7;
}

.prev-slide:disabled,
.next-slide:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.top-navbar {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5px 12px 1.5px 12px;
    border-bottom: 1px solid #ffffff63;
    background: rgba(0, 0, 0, 0.27);
    z-index: 999999999999;
    position: relative;
}


.top-nav-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topinformations {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: white;
}


.services-card-main {
    margin-bottom: 4%;
}

.logo2{
    width: 53px;
}

.logo2 img{
    width:100%;
    height:100%;
}



.namedropdown-mains{
    display: flex;
    align-items: center;
    gap: 10px;
}
.namedropdown-mains p{
    color: white;
    font-size: 12px;
    margin: 0;
}
.sitemap-container {
    max-width: 800px;
    /* Adjust max-width as needed */
    margin: 40px auto;
    /* Center the content and add vertical space */
    padding: 0 20px;
    /* Add some horizontal padding */
    font-family: 'Open Sans', sans-serif;
    /* Use the Open Sans font */
    color: #333;
    /* Adjust text color as needed */
}

.sitemap-container h1 {
    font-size: 28px;
    /* Adjust font size as needed */
    font-weight: 500;
    /* Adjust font weight as needed */
    margin-bottom: 30px;
    /* Space below the main heading */
    text-align: left;
    /* Align to the left */
    color: #333;
    /* Adjust color as needed */
}

.sitemap-container ul {
    list-style: disc;
    /* Use black dots for main list items */
    padding: 0;
    margin: 0;
    padding-left: 20px;
    /* Add padding for list markers */
}

.sitemap-container ul li {
    margin-bottom: 8px;
    /* Space between list items */
    font-size: 15px;
    /* Adjust font size as needed */
    color: #333;
    /* Adjust text color as needed */
}

.sitemap-container ul li a {
    text-decoration: none;
    /* Remove underline from links */
    color: #333;
    /* Adjust link color as needed */
}

.sitemap-container ul li a:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

.sitemap-container ul ul {
    list-style: circle;
    /* Use hollow dots for nested list items */
    margin-top: 5px;
    /* Space above nested lists */
    margin-bottom: 5px;
    /* Space below nested lists */
    padding-left: 20px;
    /* Indent nested lists */
}

.sitemap-container ul ul li {
    font-size: 14px;
    /* Slightly smaller font for nested items */
    margin-bottom: 5px;
    /* Less space between nested list items */
    color: #555;
    /* Slightly lighter color for nested items */
}
