@import url('https://fonts.googleapis.com/css2?family=Montez&display=swap');


/* ========== CSS Variables ========== */
:root {
    --font-base: "Lato", sans-serif;
    --color-brown: #BAAFA5;
    --color-grey: #A2A3A4;
    --color-lightgrey: #F0F0F0;
    --font-size-base: 1rem; /* 16px */
    --font-size-h1: 4.875rem; /* 110px */
    --font-size-h2: 2.85rem; /* 52px */
    --font-size-h3: 2.375rem; /* 38px */
    --font-size-h4: 1.7rem; /* 32px */
    --font-size-h5: 1.25rem; /* 20px */
    --font-size-h6: 1.125rem; /* 18px */
    --font-size-btn: 0.875rem; /* 14px */
    --padding-section: 6.5rem; /* 120px */
}

/* ========== Reset ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    font-optical-sizing: auto;
    font-size: var(--font-size-h6);
    color: var(--color-text);
    line-height: 1.6;
}

/* ========== Headings ========== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-base);
    font-weight: 700;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
    line-height: 1.5;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 600;
}

h6 {
    font-size: var(--font-size-h6);
    font-weight: 500;
}


/* ========== Text Colors ========== */

.text-grey {
    color: var(--color-grey)
}

.bg-grey {
    background: var(--color-lightgrey)
}

.bg-brown {
    background: var(--color-brown)
}
/* ========== Typography ========== */
p,
a {
    font-size: var(--font-size-base);
    font-weight: 400;
    font-style: normal;
}

p {
    text-align: justify;
}

a,
a:hover,
a:focus {
    text-decoration: none !important;
}

/* ========== List & Media ========== */
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-style: none;
}

/* ========== Buttons ========== */
.custom-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

    .custom-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        color: white;
    }

/* ========== Spacing Utilities ========== */
.padding-tb {
    padding: var(--padding-section) 0;
}

.padding-top {
    padding-top: var(--padding-section);
}

.padding-bottom {
    padding-bottom: var(--padding-section);
}

/* ========== Responsive Typography ========== */
@media (max-width: 992px) {
    :root {
        --font-size-h1: 2.75rem;
        --font-size-h2: 2.25rem;
        --font-size-h3: 1.75rem;
        --padding-section: 4.5rem;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-h1: 2.25rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
        --font-size-h4: 1.125rem;
        --font-size-h6: 1rem;
        --padding-section: 3rem;
    }
}

#header {
    background-color: transparent; /* default */
    transition: background-color .3s ease, box-shadow .3s ease;
    will-change: background-color, box-shadow;
}

    #header.scrolled {
        background-color: #ffffff; /* on scroll */
        box-shadow: 0 2px 8px rgba(0,0,0,.08); /* optional depth */
    }


#hero-section {
    margin-top: 55px;
}

header a.nav-link {
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
}

#hero-section .banner-img {
    height: 88vh;
    object-fit: cover;
}

@media (max-width: 769px) {

    #hero-section .container {
        background: #ffffff3b;
        height: 100%;
        max-width: 100%;
    }

        #hero-section .container .col-lg-6 {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }

    #hero-section .banner-img {
        height: auto;
        min-height: 400px;
    }
}


.product-img {
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


#projects .item {
    padding-top: 15px;
}

.add-to-cart {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 124px;
    height: 124px;
    background: #D9D9D98C;
    backdrop-filter: blur(14.9px);
    border: 2px solid #FFFFFF;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product_container:hover .add-to-cart {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.owl-next i, .owl-prev i {
    border: 2px solid #FFFFFF;
    background: #ffffff52;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    line-height: 24px;
    color: #fff;
    display: block;
}

.owl-next {
    position: absolute;
    top: 45%;
    right: 10px;
}

.owl-prev {
    position: absolute;
    top: 45%;
    left: 10px;
}

.owl-next.active {
    background: red;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: unset !important;
}

.product-img {
    position: relative;
    overflow: hidden; /* Prevents overflow */
    width: 100%;
    height: 400px; /* Set your fixed height */
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fills the box without distortion */
        transition: transform 0.4s ease;
        transform: scale(1);
    }

.product_container:hover .product-img img {
    transform: scale(1.1); /* Slight zoom-out */
}

@media (max-width: 1400px) {
    #projects .product-img {
        height: 500px;
        object-fit: cover;
    }
}

@media (max-width: 769px) {
    #projects .product-img {
        height: 440px;
        object-fit: cover;
    }
}

@media (min-width: 1400px) {
    #blogs {
        margin-top: -460px;
    }
}

#blogs {
    margin-top: -490px;
}

@media (max-width: 992px) {
    #blogs {
        margin-top: -230px;
    }
}

@media (max-width: 769px) {
    #blogs {
        margin-top: 0;
    }

        #blogs .bg_black {
            background: #000;
            text-align: center;
            padding: 26px 0;
        }
}

#naishee-shah-projects-work a h2 {
    color: #000;
    transition: all 0.4s ease;
    -webkit-text-stroke: 0px transparent; /* fallback baseline */
}

#naishee-shah-projects-work a:hover h2 {
    color: transparent;
    -webkit-text-stroke: 2px #000;
    transform: scale(1.05);
}

/*#footer {
    background-image: image-set( url('../images/naishee-shah-designer.webp') type("image/webp"), url('../images/naishee-shah-designer.png') type("image/png") );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
*/


/*manan*/

#naishee-shah-inner-banner {
    background: url('../images/inner-page-design-white.png') #A2A3A4;
    background-size: cover;
    background-position: center;
}

.inner-heading {
    padding-top: 110px;
    padding-bottom: 90px;
}

.text-small-size {
    font-size: clamp(25px, 4vw, 55px) !important;
}

.text-num-size {
    font-size: clamp(22px, 4vw, 42px) !important;
}

.text-font-big {
    font-size: clamp(18px, 3vw, 23px) !important;
}

.text-grey {
    color: #6A6A6A !important;
}

.text-dark-hover {
    transition: 0.5s ease-in-out;
}

    .text-dark-hover:hover {
        color: #000 !important;
    }

.text-light-grey {
    color: #A2A3A4;
}

#get-in-touch label {
    color: #a3a3a3 !important;
}

.bg-grey-light {
    background: #F1F1F1;
    padding: 40px 45px;
}

@media(max-width: 768px) {
    .bg-grey-light {
        padding: 40px 15px;
    }
}

.form-control::placeholder {
    font-size: 14px !important; /* or any smaller size */
    font-weight: 400; /* optional, to make it lighter */
    color: #999; /* optional, adjust color if needed */
}

.form-control {
    font-weight: 600;
    font-size: 16px;
    color: #1C1C1C;
}

#get-in-touch .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(162, 163, 164, 0.25) !important;
}

.text-grey_light {
    color: #A2A3A4;
}

.content-down {
    margin-top: 290px;
}

.content-half-down {
    margin-top: 50px;
}

.content-ups {
    margin-top: -104px;
}

.text-fonts-bigger {
    font-size: clamp(25px, 5vw, 110px) !important;
}

.btn-border {
    border: 2px solid #000000;
    color: #000000;
    border-radius: 89px;
    padding: 14px 35px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

    .btn-border:hover {
        background-color: #000000;
        color: #ffffff;
        text-decoration: none;
    }


.text-montez {
    font-family: "Montez", cursive !important;
    font-weight: 400 !important;
}

.content-list a {
    font-size: 25px !important;
    font-weight: 500 !important;
    color: #000000 !important;
}

@media(max-width: 1400px) and (min-width: 1200px) {
    .content-ups {
        margin-top: -55px;
    }
}

@media(max-width: 1200px) and (min-width: 992px) {
    .content-half-down {
        margin-top: 20px;
    }

    .text-media {
        font-size: 31px !important;
    }

    .content-ups {
        margin-top: -40px;
    }
}

@media(max-width: 992px) {
    .content-down {
        margin-top: unset;
    }

    .text-media {
        font-size: unset !important;
    }

    .content-ups {
        margin-top: unset;
    }

    .content-half-down {
        margin-top: unset;
    }
}
/* Gallery */

.masonry-grid {
    column-count: 2;
    column-gap: 20px;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

    .grid-item img {
        width: 100%;
        height: auto;
        display: block;
    }

.grid-item {
    overflow: hidden;
    position: relative;
}

.zoom-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-in-out;
}

.grid-item:hover .zoom-img {
    transform: scale(1.1); /* Zoom in on hover */
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width:320px) {
    .masonry-grid {
        column-count: 1;
    }
}

.zoom-container {
    overflow: hidden;
    position: relative;
}

.zoom-img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.zoom-container:hover .zoom-img {
    transform: scale(1.1);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    background: #D9D9D98C;
    backdrop-filter: blur(14.9px);
    border: 2px solid #FFFFFF;
    border-radius: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-container:hover .overlay-text {
    opacity: 1;
}

#more-blogs .product-img {
    height: 340px;
}

@media (max-width:769px) {
    .owl-more-blogs .product-img {
        height: 300px;
    }

    .overlay-text {
        width: unset;
        height: unset;
        font-weight: 400;
        border-radius: 0px;
        padding: 6px;
        font-size: 12px;
    }
}

#more-blogs .owl-prev, #more-blogs .owl-next {
    top: 30%;
}


.bg_after {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {

    .bg_after {
        background-color: var(--color-brown);
        text-align: center;
        padding: 15px;
    }
}

@media (min-width: 992px) {
    .bg_after::after {
        content: "";
        position: absolute;
        top: -11px;
        left: -9999px;
        width: 10280px;
        height: 120%;
        background-color: var(--color-brown);
        z-index: -1;
    }
}

@media (min-width: 1200px) {
    .bg_after::after {
        content: "";
        position: absolute;
        top: -11px;
        left: -9999px;
        width: 10340px;
        height: 120%;
        background-color: var(--color-brown);
        z-index: -1;
    }
}

@media (min-width: 1400px) {
    .bg_after::after {
        content: "";
        position: absolute;
        top: -11px;
        left: -9999px;
        width: 10380px;
        height: 120%;
        background-color: var(--color-brown);
        z-index: -1;
    }
}


#blogs a i {
    transition: transform 0.3s ease;
}

#blogs a:hover i {
    transform: translateX(3px);
}

.social-sidebar {
    position: fixed;
    top: 40%;
    left: 0;
    transform: translateX(-100%);
    background-color: #ccc;
    padding: 20px 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: transform 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .social-sidebar a {
        display: inline-block;
        color: #000;
        width: 30px;
        height: 30px;
        /* border-radius: 50%;*/
        text-align: center;
        line-height: 30px;
        font-size: 16px;
        line-height: 17px;
    }

    .social-sidebar.show {
        transform: translateX(0);
    }

    .social-sidebar a i {
        transition: transform 0.3s ease, background-color 0.3s ease;
        display: inline-block;
        padding: 6px;
        border-radius: 4px;
    }

    .social-sidebar a:hover i {
        transform: scale(1.2);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

#header a.active {
    color: #000000;
    font-weight: bold;
}
.logo-text {
    font-size: 36px;
    line-height: 50px;
    font-weight: 600;
}

#naishee-shah-inner-banner {
    padding-top: 126px;
    background-color: #ffffff;
}

.content-ups {
    margin-top: unset;
}

#naishee-shah-inner-banner .inner-heading {
    padding-top: unset;
    padding-bottom: unset;
}

#header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

#naishee-shah-inner-banner h2 {
    font-weight: normal;
}

@media (max-width: 992px) {
    .inner-heading {
        padding-top: 30px;
        padding-bottom: 15px;
    }
    .logo-text {
        font-size: 26px;
        line-height: 26px;
    }
}
.w-60{
    width:66%;
}