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

body {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

p {
    margin-bottom: 0px;
}

:root {

    --black: #000;
    --white: #fff;
    --gold: #9b6b37;
    --light-gold: #df9a51e3;

}


/* section css */
section {
    padding: 50px 0px;
}

@media screen and (max-width: 767px) {
    section{
        padding: 30px
    }
}
/* section css */



/* -------------- top bar css start -------------- */

.top-bar {
    background: linear-gradient(90deg, #9b6b37, #c9985b, #9b6b37);
    min-height: 42px;
    display: flex;
    align-items: center;
}

.top-text {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
}

.top-text strong {
    font-weight: 700;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-social a {
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.top-social a:hover {
    color: #f8e7c8;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.top-links a:hover {
    color: #f8e7c8;
}

.top-links span {
    color: rgba(255, 255, 255, .6);
}

@media (max-width:767px) {

    .top-bar {
        min-height: 40px;
        padding: 8px 0;
    }

    .top-text {
        font-size: 11px;
        line-height: 18px;
    }

}

/* -------------- top bar css ends -------------- */


/* -------------- Navbar css start here -------------- */
.custom-navbar {
    background: #F4E0C7;
    padding: 5px 0;
    transition: .4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.navbar-brand img {
    width: 160px;
}

.navbar-nav {
    gap: 18px;
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: .3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #b27b3d;
}

/* Underline Effect */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #b27b3d;
    transition: .3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    margin-left: .55rem;
    vertical-align: middle;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    padding: 10px;
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f9f3ed;
    color: #b27b3d;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: #222;
    font-size: 20px;
    transition: .3s;
    position: relative;
    text-decoration: none;
}

.nav-icons a:hover {
    color: #b27b3d;
}

.cart span {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #b27b3d;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas {
    width: 300px;
}

.offcanvas-body .nav-link {
    padding: 14px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.navbar-toggler {
    padding: 0;
    border: none;
}

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

@media(max-width:991px) {
    .navbar-brand img {
        width: 100px;
    }

    .nav-icons a {
        font-size: 14px;

    }

}

/* ------------------ end of navbar css here ----------------- */


/*----------------- banner css start------------------ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: url(../img/icon/left-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}

.carousel-control-next-icon {
    background-image: url(../img/icon/right-arrow.png);
}

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

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}


/*--------------------- end of banner css ---------------------- */



/* range section css start here -------------------- */

.explore-range .explore-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.explore-range .explore-head p {
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.explore-range .explore-head h2 {
    color: var(--gold);
    font-weight: 600;
}

.view-btn a {
    display: inline-block;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    transition: .4s ease-in-out;
    font-weight: 600;
}

.view-btn a:hover {
    background: none;
    color: var(--gold);
}



@media screen and (max-width: 767px) {
    .view-btn {
        margin-top: 20px;
    }

    .view-btn a {
        padding: 5px 15px;
        font-size: 14px;
    }

    .explore-range .explore-head {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .explore-range .explore-head p {
        margin-bottom: 5px;
    }
}

/* ----------------------- end of range section css here ----------------------- */




/* ------------------------ about us section start ------------------------ */

.luma-about-section {
    position: relative;
    background: #faf8f2;
    overflow: hidden;
}

.luma-about-image {
    position: relative;
    padding: 20px;
}

.luma-about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 220px 220px 25px 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(50, 60, 30, 0.15);
}

.luma-image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #9aa66a;
    border-radius: 220px 220px 25px 25px;
    left: 0;
    top: 0;
    z-index: 1;
}

.luma-about-badge {
    position: absolute;
    z-index: 4;
    right: -5px;
    bottom: 45px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #edf1df;
    color: #758342;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.luma-about-badge strong {
    display: block;
    color: #30352a;
    font-size: 14px;
    font-weight: 700;
}

.luma-about-badge small {
    display: block;
    color: #85877d;
    font-size: 12px;
    margin-top: 3px;
}

/* CONTENT */

.luma-about-content {
    padding-left: 25px;
}

.luma-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7c8b48;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.luma-section-tag i {
    font-size: 14px;
}

.luma-about-content h2 {
    color: #292d25;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 22px;
}

.luma-about-content h2 span {
    display: block;
    color: #81904e;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.luma-about-content p {
    color: #686b63;
    line-height: 1.8;
    margin-bottom: 15px;
}

.luma-about-content .luma-about-intro {
    color: #464a41;

    line-height: 1.8;
    font-weight: 500;
}

/* FEATURES */

.luma-about-features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.luma-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.luma-feature-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #edf1df;
    color: #78874b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.luma-feature h5 {
    color: #30342c;
    font-size: 15px;
    font-weight: 700;
    margin: 2px 0 5px;
}

.luma-feature p {
    color: #777a71;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* BUTTON */
.luma-about-btn {
    margin-top: 10px;
}

.luma-about-btn a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    background: #78874b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.luma-about-btn a i {
    transition: transform 0.3s ease;
}

.luma-about-btn a:hover {
    background: #5f6d39;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(95, 109, 57, 0.25);
}

.luma-about-btn a:hover i {
    transform: translateX(5px);
}

/* responsive css */

@media screen and (max-width: 991px) {
      .luma-about-section{
        padding: 50px 0px
    }

    .luma-about-content {
        padding-left: 0;
    }

    .luma-about-content h2 {
        font-size: 30px;
    }

    .luma-about-image {
        max-width: 600px;
        margin: auto;
    }
}

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

    .luma-about-image {
        padding: 12px;
        margin-bottom: 30px;
    }

    .luma-about-image img {
        height: 420px;
        border-radius: 180px 180px 20px 20px;
    }

    .luma-image-shape {
        border-radius: 180px 180px 20px 20px;
    }

    .luma-about-badge {
        right: 0;
        bottom: 25px;
        padding: 8px 10px;
    }

    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .luma-about-badge strong {
        font-size: 12px;
    }

    .luma-about-badge small {
        font-size: 10px;
    }

    .luma-about-content h2 {
        font-size: 22px;
    }

    .luma-about-content p {
        font-size: 12px;
        text-align: justify;
    }

    .luma-about-content .luma-about-intro {
        font-size: 14px;
        text-align: justify;
    }

    .luma-about-btn a {
        gap: 8px;
        padding: 10px 15px;
    }
}


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

    .luma-about-image img {
        height: 350px;
    }

    .luma-section-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .luma-about-badge {
        right: -5px;
    }

}

/* responsive css */


/* --------------------- end of about us section css here --------------------- */




/* ----------------------- best seller css start here ----------------------- */

.best-seller {
    background: #f5f2f0;
}


.best-seller .seller-card {
    text-align: center;
    background: #eee4dc;
    padding: 10px;
}

.best-seller .seller-card .best-img {
    background: #F5F4F0;
    margin-bottom: 20px;
}

.best-seller .seller-card .seller-btn a {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 5px 15px;
    font-weight: 600;
    transition: .4s ease-in-out;
}

.best-seller .seller-card .seller-btn a:hover {
    background: var(--gold);
    color: var(--white);

}

.seller-text p {
    margin-bottom: 5px;
}

.seller-text span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: bold;
}

@media screen and (max-width: 991px) {
       .best-seller{
        padding: 50px 0px
    }
    .seller-card {
        margin-bottom: 20px;
    }
}



/* Seller Carousel css start */
.range-theme {
    position: relative;
}

/* Navigation */
.range-theme .owl-nav {
    margin: 0;
}

.range-theme .owl-nav .owl-prev,
.range-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #f7f4ed !important;
    border: 2px solid #a6ad72 !important;
    color: #68733f !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(216, 154, 134, 0.25);
    z-index: 10;
}

/* Previous Button */
.range-theme .owl-nav .owl-prev {
    left: -80px;
}

/* Next Button */
.range-theme .owl-nav .owl-next {
    right: -80px;
}

/* Hover */
.range-theme .owl-nav .owl-prev:hover,
.range-theme .owl-nav .owl-next:hover {
    background: #68733f !important;
    color: #fff !important;
    border-color: #68733f !important;
    box-shadow: 0 12px 28px rgba(76, 87, 43, 0.30);
}

.range-theme .owl-nav button i {
    font-size: 18px;
}

@media screen and (max-width:1400px) {
    .range-theme .owl-nav .owl-prev {
        left: -50px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: -50px;
    }
}

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

    /* Previous Button */
    .range-theme .owl-nav .owl-prev {
        left: -30px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: -30px;
    }
}

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

    .range-theme .owl-nav .owl-prev,
    .range-theme .owl-nav .owl-next {
        width: 30px;
        height: 30px;
    }

    /* Previous Button */
    .range-theme .owl-nav .owl-prev {
        left: 2px;
    }

    /* Next Button */
    .range-theme .owl-nav .owl-next {
        right: 2px;
    }
}

/* Seller Carousel css ends */


/* ----------------------- end of best seller css here ----------------------- */





/* -------------------- testimonial css start here -------------------- */

.testimonial-section {
    padding: 80px 0;
    position: relative;
}

.testimonial-theme {
    padding-bottom: 70px;
    /* Space for arrows */
}

.section-title {
    margin-bottom: 45px;
}

.section-title span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 42px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eadfce;
    transition: .4s;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    font-size: 14px;
    color: var(--light-gold);
    margin-right: 2px;
}

.testimonial-text {
    line-height: 28px;
    color: #555;
    margin-bottom: 25px;
    min-height: 80px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 70px;
    height: 70px;
    border: 3px solid #d8b58c;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;

}

.user-info span {
    font-size: 14px;
    color: #b27b3d;
}

/* responsive css */

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


    .section-title h2 {
        font-size: 34px;
    }

    .testimonial-item {
        padding: 25px;
        margin-bottom: 20px;
    }

}

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


    .section-title h2 {
        font-size: 22px;
    }

    .testimonial-item {
        padding: 22px;

    }

    .testimonial-text {
        font-size: 14px;
        line-height: 26px;
        min-height: auto;
    }

    .user-img {
        width: 60px;
        height: 60px;
    }

    .user-info h5 {
        font-size: 16px;
    }

    .user-info span {
        font-size: 13px;
    }

}



/* Owl Navigation */
.testimonial-theme .owl-nav {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex !important;
    gap: 18px;
}

/* Nav Buttons */
.testimonial-theme .owl-nav button.owl-prev,
.testimonial-theme .owl-nav button.owl-next {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #f7f4ed !important;
    border: 2px solid #a6ad72 !important;
    color: #68733f !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(216, 154, 134, 0.25);
}

/* Hover Effect */
.testimonial-theme .owl-nav button.owl-prev:hover,
.testimonial-theme .owl-nav button.owl-next:hover {
    background: #68733f !important;
    color: #fff !important;
    border-color: #68733f !important;
    box-shadow: 0 12px 28px rgba(76, 87, 43, 0.30);
}

.testimonial-theme .owl-nav button span {
    font-size: 26px;
    line-height: 1;
}

/* -------------------- end of testimonial css here -------------------- */




/* --------------- ceo message section css start here --------------- */

.ceo-message {
    background: #fff;
    padding: 100px 0;
}

.ceo-image {
    text-align: center;
    position: relative;
}

.ceo-image img {
    width: 100%;
    border-radius: 25px;
    border: 5px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.308);
    transition: .5s;

}

.ceo-image:hover img {
    transform: translateY(-10px);
}

.ceo-name {
    margin-top: 25px;
}

.ceo-name h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.ceo-name span {
    color: #c69a1a;
    font-weight: 600;
}


.ceo-content {
    position: relative;
    padding: 60px;
    background: #fafafa;
    border-radius: 25px;
    border-left: 6px solid #c69a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 18px 45px rgba(0, 0, 0, 0.08), 0 35px 70px rgba(198, 154, 26, 0.08);
}


.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 70px;
    color: #072066c5;
}

.ceo-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.ceo-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.signature {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.signature h5 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.signature span {
    color: #c69a1a;
    font-weight: 600;
}

/* responsive css */

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



    .ceo-image img {
        width: 60%;
    }

    .ceo-name {
        margin-bottom: 30px;
    }

    .ceo-name h4 {
        font-size: 24px;
    }

    .ceo-content {
        padding: 20px 15px;
    }


    .ceo-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .quote-icon {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }

    .ceo-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

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

    .ceo-message {
        padding: 50px 0;
    }



    .ceo-name {
        margin-top: 15px;
    }


    .ceo-content {
        padding: 15px 10px;
    }

    .ceo-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .quote-icon {
        font-size: 30px;
        top: 5px;
    }

    .ceo-content p {
        font-size: 14px;
        margin-bottom: 8px;
    }



    .signature {
        margin-top: 10px;
        padding-top: 10px;

    }

    .signature h5 {
        font-size: 24px;
    }

}

@media screen and (max-width: 575px) {
    .ceo-image img {
        width: 100%;
    }
}

/* responsive css */

/* --------------- ceo message section css start here --------------- */




/* ----------------------- why-us css start here ----------------------- */


.luma-why-heading {
    margin-bottom: 20px;
}

.luma-why-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7b894b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.luma-why-tag i {
    font-size: 14px;
}

.luma-why-heading h2 {
    margin: 0 0 18px;
    color: #292d25;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.luma-why-heading h2 span {
    display: inline-block;
    color: #839151;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.luma-why-heading>p {
    max-width: 650px;
    margin: auto;
    color: #70736a;
    font-size: 15px;
    line-height: 1.8;
}


/*why card */

.luma-why-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 35px 32px;
    background: #fafbf6;
    border: 1px solid #e8ebdc;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;

}

/* Top border */

.luma-why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: #81904f;
    transition: width 0.4s ease;
}

.luma-why-card:hover::before {
    width: 100%;
}


/* Card hover */

.luma-why-card:hover {
    background: #ffffff;
    border-color: #dce2c9;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(64, 75, 39, 0.11);
}


/* icon */

.luma-why-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #edf1df;
    color: #78874a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;

    background: #78874a;
    color: #ffffff;
}


/* number */

.luma-why-number {
    position: absolute;
    right: 28px;
    top: 30px;
    color: #754d224d;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

/* card content */

.luma-why-card h4 {
    position: relative;
    color: #30342b;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.luma-why-card p {
    color: #74776e;
    line-height: 1.75;
    margin: 0;
    max-width: 320px;
}




.luma-why-arrow {
    position: absolute;
    right: 28px;
    bottom: 27px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dfe4cf;
    color: #81904f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.luma-why-card:hover .luma-why-arrow {
    background: #81904f;
    border-color: #81904f;
    color: #ffffff;
    transform: translateX(4px);
}

@media screen and (max-width: 1200px) {
     .luma-why-heading h2 {
        font-size: 36px;
    }

}


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

    .luma-why-heading h2 {
        font-size: 32px;
    }

    .luma-why-card {
        min-height: 290px;
    }

}




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

    .luma-why-section {
        padding: 30px 0;
    }

    .luma-why-heading h2 {
        font-size: 22px;
    }

    .luma-why-heading>p {
        font-size: 14px;
    }

    .luma-why-tag {
        font-size: 10px;
        letter-spacing: 1.3px;
    }

    .luma-why-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .luma-why-number {
        right: 22px;
        top: 25px;
        font-size: 24px;
    }

    .luma-why-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .luma-why-card h4 {
        font-size: 18px;
    }
     .luma-why-card p {
        font-size: 12px;
        text-align: justify;
    }


    .luma-why-arrow {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 22px;
    }

}

/* ----------------------- end of why-us css  here ----------------------- */




/* -------------------- footer css start here -------------------- */

.luxury-footer {
    background: #050505;
    color: #ffffff;
    padding: 75px 0 20px;
}


/* footer-logo */

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}


.footer-logo img {
    width: 180px;
    object-fit: contain;
    background: var(--white);
}


.footer-description {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}


/* footer icons */

.footer-social {
    display: flex;
    gap: 12px;
}


.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-gold);
    background: transparent;
    border: 1px solid rgba(223, 154, 81, 0.35);
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-social a:hover {
    color: #ffffff;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}


/* footer heading */

.footer-column h5 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 27px;
    padding-bottom: 11px;
}


.footer-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--gold);
}


/* footer links */

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


.footer-column ul li {
    margin-bottom: 15px;
}


.footer-column ul li a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-column ul li a:hover {
    color: var(--light-gold);
    padding-left: 5px;
}


/* footer contact */

.contact-description {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}


.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}


.contact-row:hover {
    color: var(--light-gold);
}


.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-gold);
    border: 1px solid rgba(223, 154, 81, 0.30);
    font-size: 15px;
    transition: all 0.3s ease;

}


.contact-row:hover .contact-icon {
    color: #ffffff;
    background: var(--gold);
    border-color: var(--gold);
}


/* footer divider */

.footer-divider {
    width: 100%;
    height: 1px;
    margin-top: 55px;
    background: rgba(255, 255, 255, 0.14);
}


/* footer bottom */

.footer-bottom {
    padding-top: 24px;
}


.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}


.footer-policy {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 13px;
}


.footer-policy a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.footer-policy a:hover {
    color: var(--light-gold);
}


.footer-policy span {
    color: var(--gold);
    font-size: 16px;
}


/* responsive css */

@media (max-width: 991px) {
    .luxury-footer {
        padding: 60px 0 20px;
    }

    .footer-brand {
        padding-right: 0;
    }

}

@media (max-width: 767px) {
    .luxury-footer {
        padding: 50px 0 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        margin-top: 15px;
    }

    .footer-column h5 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .footer-column ul li {
        margin-bottom: 13px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-row {
        font-size: 15px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
        margin-top: 12px;
        flex-wrap: wrap;
    }
}


@media (max-width: 575px) {
    .luxury-footer {
        padding-top: 45px;
    }

    .footer-logo img {
        max-width: 165px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-column h5 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 15px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-policy a {
        font-size: 14px;
    }

}


/* ----------------- end of footer css here ---------------- */