:root {
    --hettich-white: #ffffff;
    --hettich-black: #000000;
    --para-color: #707070;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.main-box {
    position: relative;
}

.hettich-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* common class */
.hettich-heading-primary {
    font-size: 32px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #404040;
    line-height: 1.3;
    text-align: start;
    width: 100%;
}

.width-auto {
    width: auto;
}

.hettich-heading-primary.header-white {
    color: #ffffff;
}

.common-py {
    padding-top: 70px;
    padding-bottom: 70px;
}

.hettich-heading-primary .light {
    color: #40404099;
}

.txt-center {
    text-align: center;
}

/* hettich sticky msg box  */
.msg-sticky-box {
    position: fixed;
    right: 50px;
    bottom: 170px;
    z-index: 1111;
    cursor: pointer;
}



.msg-sticky-box svg {
    width: 48px;
    height: 48px;
}

.hettich-msg-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111111111111111;
    display: none;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    background-color: #0000002e;
    transition: all 0.8s ease-in-out;
}

.hettich-msg-popup.show {
    display: flex;
}

.hettich-msg-popup-wrapper {
    width: 40%;
    height: auto;
    background-color: #FFFFFFFA;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
    position: relative;
    box-shadow: 0 0 1px rgb(224, 223, 223);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: #000;
}

.avail-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.avail-input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
}

.avail-input-wrapper .avail-input,
.avail-input-wrapper .avail-select {
    width: 100%;
    /* padding-bottom: 12px; */
    border: none;
    background: transparent;
    /* border-bottom: 1px solid #E9E9E9; */
    outline: none;
    border: 1px solid #D4D4DC;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    height: 50px;
}

.avail-input::placeholder,
.avail-select {
    font-weight: 400;
    font-size: 14px;
    color: #707070;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
}

.avail-text-area {
    width: 100%;
    border: none;
    outline: none;
    border: 1px solid #E9E9E9;
    background: transparent;
    height: 60px;
    resize: none;
    font-size: 14px;
    font-weight: 400;
    column-rule: #707070;
    padding: 15px;
    border-radius: 8px;
    height: 100px;
}

.avail-text-area::placeholder {
    color: #707070;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.hettich-form-btn {
    padding: 15px 40px;
    width: 50%;
    background: transparent;
    border: none;
    outline: none;
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    cursor: pointer;
    border-radius: 100px;
}

.hettich-form-btn:hover {
    opacity: 0.9;
}


/* hettich header  */
.hettich-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 999;
}
.hettich-header.scrolled {
    background: #fff; /* change header bg on scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .hettich-header .hettich-container{height: 105px;display: flex;}

.hettich-header .hettich-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

.hettich-nav-link {
    color: var(--hettich-white);
    font-size: 16px;
    font-weight: 400;
}

.hettich-nav-link:hover {
    opacity: 0.8;
}

.hettich-header .hettich-header-logo {
    position: absolute;
    left: 73px;
    top: 41%;
    transform: translateY(-50%);
    width: 95px;
}

.hettich-header.scrolled .hettich-header-logo {
    filter: invert(1);
}
.hettich-header.scrolled .hettich-nav-link{
    color: #000;
}



/* hettich hero section  */
.hettich-hero-section {
    position: sticky;
    top: 0;
    width: 100%;
    height: fit-content;
}

.hettich-hero-mask {
    width: 100%;
    height: auto;

}

.hettich-hero-section::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    background-color: #0000001a;
}

.hettich-hero-mask img {
    width: 100%;
    height: auto;
    z-index: -1;
}

.hettich-hero-wrapper {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2;
    position: relative;
    flex-direction: column;
}

.hettich-hero-mask .desktop {
    display: block;
}

.hettich-hero-mask .mobile {
    display: none;
}

.hettich-main-header {
    font-size: 158px;
    color: var(--hettich-white);
    font-weight: 500;
    word-wrap: break-word;
    line-height: 1;
}

.hettich-main-para {
    font-weight: 400;
    font-size: 16px;
    color: var(--hettich-white);
    line-height: 1.8;
    text-align: center;
}

.hettich-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 25px;
    background: none;
    outline: none;
    border: none;
    background-color: var(--hettich-white);
    color: #404040;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: stroke 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hettich-contact-btn::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background-color: var(--hettich-black);
    border-radius: 50%;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0);
    transform: rotate(-80deg);
    opacity: 0;
}

.hettich-contact-btn:hover::before {
    bottom: -50%;
    left: -50%;
    transform: scale(1);
    opacity: 1;
}

.hettich-contact-btn svg path {
    stroke: #404040;
    transition: stroke 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hettich-contact-btn:hover {
    color: var(--hettich-white);
    background-color: transparent;
}

.hettich-contact-btn:hover svg path {
    stroke: #ffffff;
}

/* exprience magic section  */

.experience-magic-section {
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 111;
    background: transparent;
}

.half-experience-box {
    width: 50%;
    background-color: var(--hettich-white);
    padding: 30px 0;
}

.half-experience-box .hettich-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.half-experience-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 0;
}

.exp-heading {
    font-size: 24px;
    line-height: 1.4;
}

.magic-box-mask {
    width: 80px;
}

.exp-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #707070;
}

.box-border-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.experience-video-box-wrapper {
    width: 100%;
    padding: 50px 0;
    background-color: var(--hettich-white);
}

.experience-video-box {
    width: 100%;
    border-radius: 20px;
    background-color: transparent;
    background-image: url(../images/video-thumbnail-ds.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.experiences-play-icon {
    cursor: pointer;
}

.experiences-play-icon svg {
    width: 98px;
}

.experience-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    border: none;
    outline: none;
    border-radius: 0;
    display: none;
    object-fit: cover;
}

/* touch in section  */
.touch-in-section {
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #F5F5F5;
    background-image: url(../images/contact-us-ds.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 111;
}


.touch-in-section .hettich-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.touch-in-section .hettich-heading-primary.responsive {
    display: none;
}

.touch-in-wrapper {
    width: 45%;
    background-color: #FFFFFFFA;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
    position: relative;
    z-index: 4;
}

/* our store section  */

.our-store-section {
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #F5F5F5;
    background-image: url(../images/our-store-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 111;
    height: 650px;
}

.our-store-layer {
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}



.our-store-section .hettich-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.hettich-map-box {
    width: 50%;
    height: 100%;
    background-color: #FFFFFFFA;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
}

.map-container-extra-space {
    display: none;
}

.map-tab-header,
.gallery-tab-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
}

.map-tab-btn,
.gallery-tab-btn {
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: #707070;
    padding-bottom: 10px;
    cursor: pointer;
}


.map-tab-btn.active,
.gallery-tab-btn.active {
    color: #404040;
    font-weight: 500;
    position: relative;
}


.map-tab-btn.active::after,
.gallery-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #404040;
}

.map-render-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.map-render {
    width: 356px;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
}

.map-render img {
    width: 100%;
}

.map-render.active {
    display: flex;
}


.map-thumb-box {
    position: absolute;
}

.map-thumb-btn {
    cursor: pointer;
    z-index: 1;
}

.map-thumb-btn svg {
    width: 20px;
    height: 20px;
}

.map-thumb-box.is-open .map-thumb-btn circle,
.map-thumb-box:active .map-thumb-btn circle {
    fill: #404040;
    transition: all 0.2s ease-in-out;
}

.map-thumb-box.is-open .map-thumb-btn path,
.map-thumb-box:active .map-thumb-btn path {
    transform: rotate(-46deg);
    transform-origin: center;
    transform-box: fill-box;
    transition: all 0.2s ease-in-out;
}

.thumb-card-address {
    position: absolute;
    width: 289px;
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s ease-in-out;
    top: -8px;
    right: 123%;
    z-index: 10;
    display: none;
}

.map-thumb-box:hover .thumb-card-address,
.map-thumb-box:active .thumb-card-address {
    display: flex;
}


.thumb-card-para {
    font-size: 14px;
    font-weight: 400;
    color: #404040;
    line-height: 1.3;
}

.thumb-contat-box {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

.thumb-contat-box svg {
    width: 13px;
}

.thumb-contact-text {
    font-size: 14px;
    font-weight: 400;
    color: #404040;
}

.our-gallery-section {
    width: 100%;
    background-color: #F5F5F5;
    position: relative;
}

.gallery-heading-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px;
}

.gallery-tab-btn {
    text-wrap: nowrap;
}

.gallery-btn-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.gallery-btn {
    cursor: pointer;
}

.gallery-btn svg {
    width: 45px;
    height: 45px;
}

.gallery-btn.end {
    cursor: default;
    opacity: 0.3;
}

.gallery-frame-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-layer-para {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: none;
}

.gallery-layer-para img {
    width: 100%;
}

.gallery-frame {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    position: relative;
    transition: all 0.8s ease-in-out;
    transform: translateX(-100%);
}

.translate-0 {
    transform: translateX(0);
}

.slide-top-running {
    transform: translateY(-100%);
}

.slide-top-running.translate-0 {
    transform: translateY(0);
}

.bottom-top-running {
    transform: translateY(100%);
}

.bottom-top-running.translate-0 {
    transform: translateY(0);
}

.slide-right-running {
    transform: translateX(100%);
}

.slide-right-running.translate-0 {
    transform: translateX(0);
}

.gallery-frame.active {
    display: flex;
}

.gallery-frame img {
    width: 800px;
}


.seamless-section {
    width: 100%;
    background-color: #F5F5F5;
    position:relative;
    top: 0;
}

.seamless-section .hettich-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seamless-top-box {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

.seamless-para {
    width: 350px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #707070;
}

.seamless-slider-box {
    width: 100%;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seamless-slider-box .swiper {
    width: 100%;
    padding: 50px;
    padding-right: 0;
    /* height: 570px; */
}

.seamless-slider-box .swiper-wrapper {
    width: 100%;
    align-items: center;
    gap: 20px;
}
/* .seamless-slider-box .swiper-slide{width: 300px;} */

.seamless-slider-box .swiper-slide {
    /* height: 360px; */
    transform: scale(0.9);
    background: transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: block;
    align-items: flex-end;
}
/* .seamless-slider-box .swiper-slide:nth-child(3) {
    transform: scale(1.1);
} */

.seamless-slider-box .swiper-slide-active {
    /* height: 424px; */
    transform: scale(1.1);
    transition: all 0.5s;
}

.seamless-navigation-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.seamless-navigation-btn {
    cursor: pointer;
}

.seamless-navigation-btn svg {
    width: 45px;
    height: 45px;
}

.seamless-navigation-btn.swiper-button-disabled {
    opacity: 0.3;
}

.seamless-img-layer {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}


.seamless-img-layer img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.seamless-slider-card {
    position: absolute;
    bottom: 5px;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-end;
    background-color: #00000052;
    padding: 30px;
}

.seamless-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

.seamless-play-btn svg {
    width: 46px;
    height: 46px;
}

.seamless-heading {
    font-weight: 600;
    color: var(--hettich-white);
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.seamless-card-para {
    color: #FFFFFFCC;
    font-weight: 300;
    font-size: 14px;
    display: none;

}

.seamless-slider-box .swiper-slide-active .seamless-card-para {
    display: none;
}

.seamless-section {
padding-bottom: 0 !important;
}



/*---influncers---section---start---here---*/

.influncers_section {
    background: #fff;
    position: relative;
    z-index: 2;
    display: none;
}

.influncers_slider {
    overflow: hidden;
    margin: 0px auto;
}

.influncer_inner_card img {
    width: 100%;
    display: block;
    height: 480px;
}

.influncers_slider .swiper-slide {
    width: 27%;
    margin-right: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    height: initial;
    height: 440px;
}

.influncers_slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    height: 580px;
}

.influncers_slider .swiper-slide-active .influncers-card-text {
    display: flex;
}

.influncer_inner_card {
    border-radius: 16px;
    overflow: hidden;
}

.influncers_slider .swiper-wrapper {
    padding: 75px 0px;
    align-items: center !important;
}

.influncers_mobile_image_card {
    display: none;
}

.influncers_slider .swiper-slide-active .influncers_mobile_image_card {
    display: none;
    position: absolute;
    top: -70px;
    right: 6px;
    left: 6px;
    bottom: -70px;
}

.influncers_mobile_image {
    width: 100%;
    height: 100%;
}

.influncers_slider .swiper-slide-active .influncer_inner_card {
    position: absolute;
    top: 0px;
    right: 34px;
    left: 34px;
    bottom: 0px;
    z-index: 3;
}

.influncers_slider .swiper-slide-active .influncer_inner_card img {
    height: 100%;
    object-fit: fill;
    object-position: left;
}

.swiper_slider_common_btn_box {
    display: flex;
}

.influncer_wrapper .swiper_slider_common_btn_box {
    position: absolute;
    right: 0px;
    z-index: 5;
    top: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.swiper_back_btn_box svg,
.swiper_back_next_box svg {
    width: 100%;
    height: inherit;
}

.swiper_back_btn_box,
.swiper_back_next_box {
    width: 45px;
    cursor: pointer;
}

.influncer_wrapper {
    position: relative;
}

.influncers-card-text {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: row;
    align-items: center;
    z-index: 7;
}

.infu-name {
    font-weight: 400;
    font-size: 14px;
    color: #404040;
    padding-right: 8px;
    border-right: 2px solid #E0E0E0;
    text-wrap: nowrap;
}

.infu-rank {
    color: #404040;
    font-weight: 300;
    font-size: 14px;
    padding-left: 8px;
    text-wrap: nowrap;
}

.influncers-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.influncers-play-btn svg {
    width: 80px;
    height: 80px;
}

.influncers-frame-fix-center {
    position: absolute;
    top: 52%;
    left: 49.4%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 728px;
    width: 25%;
}

/* footer code  */
.hettich-footer {
    width: 100%;
    background-color: #FAFAFA;
    padding: 30px 0;
    position: relative;
}

.hettich-footer .hettich-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hettich-footer .footer-logo {
    width: 100px;
}

.hettich-footer .footer-info {
    font-weight: 400;
    color: #404040E5;
    font-size: 12px;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
}

.hettich-footer .footer-icon-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.hettich-footer .footer-icon {
    width: 50px;
    height: 50px;
}

.label-wrapper .avail-label {
    display: block;
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 14px;
    color: #404040;
    font-weight: 600;
    z-index: 2;
    padding: 0 5px;
    background-color: #FFFFFF;

}

.avail-label .required,
.required {
    color: #ff0000;
}


.label-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

.success {
    position: absolute;
    top: 20px;
    width: 100%;
    color: #048704;
    font-size: 16px;
    left: 0;
    text-align: center;
}

.label-wrapper .error.text-danger,
.checkbox-wrapper .error.text-danger {
    position: absolute;
    font-size: 10px;
    color: #ff0000;
    font-weight: 400;
    bottom: -17px;
    left: 2px;
}

/* gate loading animation  */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
}

.gate-left,
.gate-right {
    width: 50%;
    height: 100%;
    background: linear-gradient(148.05deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.gate-left {
    transform-origin: left center;
}

.gate-right {
    transform-origin: right center;
}

.loading-overlay.animate .gate-left {
    transform: translateX(-100%);
}

.loading-overlay.animate .gate-right {
    transform: translateX(100%);
}

.loading-svg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-svg-icon img {
    width: 200px;
}

.loading-overlay.animate .loading-svg-icon {
    opacity: 0;
    animation: fadeOut 0.5s ease 2s forwards;
}

@keyframes loadingPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}


.cover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
    z-index: 10;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-removed {
    transition: none;
}

/* Left slide animation */
.slide-left .cover-box {
    transform: translateX(0%);
}

.slide-left.revealed .cover-box {
    transform: translateX(-100%);
}

/* Right slide animation */
.slide-right .cover-box {
    transform: translateX(0%);
}

.slide-right.revealed .cover-box {
    transform: translateX(100%);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
}

.checkbox-wrapper .error.text-danger {
    bottom: -15px;
    left: 30px;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-radius: 3px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    background: white;
    transition: all 0.2s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background-color: #000;
    border-color: #000;
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 14px;
    font-weight: 400;
    color: #40404099;
    line-height: 1.4;
    cursor: pointer;
}

.seamless-section{overflow: hidden;}

@media (max-width:1399px){
    .experience-video-box {

height: 500px;
    }
}

@media (max-width:1026px){
    .experience-video-box {
        height: 400px;
    }
}
@media (max-width:991px){
    .experience-video-box {
        height: 300px;
    }
}

@media (max-width:1026px) and (min-width:768px){
    #contactNow{margin-top: 50px;}
}

@media screen and (min-width: 1919px) {
    .hettich-container {
        max-width: 1699px;
    }
}

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

    .half-experience-box .hettich-container {
        padding-right: 20px;
    }
}

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

    /* .label-wrapper::after {
        content: "*";
        position: absolute;
        top: 0;
        left: -7px;
        color: #ff0000;
    }

    .label-wrapper.no-required::after {
        display: none;
    } */

}

@media screen and (max-width: 1366px) {
    .hettich-nav-link {
        font-size: 15px;
    }

    .hettich-main-header {
        font-size: 142px;
    }

    .hettich-main-para {
        font-size: 15px;
    }

    .box-border-bottom svg {
        width: 500px;
    }

    .influncers-frame-fix-center {
        left: 49.3%;
    }

    .influncers-card-text {
        bottom: -35px;
    }
}

@media screen and (max-width: 1244px) {
    .hettich-nav-link {
        font-size: 14px;
    }

    .hettich-main-header {
        font-size: 130px;
    }

    .hettich-main-para {
        font-size: 14px;
    }

    .box-border-bottom svg {
        width: 420px;
    }

    .gallery-btn-box {
        display: none;
    }

    .hettich-heading-primary {
        font-size: 28px;
    }

    .infu-name,
    .infu-rank {
        font-size: 12px;
    }

    .influncers_slider .swiper-slide-active {
        height: 400px;
    }

    .hettich-msg-popup-wrapper {
        width: 60%;
    }

    .hettich-msg-popup {
        align-items: center;
    }

    .influncers-frame-fix-center {
        height: 520px;
    }

    .influncers-card-text {
        bottom: -30px;
    }
}

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

    .hettich-container {
        padding: 0 30px;
    }

    .hettich-nav-link {
        font-size: 11px;
    }

    .hettich-main-header {
        font-size: 107px;
    }


    .hettich-header .hettich-nav {
        gap: 20px;
    }

    .hettich-hero-section,
    .seamless-section,
    .our-store-section,
    .touch-in-section {
        position: relative;
        top: auto;
    }

    .half-experience-box {
        width: 100%;
    }

    .magic-box-mask {
        display: none;
    }

    .box-border-bottom {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .experience-magic-section {
        background-color: var(--hettich-white);
    }

    .seamless-top-box {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .seamless-section .hettich-container {
        align-items: flex-start;
    }

    .gallery-frame img {
        width: 600px;
    }

    /* anil code  */

    .influncers_slider {
        max-width: 1280px;
    }

    .influncers_slider {
        max-width: 95%;
        margin: 0px auto;
    }

    .influncers_slider .swiper-slide {
        width: 26%;
    }

    .common-py {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .half-experience-box {
        padding: 10px 0;
    }

    .hettich-heading-primary {
        font-size: 24px;
    }

    .half-experience-box .hettich-container {
        flex-direction: column;
        gap: 0;
    }

    .box-border-bottom svg {
        width: 100%;
    }

    .gallery-heading-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .map-tab-btn,
    .gallery-tab-btn {
        font-size: 14px;
    }

    .gallery-tab-box {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        transition: padding-left 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-tab-btn.active::after {
        bottom: 0;
    }

    .gallery-tab-box::-webkit-scrollbar {
        display: none;
    }

    .gallery-tab-box::-webkit-scrollbar-track {
        display: none;
    }

    .gallery-tab-box::-webkit-scrollbar-thumb {
        display: none;
    }


    /* .gallery-tab-btn:first-child{
        margin-left: 50px;
    } */

    .experience-video-box-wrapper {
        padding-top: 30px;
    }

    .hettich-msg-popup-wrapper {
        padding: 30px;
    }

    .touch-in-wrapper {
        width: 60%;
    }

}

@media screen and (max-width: 991px) {
    influncers_slider {
        max-width: 100%;
    }

    .influncers_slider .swiper-slide {
        width: 37.5%;
    }

    .influncers_slider .swiper-wrapper {
        padding-left: 10px;
    }

    .hettich-main-header {
        font-size: 110px;
    }

    .hettich-header .hettich-nav {
        display: none;
    }

    .hettich-msg-popup-wrapper {
        width: 70%;
    }


    .touch-in-section {
        padding-top: 40px;
    }

    .touch-in-wrapper {
        width: 70%;
    }

    .influncers-frame-fix-center {
        left: 50%;
        width: 32%;
    }

}

@media screen and (max-width: 767px) {

    body {
        background-color: #F5F5F5;
    }

    .hettich-container {
        padding: 0 20px;
    }

    .influncers_slider .swiper-slide {
        width: 100%;
    }

    .influncers_slider {
        padding: 0px 20%;
        max-width: 100%;
    }

    .influncers_section .hettich-container {
        padding: 0px;
    }

    .hettich-main-header {
        font-size: 80px;
    }

    .gallery-frame img {
        width: 480px;
    }

    .gallery-layer-para {
        display: none;
    }


    .hettich-footer .footer-info {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .hettich-footer {
        padding-bottom: 70px;
    }

    .seamless-navigation-box,
    .influncer_wrapper .swiper_slider_common_btn_box {
        display: none;
    }

    .influncer_wrapper .hettich-heading-primary {
        padding-left: 20px;
        margin-bottom: 30px;
    }

    .our-store-section .hettich-container {
        flex-direction: column;
        gap: 20px;
    }

    .hettich-map-box {
        width: 100%;
    }

    .hettich-msg-popup-wrapper {
        width: 75%;
    }

    .touch-in-section .hettich-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .touch-in-wrapper {
        width: 80%;
    }

    .map-thumb-box:hover .thumb-card-address.kochi {
        top: -152px;
        right: -200px;
    }

    .map-thumb-box:hover .thumb-card-address.chennai {
        top: -152px;
        right: -200px;
    }

    .map-thumb-box:hover .thumb-card-address.mumbai {
        top: -152px;
        right: -220px;
    }

    .map-thumb-box:hover .thumb-card-address.pune {
        top: -132px;
        right: -220px;
    }
    .map-thumb-box:hover .thumb-card-address.ahmedabad {
        top: -132px;
        right: -220px;
    }
    .map-thumb-box:hover .thumb-card-address.bangalore {
        top: -112px;
        right: -220px;
    }

    .map-thumb-box:hover .thumb-card-address.hyderabad {
        top: -157px;
        right: -115px;
    }

    .map-thumb-box:hover .thumb-card-address.kolkata {
        right: -96px;
    }

    .map-thumb-box:hover .thumb-card-address.ncr {
        right: -180px;
    }

    .map-thumb-box:hover .thumb-card-address.mp {
        right: -180px;
    }

    .map-thumb-box:hover .thumb-card-address.kolhapur {
        right: -205px;
    }

    .map-thumb-box:hover .thumb-card-address.mysore {
        right: -180px;
        top: -155px;
    }

    .influncers-frame-fix-center {
        width: 60%;
        height: 530px;
        top: 54%;
    }

    .our-store-section .hettich-heading-primary br {
        display: none;
    }

    .seamless-section{padding-bottom: 0 !important;}
    .our-gallery-section{padding-top: 0 !important;}
    .experience-video-box {
height: 487px !important;
    }
    .seamless-slider-box .swiper{
        padding: 0 !important;
    }
    .seamless-slider-box{padding: 25px 20px !important;}
    .hettich-hero-mask{position: static;width: 100%;height: 100%;}
    .hettich-hero-section {
        height: auto !important;
    }
    .seamless-slider-box .swiper-wrapper {gap: 0;}
}

@media screen and (max-width: 620px) {
    .success {
        top: 10px;
    }

    .hettich-hero-mask .desktop {
        display: none;
    }

    .hettich-hero-mask .mobile {
        display: block;
    }

    .cover-box {
        display: none;
    }

    .hettich-main-header {
        font-size: 46px;
    }

    .gallery-frame img {
        width: 100%;
    }

    .hettich-main-para br {
        display: none;
    }
    .seamless-slider-box .swiper-slide-active {
        /* height: 424px; */
        transform: none;
        transition: all 0.5s;
    }
    .seamless-slider-box .swiper-slide {
        /* height: 424px; */
        transform: none;
        transition: all 0.5s;
    }

    /* .hettich-hero-mask img {
        object-fit: cover;
    } */



    .common-py {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .half-experience-box {
        padding: 0;
    }

    .experience-video-box-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .half-experience-content {
        padding-bottom: 30px;
    }


    .hettich-footer .footer-logo {
        width: 80px;
    }

    .hettich-footer .footer-icon {
        width: 40px;
        height: 40px;
    }

    .msg-sticky-box {
        right: 30px;
        bottom: 20px;
    }

    .map-container-extra-space {
        display: block;
        width: 100%;
        height: 155px;
        background-color: #F5F5F5;
        position: relative;
        /* z-index: 3; */
    }

    .our-store-section {
        height: auto;
        padding-bottom: 0;
    }

    .hettich-map-box {
        position: relative;
        top: 100px;
        box-shadow: none;
    }

    .our-store-section .hettich-heading-primary {
        text-align: center;
        position: relative;
        top: 60px;
    }

    .map-render {
        width: 100%;
    }

    .hettich-map-box {
        padding: 20px;
    }

    .thumb-card-address {
        padding: 15px;
    }

    .thumb-card-address {
        right: -147px;
        top: -146px;
    }

    .hettich-msg-popup-wrapper {
        width: 90%;
    }

    .touch-in-wrapper {
        position: relative;
        top: 150px;
        box-shadow: none;
        width: 90%;
        padding: 30px;
    }

    .touch-in-section .hettich-heading-primary.responsive {
        display: block;
        text-align: center;
        top: 90px;
        position: relative;
    }

    .avail-input-wrapper {
        flex-direction: column;
    }

    .avail-form {
        gap: 20px;
    }

    .avail-input-wrapper .avail-input,
    .avail-input-wrapper .avail-select,
    .avail-text-area {
        border: 1px solid #D4D4DC;
        border-radius: 8px;
        padding: 15px;
        position: relative;
    }

    .hettich-form-btn {
        width: 100%;
        font-size: 14px;
        padding: 20px 40px;
    }

    .hettich-form-btn svg {
        width: 10px;
        height: 10px;
    }

    .avail-input::placeholder,
    .avail-text-area::placeholder,
    .avail-select {
        font-size: 12px;
        font-weight: 400;
    }

    .avail-label {
        position: absolute;
        top: -8px;
        left: 10px;
        font-size: 14px;
        color: #404040;
        font-weight: 600;
        z-index: 2;
        padding: 0 5px;
        background-color: #FFFFFF;
    }

    .avail-text-area {
        height: 105px;
    }

    .touch-in-section .hettich-container {
        padding-top: 0;
    }

    .touch-in-wrapper {
        background-color: #ffffff;
    }

    .label-wrapper .avail-label {
        display: block;
    }

    .hettich-msg-popup-wrapper {
        background-color: #ffffff;
    }

    /* .seamless-slider-box .swiper-slide-active {
        height: 541px;
    } */

    /* .seamless-slider-box .swiper{height: 620px;} */
    .influncers-frame-fix-center {
        height: 510px;
    }

    .influncers-card-text {
        bottom: -27px;
    }

    .experience-video-box {
        background-image: url(../images/vidoe-thumbnail-mb.png);
    }

    .our-store-section {
        background-image: url(../images/our-store-mb.png);
    }

    .touch-in-section {
        background-image: url(../images/contact-us-mb.jpg);
    }
    .avail-input-wrapper {

gap: 40px;
    }
    .hettich-msg-popup-wrapper{
        max-height: 600px;
        overflow-x: scroll;
        scrollbar-width: none;
    }

}

@media screen and (max-width: 480px) {
    .hettich-footer .footer-logo {
        width: 72px;
    }

    .hettich-footer .footer-icon {
        width: 32px;
        height: 32px;
    }

    .hettich-msg-popup-wrapper {
        width: 95%;
    }

    .touch-in-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 420px) {
    .influncers-card-text {
        bottom: -25px;
        width: 57%;
    }
}

.collage-main-block img {

    border-radius: 20px;
}

.collage-main-block {
    display: flex;
    align-items: center;
    gap: 20px;justify-content: center;
}

.collage-right-img {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-block-parttwo {
    display: flex;
    gap: 20px;
}

.right-block-partone {
    display: flex;
    gap: 20px;
}

/* Lightbox modal */
.collage-main-block img {
    cursor: pointer;
    width: 100%;
    height: auto;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
}
.modal-img {
    display: block;
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    background: #0b0d12;
}
.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.92);
    color: #111827;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.modal-close:hover { background: #ffffff; }

@media (max-width:767px){
    .collage-main-block, .collage-right-img,
    .right-block-parttwo,
    .right-block-partone
    {gap: 10px;}
    .collage-main-block img{border-radius: 10px;height: 100%;object-fit: cover;}
    .hettich-header .hettich-header-logo{left: 22px;}
}

.shop-now {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .shop-now a{
    width: fit-content !important;
    transition: all 0.3s ease;
    margin: 25px 0;
  }


  /* .shop-now a {
    display: block;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #404040;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin: 50px auto;
    width: fit-content;

  } */

  /* Hover effect only till tablet (max-width: 1024px) */
  @media (min-width: 1024px) {
    .shop-now a:hover {
      background: #40404099;
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }
  }

  /* Position bullets at bottom center */
.hero-swiper .swiper-pagination {
    bottom: 20px !important;
    text-align: center;
  }
  
  /* Bullet style */
  .hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.6;
    transition: 0.3s;
  }
  
  /* Active bullet */
  .hero-swiper .swiper-pagination-bullet-active {
    background: #ff6600; /* your brand color */
    opacity: 1;
    transform: scale(1.2);
  }

.hettich-swiper-pagination{
    bottom: 70px !important;
    position: absolute;
    width: 100% !important;
    left: 50% !important;
    z-index: 999;
    transform: translateX(-50%);
    right: auto;
    text-align: center;
}  