/* ==========================================
GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ==========================================
ROOT VARIABLES
========================================== */

:root{

    --gold:#d4af37;
    --gold-light:#f5d77b;
    --dark:#0f0f0f;
    --dark-light:#181818;
    --white:#ffffff;
    --gray:#999999;
    --bg:#fafafa;

    --transition:all .3s ease;

}

/* ==========================================
RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    overflow-x:hidden;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

.section-title{

    text-align:center;
    margin-bottom:50px;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    font-weight:700;
    color:#111;

}

/* ==========================================
TOP BAR
========================================== */

.top-bar{

    background:#000;
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar a{

    color:#fff;
    margin-left:20px;

}

.top-bar a:hover{

    color:var(--gold);

}

/* ==========================================
HEADER
========================================== */

.custom-navbar{

    background:#111;
    padding:15px 0;

    box-shadow:
    0 3px 10px rgba(0,0,0,.15);

}

.logo{

    width:100px;
    margin-right:15px;

}

.brand-text h3{

    margin:0;
    color:#fff;

    font-family:
    'Cormorant Garamond',serif;

    font-size:34px;

}

.brand-text small{

    color:var(--gold);

}

.navbar-nav .nav-link{

    color:#fff !important;
    margin-left:20px;
    font-weight:500;

}

.navbar-nav .nav-link:hover{

    color:var(--gold) !important;

}

.dropdown-menu{

    border:none;
    border-radius:10px;

}

.dropdown-item:hover{

    background:var(--gold);
    color:#fff;

}

/* ==========================================
BUTTONS
========================================== */

.btn-gold{

    background:var(--gold);
    color:#fff;
    border:none;

    padding:
    12px 28px;

    border-radius:40px;

    transition:var(--transition);

}

.btn-gold:hover{

    background:#b8921c;
    color:#fff;

    transform:
    translateY(-3px);

}

/* ==========================================
HERO SECTION
========================================== */

.hero-section{

    position:relative;

}

.hero-img{

    width:100%;
    height:90vh;
    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.55));

    z-index:5;

}

.hero-content{

    max-width:600px;
    padding-top:220px;

    color:#fff;

}

.hero-content h1{

    font-family:
    'Cormorant Garamond',serif;

    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;

}

.hero-content p{

    font-size:18px;
    margin-bottom:30px;

}

/* ==========================================
CATEGORY SECTION
========================================== */

.categories{

    background:#fff;

}

.category-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:
    0 4px 20px rgba(0,0,0,.08);

    transition:var(--transition);

}

.category-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);

}

.category-card img{

    height:180px;
    width:100%;
    object-fit:cover;

}

.category-card h6{

    padding:15px;
    margin:0;

    font-weight:600;

}

/* ==========================================
TRUST STRIP
========================================== */

.trust-section{

    background:#111;
    color:#fff;

    padding:30px 0;

}

.trust-section .col-md{

    padding:15px;

    font-weight:500;

}

/* ==========================================
ABOUT SECTION
========================================== */

.about-section{

    background:#fafafa;

}

.about-section h2{

    font-family:
    'Cormorant Garamond',serif;

    font-size:54px;
    margin-bottom:20px;

}

.promise-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}

.promise-box h3{

    margin-bottom:20px;

}

.promise-box li{

    margin-bottom:15px;
    position:relative;
    padding-left:25px;

}

.promise-box li::before{

    content:"✓";

    color:var(--gold);

    position:absolute;
    left:0;

}

/* ==========================================
PRODUCTS
========================================== */

.featured-products{

    background:#fff;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

    transition:var(--transition);

}

.product-card:hover{

    transform:
    translateY(-6px);

}

.product-card img{

    height:320px;
    width:100%;
    object-fit:cover;

}

/* ==========================================
CUSTOM DESIGN CTA
========================================== */

.custom-design-section {
    background: url('../images/custom-design-banner.jpg') center center no-repeat;
    background-size: cover;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    color: #fff;
    overflow: hidden;
}

.custom-design-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.60);
}

.custom-design-section .container {
    z-index: 2;
}

.custom-design-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;

    text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.custom-design-section p {
    max-width: 700px;
    margin: 0 auto 30px;

    font-size: 1.1rem;

    text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.custom-design-section h2{

    font-family:
    'Cormorant Garamond',serif;

    font-size:56px;
    margin-bottom:20px;

}

/* ==========================================
GALLERY
========================================== */

.gallery-img{

    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:15px;

    transition:var(--transition);

}

.gallery-img:hover{

    transform:scale(1.05);

}

/* ==========================================
APPOINTMENT CTA
========================================== */

.appointment-section{

    background:var(--gold);
    color:#fff;

    text-align:center;

    padding:80px 0;

}

.appointment-section h2{

    font-size:42px;
    margin-bottom:20px;

}

/* ==========================================
TESTIMONIALS
========================================== */

.testimonial-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}

/* ==========================================
CONTACT SECTION
========================================== */

.contact-section{

    background:#fafafa;

}

.contact-section h3{

    margin-bottom:20px;

}

/* ==========================================
FOOTER
========================================== */

.footer{

    background:#0f0f0f;

    color:#fff;

    padding:
    60px 0 30px;

}

.footer h3{

    color:var(--gold);

    margin-bottom:20px;

    font-family:
    'Cormorant Garamond',serif;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:var(--gold);

}

/* ==========================================
MOBILE STICKY NAV
========================================== */

.mobile-nav{

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    background:#111;

    display:flex;

    justify-content:space-around;

    padding:12px 0;

    z-index:999;

    box-shadow:
    0 -3px 10px rgba(0,0,0,.2);

}

.mobile-nav a{

    color:#fff;
    font-size:24px;

}

.mobile-nav a:hover{

    color:var(--gold);

}

/* ==========================================
SWIPER
========================================== */

.swiper-button-next,
.swiper-button-prev{

    color:var(--gold);

}

/* ==========================================
AOS SMOOTH
========================================== */

[data-aos]{

    transition-duration:
    900ms !important;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .hero-content{

        padding-top:150px;

    }

    .hero-content h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .hero-img{

        height:75vh;

    }

    .hero-content{

        text-align:center;
        padding-top:140px;

    }

    .hero-content h1{

        font-size:42px;

    }

    .section-title h2{

        font-size:36px;

    }

    .about-section h2{

        font-size:40px;

    }

    .custom-design-section h2{

        font-size:40px;

    }

    .appointment-section h2{

        font-size:30px;

    }

    .category-card img{

        height:140px;

    }

}

.scroll-top-btn{

    position:fixed;
    right:25px;
    bottom:90px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#d4af37;
    color:#fff;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:999;
}

.scroll-top-btn.show{

    opacity:1;
    visibility:visible;
}

.whatsapp-float{

    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:30px;

    z-index:999;
}

.navbar-scrolled{

    padding-top:8px !important;
    padding-bottom:8px !important;

    background:#000 !important;

    transition:.3s;
}

/* ==========================================
GALLERY PAGE
========================================== */

.gallery-banner{

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/gallery-banner.jpg');

    background-size:cover;
    background-position:center;

}

.gallery-filter{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;

}

.filter-btn{

    border:none;
    padding:12px 25px;

    border-radius:40px;

    background:#f1f1f1;

    cursor:pointer;

    transition:.3s;

}

.filter-btn.active,
.filter-btn:hover{

    background:#d4af37;
    color:#fff;

}

.gallery-card{

    position:relative;
    overflow:hidden;
    border-radius:15px;

}

.gallery-card img{

    width:100%;
    height:320px;
    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:20px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.85));

    color:#fff;

}

.gallery-overlay h5{

    margin:0;

}

/* ==================================
COLLECTION PAGE
================================== */

.collection-banner{

    min-height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

}

.collection-banner h1{

    color:#fff;

    font-size:72px;

    font-family:
    'Cormorant Garamond',
    serif;

}

.collection-banner p{

    color:#fff;

    max-width:700px;
    margin:auto;

    font-size:18px;

}

.product-card{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:
    translateY(-6px);

}

.product-card img{

    width:100%;
    height:320px;

    object-fit:cover;

}

.product-card h6{

    font-weight:600;

    margin-bottom:10px;

}

/* =====================================
PRODUCT DETAILS
===================================== */

.breadcrumb-section{

    background:#f8f8f8;
    padding:15px 0;

}

.product-detail-section{

    padding:70px 0;

}

.main-product-image img{

    width:100%;
    border-radius:20px;

}

.thumbnail-gallery{

    display:flex;
    gap:10px;
    margin-top:15px;

}

.thumb-image{

    width:90px;
    height:90px;

    object-fit:cover;

    cursor:pointer;

    border-radius:10px;

    border:2px solid transparent;

}

.thumb-image:hover{

    border-color:#d4af37;

}

.product-category{

    color:#d4af37;
    font-weight:600;

}

.product-info h1{

    margin:15px 0;

    font-family:
    'Cormorant Garamond',
    serif;

    font-size:48px;

}

.product-meta p{

    margin-bottom:10px;

}

.product-actions{

    margin-top:30px;

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.feature-box{

    background:#fff;

    padding:25px;

    text-align:center;

    border-radius:15px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

}

.enquiry-section{

    background:#fafafa;

    padding:80px 0;

}

.related-products{

    padding:80px 0;

}

/* ==========================================
CONTACT PAGE
========================================== */

.contact-banner{

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/contact-banner.jpg');

    background-size:cover;
    background-position:center;

}

.contact-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

    height:100%;

}

.contact-card i{

    font-size:42px;

    color:#d4af37;

    margin-bottom:15px;

}

.contact-card h4{

    margin-bottom:15px;

}

.contact-card a{

    color:#333;

}

.map-container{

    border-radius:20px;
    overflow:hidden;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}

.rashi-banner {
    background-image: url('assets/images/rashi-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* Dark overlay for better text visibility */
.rashi-banner::before {
    content: '';
    position: absolute;
    inset: 0;
}

.rashi-banner .container {
    z-index: 2;
}

.rashi-banner h1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.rashi-banner p {
    color: #f8f9fa;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
ABOUT PAGE
========================================== */

.about-banner{

    background-color: #d4af37

}

.gold-text{

    color:#d4af37;

    font-weight:600;
    letter-spacing:2px;

    text-transform:uppercase;

}

.about-intro p,
.story-section p{

    line-height:1.9;

}

.story-section{

    background:#fafafa;

}

.why-us-section{

    padding:90px 0;

}

.why-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.why-card:hover{

    transform:
    translateY(-8px);

}

.why-card i{

    font-size:48px;

    color:#d4af37;

    margin-bottom:20px;

}

.why-card h5{

    margin-bottom:15px;

}

.showroom-section{

    background:#fff;

}

/* ==========================================
HOME GALLERY
========================================== */

.gallery-preview{

    background:#fafafa;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.gallery-img{

    width:100%;
    height:300px;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover .gallery-img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:18px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.85));

    color:#fff;

}

.gallery-overlay h6{

    margin:0;

    font-size:16px;
    font-weight:500;

}

/* ==========================================
HOW IT WORKS
========================================== */

.how-it-works-section{

    background:
    linear-gradient(
    rgba(10,10,10,.96),
    rgba(10,10,10,.96)),
    url('../images/process-bg.jpg');

    background-size:cover;
    background-position:center;

    padding:100px 0;

    color:#fff;

    position:relative;

}

.section-subtitle{

    color:#d4af37;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:14px;
    font-weight:600;

}

.how-it-works-section .section-title h2{

    color:#fff;

    margin-top:10px;

}

.how-it-works-section .section-title p{

    color:#cfcfcf;

    max-width:750px;

    margin:auto;

}

.process-row{

    margin-top:70px;

}

.process-card-new{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(212,175,55,.15);

    backdrop-filter:blur(10px);

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    position:relative;

    transition:.4s;

    overflow:hidden;

    height:100%;

}

.process-card-new:hover{

    transform:
    translateY(-10px);

    border-color:#d4af37;

    box-shadow:
    0 15px 40px rgba(212,175,55,.15);

}

.process-number{

    position:absolute;

    top:20px;
    right:20px;

    font-size:60px;

    font-weight:700;

    color:
    rgba(212,175,55,.08);

    line-height:1;

}

.process-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #d4af37,
    #f5d77b);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;

    color:#111;

}

.process-card-new h4{

    margin-bottom:18px;

    color:#fff;

    font-size:24px;

    font-family:
    'Cormorant Garamond',
    serif;

}

.process-card-new p{

    color:#d8d8d8;

    line-height:1.8;

    margin:0;

}

/* connector line */

@media(min-width:992px){

    .process-card-new::after{

        content:'';

        position:absolute;

        top:45px;
        right:-50px;

        width:100px;
        height:2px;

        background:
        linear-gradient(
        to right,
        #d4af37,
        transparent);

    }

    .process-row .col-lg-3:last-child
    .process-card-new::after{

        display:none;

    }

}