* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #F8F8F8;
    --charcoal: #1C1C1C;
    --gold: #C6A75E;
    --grey: #EDEDED;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
}




.brands{
    text-align:center;
    padding:60px 20px;
}

.brands h2{
    font-size:36px;
    font-weight:700;
}

.brand-box span{
    display:inline-block;
    margin:10px;
    padding:12px 25px;
    background:#FDA12B;
    color:#fff;
    font-weight:600;
    border-radius:30px;
}
.navbar-brand{
    font-size: 31px !important;
    
  font-family: "Playfair Display", serif !important;
}




















h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}
.hero-btns {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.hero-btns .box1{
 width: 150px;
 height: 150px;
}
.hero-btns .box2{
 width: 150px;
 height: 150px;
}
.hero-btns .box3{
 width: 150px;
 height: 150px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--grey);
}

.center { text-align: center; }

/* Navbar */
#navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    /* padding:25px 0; */
    transition:0.3s;
    font-size: 21px
}

#navbar.scrolled{
    background:white;
    padding:12px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size:30px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-link  {
    display: flex;
    list-style: none;
}

.nav-link  li { margin-left: 30px; }

.nav-link  a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

#navbar.scrolled .nav-link  a { color: var(--charcoal); }
.nav-link  a:hover { color: var(--gold) !important; }

/* Hero Section */
/* .hero {
    height: 100vh;
   background-image: url('../img/hro.png');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
    margin-top: -10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
} */

.hero-img{
    height:100vh;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
    padding: 20% 0%;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
}

.hero-content h1{
    font-size:60px;
    font-weight:700;
}




/* Buttons */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
    display: inline-block;
    margin: 0 10px;
}

.btn-gold {
    background: var(--gold);
    color: white;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-gold:hover { background: #b09452; }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.center.section-title::after { left: 50%; transform: translateX(-50%); }

.about-text p { margin-bottom: 20px; }

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.card:hover img { transform: scale(1.1); }
.card:hover .card-overlay { opacity: 1; }

.btn-sm {
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--gold);
    border: none;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0; width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* CTA */
.cta {
    background: var(--charcoal);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta p { margin-bottom: 30px; opacity: 0.8; }

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

footer h4 { margin-bottom: 20px; color: var(--gold); }
.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .collection-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
     .nav-link  { display: none; } /* Mobile menu toggle would go here */
    .collection-grid, .features-grid, .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

#topBtn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: black;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    display: none;
}

#topBtn:hover{
    background: #444;
}









   /* =======  =====    ==== =          product============= */
.tiles-hero {
    background: url(../img/unnamed.jpg) center / cover no-repeat;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: -90px;
}

.tiles-hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.tiles-hero-content{
    position:relative;
    z-index:2;
}

.tiles-hero h1{
    font-size:48px;
}

.section {
    padding: 36px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 27px;
}

/* TILE CARD */
.tile-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.tile-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.tile-info{
    padding:20px;
}

.tile-info h5{
    font-weight:600;
}

.tile-info p{
    font-size:14px;
    color:#666;
}

.tile-card:hover{
    transform:translateY(-8px);
    
}

/* BUTTON */
.btn-gold{
    background:#c5a047;
    color:#fff;
    padding:8px 20px;
    border:none;
    font-size:14px;
    letter-spacing:1px;
}

.btn-gold:hover{
    background:#a8822e;
}



.marble-features {
    background: #f5f3ef;
    padding: 80px 0;
    font-family: 'Playfair Display', serif;
}

.container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1 1 220px;
    text-align: center;
    padding: 30px 20px;
    transition: 0.4s ease;
}

.feature-box h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #222;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.icon {
    font-size: 28px;
    color: #b89b5e;
    margin-bottom: 10px;
}

.highlight {
    /* border-left: 2px solid #b89b5e; */
    border-right: 2px solid #b89b5e;
}

.feature-box:hover {
    transform: translateY(-8px);
}
.contact-section {
    padding: 17px 0;
    background: #0f2c4c;
    color: #fff;
}
.container {
    width: 90%;
    margin: auto;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #f4c430;
}

.tagline {
    margin-bottom: 30px;
    font-size: 16px;
    opacity: 0.8;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: #f4c430;
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
}
a.btn.btn-gold {
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
a.btn.btn-outline {
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
/* Responsive */
@media(max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

.dropdown-container {
    /* position: relative; */
    width: 237px;
    /* height: 100px; */
    /* padding: 20px; */
    ;
}
.dropdown-container a {
    display: block;
    /* padding: 10px 20px; */
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.linav{
    list-style: none;
}
.linav:hover .dropdown{
    display: block;
}



@media (max-width:1024px){

.hero h1{
font-size:48px;
}

.section{
padding:70px 20px;
}

.marble-features .container{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.contact-map iframe{
width:100%;
height:400px;
}

}@media (max-width:1024px){

.hero h1{
font-size:48px;
}

.section{
padding:70px 20px;
}

.marble-features .container{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.contact-map iframe{
width:100%;
height:400px;
}

}

@media (max-width:768px){

.hero h1{
font-size:36px;
}

.about-grid{
text-align:center;
}

.about-img{
margin-bottom:30px;
}

.marble-features .container{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.card{
margin-bottom:25px;
}

.contact-wrapper{
flex-direction:column;
}

.contact-map iframe{
width:100%;
height:350px;
}
nav{
    position: relative;
    z-index: 999999999;
    /* color: #000; */
    background: #c6a75e;
}
}


@media (max-width:420px){

.hero h1{
font-size:28px;
}

.hero p{
font-size:14px;
}

.section{
padding:50px 15px;
}

.card img{
height:200px;
object-fit:cover;
}

.contact-wrapper{
flex-direction:column;
}

.contact-map iframe{
width:100%;
height:300px;
}

}



@media (max-width:320px){

.navbar-brand{
font-size:16px;
}

.hero h1{
font-size:24px;
line-height:1.3;
}

.hero p{
font-size:12px;
}

.hero-btns a{
margin:10px auto;
width:80%;
}

.section-title{
font-size:22px;
}

.contact-map iframe{
width:100%;
height:250px;
}

}


/* =====================================================bath================================= */




.bath-hero {
    background: url("../img/bathroom.jpg") center / cover no-repeat;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    margin-top: -90px;
}

.bath-hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.bath-hero-content{
    position:relative;
    z-index:2;
}

.bath-hero h1{
    font-size:48px;
}


.tile1-card{
    width: 100%;
    height: 70%;
    background-color: #cdcdcd28;
    /* border:2px solid #a8822e ; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
    transition:0.4s;
}
.tile1-card:hover{
    transform:translateY(-8px);
}
.collec{
    text-decoration: none;
    font-size: 20px !important;
    color: #b09452;
    text-transform:uppercase ;
    font-weight: 800;
}
.owl-carousel .item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.owl-carousel .item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

/* overlay */
.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.4s;
}

.overlay h4{
    color:white;
    font-size:22px;
    letter-spacing:1px;
}

.item:hover img{
    transform:scale(1.1);
}

.item:hover .overlay{
    opacity:1;
}
