/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
}

/* HEADER */
.main-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* FLEX FIX */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 60px;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* BUTTON */
.nav-btn a {
    background: #c9a66b;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
}
/* ================= TOPBAR ================= */
.topbar {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT (Email + Phone) */
.top-left {
    display: flex;
    gap: 20px;
}

/* RIGHT (Social Icons) */
.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.top-right a:hover {
    color: gold;
}

/* ================= HEADER ================= */
.main-header {
    background: #fff;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);

    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
/* LOGO */
.logo h2 {
    font-family: 'Playfair Display', serif;
}

/* NAV */

.nav-menu a {
    position: relative;
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* smooth underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #c9a66b;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}/* BUTTON */
.btn-quote {
    background: gold;
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
}

.btn-quote:hover {
    background: orange;
}

/* ================= HERO ================= */

/* HERO SECTION */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

    background: url('https://images.unsplash.com/photo-1618220179428-22790b461013') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: heroZoom 8s ease-in-out infinite alternate;
}

/* subtle zoom animation */
@keyframes heroZoom {
    0% {
        background-size: 105%;
    }

    100% {
        background-size: 120%;
    }
}
/* MARBLE OVERLAY (नीचे रहेगा) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        url("https://www.transparenttextures.com/patterns/marble.png"),
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));

    background-size: 300px, cover;
    opacity: 0.3;

    z-index: 1;
}

/* DARK OVERLAY (ऊपर रहेगा) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    z-index: 2;
}

/* CONTENT  */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

/* HEADING */
.hero-text{
    position: relative;
    z-index: 5;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.hero-text h1{
    color:#ffffff;
    font-size:70px;
    font-family:'Playfair Display', serif;
    font-weight:700;
    margin-bottom:20px;
    text-shadow:0 4px 20px rgba(0,0,0,0.8);
}

.hero-text h3{
    color:#ffffff;
    font-size:24px;
    letter-spacing:2px;
    margin-bottom:20px;
    text-shadow:0 3px 10px rgba(0,0,0,0.8);
}

.hero-text p{
    color:#ffffff;
    font-size:20px;
    margin-bottom:30px;
    text-shadow:0 3px 10px rgba(0,0,0,0.8);
}
  
/* SUBTEXT */
.hero-content p {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 30px;

    animation: fadeUp 1.5s ease;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f5d77a);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

/* GOLD BUTTON */
.btn-primary {
    background: linear-gradient(45deg, #c9a66b, #a67c52);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* OUTLINE BUTTON */
.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}
/* ================= MATERIAL SECTION ================= */
.materials,
.stones,
.projects,
.about {
    background: #fff;
    color: #000;
}

.materials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* GRID */
.material-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.material-card {
    text-decoration: none;
    color: white;
    text-align: center;
}

.material-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.material-card h3 {
    margin-top: 10px;
    color: #ccc;
}

.material-card:hover h3 {
    color: gold;
}

/* PREMIUM BUTTON */
.cta a {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    letter-spacing: 2px;
    transition: 0.4s;
}

.cta a:hover {
    background: #d4af37;
    color: black;
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
    border: 1px solid #d4af37;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.hero .btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: black;
    background: #d4af37; /* GOLD */

    text-decoration: none;
    border-radius: 2px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

/* HOVER */
.hero .btn:hover {
    background: #f5e6a3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.6);
}

/* GOLD FILL ANIMATION */
.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #d4af37;
    z-index: -1;
    transition: 0.4s ease;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.material-card {
    text-decoration: none;
    color: white;
    text-align: center;
}

.material-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.material-card h3 {
    color: #ccc;
    transition: 0.3s;
}

/* ===== MATERIALS SECTION FIX ===== */

.materials {
    text-align: center;
    padding: 60px 20px;
    background: #000;
}

.materials h4 {
    color: #ccc;
    letter-spacing: 2px;
}

.materials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* GRID */
.material-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    text-decoration: none;
    color: white;
}

/* IMAGE */
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* TEXT BELOW IMAGE */
.card p {
    margin-top: 10px;
    font-size: 16px;
}

/* HOVER */
.card:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

.card:hover p {
    color: gold;
}

/* MOBILE */
@media(max-width: 768px) {
    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 👇 TEXT IMAGE KE NICHE */
.material-card h3 {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* HOVER EFFECT */
.material-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}

.material-card:hover h3 {
    color: #d4af37;
}

.btn:hover {
    color: black;
}

/* ✅ TEXT BELOW IMAGE */
.material-card h3 {
    position: static !important;
    margin-top: 12px !important;
    color: white !important;
    font-size: 18px !important;
}
/* ABOUT */
.about{
  display:flex;
  padding:40px;
  gap:50px;
}

.about img{width:100%;}
.about-text h4{color:#c8a96a;}
.about-text h2{font-size:40px;}

/* MATERIALS */
.materials{
  background:black;
  color:white;
  text-align:center;
  padding:60px;
}

.material-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:15px;
  margin-top:30px;
}

.mat{
  position:relative;
}

.mat img{width:100%; height:180px; object-fit:cover;}
.mat span{
  position:absolute;
  bottom:10px;
  left:10px;
}

/* PROJECTS */
.projects{
  padding:60px;
  text-align:center;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  margin-top:30px;
}

.project-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* SERVICES */
.services{
  background:black;
  color:#c8a96a;
  display:flex;
  justify-content:space-around;
  padding:50px;
}

.service{text-align:center;}

/* QUOTE */

#quote {
      background: #eaeaea;
    color: #000 !important;
    text-align: center;
    padding:25px 20px;
}

#quote h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.cta-btn {
    display: inline-block;
    background: gold;
    color: black;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

.cta-btn:hover {
    background: orange;
}

quote {
    background: linear-gradient(to right, #ffffff, #f8f8f8);
}
/* FOOTER */
footer{
  background:black;
  color:white;
  padding:40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:green;
  color:white;
  padding:15px;
  border-radius:50%;
}

/* SAFE CTA FIX */
.cta-fix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

/* TEXT FIX */
.cta-fix h2 {
    font-size: 28px;
    margin: 0;
}

/* BUTTON FIX */
.cta-btn {
    padding: 10px 20px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #d4af37;
    color: black;
}
@media(max-width: 768px) {
    .cta-fix {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #25D366;
    color: white;

    font-size: 24px;
    padding: 15px;

    border-radius: 50%;
    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* 🔥 FORCE FIX START */

.material-card {
    position: static !important;
    display: block !important;
    text-align: center !important;
}

.material-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block !important;
}

/* ✅ TEXT BELOW IMAGE */
.material-card h3 {
    position: static !important;
    margin-top: 12px !important;
    color: white !important;
    font-size: 18px !important;
}

/* ===== PREMIUM MATERIAL CARD ===== */

.card {
    text-decoration: none;
    color: white;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.4s ease;
}

/* IMAGE */
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* TEXT */
.card p {
    margin-top: 12px;
    font-size: 17px;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* 🔥 HOVER EFFECT (Premium Zoom + Dark Overlay) */
.card:hover img {
    transform: scale(1.12);
    filter: brightness(70%);
}

/* GOLD TEXT */
.card:hover p {
    color: #d4af37;
}

/* ✨ GLOW BORDER */
.card:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* 🔥 CLICK PRESS EFFECT */
.card:active {
    transform: scale(0.96);

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Scroll Effect */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* FLEX */
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* LOGO */
.logo h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
}

/* NAV */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

/* Hover underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #c9a66b;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BUTTON */
.nav-btn a {
    background: linear-gradient(45deg, #c9a66b, #a67c52);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.nav-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }
}
/* ===== LUXURY HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

/* Scroll effect */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
    height: 60px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* MENU */
.nav-menu a {
    position: relative;
    font-weight: 500;
    color: #222;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* GOLD UNDERLINE EFFECT */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: linear-gradient(90deg, #c9a66b, #a67c52);
    transition: 0.4s;
}

.nav-menu a:hover {
    color: #c9a66b;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BUTTON (LUXURY GOLD) */
.nav-btn a {
    background: linear-gradient(45deg, #c9a66b, #a67c52);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* TOP BAR IMPROVE */
.top-bar {
    background: #000;
    font-size: 13px;
    letter-spacing: 0.5px;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

