/* Playfair & Playball Font Link */
@import url("https://fonts.googleapis.com/css2?family=Playball&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* Agaleoz Font Link */
@import url("https://fonts.cdnfonts.com/css/agaleoz");

/* Larken Demo Font */
@import url("https://db.onlinewebfonts.com/c/87a0b96df9f33e523f2ebc6a48b02e7a?family=Larken+DEMO");

@font-face {
    font-family: "Bellina";
    src: url(../assets/Bellina/Bellina.ttf);
    font-weight: normal;
    font-style: normal;
}

:root {
    --playfair-font: "Playfair Display", serif;
    --playball-font: "Playball", cursive;
    --agaleoz-font: "Agaleoz", sans-serif;
    --larken-font: "Larken DEMO", serif;
    --belina-font: "Bellina", serif;
    --hdrTop-bg: #c8a77f;
    --active-txt-color: #f2dec5;
    --primary-color: #ffffff;
    --secondary-color: #faead7;
    --tertiary-color: #f1dabf;
    --card-txt-color: #d9cec1;
    --border-color: #e5d1b9;
    --image-border-color: rgba(229, 209, 185, 0.4);
    --duration: 3s;
    --shine-angle: 90deg;
    --shine-color: rgba(255, 255, 255, 0.4);
    --shine-background: linear-gradient(var(--shine-angle),
            rgba(255, 255, 255, 0) 0%,
            var(--shine-color) 50%,
            rgba(255, 255, 255, 0) 100%);
}

body,
html {
    overflow-x: hidden;
    font-family: var(--larken-font);
    padding: 0 !important;
    background: black;
}

a,
span {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
p,
figure {
    padding: 0;
    margin: 0;
}

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

button,
input,
textarea {
    border: none;
    outline: none;
}

.container {
    max-width: 1846px;
}

.large-container {
    max-width: 1940px;
}

.mid-container {
    max-width: 1820px;
}

.small-container {
    max-width: 1761;
}

.mini-container {
    max-width: 1645px;
}

.ftr-container {
    max-width: 1719px;
}

/* Popup Section */
.wishlist-popup,
.cart-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(162, 121, 72, 0.7) 100%);
    border-radius: 10px;
    color: var(--border-color);
    padding: 12px 20px;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.wishlist-popup.show,
.cart-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Screen */
#onload-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(162, 121, 72, 0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.onload-hidden {
    display: none !important;
}

#alert-overlay {
    pointer-events: none;
}

#alert-overlay.active {
    pointer-events: auto;
}

.fade-out {
    opacity: 0;
}

/* Loading Screen Animation */
.loader {
    --main-size: 6.5em;
    --shine-color: #c824f5cd;
    --shadow-color: #fdf9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    position: relative;
    font-size: var(--main-size);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color);
    width: 7.3em;
    height: 1em;
    filter: drop-shadow(0 0 0.05em var(--shine-color));
}

.loader .text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
}

.loader .text:nth-child(1) {
    clip-path: polygon(0% 0%, 11.11% 0%, 11.11% 100%, 0% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: -2.1em;
    opacity: 0.6;
}

.loader .text:nth-child(2) {
    clip-path: polygon(11.11% 0%, 22.22% 0%, 22.22% 100%, 11.11% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: -0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(3) {
    clip-path: polygon(22.22% 0%, 33.33% 0%, 33.33% 100%, 22.22% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: -0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(4) {
    clip-path: polygon(33.33% 0%, 44.44% 0%, 44.44% 100%, 33.33% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: -0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(5) {
    clip-path: polygon(44.44% 0%, 55.55% 0%, 55.55% 100%, 44.44% 100%);
    font-size: calc(var(--main-size) / 10);
    margin-left: 0em;
    opacity: 1;
}

.loader .text:nth-child(6) {
    clip-path: polygon(55.55% 0%, 66.66% 0%, 66.66% 100%, 55.55% 100%);
    font-size: calc(var(--main-size) / 11);
    margin-left: 0.05em;
    opacity: 0.9;
}

.loader .text:nth-child(7) {
    clip-path: polygon(66.66% 0%, 77.77% 0%, 77.77% 100%, 66.66% 100%);
    font-size: calc(var(--main-size) / 13);
    margin-left: 0.33em;
    opacity: 0.8;
}

.loader .text:nth-child(8) {
    clip-path: polygon(77.77% 0%, 88.88% 0%, 88.88% 100%, 77.77% 100%);
    font-size: calc(var(--main-size) / 16);
    margin-left: 0.98em;
    opacity: 0.7;
}

.loader .text:nth-child(9) {
    clip-path: polygon(88.88% 0%, 100% 0%, 100% 100%, 88.88% 100%);
    font-size: calc(var(--main-size) / 20);
    margin-left: 2.1em;
    opacity: 0.6;
}

.loader .text span {
    animation: scrolling 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite,
        shadow 2s cubic-bezier(0.1, 0.6, 0.9, 0.4) infinite;
}

.loader .text:nth-child(1) span {
    background: linear-gradient(to right,
            var(--active-txt-color) 4%,
            var(--shadow-color) 7%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(2) span {
    background: linear-gradient(to right,
            var(--active-txt-color) 9%,
            var(--shadow-color) 13%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(3) span {
    background: linear-gradient(to right,
            var(--active-txt-color) 15%,
            var(--shadow-color) 18%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(4) span {
    background: linear-gradient(to right,
            var(--active-txt-color) 20%,
            var(--shadow-color) 23%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(6) span {
    background: linear-gradient(to right,
            var(--shadow-color) 29%,
            var(--active-txt-color) 32%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(7) span {
    background: linear-gradient(to right,
            var(--shadow-color) 34%,
            var(--active-txt-color) 37%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(8) span {
    background: linear-gradient(to right,
            var(--shadow-color) 39%,
            var(--active-txt-color) 42%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .text:nth-child(9) span {
    background: linear-gradient(to right,
            var(--shadow-color) 45%,
            var(--active-txt-color) 48%);
    background-size: 200% auto;
    background-clip: text;
    color: transparent;
}

.loader .line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 0.05em;
    width: calc(var(--main-size) / 2);
    margin-top: 0.9em;
    border-radius: 0.05em;
}

.loader .line::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--hdrTop-bg);
    opacity: 0.3;
}

.loader .line::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--hdrTop-bg);
    border-radius: 0.05em;
    transform: translateX(-90%);
    animation: wobble 2s cubic-bezier(0.5, 0.8, 0.5, 0.2) infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(-90%);
    }

    50% {
        transform: translateX(90%);
    }

    100% {
        transform: translateX(-90%);
    }
}

@keyframes scrolling {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes shadow {
    0% {
        background-position: -98% 0;
    }

    100% {
        background-position: 102% 0;
    }
}

/* Header Section */

.hdr-sec {
    position: absolute;
    width: 100%;
    top: 0;
}

.navbar {
    flex-direction: column;
    padding-top: 0;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset #48484861 0px 0px 20px 7px;
}

.large-container {
    flex-direction: column;
}

.bottomNavbar-cntn {
    width: 100%;
    justify-content: space-between;
}

.hdr-top {
    background: var(--hdrTop-bg);
    width: 100%;
}

.hdrTop-cntn>p {
    font-size: clamp(1.2rem, 1.9vw, 1.56rem);
    white-space: nowrap;
    background: linear-gradient(to right, #000000, #663f3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo {
    text-align: center;
    margin-bottom: 14px;
}

.navbar-brand {
    max-width: 191px;
    padding: 0;
    margin: 0;
}

.navbar-brand>img {
    object-fit: cover;
}

/* Left Nav Bar */
.nav-contact {
    font-family: var(--belina-font);
    font-size: 20px;
    color: var(--primary-color);
    transition: 0.3s linear;

    &:hover {
        transform: translateY(2px) scale(1.05);
    }
}

.nav-contact>span:first-child {
    margin-right: 15px;
}

.nav-contact>span:first-child {
    transition: 0.5s ease;
}

.nav-contact:hover span:first-child {
    transform: rotate(45deg);
}

/* Nav Links */
.nav-item {
    margin-right: 64px;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link {
    padding: 0 !important;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: 0.3s linear;

    &:hover {
        transform: scale(1.1) translateY(3px);
        color: var(--primary-color);
    }
}

.nav-item>.nav-link.active {
    color: var(--active-txt-color);
    position: relative;
}

.nav-item>.nav-link.active::before {
    content: "";
    position: absolute;
    top: 110%;
    height: 1px;
    width: 100%;
    background: var(--active-txt-color);
}

.nav-link::after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--active-txt-color);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active::after {
    width: 0;
}

/* Right Nav Bar */
.rightNav-list {
    justify-content: end;
}

.rightNav-item {
    margin-right: 35px;
}

.rightNav-item:last-child {
    margin-right: 0;
}

.rightNav-link {
    color: var(--primary-color);
    font-size: 20px;
    transition: 0.3s linear;

    &:hover {
        transform: scale(1.1) translateY(2px);
    }
}

.offcanvas {
    flex-direction: row;
}

.navbar-toggler-icon {
    border-radius: 20%;
    background: none;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.btn-close {
    font-size: 2rem;
    background: none;
    color: var(--primary-color);
}

.offcanvas-header .btn-close {
    margin: 0;
    padding: 0;
}

.btn-close:focus,
.btn-close:hover,
.navbar-toggler:focus,
.navbar-toggler {
    box-shadow: none;
    color: var(--primary-color);
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: normal;
}

.rightNav-link.active {
    color: var(--border-color);
}

/* Banner Section */

.bnr-sec {
    background: url(../assets/index/Herosection.png) no-repeat center/cover;
    padding: 110px 0 0;
    border: 1px solid var(--hdrTop-bg);
    background-attachment: fixed;
    background-position: top;

}

.bnr-wrpr {
    position: relative;
    z-index: 10;
    text-align: center;
}

.bnr-cntn {
    text-align: center;
    margin: 117px auto 0;
    max-width: 750px;
}

.title-1 {
    max-width: 490px;
    margin: 0 auto;
    font-family: var(--agaleoz-font);
    font-size: clamp(3.5rem, 6.9vw + 1rem, 5.4rem);
}

.title-1>span:nth-child(1),
.title-1>span:nth-child(2) {
    background: linear-gradient(180deg, #ffffff, #f1dabf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.bnr-cntn>p {
    font-size: clamp(0.9rem, 1vw + 0.8rem, 1.6rem);
    color: var(--secondary-color);
    margin-top: 10px;
}

.bnr-img {
    max-width: 477px;
    margin: 24px auto 44px;
    border: 1px solid var(--image-border-color);
    z-index: 10;
}

.shine-img {
    position: relative;
    overflow: hidden;
}

.shine-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shine-background);
    animation: shine var(--duration) ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    25% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.4;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.left-bnrImg {
    max-width: 239px;
    position: absolute;
    top: 10%;
    z-index: -1;
}

.left-bnrImg::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 500px;
    background: rgba(229, 209, 185, 0.3);
    top: 100%;
    left: 0;
}

.left-bnrCntn {
    max-width: 239px;
    border: 1px solid rgba(241, 218, 191, 0.5);
    position: absolute;
    top: 35%;
    left: 5%;
    padding: 90px 39.5px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.left-bnrCntn>p {
    font-size: 24px;
    text-align: center;
    color: var(--tertiary-color);
}

.leftBtm-img {
    max-width: 195px;
    position: absolute;
    top: 80%;
    left: 10%;
}

.leftBtm-circle {
    max-width: 109px;
    position: absolute;
    top: 89%;
    left: 18%;
}

.bnr-btn {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: inline-flex;
}

.primary-btn {
    font-size: 32px;
    font-family: var(--playfair-font);
    background: linear-gradient(to right, #8b888818, #daa87e);
    box-shadow: 5px -2px 20px 0px #daa77e79;
    padding: 23px 61.5px;
    border-radius: 60px;
    transition: 0.3s ease;
}

.primary-btn>span {
    background: linear-gradient(to right, #f2dec5, #ffffff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.arrow-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    background: transparent;
    color: #daa87e;
    font-size: 22px;
    overflow: hidden;
    padding: 30px 31px;
    transform: rotate(-30deg);
    margin-left: 16px;
    transition-duration: 2s;
}

.arrow-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 50%;
    background: linear-gradient(to right, #f1dabf, #8b7964);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.arrow-btn {
    display: inline-block;
    transition: transform 1s;
}

.bnr-btn:hover .primary-btn {
    transform: translateY(3px);
    box-shadow: none;
}

.bnr-btn:hover .arrow-btn {
    transform: rotate(360deg);
}

.right-bnrImg {
    max-width: 239px;
    position: absolute;
    top: 18%;
    right: 6%;
}

.right-bnrImg::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 500px;
    background: rgba(229, 209, 185, 0.3);
    top: 100%;
    right: -40%;
    z-index: -1;
}

.rightTop-circle {
    max-width: 111px;
    position: absolute;
    top: 30%;
    right: 4%;
}

.right-Bnrcntn {
    max-width: 294px;
    position: absolute;
    top: 50%;
    right: 5%;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--tertiary-color);
    z-index: -1;
}

.right-Bnrcntn>p {
    font-size: clamp(1rem, 1.87vw, 2.31rem);
    color: var(--tertiary-color);
}

.bnrCard {
    max-width: 586px;
    margin: 5.7rem auto 0;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: grab;
    border: 1px solid var(--image-border-color);
}

.bnrCard:hover {
    box-shadow: 0 8px 16px rgba(2, 2, 2, 0.315);
}

.bnrCard-cntn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--playfair-font);
    padding: 69px 28px 23px;
    background: rgba(0, 0, 0, 0.4);
    transform: scale(2);
    transform-origin: bottom;
    transition: 0.4s linear;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
}

.bnrCard:hover .bnrCard-cntn {
    opacity: 1;
    transform: scale(1);
}

.cardImg-1 {
    background: url(../assets/index/card-1.png) no-repeat center/cover;
}

.cardImg-2 {
    background: url(../assets/index/card-2.png) no-repeat center/cover;
}

.cardImg-3 {
    background: url(../assets/index/card-3.png) no-repeat center/cover;
}

.title-2 {
    background: linear-gradient(330deg, #f6f5f5, #f5e4d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(2rem, 1.5vw + 1rem, 3.08rem);
}

.bnrCard-cntn>p {
    font-size: clamp(1rem, 1vw + 1rem, 1.85rem);
    color: var(--card-txt-color);
}

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

.secondary-btn {
    padding: 23px 26px;
    border: 1px solid;
    border-radius: 60px;
    overflow: hidden;
    font-size: 32px;
    position: relative;
    background: transparent;
    transition: all 0.6s linear;
}

.secondary-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 60px;
    background: linear-gradient(180deg, #a3a3a3, #fffefe);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.secondary-btn>span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    background: linear-gradient(to right, #e9917b, #010101);
    border-radius: 60px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.secondary-btn>span:first-child {
    text-transform: capitalize;
    background: linear-gradient(to right, #c2baba, #f5e4d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.arrow-btn2 {
    background: linear-gradient(30deg, #e3c1ac, #d7a170);
    margin-left: 0;
}

.arrow-btn2>span {
    background: linear-gradient(#5f5a59, #605552);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-bnrCntn:hover .secondary-btn>span:last-child {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.bottom-bnrCntn:hover .arrow-btn2 {
    transform: rotate(360deg);
}

.bottmBnr-card {
    align-items: end;
    padding: 0 20px 30px;
    flex-direction: row;
}

.lastCard-cntn {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.lastCard-cntn>p {
    max-width: 265px;
    font-size: 32px;
    font-weight: 600;
    color: var(--tertiary-color);
}

.button3:hover {
    transform: rotate(360deg);
}

/* Jewellery Collection Section */
.jwl-sec {
    border: 1px solid var(--image-border-color);
    background: black;
    margin: 19px 0;
    padding: 71px 0 141px;
}

.title-3 {
    text-transform: capitalize;
    font-family: var(--playfair-font);
    font-size: clamp(1.8rem, 4vw, 4.233rem);
    font-weight: bold;
    color: var(--active-txt-color);
}

.jwl-right {
    align-items: center;
    display: flex;
    justify-content: end;
}

.tertiary-btn {
    font-family: var(--playfair-font);
    font-size: 36px;
    font-weight: 500;
    color: var(--active-txt-color);
    text-align: end;
    margin-right: 20px;
    position: relative;
}

.tertiary-btn::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: var(--active-txt-color);
    transition: transform 0.25s ease-out;
}

.button-box {
    display: inline-flex;
    align-items: center;
}

.button-box:hover .tertiary-btn::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.button-box:hover .arrow-btn {
    transform: rotate(360deg);
}

.swiper1 {
    margin-top: 75px;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 12.5%,
            rgb(0, 0, 0) 87.5%,
            rgba(0, 0, 0, 0) 100%);
}

.swiper1-cntn {
    max-width: 421px;
    min-height: 533px;
    display: flex;
    border: 1px solid var(--image-border-color);
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.frame-1 {
    background: url(../assets/index/1st-frame.png) no-repeat center/cover;
}

.frame-2 {
    background: url(../assets/index/2nd-frame.png) no-repeat center/cover;
}

.frame-3 {
    background: url(../assets/index/3rd-frame.png) no-repeat center/cover;
}

.frame-4 {
    background: url(../assets/index/4th-frame.png) no-repeat center/cover;
}

.topCard-cntn {
    padding: 30px;
    width: 100%;
    text-align: end;
    cursor: pointer;
}

.topCard-cntn>span {
    font-size: 29px;
    color: var(--active-txt-color);
}

.fa-heart {
    transition: color 0.6s ease;
}

.fa-heart.active {
    color: red;
}

.bottomCard-cntn {
    padding: 0 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottomSwiper-left {
    font-family: var(--larken-font);
}

.product-link {
    font-size: 24px;
    font-weight: 500;
    color: #fde9d7;
}

.bottomSwiper-left>p:last-child {
    font-size: 24px;
    font-weight: normal;
    color: var(--border-color);
    display: flex;
    align-items: center;
}

.bottomSwiper-left>p:last-child>span:first-child {
    margin-right: 5px;
    margin-left: -5px;
}

.bottomSwiper-right {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(229, 209, 185, 1);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bottomSwiper-right>span {
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s ease;
}

.bottomSwiper-right>span:first-child {
    width: 2px;
    height: 16px;
}

.bottomSwiper-right>span:last-child {
    width: 16px;
    height: 2px;
}

.bottomSwiper-right.active>span:first-child {
    opacity: 0;
}

/* Personalized Section */
.personalized-sec {
    border: 1px solid var(--image-border-color);
    background: black;
    padding: 50px 0;
}

.full-cntn {
    padding: 60px 32px;
}

.personalizedLeft-cntn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.personalizedTop-cntn {
    max-width: 413px;
    border-bottom: 1px solid rgba(229, 209, 185, 0.3);
}

.title-4 {
    color: var(--border-color);
    font-family: var(--playfair-font);
    font-weight: normal;
    font-size: clamp(1.8rem, 1.5vw + 1.45rem, 3.08rem);
}

.personalizedBottom-cntn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(229, 209, 185, 0.3);
}

.personalizedBottom-cntn>h2.title-4 {
    font-weight: 600;
    font-size: clamp(2rem, 1.5vw + 1rem, 3.698rem);
    font-style: italic;
}

.personalizedBottom-cntn>p {
    font-family: var(--playball-font);
    font-size: clamp(2rem, 1.5vw + 1rem, 3.698rem);
    color: var(--border-color);
}

.personalizedImg-1 {
    max-width: 514px;
    border: 1px solid var(--image-border-color);
}

.personalizedRight-cntn>h2.title-2 {
    max-width: 259px;
    color: var(--border-color);
}

.personalizedRight-cntn>p {
    font-size: clamp(1rem, 1vw + 1rem, 1.85rem);
    color: #f8e6d0;
    margin-top: 42px;
}

.midBottom-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 275px;
}

.personalizedContent-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.midBottom-left>.title-4>span {
    font-family: var(--playball-font);
}

.personalizedImg-2 {
    max-width: 514px;
    margin-left: auto;
    border: 1px solid var(--image-border-color);
}

.leftButton {
    justify-content: start;
}

.leftButton>.button-box>.tertiary-btn {
    font-size: clamp(1.4rem, 1.2vw + 1rem, 1.846rem);
    margin-right: 15px;
    color: #dbb28f;
}

.rotate-arrow {
    font-size: clamp(1.1rem, 1.1vw + 1rem, 1.5rem);
    color: #dbb28f;
    transform: rotate(-30deg);
    transition: 1.5s ease;
}

.button-box:hover .rotate-arrow {
    transform: rotate(360deg);
}

/* Collection Section */
.collection-sec {
    padding: 46px 0;
    background: black;
    border: 1px solid var(--image-border-color);
    margin: 19px 0;
}

.collection-title>.title-3 {
    color: var(--active-txt-color);
    font-weight: normal;
    font-family: var(--larken-font);
}

.collection-btn {
    font-family: var(--larken-font);
    color: var(--active-txt-color);
    font-weight: normal;
}

.swiper2 {
    margin-top: 100px;
}

.swiper2-img {
    max-width: 400px;
    border: 1px solid var(--image-border-color);
}

.swiper2-cntn {
    max-width: 400px;
    margin: 0 auto;
}

.swiper2-title {
    margin-top: 20px;
}

.swiper2-title>p {
    color: var(--border-color);
    text-align: center;
    text-transform: capitalize;
    font-size: clamp(1.7rem, 2vw + 1rem, 2.35rem);
    white-space: nowrap;
}

/* Festive Collection Section */
.festive-sec {
    padding: 46px 0;
    background: black;
    border: 1px solid var(--image-border-color);
    font-family: var(--larken-font);
}

.swiper3 {
    margin-top: 100px;
}

/* Asthetic Jewellery Section */
.asthetic-sec {
    background: black;
    padding: 30px 0 24px;
    border: 1px solid var(--image-border-color);
    margin: 19px 0;
}

.asthetic-full {
    padding: 70px 0;
}

.asthetic-cntn>.title-3 {
    font-family: var(--larken-font);
}

.asthetic-cntn>p {
    font-size: clamp(1.4rem, 2vw, 2rem);
    color: var(--border-color);
    font-weight: 100;
}

.asthetic-cntn>p:nth-child(2) {
    margin: 78px 0 35px;
}

.asthetic-btn {
    border-radius: 0;
    margin-top: 35px;
    border: 1px solid var(--image-border-color);
}

.asthetic-btn::after,
.asthetic-btn>span:last-child {
    border-radius: 0;
}

.astheticImg-box {
    max-width: 926px;
    position: relative;
}

.asthetic-img {
    max-width: 764px;
    margin: 0 auto;
    border: 1px solid var(--image-border-color);
}

.circle-top {
    max-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    border: 10px solid black;
    position: absolute;
    top: -5%;
    right: 0;
}

.circle-bottom {
    max-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    border: 10px solid black;
    position: absolute;
    bottom: -5%;
    left: 0;
}

/* Party Collection Section */

.party-sec {
    padding: 46px 0;
    border: 1px solid var(--image-border-color);
}

.swiper4 {
    margin-top: 100px;
}

/* About Section */

.abt-sec {
    padding: 54px 0;
    border: 1px solid var(--image-border-color);
    margin: 19px 0;
    background: url(../assets/index/abtBG.png) no-repeat center/cover;
}

.abt-wrpr {
    padding: 30px 36px 0;
}

.abtTitle-box {
    max-width: 658px;
    margin: 12px auto 22px;
}

.abt-title {
    max-width: 828px;
    margin: 0 auto 61px;
    text-align: center;
}

.abtTitle-box>.title-3 {
    font-size: clamp(1.153rem, 3.5vw, 3.846rem);
}

.abt-title>p {
    color: var(--border-color);
    font-size: clamp(1rem, 2.5vw, 1.692rem);
}

.swiper5 .swiper-wrapper {
    flex-direction: row-reverse;
}

.swiper5 {
    direction: ltr;
}

.swiper5-cntn {
    padding: 87px 39px;
    border: 1px solid var(--image-border-color);
    border-radius: 10px;
    max-width: 528px;
    margin: 0 auto;
    user-select: none;
}

.swiper5-bg1 {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(162, 121, 72, 0.3));
}

.swiper5-bg2 {
    background: rgba(23, 16, 6, 0.5);
}

.swiper5-bg3 {
    background: linear-gradient(225deg,
            rgba(181, 100, 2, 0.3),
            rgba(0, 0, 0, 0.3));
}

.swiper5-img {
    max-width: 100px;
}

.swiper5-title {
    margin: 31px 0 23px;
}

.title-5 {
    font-size: clamp(1rem, 2.3vw, 2.308rem);
    white-space: nowrap;
    color: #f8dab7;
}

.stars {
    display: flex;
    font-size: 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #ffd700 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiper5-cntn>p {
    font-size: clamp(1rem, 1.8vw, 1.538rem);
    font-weight: 100;
    color: var(--border-color);
}

.swiper5 .swiper-slide {
    transition: all 0.5s ease;
    filter: blur(4px) brightness(0.6);
    transform: scale(0.9);
}

.swiper5 .swiper-slide-active {
    filter: blur(0) brightness(1);
    transform: scale(1);
    z-index: 2;
}

.swiper5 .swiper-slide-next,
.swiper5 .swiper-slide-prev {
    filter: blur(5px) brightness(0.8);
    transform: scale(0.95);
    z-index: 1;
}

/* Follow Section */
.follow-sec {
    background: url(../assets/index/follow-bg.png) no-repeat center/cover;
    padding: 65px 0;
    border: 1px solid var(--image-border-color);
}

.title-6 {
    font-family: var(--larken-font);
    font-size: clamp(1rem, 3vw, 3.077rem);
    color: var(--border-color);
    text-align: center;
}

.follow-hdr {
    margin-bottom: 46px;
}

.swiper6-cntn {
    text-align: center;
}

.swiper6-img {
    max-width: 318px;
}

.swiper6 .swiper-slide {
    transition: all 0.6s ease;
    filter: blur(6px) brightness(0.4);
    transform: scale(0.9);
    opacity: 0.4;
}

.swiper6 .swiper-slide-active {
    filter: blur(0) brightness(1);
    transform: scale(1);
    opacity: 1;
    z-index: 3;
}

.swiper6 .swiper-slide-next,
.swiper6 .swiper-slide-prev {
    filter: blur(20px) brightness(0.6);
    transform: scale(0.95);
    opacity: 0.8;
    z-index: 2;
}

/* Footer Section */
.ftr-sec {
    padding: 70px 0;
    border: 1px solid var(--image-border-color);
    margin-top: 19px;
    background: url(../assets/index/footer-bg.png) no-repeat center/cover;
    background-blend-mode: lighten;
}

.ftr-logo {
    max-width: 143px;
}

.ftr-logo>img {
    object-fit: cover;
}

.ftr-hdrTitle {
    font-family: var(--larken-font);
    color: #f5e7d5;
}

.ftr-hdrTitle>p:nth-child(1) {
    font-size: clamp(1.8rem, 2.4vw, 2.462rem);
    margin: 19px 0 30px;
}

.ftr-hdrTitle>p:nth-child(2) {
    font-size: clamp(1.2rem, 2.3vw, 2.308rem);
}

.ftrSocial-list {
    margin-top: 34px;
    display: flex;
    align-items: center;
}

.ftrSocial-item {
    margin-right: 13px;
    position: relative;
}

.tooltip {
    position: absolute;
    top: 0;
    left: 60%;
    transform: translateX(-50%);
    color: var(--border-color);
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ftrSocial-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -35px;
}

.ftrSocial-item:last-child {
    margin-right: 0;
}

.ftrSocial-link {
    font-size: 24px;
    color: var(--border-color);
    border: 1px solid var(--image-border-color);
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease;
    position: relative;
    z-index: 1;

    &:hover {
        color: black;
        box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
    }
}

.fill-color {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.ftrSocial-link:hover .fill-color {
    background: var(--border-color);
    height: 100%;
}

.ftr-hdrTitle2>p:first-child {
    margin: 0 0 25px;
}

.ftrNav-item {
    margin-bottom: 19px;
}

.ftrNav-item:last-child {
    margin: 0;
}

.ftrNav-link {
    font-family: var(--larken-font);
    font-size: clamp(1.3rem, 2vw, 1.846rem);
    font-weight: 100;
    color: var(--border-color);
    transition: 0.3s ease;
    position: relative;

    &:hover {
        color: var(--primary-color);
        transform: scale(1.05);
    }

}

.ftrNav-link::after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--active-txt-color);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.ftrNav-link:hover::after {
    width: 100%;
    left: 0;
}


.ftrItem-2 {
    display: flex;
    align-items: center;
    transition: 0.3s linear;
}

.ftrItem-2:hover .call {
    transform: rotate(45deg);

}

.ftrItem-2:hover span {
    color: var(--primary-color);
}

.ftrItem-2>span {
    font-size: 16px;
    margin-right: 11px;
    color: var(--border-color);
    width: 30px;
    height: 30px;
    background: rgba(229, 209, 185, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;

}

.ftrLink-2:hover {
    transform: none;
    box-shadow: none;
}

.ftrItem-2 span:last-child {
    transition: 0.3s ease;
}


.ftrLink-2 {
    display: flex;
    flex-direction: column;
}

.ftrNav-link>span {
    font-size: 17px;
}



.ftr-form {
    max-width: 382px;
}

.ftr-inputBox {
    position: relative;
    width: 100%;
}

.ftr-emailInput {
    width: 100%;
    font-size: 25px;
    color: var(--border-color);
    font-weight: 100;
    font-family: var(--larken-font);
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid rgba(229, 209, 185, 0.7);
    padding-right: 90px;
}

.ftr-submitBtn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(229, 209, 185, 0.4);
    color: var(--border-color);
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0 4px;
    max-width: 45px;
    transition: 0.3s linear;

    &:hover {
        transform: scale(0.9) translateY(-50%);
        box-shadow: 0px 0px 20px 5px rgba(229, 209, 185, 0.4);
    }
}

.ftr-bottom {
    margin-top: 60px;
}

.ftr-copyright {
    font-size: clamp(1rem, 1.7vw, 1.692rem);
    white-space: nowrap;
    color: var(--border-color);
    font-weight: 100;
}

.ftr-copyright>span {
    color: rgba(229, 209, 185, 0.6);
}

/* Responsive Section */
@media screen and (max-width: 1448px) {
    /* Banner Section */

    .secondary-btn {
        padding: 19px 17px;
    }
}

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

    /* Asthetic Section */
    .asthetic-img {
        max-width: 650px;
    }
}

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

    .luxy-el {
        transform: none !important;
    }

    /* Banner Section */
    .left-bnrImg::after {
        width: 250px;
    }

    .left-bnrImg,
    .right-bnrImg {
        max-width: 185px;
    }

    .left-bnrCntn {
        max-width: 182px;
        padding: 37px 26.5px;
    }

    .leftBtm-img {
        max-width: 150px;
        left: 6%;
    }

    .leftBtm-circle {
        max-width: 75px;
        top: 88%;
        left: 15%;
    }

    .rightTop-circle {
        max-width: 90px;
        top: 27%;
        right: 3%;
    }

    .right-Bnrcntn {
        max-width: 191px;
        right: 2%;
    }

    /* Personalized Section */

    .personalizedBottom-cntn {
        margin: 30px 0 50px;
    }

    .personalizedImg-1 {
        margin: 0 auto 50px;
    }

    .personalizedRight-cntn>h2.title-2 {
        max-width: 100%;
    }

    .personalizedRight-cntn {
        margin-bottom: 50px;
    }

    /* Asthetic Section */
    .astheticImg-box {
        margin: 40px auto 0;
    }

    .circle-top {
        right: 6%;
    }

    .circle-bottom {
        left: 8%;
    }

    /* About Section */
    .swiper5-cntn {
        padding: 51px 20px;
    }
}

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

    /* Header Section */
    .offcanvas {
        flex-direction: column;
        align-items: center;
        justify-content: start !important;
        background: transparent;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(50px);
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        max-width: 310px;
        min-height: 100vh;
    }

    .offcanvas-header {
        width: 100%;
        margin-bottom: 30px;
    }

    .nav-item {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .rightNav-list {
        justify-content: center;
    }

    /* Banner Section */
    .bnr-img {
        max-width: 400px;
    }

    .left-bnrImg {
        max-width: 160px;
        top: 26%;
    }

    .left-bnrCntn {
        max-width: 156px;
        padding: 50px 10px;
        left: 1%;
        top: 49%;
    }

    .left-bnrCntn>p {
        font-size: 20px;
    }

    .leftBtm-img {
        left: 0;
    }

    .leftBtm-circle {
        left: 12%;
    }

    .right-bnrImg {
        max-width: 160px;
        top: 37%;
        right: 0%;
    }

    .right-bnrImg::after {
        right: 0;
    }

    .rightTop-circle {
        max-width: 79px;
        top: 45%;
        right: 0%;
    }

    .right-Bnrcntn {
        top: 60%;
        right: 0;
        max-width: 187px;
    }

    .primary-btn {
        padding: 14px 33.5px;
        font-size: 25px;
        box-shadow: 0px 0px 9px 0px #daa77e79;
    }

    .arrow-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
        padding: 18px;
    }

    .secondary-btn {
        font-size: 25px;
    }

    .cardImg-3 {
        margin: 2.7rem auto 0;
    }

    .bnrCard {
        min-height: 547px;
    }

    /* Pesonalized Section */
    .personalized-col {
        order: 2;
    }

    .personalizedContent-box {
        justify-content: space-around;
    }

    /* Asthetic Section */
    .circle-top {
        max-width: 170px;
        min-height: 170px;
    }

    .asthetic-img {
        max-width: 578px;
    }
}

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

    /* Banner Section */
    .title-1 {
        max-width: 410px;
    }

    .left-contentImg {
        display: none;
    }

    .bnrCard {
        min-height: 468px;
        margin: 2.7rem auto 0;
    }

    .tertiary-btn {
        font-size: 25px;
        margin-right: 0;
    }

    /* Collection Section */
    .swiper2,
    .swiper3,
    .swiper4 {
        margin-top: 30px;
    }

    /* Asthetic Section */
    .asthetic-img {
        max-width: 456px;
    }

    .circle-top {
        max-width: 142px;
        min-height: 142px;
    }

    .circle-bottom {
        left: 5%;
    }

    /* Footer Section */
    .ftr-form {
        max-width: 100%;
    }
}

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

    /* Header Section */
    .navbar-toggler-icon {
        font-size: 2rem;
    }

    .nav-left {
        display: none !important;
    }

    .navbar-toggler {
        align-self: flex-end;
    }

    /* Banner Section */
    .bnr-sec {
        padding: 175px 0 0;
    }

    .title-1 {
        max-width: 328px;
    }

    .bnrCard {
        min-height: 512px;
    }

    .secondary-btn {
        padding: 14px 17px;
        font-size: 20px;
    }

    .lastCard-cntn {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lastCard-cntn>p {
        margin-bottom: 20px;
    }

    /* Jewellery Section */
    .jwl-right {
        margin-top: 20px;
    }

    .tertiary-btn {
        font-size: 22px;
    }

    /* Personalized Section */
    .full-cntn {
        padding: 20px 10px;
    }

    /* Asthetic Section */
    .asthetic-img {
        max-width: 270px;
    }

    .circle-top {
        max-width: 110px;
        min-height: 110px;
        right: 14%;
    }

    .circle-bottom {
        max-width: 100px;
        min-height: 100px;
        left: 14%;
    }

    /* About Section */
    .swiper5-img {
        max-width: 79px;
    }

    .swiper5-cntn {
        padding: 25px 20px;
    }

    /* Footer Section */

    .ftrRight-cntn {
        text-align: center;
    }

    .ftrItem-2 {
        justify-content: center;
        text-align: start;
    }
}

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

    /* Asthetic Section */
    .circle-top {
        top: -9%;
        right: 0%;
    }

    .circle-bottom {
        left: 0;
    }
}