/* .navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-brand img {
    height: 65px;
    transition: transform 0.3s ease;
}

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

.navbar-nav {
    font: 500 1rem var(--font-heading);
}

.nav-link {
    color: #000 !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-golden-color) !important;
}

.nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font: 500 0.95rem var(--font-body);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
    color: #fff !important;
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (max-width: 360px) {
    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .navbar-brand img {
        height: 48px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1050;
        overflow-y: auto;
        padding: 2rem 1rem;
    }

    .navbar-collapse.collapsing {
        right: -100%;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        height: 100vh;
    }

    .navbar-brand {
        position: static !important;
        transform: none !important;
    }

    .navbar-toggler {
        z-index: 1051;
    }

    .navbar-nav {
        text-align: left;
        padding-top: 1rem;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link {
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .nav-link:hover {
        background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
        color: #fff !important;
    }

    .dropdown-menu {
        text-align: left;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        position: static !important;
        transform: none !important;
    }


}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .nav-link {
        padding: 0.5rem 1.2rem !important;
    }
} */





.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-brand img {
    height: 65px;
    transition: transform 0.3s ease;
}

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

.navbar-nav {
    font: 500 1rem var(--font-heading);
}

/* Add space between brand and nav links on desktop */
.nav-right {
    margin-left: auto;
}

.nav-link {
    color: #000 !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-golden-color) !important;
}

.nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 0rem;
    animation: fadeIn 0.3s ease;
    display: none;
}

/* Show dropdown on hover for desktop */
@media screen and (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Prevent Bootstrap's click behavior on desktop */
    .nav-item.dropdown .dropdown-toggle::after {
        display: inline-block;
    }

    .dropdown-menu {
        right: 0;
        left: auto;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font: 500 0.95rem var(--font-body);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
    color: #fff !important;
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (max-width: 360px) {
    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .navbar-brand img {
        height: 48px;
    }

    .hero-lines-one {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1050;
        overflow-y: auto;
        padding: 2rem 1rem;
    }

    /* This is the key fix - handle the .show class */
    .navbar-collapse.show {
        right: 0 !important;
    }

    .navbar-collapse.collapsing {
        right: -100%;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        height: 100vh;
    }

    .navbar-brand {
        position: static !important;
        transform: none !important;
    }

    .navbar-toggler {
        z-index: 1051;
    }

    .navbar-nav {
        text-align: left;
        padding-top: 1rem;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link {
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .nav-link:hover {
        background: linear-gradient(90deg, var(--primary-greenish-color) 0%, var(--primary-golden-color) 100%);
        color: #fff !important;
    }

    .dropdown-menu {
        text-align: left;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        position: static !important;
        transform: none !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .nav-link {
        padding: 0.5rem 1.2rem !important;
    }
}

/* nav bar style end  */




/* hero section style Start */
.hero {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-lines-two,
.hero-lines-one {
    position: absolute;
}

.hero-lines-one {
    top: 0;
    left: 0;
}

.hero-lines-two {
    top: 0;
    right: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 0 0;
}

.hero-content-wrp {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 700px;
}

.hero-content-wrp h1 {
    font: 400 4rem var(--font-heading);
    text-align: center;
    color: #1A1A1A;
    line-height: 1.2;
}

.hero-content-wrp p {
    font: 400 1.25rem var(--font-body);
    text-align: center;
    color: #5B5B5B;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    --v-offset: 80px;
    --curve-height: 150px;
}

.carousel-wrapper:before,
.carousel-wrapper:after {
    content: "";
    display: block;
    background: #fff;
    width: calc(100% + 2 * var(--v-offset));
    height: var(--curve-height);
    position: absolute;
    border-radius: 50%;
    left: calc(-1 * var(--v-offset));
    right: calc(-1 * var(--v-offset));
    z-index: 1;
    pointer-events: none;
}

.carousel-wrapper:before {
    top: calc(-0.6 * var(--curve-height));
}

.carousel-wrapper:after {
    bottom: calc(-0.6 * var(--curve-height));
}

.carousel-track {
    display: flex;
    gap: 8px;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 344px;
    width: 344px;
    height: 464px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

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

.controls {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 14px 28px;
    font-size: 16px;
    border: 2px solid #333;
    border-radius: 50px;
    background: #fff;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

button:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
}

.slide-counter {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 50px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bbb;
}

.dot.active {
    background: #333;
    transform: scale(1.3);
}

.nav-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    font-size: 20px;
}

@media screen and (max-width: 360px) {
    .hero-content-wrp {
        gap: 1rem;
        padding: 0.5rem;
    }

    .hero-content-wrp h1 {
        font: 400 2rem var(--font-heading);
    }

    .hero-content-wrp p {
        font: 400 1rem var(--font-body);

    }

    .hero-lines-two {
        display: none;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .hero-content-wrp {
        gap: 1rem;
        padding: 0.5rem;
    }

    .hero-content-wrp h1 {
        font: 400 2rem var(--font-heading);
    }

    .hero-content-wrp p {
        font: 400 1rem var(--font-body);

    }

    .hero-lines-two {
        display: none;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .hero-content-wrp {
        gap: 1rem;
        padding: 0.5rem;
    }

    .hero-content-wrp h1 {
        font: 400 2rem var(--font-heading);
    }

    .hero-content-wrp p {
        font: 400 1rem var(--font-body);

    }

    .hero-lines-two {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .hero-content-wrp h1 {
        font: 400 3rem var(--font-heading);
    }
}

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

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


/* Hero Section Style End */


/* About Section Style Start  */
.swiper-slide {
    background: unset !important;
}

.showrooms {
    padding: 1rem;
}

.about {
    padding: 1rem 0 5rem 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-contents {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 820px;
    gap: 1rem;
}

.about-contents h2 {
    font: 600 2.75rem var(--font-heading);
    color: var(--primary-golden-color);
}

.about-contents p {
    font: 400 1rem var(--font-body);
    color: var(--secondary-text);
    line-height: 1.5;
}

.Know-btn {
    position: relative;
    text-decoration: none;
    padding: 1rem 2rem;
    display: inline-block;
    cursor: pointer;
    border-radius: 2rem;
    transition: all 0.3s;
    border: none;
    font: 500 1rem var(--font-body);
    color: #fff;
    background: var(--primary-golden-color);
    width: fit-content;
}

.Know-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.Know-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.Know-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.Know-btn::after {
    background: var(--primary-golden-color);
}

.Know-btn:hover::after {
    transform: scaleX(1.2) scaleY(1.4);
    opacity: 0;
}

@media screen and (max-width: 360px) {
    .about-contents h2 {
        font: 600 1.75rem var(--font-heading);
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .about-contents h2 {
        font: 600 1.75rem var(--font-heading);
    }
}

/* About Section Style End  */

/* services Section Style Start  */
section.services {
    padding: 3rem 0;
}

.services-wrp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-pints-content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}

.services-title-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-content-wrap h2 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    max-width: 500px;
    width: 100%;
}

.services-content-wrap p {
    font: 500 1rem var(--font-body);
    color: var(--secondary-text);
}

.srvc-icn-wrp {
    box-shadow: 0px 4px 9px 0px #0000000D;
    background: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    min-height: 55px;
}

.point-one {
    display: flex;
    align-items: center;
    gap: 1.3125rem;
    max-width: 345px;
    width: 100%;
}

.point-one h3 {
    font: 600 1.25rem var(--font-heading);

}

/* Mobile - Up to 360px */
@media screen and (max-width: 360px) {
    section.services {
        padding: 2rem 0;
    }

    .services-wrp {
        flex-direction: column;
        gap: 2rem;
    }

    .services-content-wrap {
        gap: 1.5rem;
    }

    .services-content-wrap h2 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .services-content-wrap p {
        font-size: 0.875rem;
    }

    .services-pints-content-wrap {
        gap: 1.5rem 1rem;
    }

    .point-one {
        max-width: 100%;
        gap: 1rem;
    }

    .point-one h3 {
        font-size: 1rem;
    }

    .srvc-icn-wrp {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    .services-section-image-wrp {
        display: none;
    }
}

/* Mobile - 360px to 559px */
@media screen and (min-width: 360px) and (max-width: 559px) {
    section.services {
        padding: 2rem 0;
    }

    .services-wrp {
        flex-direction: column;
        gap: 2rem;
    }

    .services-content-wrap {
        gap: 1.5rem;
    }

    .services-content-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .services-content-wrap p {
        font-size: 0.9375rem;
    }

    .services-pints-content-wrap {
        gap: 1.5rem 1.5rem;
    }

    .point-one {
        max-width: 100%;
        gap: 1rem;
    }

    .point-one h3 {
        font-size: 1.0625rem;
    }

    .srvc-icn-wrp {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    .services-section-image-wrp {
        display: none;
    }
}

/* Tablet - 560px to 768px */
@media screen and (min-width: 560px) and (max-width: 768px) {
    section.services {
        padding: 2.5rem 0;
    }

    .services-wrp {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .services-content-wrap h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .services-pints-content-wrap {
        gap: 1.5rem 2rem;
    }

    .point-one {
        max-width: calc(50% - 1rem);
    }

    .point-one h3 {
        font-size: 1.125rem;
    }

    .services-section-image-wrp {
        display: none;
    }
}

/* Tablet - 769px to 991px */
@media screen and (min-width: 769px) and (max-width: 991px) {
    section.services {
        padding: 2.5rem 0;
    }

    .services-wrp {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .services-content-wrap h2 {
        font-size: 2.25rem;
    }

    .services-pints-content-wrap {
        gap: 2rem 3rem;
    }

    .point-one {
        max-width: calc(50% - 1.5rem);
    }

    .services-section-image-wrp {
        display: none;
    }
}

/* Desktop Small - 992px to 1200px */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .services-wrp {
        gap: 2rem;
    }

    .services-content-wrap {
        flex: 1;
    }

    .services-content-wrap h2 {
        font-size: 2.25rem;
    }

    .services-pints-content-wrap {
        gap: 1.5rem 2.5rem;
    }

    .point-one {
        max-width: calc(50% - 1.25rem);
    }

    .services-section-image-wrp {
        flex: 1;
        max-width: 450px;
    }
}

/* Desktop Medium - 1201px to 1400px */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .services-wrp {
        gap: 3rem;
    }

    .services-content-wrap {
        flex: 1;
    }

    .services-pints-content-wrap {
        gap: 1rem 0rem;
    }

    .services-section-image-wrp {
        flex: 1;
        max-width: 500px;
    }

    .services-section-image-wrp img {
        width: 100%;
    }
}

/* services Section Style End  */



/* exclusive section style start  */
.exclusive-collections {
    padding: 5rem 0;
}

.exclusive-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 1rem 0;
}

.exclusive-card-wrp {
    display: flex;
}

.exclusive-title-wrap h2 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    max-width: 380px;
    width: 100%;
}

.exclusive-title-wrap p {
    font: 500 1rem var(--font-body);
    color: var(--secondary-text);
    max-width: 330px;
    width: 100%;
    line-height: 1.3;
}

.exclusive-card {
    /* max-width: 324px;
    max-height: 380px;
    min-width: 324px; */
    min-height: 380px;
    position: relative;
    width: 100%;
}

.exclusive-card img {
    width: 100%;
}

.exclusive-card h4 {
    font: 400 1.25rem var(--font-heading);
    color: var(--background);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    bottom: 15%;
}

/* .exclusive-collection-btn {
    color: #fff;
    background: var(--secondary-greenish-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font: 500 1rem var(--font-body);
    width: fit-content;
}

.exclusive-collection-btn:hover {
    color: #fff;
} */


.more-btn {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-greenish-color);
    color: #fff;
    border-radius: 10rem;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font: 500 1rem var(--font-body);
    width: fit-content;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--primary-golden-color);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.more-btn:hover {
    background-color: #000;
}

.more-btn:hover .button__icon-wrapper {
    color: #000;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.more-btn:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.more-btn:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

.more-btn2:hover {
    background-color: var(--primary-golden-color);
}














.exclusive-card-ring {
    background: url("/assets/images/exclusive-collection-01.webp");
    background-repeat: no-repeat;
    background-size: cover;

}

.exclusive-card-bangles {
    background: url("/assets/images/exclusive-collection-02.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.exclusive-card-earrings {
    background: url("/assets/images/exclusive-collection-03.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.exclusive-card-neclace {
    background: url("/assets/images/exclusive-collection-04.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

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

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media screen and (max-width: 360px) {
    .exclusive-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .exclusive-title-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .exclusive-title-wrap p {
        font-size: 0.9375rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .exclusive-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .exclusive-title-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .exclusive-title-wrap p {
        font-size: 0.9375rem;
    }
}

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

@media screen and (min-width: 769px) and (max-width: 991px) {}

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

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

/* exclusive section style End  */

/* diamond-jewellery section style start  */

.diamond-jewellery-wrp {
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.diamond-jewellery-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diamond-jewellery-image {
    max-width: 400px;
    width: 100%;
}

.diamond-jewellery-image img {
    width: 100%;
}

.diamond-jewellery-content h3 {
    max-width: 525px;
    width: 100%;
    font: 400 2.5rem var(--font-heading);
    color: var(--background);
}

.diamond-jewellery-content p {
    font: 400 1.125rem var(--secondary-text);
    color: #D9D9D9;
    width: 400px;
    line-height: 1.3;
}

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

    .diamond-jewellery-wrp {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .diamond-jewellery-image {
        max-width: 100%;
    }

    .diamond-jewellery-content {
        text-align: center;
        padding: 0 1rem;
        align-items: center;
    }

    .diamond-jewellery-content h3 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .diamond-jewellery-content p {
        font-size: 0.875rem;
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .diamond-jewellery-wrp {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .diamond-jewellery-image {
        max-width: 100%;
    }

    .diamond-jewellery-content {
        text-align: center;
        align-items: center;
    }

    .diamond-jewellery-content h3 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .diamond-jewellery-content p {
        font-size: 0.938rem;
        width: 100%;
    }
}

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

    .diamond-jewellery-wrp {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .diamond-jewellery-image {
        max-width: 450px;
    }

    .diamond-jewellery-content {
        text-align: center;
        align-items: center;
    }

    .diamond-jewellery-content h3 {
        font-size: 2rem;
    }

    .diamond-jewellery-content p {
        font-size: 1rem;
        max-width: 450px;
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {

    .diamond-jewellery-wrp {
        gap: 2rem;
        padding: 2rem;
    }

    .diamond-jewellery-image {
        max-width: 350px;
    }

    .diamond-jewellery-content h3 {
        font-size: 2.125rem;
        max-width: 450px;
    }

    .diamond-jewellery-content p {
        width: 350px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .diamond-jewellery-wrp {
        gap: 2rem;
        padding: 2rem;
    }

    .diamond-jewellery-image {
        max-width: 380px;
    }

    .diamond-jewellery-content h3 {
        font-size: 2.25rem;
        max-width: 480px;
    }

    .diamond-jewellery-content p {
        width: 380px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .diamond-jewellery-wrp {
        padding: 2rem;
    }

    .diamond-jewellery-image {
        max-width: 390px;
    }

    .diamond-jewellery-content h3 {
        max-width: 500px;
    }

    .diamond-jewellery-content p {
        width: 390px;
    }
}

/* diamond-jewellery section style End  */


/* Partners Section */
.partners {
    padding: 5rem 1rem;
}

.the--partners-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem 0;
}

.partners h6 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    width: 100%;
    text-align: center;
    margin: 0;
}

.partners p {
    font: 400 1.125rem var(--secondary-text);
    color: var(--secondary-text);
    max-width: 730px;
    line-height: 1.3;
    text-align: center;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.partners-track img {
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    max-width: 150px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .the--partners-wrapper h6 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* partners section end */


/* invest section syle start  */

.invest-wrp {
    background: linear-gradient(270deg, #54BD95 0%, #00A651 100%);
}

.invest {
    overflow: hidden;
}

.invest-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.invest-content h3 {
    max-width: 525px;
    width: 100%;
    font: 400 2.5rem var(--font-heading);
    color: var(--primary-bg);
    text-align: center;
    margin: 0;
}

.invest-content p {
    font: 400 1.125rem var(--secondary-text);
    color: var(--primary-bg);
    width: 330px;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 360px) {
    .invest-content h3 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .invest-content p {
        font-size: 0.938rem;
        width: 100%;
    }

    .invest-content {
        padding: 4rem 1rem;
    }

    .invest-img img {
        display: none;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .invest-content h3 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .invest-content p {
        font-size: 0.938rem;
        width: 100%;
    }

    .invest-content {
        padding: 4rem 1rem;
    }

    .invest-img img {
        display: none;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .invest-content h3 {
        font-size: 2rem;
        max-width: 100%;
    }

    .invest-content p {
        font-size: 1.125rem;
        width: 100%;
    }

    .invest-content {
        padding: 4rem;
    }

    .invest-img {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .invest-img {
        display: none;
    }

    .invest-content {
        padding: 4rem;
    }
}

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

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

/* invest section syle End  */

/* Testimonials section syle start  */

.testimonials {
    padding: 5rem 0;
    background: #F5F5F5;
}

.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-sec-title-card {
    max-width: 437px;
    width: 100%;
}

.testi-crd-content-wrp {
    display: flex;
    gap: 1.375rem;
    flex-direction: column;
}

.testi-crd-content-wrp .sub-txt {
    font: 400 1rem var(--font-body);
    color: var(--secondary-text);
    text-transform: uppercase;
}

.t-title {
    font: 400 3.5rem var(--font-heading);
    color: var(--primary-bg);
    line-height: 1.2;
}

.t-title span {
    font: 800 3.5rem var(--font-heading);
    font-style: italic;
}

.testimonials-card {
    background: #FFFFFF;
    padding: 3.125rem 2rem;
    border-radius: 1.5rem;
    max-width: 412px;
    min-height: 243px;
    width: 100%;
    height: 100%;
}

.testimonials-card-content {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.testimonial {
    font: 400 1.125rem var(--font-body);
    line-height: 1.5;
}

.testimonial-avatar {
    font: 400 1.125rem var(--font-body);
}

.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 360px) {
    .t-title {
        font: 400 1.75rem var(--font-heading);
    }

    .t-title span {
        font: 700 1.75rem var(--font-heading);
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .t-title {
        font: 400 1.75rem var(--font-heading);
    }

    .t-title span {
        font: 700 1.75rem var(--font-heading);
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .t-title {
        font: 400 1.75rem var(--font-heading);
    }

    .t-title span {
        font: 700 1.75rem var(--font-heading);
    }

    .testimonials-card {
        max-width: 340px;
    }
}


@media screen and (min-width: 769px) and (max-width: 991px) {
    .testimonials-card {
        max-width: 340px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .testimonials-card {
        max-width: 340px;
    }

}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .testimonials-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}



/* gallery home section style start*/
.galley-home {
    padding: 5rem 0;
}

.galley-home-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1rem 0;
}

.galley-title-wrap h2 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    max-width: 480px;
    width: 100%;
}




.gallery-container {
    width: 100%;
    margin: 0 auto;
}

.gallery-main .gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.gallery-main .gallery-card {
    color: #252a32;
    border-radius: 1.5rem;
    background: #ffffff;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-main .gallery-card-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.gallery-main .gallery-card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 360px) {
    .galley-home-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .galley-title-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
        margin: 0 0 0.5rem 0;
    }

    .gallery-main .gallery-card {
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .galley-home-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .galley-title-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
        margin: 0 0 0.5rem 0;
    }

    .gallery-main .gallery-card {
        width: 100%;
    }

}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .galley-home-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .galley-title-wrap h2 {
        font-size: 1.75rem;
        max-width: 100%;
        margin: 0 0 0.5rem 0;
    }

    .gallery-main .gallery-card {
        margin: 0 auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .gallery-main .gallery-container {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .gallery-main .gallery-container {
        gap: 1rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    /* .gallery-main .gallery-container {
        justify-content: center;
    } */
}


/* gallery home section syle end */


.site-footer {
    position: relative;
    padding: 2rem 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 11%;
    background: linear-gradient(90deg, #54BD95 -0.55%, #00A651 22.86%, #D4AF37 48.36%, #4A4A4A 73.33%, #D4AF37 99.34%);
    z-index: 0;
}



.footer-contents-wrp {
    display: flex;
    /* gap: 4rem; */
    z-index: 2;
    position: relative;
    padding: 3rem 0;
    justify-content: space-between;
}

.footer-right-wrp {
    display: flex;
    width: 100%;
    gap: 3rem;
    justify-content: space-between;
}


.get-in-touch-wrp {
    display: flex;
    max-width: 280px;
    width: 100%;
    flex-direction: column;
    gap: 0.7rem;
}

.get-in-touch-wrp h6 {
    font: 800 2rem var(--font-heading);
    color: var(--primary-text);
}

.get-in-touch-wrp p {
    font: 400 1rem var(--font-body);
    color: var(--font-body);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.contact-title {
    font: 600 1rem var(--font-heading);
    color: var(--primary-text);
    margin: 0 0 1rem;
}

.contact-one-wrp p {
    font: 500 1rem var(--font-body);
    color: var(--font-body);
    margin: 0;
}

.contact-one-wrp {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.contact-colums {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: fit-content;
}

.contact-one-wrp a {
    text-decoration: none;
    color: var(--secondary-text);
    font: 500 1rem var(--font-body);
    color: var(--font-body);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.site-map {
    display: flex;
    gap: 1rem;
}

.sitemap-links {
    display: flex;
    gap: 1.5rem;
}

.site-map-title {
    color: var(--secondary-text);
    font: 600 1rem var(--font-body);
}

.sitemap-links a {
    color: var(--secondary-text);
    font: 500 1rem var(--font-body);
    text-decoration: none;
}

.footer-line {
    background-color: #E2E8F0;
}

.copy-right {
    text-align: center;
    color: var(--secondary-text);
    font: 400 14px var(--font-body);
    z-index: 2;
    position: relative;
}

.copy-right a {
    text-decoration: none;
    color: var(--primary-golden-color);
}

.contact-social-footer {
    gap: 1rem;
}

@media screen and (max-width: 360px) {
    .footer-contents-wrp {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right-wrp {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .site-map {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .sitemap-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .footer-contents-wrp {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right-wrp {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .site-map {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .sitemap-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .footer-contents-wrp {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .footer-right-wrp {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .site-map {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .sitemap-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .footer-contents-wrp {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-right-wrp {
        display: flex;
        gap: 3rem 1.2rem;
        flex-wrap: wrap;
    }

    .site-map {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-right-wrp {
        display: flex;
        width: 100%;
        gap: 0rem;
        justify-content: space-between;
    }
}

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

/* footer style end  */


/* about page style start  */
.about-page-section {
    padding: 120px 0;
}

.page-banner {
    min-height: 550px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-about {
    background: url("/assets/images/AboutUs-banner.webp");
    background-size: cover;
}

.page-title h6 {
    font: 400 2.5rem var(--font-heading);
    color: var(--background);
    max-width: 600px;
    text-align: center;
}

.about-grid-wrp {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.about-grid-left {
    background: #F5F5F5;
    padding: 3.125rem;
    border-radius: 1rem;
    max-width: 575px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.about-grid-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-grid-image {
    border-radius: 1rem;
    overflow: hidden;
}

.about-grid-count-up {
    background: #F5F5F5;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 416px;
    border-radius: 1rem;
    justify-content: center;
}

.about-grid-left h3 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-golden-color);
}

.about-grid-left p {
    font: 400 1rem var(--font-body);
    color: var(--secondary-text);
    line-height: 1.5;
}

.count-up-card {
    max-width: 178px;
    width: 100%;
    background: var(--background);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.count-up-card h3 {
    font: 500 1rem var(--font-heading);
    color: var(--primary-golden-color);
}

.count-value {
    font: 400 1rem var(--font-body);
    color: var(--primary-text);
}

.mission-vission-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.mission-wrp,
.vision-wrp {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.mission-image-wrp::after,
.vision-image-wrp::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000061;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.mission-wrp:hover,
.vision-wrp:hover {
    cursor: pointer;
}

.mission-image-wrp {
    position: relative;
    display: flex;
    max-width: 512px;
    border-radius: 1rem;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.content-floting {
    position: absolute;
    color: #fff;
    white-space: nowrap;
    animation: slide 15s linear infinite;
    font: 600 2rem var(--font-body);
    z-index: 3;
}

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

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

.mission-wrp .content-floting {
    animation-play-state: paused;
}

.mission-wrp:hover .content-floting {
    animation-play-state: running;
}

.vision-wrp .content-floting {
    animation-play-state: paused;
}

.vision-wrp:hover .content-floting {
    animation-play-state: running;
}

.vision-image-wrp {
    position: relative;
    display: flex;
    max-width: 512px;
    border-radius: 1rem;
    overflow: hidden;
    align-items: center;
}

.mission-image-wrp img,
.vision-image-wrp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content-wrp,
.vision-content-wrp {
    max-width: 512px;
    background: #F5F5F5;
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
}

.mission-content-wrp p,
.vision-content-wrp p {
    font: 500 1rem var(--font-body);
    color: var(--secondary-text);
    line-height: 1.5;
    text-wrap-style: pretty;
    margin: 0;
}

.journy-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 5rem 0 2rem;
}

.journy-title h6 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    width: 100%;
    text-align: center;
    margin: 0;
}

.journy-title p {
    font: 400 1.125rem var(--secondary-text);
    color: var(--secondary-text);
    max-width: 730px;
    line-height: 1.3;
    text-align: center;
}

.lulu-gold-showrooms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 0 5rem;
}

.lulu-show-room {
    max-width: 392px;
    height: 390px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
    position: relative;
}

.lulu-show-room::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 76.92%, rgba(255, 255, 255, 0.84) 100%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.lulu-show-room img {
    width: 100%;
}

.show-room-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
    display: flex;
    gap: 0.3rem;
    flex-direction: column;
    padding: 1rem 2.5rem;
    background: linear-gradient(to top, #fff 90%, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0) 92%);
}

.year,
.place-detail {
    font: 400 1rem var(--font-heading);
    color: var(--primary-text);
}

@media screen and (max-width: 360px) {
    .about-grid-wrp {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }

    .about-grid-left h3 {
        font: 600 1.75rem var(--font-heading);
        text-align: center;
    }

    .about-grid-left p {
        text-align: center;
    }

    .about-grid-image {
        display: none;
    }

    .mission-wrp {
        display: flex;
        flex-direction: column;
    }

    .vision-wrp {
        display: flex;
        flex-direction: column-reverse;
    }

    .lulu-gold-showrooms {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .about-grid-wrp {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }

    .about-grid-left h3 {
        font: 600 1.75rem var(--font-heading);
        text-align: center;
    }

    .about-grid-left p {
        text-align: center;
    }

    .about-grid-image {
        display: none;
    }

    .about-grid-count-up {
        max-width: 100%;
    }

    .mission-wrp {
        display: flex;
        flex-direction: column;
    }

    .vision-wrp {
        display: flex;
        flex-direction: column-reverse;
    }

    .lulu-gold-showrooms {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .about-grid-wrp {
        display: flex;
        gap: 2rem;
        align-items: center;
        flex-direction: column;
    }

    .about-grid-left h3 {
        font: 600 1.75rem var(--font-heading);
        text-align: center;
    }

    .about-grid-left p {
        text-align: center;
    }

    .about-grid-image {
        display: none;
    }

    .about-grid-count-up {
        max-width: 100%;
    }

    .mission-wrp {
        display: flex;
        flex-direction: column;
    }

    .vision-wrp {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-grid-left {
        max-width: 100%;
    }

    .mission-image-wrp {
        max-width: 100%;
    }

    .mission-content-wrp,
    .vision-content-wrp {
        max-width: 100%;
    }

    .vision-image-wrp {
        max-width: 100%;
    }

    .lulu-gold-showrooms {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .about-grid-wrp {
        justify-content: center;
        flex-direction: column;
    }

    .about-grid-left {
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .about-grid-image {
        display: none;
    }

    .about-grid-count-up {
        padding: 2rem;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .mission-image-wrp {
        max-width: 100%;
    }

    .mission-content-wrp,
    .vision-content-wrp {
        max-width: 100%;
    }

    .vision-image-wrp {
        max-width: 100%;
    }

    .mission-wrp,
    .vision-wrp {
        position: relative;
        flex-direction: column;
    }

    .show-room-detail {
        padding: 1rem 0.5rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .about-grid-left h3 {
        font: 600 2rem var(--font-heading);
    }

    .show-room-detail {
        padding: 1rem 0.5rem;
    }
}

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

/* about page style end  */



/* brands page style start  */
.pages {
    padding: 5rem 0;
}

.page-banner-brands {
    background: url("/assets/images/Brands-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.pages-title-sec-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pages-title-sec-wrp h6 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    width: 100%;
    text-align: center;
    margin: 0;
    max-width: 800px;
}

.pages-title-sec-wrp p {
    font: 400 1.125rem var(--secondary-text);
    color: var(--secondary-text);
    max-width: 800px;
    line-height: 1.5;
    text-align: center;
}

/* .brands-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.brands-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    background: #F5F5F5;
    box-shadow: 10px 2px 15px 0px #00000040;
    border-radius: 1rem;
    padding: 0 3rem 2rem 3rem;
    gap: 2rem;
} */

.brands-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 1rem;
    max-width: calc(360px * 3 + 1rem * 2);
    margin: 0 auto;
    padding: 3rem 0;
}

.brands-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 360px;
    background: #F5F5F5;
    box-shadow: 10px 2px 15px 0px #00000040;
    border-radius: 1rem;
    padding: 0 3rem 2rem 3rem;
    gap: 1rem;
}

.brands-card-content {
    font: 400 1rem var(--secondary-text);
    color: var(--secondary-text);
    line-height: 1.5;
    text-align: center;
}

.b-img {
    max-width: 170px;
    width: 100%;
}

@media screen and (max-width: 360px) {
    .brands-card {
        width: 100%;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .brands-cards-wrap {
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .brands-card {
        width: 340px;
    }

    .brands-cards-wrap {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .brands-card {
        width: 340px;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .brands-cards-wrap {
        max-width: calc(340px * 2 + 1rem * 1);
    }

    .brands-card {
        width: 340px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .brands-cards-wrap {
        max-width: calc(360px * 2 + 1rem * 1);
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .brands-cards-wrap {
        max-width: calc(360px * 3 + 1rem * 2);
    }
}

/* brands page stle end  */

/* schemes page style start  */
.page-banner-Schemes {
    background: url("/assets/images/Schemes-banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.money-moon-wrp {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.money-moon-contents {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.money-moon-contents-right {
    max-width: 680px;
    display: flex;
    flex-direction: column;
}

.money-moon-contents-right h4 {
    font: 400 2.5rem var(--font-heading);
    color: var(--primary-text);
}

.money-moon-contents-right p {
    font: 400 1.125rem var(--secondary-text);
    color: var(--secondary-text);
    text-wrap-style: pretty;
}

.money-moon-img-wrp img {
    max-width: 301px;
}

.Know-btn-scheme {
    background-color: var(--primary-greenish-color);
}

.Know-btn-scheme::after {
    background: var(--primary-greenish-color);
}

@media screen and (max-width: 360px) {
    .pages {
        padding-bottom: 1rem;
    }

    .pages-title-sec-wrp h6 {
        font: 600 1.75rem var(--font-heading);
    }

    .money-moon-wrp {
        padding: 5rem 0;
        display: flex;
        gap: 3rem;
    }

    .money-moon-contents {
        display: flex;
        flex-direction: column;
    }

    .money-moon-img-wrp {
        display: none;
    }

    .money-moon-contents-right h4 {
        font: 400 1.3rem var(--font-heading);
    }

    .money-moon-contents-right p {
        font: 400 1rem var(--secondary-text);
    }

    .money-moon-contents-right {
        gap: 1rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .pages {
        padding-bottom: 1rem;
    }

    .pages-title-sec-wrp h6 {
        font: 600 1.75rem var(--font-heading);
    }

    .money-moon-wrp {
        padding: 5rem 0;
        display: flex;
        gap: 3rem;
    }

    .money-moon-contents {
        display: flex;
        flex-direction: column;
    }

    .money-moon-img-wrp {
        display: none;
    }

    .money-moon-contents-right h4 {
        font: 400 1.3rem var(--font-heading);
    }

    .money-moon-contents-right p {
        font: 400 1rem var(--secondary-text);
    }

    .money-moon-contents-right {
        gap: 1rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .pages {
        padding-bottom: 1rem;
    }

    .pages-title-sec-wrp h6 {
        font: 600 1.75rem var(--font-heading);
    }

    .money-moon-wrp {
        padding: 5rem 0;
        display: flex;
        gap: 3rem;
    }

    .money-moon-contents {
        display: flex;
        flex-direction: column;
    }

    .money-moon-img-wrp {
        display: none;
    }

    .money-moon-contents-right h4 {
        font: 400 1.5rem var(--font-heading);
    }

    .money-moon-contents-right p {
        font: 400 1rem var(--secondary-text);
    }

    .money-moon-contents-right {
        gap: 1rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .money-moon-img-wrp {
        display: none;
    }

    .money-moon-wrp {
        gap: 3rem;
    }
}

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

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

/* schemes page style End  */

/* contact-us style start  */
.page-banner-contact {
    background: url("/assets/images/Contactus-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-us-wrp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card {
    max-width: 1110px;
    width: 100%;
    background: #0000000A;
    border: 2px solid #0A0D170D;
    backdrop-filter: blur(380px);
    border-radius: 1rem;
    padding: 3rem;
    display: flex;
    gap: 3rem;
}

.contact-right-container img {
    border-radius: 1rem;
}

/* Form Section */

.form-wrapper {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font: 600 1.875rem var(--font-heading);
    color: var(--primary-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.form-subtitle {
    font: 400 1rem var(--font-body);
    color: var(--secondary-text);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-label {
    position: absolute;
    top: 0.8rem;
    left: 1.25rem;
    font: 500 0.95rem var(--font-body);
    color: var(--primary-text);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.25rem;
    z-index: 1;
    margin: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.7rem;
    border-color: transparent;
    border-radius: 5px;
    font: 400 15px var(--font-body);
    color: var(--primary-text);
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus,
.form-textarea:focus,
.form-input.has-content,
.form-textarea.has-content {
    border-color: var(--primary-greenish-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-input:focus+.form-label,
.form-textarea:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label,
.form-textarea:not(:placeholder-shown)+.form-label {
    opacity: 0;
    visibility: hidden;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    color: #fff;
    background: var(--primary-greenish-color);
    border: none;
    padding: 1rem 2rem;
    font: 450 1.25rem var(--font-body);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.the-map-title h6 {
    font: 600 2.5rem var(--font-heading);
    color: var(--primary-text);
    line-height: 1.2;
    width: 100%;
    text-align: center;
    margin: 0;
}

.maps-wrp {
    padding: 0 0 5rem 0;
}

.maps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0;
}

@media screen and (max-width: 360px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-right-container img {
        width: 100%;
    }

    .form-title {
        font: 600 1.5rem var(--font-heading);
    }

    .contact-card {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .maps-wrp {
        padding: 3rem 0 5rem 0;
    }

    .maps {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .maps iframe {
        width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-right-container img {
        width: 100%;
    }

    .form-title {
        font: 600 1.5rem var(--font-heading);
    }

    .contact-card {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .maps-wrp {
        padding: 3rem 0 5rem 0;
    }

    .maps {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .maps iframe {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-right-container img {
        width: 100%;
    }

    .form-title {
        font: 600 1.5rem var(--font-heading);
    }

    .contact-card {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .maps-wrp {
        padding: 3rem 0 5rem 0;
    }

    .maps {
        flex-direction: column;
        padding-bottom: 1rem;
    }

    .maps iframe {
        width: 100%;
    }

    .form-wrapper {
        max-width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .form-wrapper {
        max-width: 100%;
    }

    .contact-card {
        display: flex;
        flex-direction: column;
    }

    .contact-right-container img {
        width: 100%;
    }
}

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

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

/* contact-us style End  */

/* gallery page style start  */
.gallery-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.page-banner-Gallery {
    background: url("/assets/images/Collections-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.page-gallery .pages-title-sec-wrp p {
    max-width: 500px;
}

.container-tab {
    width: 230px;
    aspect-ratio: 4 / 1;
    background: var(--primary-greenish-color);
    border-radius: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 5px;
}

.tab {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0 1rem;
    height: 80%;
    border-radius: 1.5rem;
    cursor: pointer;
    color: #ddd2d2;
    transition: color 0.3s;
    font: 400 14px var(--font-body);
    position: relative;
}

.tab span {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.tab:hover {
    color: #e0e0e0;
}

.tab.on {
    color: #ffffff;
}

.follow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    height: 80%;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.57, -0.01, 0.21, 0.89);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.cursor {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(1rem);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s linear;
    z-index: 9999;
}

.youtube-card {
    color: #252a32;
    border-radius: 1.5rem;
    background: #ffffff;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-video-wr {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.gallery-image,
.gallery-video {
    display: none;
}

.gallery-image.is-active,
.gallery-video.is-active {
    display: block;
}

@media screen and (max-width: 360px) {
    .gallery-video-wr {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .gallery-video-wr {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .gallery-video-wr {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .gallery-video-wr {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .gallery-video-wr {
        gap: 1rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    /* .gallery-main .gallery-container {
        justify-content: center;
    } */

    .gallery-video-wr {
        justify-content: center;
    }
}

/* gallery page style End  */


/* collections page style start  */

.page-Collections .pages-title-sec-wrp p {
    max-width: 690px;
}

.collection-page {
    display: flex;
    gap: 2rem;
    padding: 4rem 0;
    align-items: flex-start;
}

/* Sidebar Styles */
.filter-sidebar {
    width: 295px;
    min-width: 295px;
    background: var(--primary-greenish-color);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-sidebar h2 {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    font: 400 1rem var(--font-body);
    color: var(--background);
}

.filter-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--background);
}

.filter-item label {
    cursor: pointer;
    flex: 1;
    user-select: none;
    font: 400 1rem var(--font-body);
    color: var(--background);
}

.filter-item:hover {
    background: var(--secondary-greenish-color);
}

.clear-filters {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.clear-filters:hover {
    background: #c0392b;
}

.clear-filters:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Main Collection Area */
.collection-main {
    flex: 1;
}

.collection-header {
    margin-bottom: 1rem;
}

.collection-count {
    color: #666;
    font-size: 1rem;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border-radius: 1.5rem;
    background: #ffffff;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-card.hidden {
    display: none;
}

.gallery-card-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.gallery-card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 360px) {
    .collection-page {
        flex-direction: column;
        align-items: center;
    }

    .filter-sidebar {
        width: 295px;
        min-width: 100%;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .collection-page {
        flex-direction: column;
        align-items: center;
    }

    .filter-sidebar {
        width: 295px;
        min-width: 100%;
    }

    .collection-main {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .collection-page {
        flex-direction: column;
        align-items: center;
    }

    .filter-sidebar {
        min-width: 100%;
    }

    .collection-main {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .collection-page {
        flex-direction: column;
        align-items: center;
    }

    .filter-sidebar {
        min-width: 100%;
    }

    .collection-main {
        width: 100%;
    }
}

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

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

/* collection page style End  */

/* blogs section style start  */
.blog-home-wrap {
    padding: 2rem 0;
}

.blog {
    text-decoration: none;
    color: unset;
    transition: color 0.3s ease;
}

.blog-item-title {
    transition: color 0.3s ease;
}

.blog:hover {
    color: var(--primary-golden-color);
}

.blog-item:hover .blog-item-title {
    color: var(--primary-golden-color);
}

.blog-head {
    margin: 0 0 1rem;
}

.blog-home-content {
    display: flex;
    gap: 3.75rem;
}

.blog-card {
    max-width: 690px;
    width: 100%;
}

.blog-image-wrp {
    max-height: 430px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 12px;
}

.blog-card-content-wrp h2 {
    font: 600 1.5rem var(--font-heading);
    max-width: 500px;
    width: 100%;
}

.date-tag-wrp {
    display: flex;
    gap: 0.75rem;
}

.blog-card {
    max-width: 690px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
}

.blog-card-content-wrp {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date,
.tag {
    font: 500 12px var(--font-body);
    padding: 0.3125rem 0.4375rem;
    background: var(--secondary-greenish-color);
    color: #fff;
    border-radius: 0.5rem;
}

.blog-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.aside-heading {
    font: 600 1.75rem var(--font-heading);
    color: #000000;
}

.blog-item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-item-content h3 {
    font: 600 1.25rem var(--font-heading);
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

.blog-home-btn {
    margin: 2.5rem 0 0 0;
}

@media screen and (max-width: 360px) {
    .blog-home-content {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }

    .aside-heading {
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .blog-home-content {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }

    .aside-heading {
        margin-bottom: 1rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .blog-home-content {
        display: flex;
        gap: 2.5rem;
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .blog-home-content {
        display: flex;
        gap: 2.5rem;
        flex-direction: column;
    }

    .aside-heading {
        margin-bottom: 1rem;
    }
}

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

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .blog-home-btn {
        margin: 1.5rem 0 0 0;
    }
}

.tags {
    display: flex;
    gap: 1rem;
}

/* blogs section style end  */
/* blogs page style start  */




a {
    text-decoration: none;
}

.blogs-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 2rem;
    justify-content: center;
}

.blog-small-card {
    display: flex;
    gap: 1rem;
    max-height: 200px;
}

.blog-small-card-content-wrp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 280px;
    padding: 0.5rem 0;
}

.b-small-card-top {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.b-small-card-top h6 {
    font: 600 1.25rem var(--font-heading);
    color: #000000;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-r {
    font: 500 16px var(--font-body);
    color: #000000;
}

.bs-r img {
    width: 25px;
    height: 25px;
}

.blog-small-card-image {
    width: 300px;
    border-radius: 1rem;
    background: #0000001f;
    border: 1px solid rgb(0 0 0 / 27%);
    overflow: hidden;
    backdrop-filter: blur(5.400000095367432px);
    padding: 0.5rem;
}

.blog-small-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem
}

.blog-single-wrp {
    display: flex;
    gap: 3rem;
}

.main-content {
    max-width: 850px;
    width: 100%;
}

.single-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 1.5rem;
}

.main-title {
    font: 600 2.5rem var(--font-heading);
    line-height: 1.2;
}

.featured-image {
    width: 100%;
    max-height: 410px;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.content-text {
    font: 400 1.125rem var(--font-body);
    line-height: 1.5;
    margin-bottom: 20px;
}

.sidebar {
    width: 320px;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 1rem;
    color: #fff;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-cards-wrp {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.sidebar-title {
    font: 700 1.5rem var(--font-body);
    color: #fff;
    margin-bottom: 30px;
}

.sidebar-card-wrp {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
}


.sidebar-card-img-wrp {
    height: 150px;
    max-width: 255px;
    padding: 0.5rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff8a;
    border: 1px solid rgb(0 0 0 / 26%);
    backdrop-filter: blur(5.4px);
    box-sizing: border-box;
}

.sidebar-card-img-wrp img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0.5rem;
}


.sidebar-card-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-card-title h6 {
    font: 500 1rem var(--font-body);
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.sidebar-card-content-wrp {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bs-r-two {
    font: 500 16px var(--font-body);
    color: #fff;
}

.bs-r-two img {
    width: 25px;
    height: 25px;
}

/* Below 360px */
@media screen and (max-width: 360px) {
    .blog-single-wrp {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-content {
        max-width: 100%;
    }

    .single-title {
        margin-bottom: 1rem;
        gap: 6px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .featured-image {
        max-height: 200px;
        margin-bottom: 15px;
        border-radius: 6px;
    }

    .content-text {
        font-size: 0.813rem;
        margin-bottom: 12px;
    }

    .sidebar {
        width: 100%;
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .sidebar-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .sidebar-cards-wrp {
        gap: 1rem;
    }

    .sidebar-card-wrp {
        gap: 0.75rem;
    }

    .sidebar-card-title {
        gap: 0.75rem;
    }

    .sidebar-card-title h6 {
        font-size: 0.875rem;
    }

    .sidebar-card-content-wrp {
        gap: 0.75rem;
    }

    .bs-r-two {
        font-size: 13px;
    }

    .bs-r-two img {
        width: 18px;
        height: 18px;
    }
}

/* 360px - 559px */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .blog-single-wrp {
        flex-direction: column;
        gap: 2rem;
    }

    .main-content {
        max-width: 100%;
    }

    .single-title {
        margin-bottom: 1rem;
        gap: 8px;
    }

    .main-title {
        font-size: 1.75rem;
    }

    .featured-image {
        max-height: 250px;
        margin-bottom: 20px;
        border-radius: 6px;
    }

    .content-text {
        font-size: 0.875rem;
        margin-bottom: 15px;
    }

    .sidebar {
        width: 100%;
        padding: 1.25rem;
    }

    .sidebar-title {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .sidebar-cards-wrp {
        gap: 1.25rem;
    }

    .sidebar-card-title h6 {
        font-size: 0.938rem;
    }

    .bs-r-two {
        font-size: 14px;
    }

    .bs-r-two img {
        width: 20px;
        height: 20px;
    }
}

/* 560px - 768px */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .blog-single-wrp {
        flex-direction: column;
        gap: 2.5rem;
    }

    .main-content {
        max-width: 100%;
    }

    .single-title {
        margin-bottom: 1.25rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .featured-image {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .content-text {
        font-size: 0.938rem;
        margin-bottom: 15px;
    }

    .sidebar {
        width: 100%;
        padding: 1.5rem;
    }

    .sidebar-cards-wrp {
        gap: 1.5rem;
    }
}

/* 769px - 991px */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .blog-single-wrp {
        flex-direction: column;
        gap: 3rem;
    }

    .main-content {
        max-width: 100%;
    }

    .main-title {
        font-size: 2.25rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .sidebar-cards-wrp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 992px - 1200px */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-single-wrp {
        gap: 2rem;
    }

    .main-content {
        max-width: 650px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .sidebar {
        width: 260px;
        padding: 1.5rem;
    }

    .sidebar-title {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .blog-single-wrp {
        gap: 2rem;
    }

    .main-content {
        max-width: 750px;
    }

    .main-title {
        font-size: 3rem;
    }

    .sidebar {
        width: 280px;
        padding: 1.5rem;
    }
}

/* blogs page style end  */

.page-banner-blog {
    background: url("/assets/images/Collections-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
}
