@font-face {
    font-family: 'SF Pro';
    src: url('../assets/font/SF-Pro.ttf');
}

@font-face {
    font-family: 'PublicSans-Regular';
    src: url('../assets/font/PublicSans-Regular.ttf');
}

@font-face {
    font-family: 'Wingdings';
    src: url('../assets/font/Wingdings.ttf');
}

@font-face {
    font-family: 'SF-Pro-Light';
    src: url('../assets/font/SF-Pro-Text-Light.otf');
}

@font-face {
    font-family: 'SF-Pro-Semibold';
    src: url('../assets/font/SF-Pro-Text-Semibold.otf');
}

@font-face {
    font-family: 'Operetta8-Regular';
    src: url('../assets/font/operetta8/Operetta8-Black.otf');
    src: url('../assets/font/operetta8/Operetta8-Regular.otf');
}

@font-face {
    font-family: 'Operetta8-Medium';
    src: url('../assets/font/operetta8/Operetta8-Medium.otf');
}

@font-face {
    font-family: 'Operetta8-Bold';
    src: url('../assets/font/operetta8/Operetta8-Bold.otf');
}

@font-face {
    font-family: 'Operetta8-Light';
    src: url('../assets/font/operetta8/Operetta8-Light.otf');
}

* {
    box-sizing: border-box;
}

:root {
    --sf-reg: 'SF Pro';
    --PublicSans-Regular: 'PublicSans-Regular';
    --Wingdings: 'Wingdings';
    --SF-Pro-Light: 'SF-Pro-Light';
    --SF-Pro-Semibold: 'SF-Pro-Semibold';
    --Operetta8-Regular: 'Operetta8-Regular';
    --Operetta8-Medium: 'Operetta8-Medium';
    --Operetta8-Bold: 'Operetta8-Bold';
    --Operetta8-Light: 'Operetta8-Light';
    --primary: #1d394b;
    --navyblue: #182937;
    --navy2: #1f3a4c;
    --txt-clr: #1A1818; /* #2c2e35 */
    --product-clr: #1a2835;
    --pink: #EBBCC6;
}

html {
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

body{
    overflow-x: hidden;
}

/* ++++++++++++++++++++++++++++++++++++++ theme css ++++++++++++++++++++++++++++++ css */

.section-space {
    margin-top: 200px;
}

.section-space-bottom{
    padding-top: 200px;
    padding-bottom: 200px;
}

/* ++++++++++++++++++++++++++++++++++++++ header css ++++++++++++++++++++++++++++++ css */
.bg-img {
    background-image: url('../assets/img/shopimg/home_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.bg-img-design {
    background-image: url('../assets/img/shopimg/DSC_0913-insta.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.bg-img-gallery {
    background-image: url('../assets/img/shopimg/gallery_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    background-position: center;
}

.bg-img-details {
    background-image: url('../assets/img/shopimg/details_benner.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    background-position: center;
}

.custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.navbar-box {
    background-color: white;
    max-width: 550px;
    min-height: 190px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    /* width: 80px;
    height: 80px; */
}

.navbar-box ul li a {
    font-family: var(--sf-reg);
    color: var(--primary) !important;
    font-size: 16px;
    line-height: 18px;
    cursor: pointer;
    margin: 0px 8px;
    position: relative;
    top: 3px;
}

.navbar-box ul li{
    list-style-type: disc;
    margin: 0px 0px 0px 5px;
    font-size: 6px;
    color: var(--primary) !important;
}

li.list-style-disc {
    list-style-type: disc;
    margin: 0px 0px 0px 5px;
    font-size: 6px;
    color: white ;
}
li.list-style-disc a {
    font-family: var(--sf-reg);
    color: white ;
    font-size: 12px;
    line-height: 18px;
    cursor: pointer;
    margin: 0px 4px;
    position: relative;
    top: 3px;
    font-weight: 300;
}

li.list-style-disc:nth-of-type(5n - 4)
{
    list-style-type: none;
    margin: 0px 0px 0px 0px;
}
.navbar-box ul li:nth-of-type(5n - 4),
.navbar-box ul li:nth-of-type(5n - 2),
.navbar-box ul li:nth-of-type(5n - 1) {
    list-style-type: none;
    margin: 0px 0px 0px 0px;
}
/* .navbar-box ul li:nth-of-type(5n - 3)::marker,
.navbar-box ul li:nth-of-type(5n)::marker {
    font-size: 6px;
    color: var(--primary) !important;
} */
  /* Add these styles to your CSS file */

.fixed-header {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    background-color: #ffffff !important; /* Change to your desired background color */
    z-index: 1000; /* Ensures the header stays on top */
    padding: 70px 0px;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.fixed-header a {
    color: #1c3a4b !important; /* Change to your desired font color */
}
.fixed-header li.list-style-disc {

    color: #1c3a4b !important;
}
.header-bottom-section {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 70px 0px;
}
.deatils-header-bottom-section
{
    position: sticky;
    background-color: #1c3a4b;
    width: 100%;
    top: 0px;
    left: 0;
    right: 0;
    padding: 70px 0px;
}

/* ++++++++++++++++++++++++++++++++++++++ SECTION ON css ++++++++++++++++++++++++++++++ css */

.content-title {
    font-size: 20px;
    line-height: 18px;
    color: var(--txt-clr);
    font-family: var(--Operetta8-Regular);
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.content-detail {
    font-size: 15px;
    line-height: 25px;
    color: var(--txt-clr);
    /* font-family: var(--Operetta8-Regular); */
    /* text-align: justify; */
    text-align: center;
    max-width: 453px;
    /* font-weight: 400; */
}
.content-detail-faq {
    font-size: 15px;
    line-height: 25px;
    color: var(--txt-clr);
    /* font-family: var(--Operetta8-Regular); */
    /* text-align: justify; */
    text-align: center;
    /* font-weight: 400; */
}

.content-detail-gallery {
    font-size: 15px;
    line-height: 25px;
    color: var(--txt-clr);
    /* font-family: var(--Operetta8-Regular); */
    text-align: center;
    max-width: 450px;
    /* font-weight: 400; */
}

/* ++++++++++++++++++++++++++++++++++++++ Product category ON css ++++++++++++++++++++++++++++++ css */

.product-img-box {
    width: 100%;
    height: 263px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.product-title {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 27px;
    color: var(--product-clr);
    /* font-weight: 300; */
    font-family: var(--Operetta8-Regular);
    text-align: center;
}

/* ++++++++++++++++++++++++++++++++++++++ user section css ++++++++++++++++++++++++++++++ css */
.section-img-user {
    background-color: var(--primary);
    background-image: url('../assets/img/shopimg/cuv.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 631px;
}

.section-card-title {
    font-size: 45px;
    line-height: 60px;
    color: #ffffff;
    font-family: var(--Operetta8-Regular);
    text-align: center;
    max-width: 780px;
}

.section-card-text {
    font-size: 17px;
    line-height: 100px;
    color: var(--pink);
    font-family: var(--Operetta8);
    text-align: center;
    font-weight: 600;
    letter-spacing: 4px;
}

/* ++++++++++++++++++++++++++++++++++++++  section css  ++++++++++++++++++++++++++++++ css */

.four-section .card-img-overlay {
    left: 22%;
    display: flex;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
    z-index: 1;
}

.card-content {
    background-color: white;
    padding: 100px 50px;
    max-width: 500px;
}

.card-content-design {
    padding: 100px 50px;
    max-width: 600px !important;
}

.design-back-img{
    height: 1050px;
    object-fit: cover;
}

.detail-content {
    font-size: 14px;
    letter-spacing: 0.6px;
    line-height: 26px;
    color: var(--primary);
    /* font-weight: 300; */
    font-family: var(--font-sf);
    text-align: center;
}
.detail-content-gallery {
    font-size: 14px;
    letter-spacing: 0.4px;
    line-height: 26px;
    color: var(--primary);
    /* font-weight: 300; */
    font-family: var(--font-sf);
    text-align: center;
}
.detail-content-design
{
    letter-spacing: 0px;
}
.card-content-details{
    max-width: 600px !important;
}
.about-card-icon {
    position: absolute;
    bottom: -70px;
    left: -70px;
}

.blueright-cuv {
    position: absolute;
    bottom: 0px;
    right: -110px;
}

.img-section {
    width: 100%;
    /* height: 408px; */
}

/* ++++++++++++++++++++++++++++++++++++++  footer css ++++++++++++++++++++++++++++++ css */

.footer-bg {
    background-color: var(--pink);
}

.footer-log {
    max-width: 416px;
}

.footer-section-one {
    padding: 200px 0px;
}

.validation-msg {
    color: var(--navyblue);
    font-size: 14px;
    font-style: italic;
}

.footer-form .cutsom-form-control {
    background-color: transparent;
    border: 0px;
    outline: 0px;
    color: white !important;
    font-size: 18px;
    line-height: 35px;
    font-family: var(--Operetta8-Regular);
    min-width: 100%;
    min-height: 60px;
}
.footer-form .cutsom-form-control-message {
    background-color: transparent;
    border: 0px;
    outline: 0px;
    color: white !important;
    font-size: 18px;
    line-height: 35px;
    font-family: var(--Operetta8-Regular);
    min-width: 100%;
    min-height: 60px;
}

.footer-form ::placeholder {
    color: white;
}

.footer-form .cutsom-form-control:focus {
    box-shadow: none;
}
.footer-form .cutsom-form-control-message:focus {
    box-shadow: none;
}

.form-row {
    border: 1px solid white;
    padding: 4px;
}
.form-row-message  {
    border: 1px solid white;
    padding: 4px;
}

.footer-form .form-label {
    font-size: 16px;
    line-height: 35px;
    color: var(--primary);
    /* font-weight: 400; */
    font-family: var(--font-sf);
}

.form-check-input {
    background: transparent;
    border: 1px solid var(--primary);
    ;
}

.form-check-label {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 27px;
    color: var(--primary);
    font-family: var(--wing);
}

.footer-btn {
    background-color: transparent;
    border: 1px solid #fff;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    /* font-weight: 400; */
    font-family: var(--Operetta8);
    text-align: center;
}

.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--pink);
    margin: 0px 8px;
}

.join-txt {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 27px;
    color: #1d394b;
    /* font-weight: 400; */
    font-family: var(--public);
    text-align: center;
    text-transform: uppercase;
}

.bottom-footer {
    background-color: var(--navy2);
    height: 210px;
}

.bottom-footer .card-img-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-write {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 27px;
    color: #ffffff;
    /* font-weight: 400; */
    font-family: "Public Sans";
}

.footer-nav-item li {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 27px;
    color: #ffffff;
    /* font-weight: 400; */
    font-family: "Public Sans";
    margin: 0px 6px;
}

.footer-second-logo {
    height: 100%;
    width: 100%;
}

.desk-image {
    display: block;
}

.mobile-image {
    display: none;
}


/* dev css */

.custom-radio {
    appearance: none; /* Remove default styling */
    width: 20px; /* Set custom size */
    height: 20px; /* Set custom size */
    border: 2px solid #203B4C; /* Border color */
    border-radius: 50%; /* Make it round */
    display: inline-block;
    position: relative;
}

.custom-radio:checked::before {
    content: '';
    width: 12px; /* Size of the inner circle */
    height: 12px; /* Size of the inner circle */
    border-radius: 50%;
    background-color: #203B4C; /* Inner circle color */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-label {
    color: #203B4C; /* Text color */
    font-size: 16px; /* Text size */
    font-family: Arial, sans-serif; /* Font family */
    margin-left: 10px; /* Space between radio button and text */
}




/* ++++++++++++++++++++++++++++++++++++++  responsive css ++++++++++++++++++++++++++++++ css */


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

     /* Spacing  */
     .section-space {
        margin-top: 100px;
    }
    /* Spacing  */

    /* banner Section  */
    .bg-img,
    .bg-img-gallery {
        background-position-x: -200px;
    }
    .bg-img-design
    {
        background-position-x: -200px;
    }

    .header-bottom-section,
    .deatils-header-bottom-section {
        padding: 40px 0px;
    }


    .fixed-header {
        padding: 40px 0px;
    }

    .banner-logo {
        height: 20px;
        width: 120px;
    }
    /* banner Section  */

    .navbar-box {
        padding: 10px;
        min-height: 100px;
        max-width: 225px;
    }

    .navbar-box ul li a {
        font-size: 8px;
        margin: 0px 3px;
        top: 1.4px;
    }

    .navbar-box ul li{
        list-style-type: disc;
        margin: 0px 0px 0px 12px;
        font-size: 4px;
        color: var(--primary) !important;
    }
    li.list-style-disc {
        list-style-type: none;
        margin: 0px 10px 0px 0px;
        font-size: 4px;
        color: white !important;
    }

    li.list-style-disc a{
        font-size: 8px;
        margin: 0px 0px;
        top: 1.4px;
    }

    li.list-style-disc:nth-of-type(5n - 4) {
        list-style-type: none;
        margin: 0px 10px 0px 0px;
    }

    .navbar-box ul li:nth-of-type(5n - 4),
    .navbar-box ul li:nth-of-type(5n - 2),
    .navbar-box ul li:nth-of-type(5n - 1) {
        list-style-type: none;
        margin: 0px 0px 0px 0px;
    }

    .logo{
        width: 37px;
        height: 37px;
        margin: 0 10px;
    }

    .icon-circle {
        width: 25px;
        height: 25px;
    }



    .card-content {
        max-width: 275px;
        padding: 44px 46px ;
    }

    .card-content-design {
        padding: 44px 30px;
    }

    .card-content-details{
        padding: 44px 29px;
    }

    .detail-content {
        font-size: 10px;
        line-height: 13px;
    }

    .detail-content-design {
        letter-spacing: 0.5px;
    }
    .detail-content-gallery {
        font-size: 10px;
        line-height: 15px;
    }
    .design-back-img{
        height: 525px;
    }

    .content-detail, .content-detail-gallery{
        font-size: 10px;
        line-height: 15px;
        max-width: 273px;
    }

    .content-detail-faq{
        font-size: 9px;
        line-height: 15px;
    }


    .footer-logo{
        width: 120px;
        height: 20px;
    }

    /* .navbar-box ul li:nth-of-type(5n - 3),
    .navbar-box ul li:nth-of-type(5n) {
        margin: 8px 0px 0px 15px;
        font-size: 6px;
    } */

    /* .four-section .card-img-overlay {
        left: 50%;
        transform: translate(-50%, 0%);
        align-items: flex-start;
        margin-top: 100px;
        max-width: 349px;
        width: 70%;
    } */

    .product-img-box {
        height: 150px;
    }

    .box-shadow{
        box-shadow: 0 0 1rem #c8c8c8;
    }
/* }

@media screen and (max-width:640px) { */

    /* Navigation */

    /* Navigation */


    /* Second Section */
    .content-title {
        font-size: 12px;
    }


    .down-arrow-svg{
        width: 25px;
    }
    /* Second Section */

    /* Product Image */
    .product-title {
        font-size: 11px;
    }
    /* Product Image */

    .section-card-title {
        font-size: 23px;
        line-height: 42px;
        max-width: 205px;
    }
    .section-card-text {
        font-size: 11px;
        line-height: 50px;
    }
    .section-img-user {
        background-repeat: repeat;
        background-size: 160% 75%;
        height: 300px;
    }

    /* Footer Section */
    .footer-section-one {
        padding: 100px 0px;
    }
    .validation-msg {
        font-size: 8px;
    }
    /* Footer Section */

    .details-bg-img
    {
        height: 600px;
    }


    .img-section {
        height: 200px;
        width: 200px;
    }
    .custom-label {
        font-size: 8px;
    }
    .four-section .card-img-overlay {
        left: 0px;
        display: block;
        margin-top: 100px;
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
        transform: translate(0%, 0%);
        width: 275px;
    }



    .about-card-icon {
        position: absolute;
        bottom: -25px;
        left: -25px;
    }


    .desk-image {
        display: none !important;
    }

    .mobile-image {
        display: block !important;
    }

    .footer-nav-item li, .copy-write {
        font-size: 9px;
    }
    .form-row
    {
        height: 25px;
    }
    .form-row .col-span-3
    {
        height: 16px;
    }
    .form-row .col-span-9
    {
        display: flex;
    }
    .footer-form .cutsom-form-control {
        font-size: 8px;
        min-height: 17px;
        height: 17px;
    }
    .footer-form .cutsom-form-control-message {
        font-size: 8px;
        min-height: 17px;
        height: 75px;
        line-height: 27px;
    }

    .footer-form .form-label {
        font-size: 8px;
        line-height: 25px;
    }

    .checkbox-label {
        font-size: 8px;
    }

    .footer-btn {
        padding: 7px;
        font-size: 8px;
        line-height: 15px;
    }
    .footer-log {
        max-width: 150px;
    }
}

@media screen and (max-width:475px) {
    .img-section {
        height: 150px;
        width: 150px;
    }
}
/* ++++++++++++++++++++++++++++++++++++++  Dev css ++++++++++++++++++++++++++++++ css */

.justify-end {
    justify-content: end;
}


/* ++++++++++++++++++++++++++++++++++++++  Dev css ++++++++++++++++++++++++++++++ css */


.bg-gray {
    background-color: #cfd3d6 !important;
    color: var(--primary) !important;
}

.bg-gray input {
    color: var(--primary) !important;
}

.justify-items-center {
    justify-items: center;
}

.items-start {
    align-items: start;
}

.placeholder_black::placeholder {
    color: var(--primary);
}

.max-w-screen-lg {
    max-width: 1120px !important;
}

/* Product No Hover Effect css */
.product-no-flip {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.product-no-flip img {
    backface-visibility: hidden;
    transition: transform 2s;

    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

/* Product Hover Effect css */
.product-flip {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.product-flip img {
    backface-visibility: hidden;
    transition: transform 2s;

    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.product-flip .back-image {
    transform: rotateY(180deg);

}

.product-flip:hover .front-image {
    transform: rotateY(180deg);
}

.product-flip:hover .back-image {
    transform: rotateY(0);
}
/* Product Hover Effect css */

/* .parallax-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -1;
} */

.parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; /* Initial position */
    background-repeat: repeat;
}

.desktop-bg {
    display: none;
}
.design-bg {
    background-image: url('../assets/img/shopimg/design_page_3.png');
}
.gallery-bg {
    background-image: url('../assets/img/shopimg/gallery_image_2.png');
}
.gallery-bg-img{
    max-height: 1520px;

}
.gallery-bg-img img{
    max-width: 100%;
    width: 100%;
    height: 1331px;
    object-fit: cover;
    object-position: center;
}

.mobile-bg {
    background-image: url('../assets/img/shopimg/mobile_home_page_1.png');
    display: block;
}


.parallax-card{
    transform: translate(0%, 20%);
}

@media (min-width: 768px) {
    .desktop-bg {
        display: block;
    }
    .mobile-bg {
        display: none;
    }
}


/* Ensure desk-image and mobile-image do not interfere with each other */
.desk-image {
    display: none; /* Hide desktop image by default */
}

.mobile-image {
    display: block; /* Show mobile image by default */
}

@media (min-width: 768px) {
    .desk-image {
        display: block; /* Show desktop image on larger screens */
    }

    .mobile-image {
        display: none; /* Hide mobile image on larger screens */
    }
}





@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.down-keyframe {
    opacity: 0; /* Initially hide the element */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
}

.down-keyframe.active {
    animation: bounce 2s ease-in-out forwards; /* Animation to trigger */
    opacity: 1; /* Show the element when active */
}

.down-keyframe.fade-in {
    animation: fadeIn 1s ease-in forwards; /* A different animation */
    opacity: 1; /* Show the element when active */
}



@keyframes cross {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
}

.cross-keyframe {
    animation: cross 2s ease-in-out;
    opacity: 0;
}

.cross-keyframe.active {
    animation: cross 2s ease-in-out forwards; /* Animation to trigger */
    opacity: 1; /* Show the element when active */
}
.cross-keyframe.fade-in {
    animation: fadeIn 1s ease-in forwards; /* A different animation */
    opacity: 1; /* Show the element when active */
}


.hover-scale {
    transition: transform 0.5s ease, filter 0.5s ease;
}




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


.moving-3d {
    transition: transform 0.1s;
    transform-style: preserve-3d;
    will-change: transform;
}

.moving-3d:hover {
    transform: rotateX(0) rotateY(0);
}
