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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
}


.image-container {
    display: flex;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.left-div,
.right-div {
    flex: 1;
    position: relative;
    opacity: 0;
    animation-fill-mode: forwards;
}

.left-div {
    transform: translateY(-100%);
    animation: slideInFromTop 1.2s ease-out 0.3s forwards;
}

.right-div {
    transform: translateY(100%);
    animation: slideInFromBottom 1.2s ease-out 0.5s forwards;
}

.image {
    width: 100%;
    height: auto;
    min-height: 400px;
}

/* Enhanced slide animations for periodic changes */
.image.slide-top {
    animation: slideInFromTop 0.8s ease-out forwards;
}

.image.slide-bottom {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

.image.slide-fade {
    animation: fadeSlide 0.8s ease-out forwards;
}

.image.fade {
    animation: fadeInImg 0.5s;
}

.social-links {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    padding-left: 7%;
    font-size: 13px;
}

.social-links a {
    display: block;
    margin: 30px 0;
    color: white;
    text-decoration: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background-color: transparent;
}

.social-links a:hover {
    color: #fad565;
    text-decoration: underline;
    font-size: 1.2em;
}

.scroll-numbers {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.scroll-numbers span {
    color: white;
    margin-bottom: 10px;
    background-color: transparent;
}

span.gold {
    color: #fad565 !important;
}

.arrow {
    position: absolute;
    width: 40px;
    height: auto;
}

.left-arrow {
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
}

.right-arrow {
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.8;
}

.text-content {
    min-height: 100px;
    margin-top: 10px;
    text-align: center;
    padding: 15px 0;
}

p {
    color: #fad565;
    font-family: "Times New Roman", Times, serif;
    font-size: 40px;
}

p.font {
    color: white;
    font-family: 'poppins';
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
    width: 80%;
    margin-top: 1%;
}

p.grace {
    color: #fad565;
    font-family: "Times New Roman", Times, serif;
    font-size: 55px;
}

.container {
     width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 50px;
    margin-top: 3.5%;
    padding-right: 1px;
}

.item {
    width: 20%;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-left: 12%;
}

.icon {
    width: 70px;
    height: 70px;
}

.name {
    font-size: 20px;
    margin-left: 8%;
    line-height: 1.2;
}

.content-container {
    width: 100%;
    margin-top: 25px;
    display: flex;
    margin-bottom: 43px;
}

.content:nth-child(2) {
    margin-left: 5%;
    margin-right: 5%;
}

.content1,
.content2,
.content3{
    margin: 0.7% 4%;
}

.content1 p,
.content2 p,
.content3 p
 {
    font-family: sans-serif;
    color: white;
    font-size: 15px;
    line-height: 1.5;
    word-spacing: 5px;
}


.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.row2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    position: relative;
}

.row2 img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 42%;
    padding: 20px;
    background-color: transparent;
    margin-left: -45%;
}

.banner-text p {
    font-size: 26px;
    margin-bottom: 5px;
    background-color: transparent;
    color: white;
}

/* BANNER SECTION - FIXED */
.banner-exact-v2 {
    display: flex;
    width: 100%;
    background-color: black;
    background-image: url('../images/bannerbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 0 !important;
    gap: 0 !important;
    overflow-x: visible;
}

.banner-exact-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.banner-exact-v2 .left-section,
.banner-exact-v2 .center-section,
.banner-exact-v2 .right-section {
    flex: 1;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    filter: brightness(1.1);
}

.banner-exact-v2 .left-section {
    border-radius: 0 !important;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.8s ease-out forwards;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
}

.banner-exact-v2 .left-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    border-radius: 0 !important;
    margin: 0;
    padding: 0;
}

.banner-exact-v2 .left-section:hover img {
    filter: brightness(1.05);
}

.center-section {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    padding: 20px;
    margin: 20px 0;
}

.cool-look-text {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
            font-family: "Times New Roman", Times, serif;

}

.main-title-text {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            font-family: "Times New Roman", Times, serif;

}

.center-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 100px; /* Move the section a bit down */
}

.stats-row {
    display: flex;
    gap: 80px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    background: rgba(0,0,0,0.45);
    border-radius: 6px;
    padding: 40px 30px 30px 30px;
    margin: 0 0 20px 0;
    min-width: 200px;
    min-height: 120px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.6s forwards; }
.stat-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.8s forwards; }
.stat-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 1.0s forwards; }
.stat-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 1.2s forwards; }

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #fad565;
}

.stat-label {
    font-size: 1.3em;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.stat-item:hover .stat-label {
    color: #fad565;
}

.stat-number,
.stat-suffix {
    display: inline-block;
    vertical-align: baseline;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.stat-suffix {
    color: #d3b48a;
    margin-left: 2px;
    font-size: 1.2em;
}

.banner-exact-v2 .right-section {
    justify-content: space-between;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.8s ease-out 0.4s forwards;
    color: #fff;
    padding: 20px 0 20px 20px !important;
    margin: 20px 0;
    position: relative;
    overflow: visible;
}

.right-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.right-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.banner-exact-v2 .right-description {
    font-size: 0.9em;
    line-height: 1.5;
    color: #f0f0f0;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1.0s forwards;
}

.right-section p.description {
    color: white !important;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
            font-family: "poppins";

}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.supreme-quality {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.shop-button {
    position: relative;
    overflow: hidden; /* Hide corners */
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px 16px !important;
    border-radius: 0;
    transition: color 0.3s;
    cursor: pointer;
    display: inline-block;
    outline: none;
    text-decoration: none !important;

}

.shop-button::before,
.shop-button::after {
    content: '';
    position: absolute;
    top: 0;
    width: 58%; /* Reduce width to avoid peeking corners */
    height: 100%;
    background: #23201e; /* <-- Use a visible color */
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.shop-button::before {
    left: -8px; /* Move slightly left */
    transform: translateX(-100%) skewX(-18deg);
}

.shop-button::after {
    right: -8px; /* Move slightly right */
    transform: translateX(100%) skewX(-18deg);
}

.shop-button:hover::before,
.shop-button:focus::before {
    transform: translateX(0) skewX(-18deg);
}

.shop-button:hover::after,
.shop-button:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.shop-button span {
    position: relative;
    z-index: 3;
    color: #111;
    background: transparent !important;
}

.shop-button:hover,
.shop-button:focus {
    color: #23201e !important;
}

.shop-button:hover span,
.shop-button:focus span {
    color: #fff !important;
    z-index: 3;
}

.profile-circles {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: -18px;
}

.profile-circle {
    width: 70px;
    height: 70px;
    border: 6px solid #fff;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    overflow: hidden;
    background: #fff;
    margin-left: -22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.3s ease, box-shadow 0.2s;
}

.profile-circle:first-child {
    margin-left: 0;
    z-index: 2;
}

.profile-circle:nth-child(1) { animation: fadeInUp 0.5s ease-out 1.4s forwards; }
.profile-circle:nth-child(2) { animation: fadeInUp 0.5s ease-out 1.5s forwards; }
.profile-circle:nth-child(3) { animation: fadeInUp 0.5s ease-out 1.6s forwards; }

.profile-circle:hover {
    transform: translateY(-5px);
    border-color: #fad565;
}

.profile-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.right-bottom-image {
    border-radius: 0 !important;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1.8s forwards;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 20px !important;
    width: calc(100% + 20px) !important;
    margin-right: -20px !important;
}

.right-bottom-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.banner-exact-v2 .right-bottom-image {
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0px !important;
    overflow: hidden;
    border-radius: 0 !important;
    width: calc(100% + 20px) !important;
    margin-right: -20px !important;
}

.banner-exact-v2 .right-bottom-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* CUSTOM MADE SAREES SECTION - FIXED */
.main-section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #000;
    padding: 40px;
    margin-top: 0;
}

.saree-left-section {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px; /* or your preferred height */
    flex: 1 1 0;
}

.saree-left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none !important;
}

.saree-right-section {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saree-right-section .supreme-quality {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.saree-right-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.saree-right-section .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white !important;
    line-height: 1.6;
}

.shop-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 0;
}

.product-gallery {
    display: flex;
    justify-content: space-around;
    padding: 0 15%;
    padding-top: 45px;
    gap:50px;
    margin-left: -80px;
}

.product-gallery1 {
    display: flex;
    justify-content: space-around;
    padding: 0 15%;
    padding-top: 45px;
    gap:50px;
    margin-left: -80px;
}

.product,
.product2 {
background-color: #1e1e1e;
    border-radius: 0;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product:hover,
.product2:hover {
    border-color: #fad565;
    box-shadow: 0 8px 32px rgba(250, 213, 101, 0.25);
    /* Remove transform - no movement of entire div */
}
.product::before,
.product2::before,
.product::after,
.product2::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
}

/* Bottom-left L (grows up, then right) */
.product::before,
.product2::before {
    left: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-left: 2px solid #fad565;
    border-bottom: 2px solid #fad565;
    transition:
        height 0.25s cubic-bezier(.77,0,.18,1),
        width 0.25s cubic-bezier(.77,0,.18,1) 0.25s;
}

/* Top-right reverse L (grows down, then left) */
.product::after,
.product2::after {
    right: -2px;
    top: -2px;
    width: 0;
    height: 0;
    border-top: 2px solid #fad565;
    border-right: 2px solid #fad565;
    transition:
        height 0.25s cubic-bezier(.77,0,.18,1),
        width 0.25s cubic-bezier(.77,0,.18,1) 0.25s;
}

/* Show animated border on hover */
.product:hover::before,
.product2:hover::before,
.product:hover::after,
.product2:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Animate to full border on hover */
.product:hover::before,
.product2:hover::before {
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    transition:
        height 0.25s cubic-bezier(.77,0,.18,1),
        width 0.25s cubic-bezier(.77,0,.18,1) 0.25s;
}
.product:hover::after,
.product2:hover::after {
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    transition:
        height 0.25s cubic-bezier(.77,0,.18,1),
        width 0.25s cubic-bezier(.77,0,.18,1) 0.25s;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 0 !important;   /* Ensure square corners */
    overflow: hidden;
    background: #23201E;
    min-height: 280px;
}

.product img,
.product2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;   /* Ensure image is square */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.variant-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;   /* Ensure variant image is square */
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Only the images animate - smooth crossfade */
.product:hover .variant-image,
.product2:hover .variant-image {
    opacity: 1;
    transform: scale(1);
}

.product:hover img:not(.variant-image),
.product2:hover img:not(.variant-image) {
    opacity: 0;
    transform: scale(1.05);
}

.product .price,
.product2 .price {
    color: #fff;
    margin: 16px 0 12px 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.product:hover .price,
.product2:hover .price {
    color: #fad565;
}

.product p,
.product2 p {
    color: white;
    font-size: 18px;
    font-family: sans-serif;
    transition: color 0.3s ease;
    margin-top: 18px;
    overflow: hidden;
    min-height: 48px;      /* Reserve space for 2 lines */
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show max 2 lines */
    -webkit-box-orient: vertical;
    text-align: center;
}

.select-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 200px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0;
    transition: color 0.3s;
    margin: 0 auto;
    outline: none;
    text-decoration: none !important;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Button background animation */
.select-button::before,
.select-button::after {
    content: '';
    position: absolute;
    top: 0;
    width: 58%;
    height: 100%;
    background: #23201e;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.select-button::before {
    left: -8px;
    transform: translateX(-100%) skewX(-18deg);
}

.select-button::after {
    right: -8px;
    transform: translateX(100%) skewX(-18deg);
}

.select-button:hover::before,
.select-button:focus::before {
    transform: translateX(0) skewX(-18deg);
}

.select-button:hover::after,
.select-button:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.select-button span {
    position: relative;
    z-index: 3;
    color: #111;
    background: transparent !important;
    transition: color 0.3s;
}

.select-button:hover,
.select-button:focus {
    color: #23201e !important;
    text-decoration: none !important;
}

.select-button:hover span,
.select-button:focus span {
    color: #fff !important;
    z-index: 3;
}

/* Always show the select button */
.select-button {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.select-button:hover {
    background-color: #e6c757 !important;
    transform: translateX(-50%) translateY(-2px) !important;
}

h4 {
    text-align: center;
            font-family: "poppins";
margin-top: 20px;
}

h1 {
    text-align: center;
            font-family: "Times New Roman", Times, serif;

}

/* --- Replace your existing .view-button block with this for add-to-cart-btn style & animation --- */
.view-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #fad565 !important;
    color: #23201e !important;
    border: 1px solid #fad565;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px 13px !important;
    border-radius: 0;
    transition: color 0.3s;
    cursor: pointer;
    display: inline-block;
    outline: none;
    text-decoration: none !important;
    margin-top: -30px;
}

.view-button::before,
.view-button::after {
    content: '';
    position: absolute;
    top: 0;
    width: 58%;
    height: 100%;
    background: #23201e;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    transform: skewX(-18deg);
}

.view-button::before {
    left: -8px;
    transform: translateX(-100%) skewX(-18deg);
}

.view-button::after {
    right: -8px;
    transform: translateX(100%) skewX(-18deg);
}

.view-button:hover::before,
.view-button:focus::before {
    transform: translateX(0) skewX(-18deg);
}

.view-button:hover::after,
.view-button:focus::after {
    transform: translateX(0) skewX(-18deg);
}

.view-button span {
    position: relative;
    z-index: 3;
    color: #23201e;
    background: transparent !important;
    transition: color 0.3s;
}

.view-button:hover span,
.view-button:focus span {
    color: #fff !important;
    z-index: 3;
}


.features-container {
    display: flex;
    gap: 32px;
    background: #000;
    color: #fff;
    padding: 40px 0;
    justify-content: center;
    border-radius: 0 !important;
}

.feature-card {
    flex: 1;
    max-width: 330px;
    min-width: 320px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: background 0.3s, box-shadow 0.3s, border-radius 0.3s;
    background: transparent;
    box-shadow: none;
    border-radius: 0 !important;
    overflow: hidden;
}

.feature-card h2 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 16px 0;
        font-family: "Times New Roman", Times, serif;

}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #fff;
    font-family: "poppins";

}

.feature-icon {
    height: 48px;
    margin-bottom: 16px;
    z-index: 2;
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 1;
    border-radius: 0 !important;
}

.feature-card {
    position: relative;
    overflow: visible;
}

.feature-card::before,
.feature-card::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 0;
    background: #fad565;
    left: 0;
    top: 0;
    transition: height 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 10;
    opacity: 1;
    pointer-events: none;
}

.feature-card::after {
    left: auto;
    right: 0;
}

.feature-card:hover::before,
.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.feature-card:hover .feature-image {
    opacity: 0.25;
}

.scroll-down-wrapper {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrolldown-ico {
    transform-origin: 60px 60px;
    animation: scrollDown 10s linear infinite;
    animation-play-state: running;
}

.scroll-down-wrapper:hover .scrolldown-ico {
    animation-play-state: paused;
}

/* Custom Made Sarees Section */
.custom-saree-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    overflow: hidden;
}

.custom-saree-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 !important;
}

.custom-saree-variant-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-item:hover .custom-saree-variant-image {
    opacity: 1;
    transform: scale(1);
}

.product-item:hover img:not(.custom-saree-variant-image) {
    opacity: 0;
    transform: scale(1.05);
}

/* Pulsating Circle Styles */
.saree-left-section .circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.saree-left-section .circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(250, 213, 101, 0.4);
    animation: pulse-ring 2s infinite;
}

.saree-left-section .circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background-color: rgba(250, 213, 101, 0.2);
    animation: pulse-ring-outer 2s infinite 0.5s;
    opacity: 0;
}

.circle-tooltip {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(120%) brightness(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(120%) brightness(1.2);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 180px;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.circle-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.6);
    filter: blur(2px);
}

.tooltip-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.tooltip-description {
    font-size: 12px;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7);
}

.saree-left-section .circle:hover .circle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.saree-left-section .circle:hover {
    transform: scale(1.3);
    background-color: rgba(250, 213, 101, 1);
    box-shadow: 0 0 25px rgba(250, 213, 101, 0.8);
}

.saree-left-section .circle:active {
    transform: scale(0.9);
    background-color: rgba(250, 213, 101, 1);
}

.number-item {
    transition: all 0.3s ease;
}

.number-item.active {
    color: #FFD700;
    font-size: 18px;
    transform: scale(1.1);
}




        .text-container {
            display: flex;
            flex-direction: column;
            margin-left: 10px;
            flex-grow: 1;
        }


.sarees-gallery {
    display: flex;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-top: 100px;
}

.saree-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: top;
    transition: filter 0.3s ease;
    padding: 6px;
}

.saree-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    text-align: center;
    transition: opacity 0.5s ease;
    font-weight: bold;
    background-color: transparent !important;
}

.saree-item:not(:hover) {
    filter: blur(1px) brightness(50%);
}

.saree-item:hover {
    filter: none;
    z-index: 3;
}

/* Force remove rounded corners for specific elements only */
.custom-saree-image-container,
.custom-saree-image-container img,
.saree-left-section,
.left-section img,
.saree-left-section img,
.banner-exact-v2 .left-section,
.banner-exact-v2 .left-section img,
.right-bottom-image,
.banner-exact-v2 .right-bottom-image,
.right-bottom-image img,
.banner-exact-v2 .right-bottom-image img,
.features-container,
.feature-card,
.feature-image,
.product-item,
.product-item img,
.blazer-rack-image,
.product-image-container,
.product-image-container img,
.variant-image,
.custom-saree-variant-image {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

/* ANIMATIONS */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInImg {
    from { opacity: 0; transform: scale(0.98);}
    to   { opacity: 1; transform: scale(1);}
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollDown {
    to { transform: rotate(360deg);}
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

@keyframes pulse-ring-outer {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(4.5);
        opacity: 0;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .banner-exact-v2 {
        flex-direction: column;
    }

    .stats-row {
        gap: 40px;
        justify-content: space-between;
    }

    .main-title-text {
        font-size: 1.8em;
    }

    .main-section-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-gallery,
    .product-gallery1 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 5%;
    }

    /* Responsive styles for product gallery and product cards */
    .product-gallery,
    .product-gallery1 {
        gap: 24px;
        padding: 0 4vw;
        margin-left: 0;
        flex-wrap: wrap;
    }
    .product,
    .product2 {
        width: 220px;
        padding: 16px;
    }
}

@media (max-width: 900px) {

    .row, .row2 {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 18px;
    }
    .row2 img {
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }
    .banner-text {
        top: 35%;
        padding: 12px;
        margin-left: -30%;
        width: 70vw;
        left: 15%;
        right: 15%;
    }
    .banner-text p {
        font-size: 20px;
    }
    p.grace {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 24px 0;
    }
    .feature-card {
        width: 95vw;
        max-width: 500px;
        min-width: 0;
        padding: 20px 8px;
        align-items: flex-start;
    }
    .feature-card h2 {
        font-size: 1.4rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }
    .feature-icon {
        height: 36px;
        margin-bottom: 10px;
    }

    .product-gallery,
    .product-gallery1 {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 2vw;
        margin-left: 0;
    }
    .product,
    .product2 {
        width: 90vw;
        max-width: 350px;
        padding: 14px 8px;
    }
    .select-button {
        width: 90vw;
        max-width: 250px;
        height: 44px;
        font-size: 13px;
        margin-left: -10px;
    }
}

@media (max-width: 600px) {

    .row, .row2 {
        gap: 10px;
    }
    .row2 img {
        width: 100%;
        height: auto;
    }
    .banner-text {
        top: 22%;
        padding: 8px 4vw;
        margin-left: 0;
        width: 90vw;
        left: 5vw;
        right: 5vw;
        text-align: center;
    }
    .banner-text p {
        font-size: 15px;
    }
    p.grace {
        font-size: 22px;
    }

    .product-gallery,
    .product-gallery1 {
        gap: 14px;
        padding: 0 1vw;
    }
    .product,
    .product2 {
        width: 98vw;
        max-width: 98vw;
        padding: 10px 2vw;
    }
    .select-button {
        width: 96vw;
        max-width: 200px;
        height: 38px;
        font-size: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        min-height: 250px;
    }

    .product img,
    .product2 img {
        min-height: 250px;
    }
}



.row2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    position: relative;
}
.row2 img {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 42%;
    padding: 20px;
    background-color: transparent;
    margin-left: -45%;
}

/* Add gap between each product in product-gallery and product-gallery1 */

.banner-text p {
    font-size: 26px;
    margin-bottom: 5px;
    background-color: transparent;
    color: white;
}
p.grace {
    color: #fad565;
    font-family: "Times New Roman", Times, serif;
    font-size: 55px;
}


/* Hide normal navbar on mobile, show menu icon */
@media (max-width: 900px) {
    .navbar nav ul {
        display: none !important;
    }
    #mobile-menu-toggle {
        display: inline-block !important;
    }
}
#mobile-menu-toggle {
    display: none;
}


.banner-exact-v2 .stats-row .stat-item {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-width: unset !important;
    min-height: unset !important;
    margin: 0 !important;
    color: #fad565 !important;
}
.banner-exact-v2 .stats-row:first-child .stat-item:first-child,
.banner-exact-v2 .stats-row:last-child .stat-item:last-child {
    background: rgba(0,0,0,0.45) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    border-radius: 6px !important;
    padding: 40px 30px 30px 30px !important;
    min-width: 200px !important;
    min-height: 120px !important;
    margin: 0 0 20px 0 !important;
    color: #fad565 !important;
}
.banner-exact-v2 .stat-item .stat-number,
.banner-exact-v2 .stat-item .stat-suffix,
.banner-exact-v2 .stat-item .stat-label {
    color: #fad565 !important;
}
.banner-exact-v2 .stats-row:first-child .stat-item:first-child .stat-number,
.banner-exact-v2 .stats-row:first-child .stat-item:first-child .stat-suffix,
.banner-exact-v2 .stats-row:first-child .stat-item:first-child .stat-label,
.banner-exact-v2 .stats-row:last-child .stat-item:last-child .stat-number,
.banner-exact-v2 .stats-row:last-child .stat-item:last-child .stat-suffix,
.banner-exact-v2 .stats-row:last-child .stat-item:last-child .stat-label {
    color: #fad565 !important;
}
.banner-exact-v2 .stat-number,
.banner-exact-v2 .stat-suffix {
    display: inline-block !important;
    vertical-align: baseline;
    font-size: 2.5em;
    font-weight: bold;
    /* Remove any float or block display */
}
.banner-exact-v2 .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-exact-v2 .stat-number,
.banner-exact-v2 .stat-suffix {
    display: inline-block !important;
    vertical-align: baseline;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.banner-exact-v2 .stat-suffix {
    margin-left: 4px !important;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 2x2 grid for stats */
.banner-exact-v2 .center-bottom {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 450px;
    margin: 150px auto 0 auto; /* Increased top margin to move it further down */
    justify-items: center;
    align-items: center;
}

.banner-exact-v2 .center-bottom .stat-item {
    min-width: 180px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0;
    padding: 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 0 !important;
}
.stat-value {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    gap: 2px;
}

/* Optional: Remove margin-bottom from .stat-number if you want them perfectly aligned */
.stat-number {
    margin-bottom: 0 !important;
}

/* Dark background for TAILORS (top-left) and CLIENTS (bottom-right) */
.banner-exact-v2 .center-bottom .stat-item:nth-child(1),
.banner-exact-v2 .center-bottom .stat-item:nth-child(4) {
    background: rgba(0,0,0,0.45) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;
}

/* No background for REVIEWS and BOOKINGS */
.banner-exact-v2 .center-bottom .stat-item:nth-child(2),
.banner-exact-v2 .center-bottom .stat-item:nth-child(3) {
    background: transparent !important;
    box-shadow: none !important;
}

/* Responsive: shrink grid on small screens */
@media (max-width: 600px) {
    .banner-exact-v2 .center-bottom {
        width: 98vw;
        min-width: 0;
        grid-template-columns: 1fr 1fr;
    }
    .banner-exact-v2 .center-bottom .stat-item {
        min-width: 0;
        min-height: 80px;
        font-size: 0.9em;
    }
}
 html {
            scroll-behavior: smooth;
        }

        .scroll-down-wrapper {
            position: absolute;
            bottom: 90px; /* Increased from 30px to 90px */
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .elementor-icon {
            display: inline-block;
            text-decoration: none;
        }

        .elementor-icon svg {
            width: 160px;
            height: 160px;
            transition: transform 0.3s ease;
        }

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

        /* Smooth color transitions */
        .circle-border,
        .scroll-text,
        .arrow-path {
            transition: fill 0.3s ease;
        }

        /* Hover effects for color changes */
        .elementor-icon:hover .circle-border {
            fill: #fad565 !important;
        }

        .elementor-icon:hover .scroll-text {
            fill: #fad565 !important;
        }

        .elementor-icon:hover .arrow-path {
            fill: #fad565 !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scroll-down-wrapper {
                bottom: 20px;
            }

            .elementor-icon svg {
                width: 140px;
                height: 140px;
            }
        }

        .scroll-numbers {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .number-item {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .number-item.active {
            color: #fad565;
            font-size: 18px;
            transform: scale(1.1);
        }

/* Responsive styles for .banner-text and .banner-text p */

@media (max-width: 900px) {
    .banner-text {
        top: 35%;
        padding: 12px;
        margin-left: -30%;
        width: 70vw;
        left: 15%;
        right: 15%;
    }
    .banner-text p {
        font-size: 20px;
    }
    p.grace {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .banner-text {
        top: 22%;
        padding: 8px 4vw;
        margin-left: 0;
        width: 90vw;
        left: 5vw;
        right: 5vw;
        text-align: center;
    }
    .banner-text p {
        font-size: 15px;
    }
    p.grace {
        font-size: 22px;
    }
}

/* Responsive styles */
@media (max-width: 900px) {
    .sarees-gallery {
        height: 110px;
        margin-top: 40px;
        gap: 8px;
    }
    .saree-item span {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .sarees-gallery {
        height: 70px;
        margin-top: 20px;
        gap: 4px;
    }
    .saree-item {
        padding: 2px;
    }
    .saree-item span {
        font-size: 12px;
    }
}

.content4 {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow-x: auto;
    max-width: 100%;
    margin-left: -1%;
    padding: 20px;
}

.horizontal-line {
    border: none;
    border-top: 1px solid #ccc;
    height: 1%;
    width: 18px;
    margin: 10px 5px;
}

.item2:first-child .horizontal-line {
    width: 150px;
}

.item2:last-child > .horizontal-line:first-of-type {
    width: 18px;
}

.item2:last-child > .horizontal-line:last-of-type {
    width: 170px;
    margin-left: 5%;
}

.item2 {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.small-image {
    width: 30px;
    height: auto;
    margin: 10px 10px;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.main-text {
    font-size: 8px;
    font-weight: bold;
    margin-bottom: -10%;
}

.sub-text {
    font-size: 10px;
    font-weight: bold;
    margin-top: -16%;
}
