body {
    background: url('marble/statuario.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
 /* Default desktop background */
.quartz-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: url('marble/Black-marble.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .quartz-section::before {
      background: url('marble/Black-marble-mobile.jpg') no-repeat center center;
      background-size: cover;
      opacity: 0.08; /* Reduce intensity slightly for clarity */
    }
  }
  
  /* New Secttion added` */
  .lux-marquee {
  background: #111;
  color: white;
  padding: 8px 20px;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid #444;
}

  /* ========== Luxurious Scroll Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.lux-image {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1.5s ease;
}

.lux-image.visible {
  opacity: 1;
  transform: scale(1);
}

.btn {
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lux-card {
  transition: all 0.5s ease;
  transform: scale(0.98);
}

.lux-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif; /* Change Arial to Lora */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

body, p, a, span, li, button {
    font-family: 'Lora', serif;
    font-weight: 400;
}


/* Top Bar */
.top-bar {
    background-color: #ba2323;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    cursor: pointer;
}


/* Navbar */
.navbar {
    background-color: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative; /* Ensures dropdown positioning */
    z-index: 1000; /* Keeps navbar above everything */
}

.logo img {
    height: 35px;
}
.nav-links a,
.nav-links a:visited {
    color: white; /* or whatever color you prefer */
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.btn, .nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
}


.nav-links a:hover {
    color: rgb(255, 255, 255);
}



/* Navbar Styling */


/* Dropdown Menu */
.dropdown {
    position: relative; /* Required for absolute positioning inside */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Ensures dropdown appears below the navbar */
    left: 0;
    min-width: 200px;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    z-index: 999; /* Places dropdown below navbar */
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: red;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Modal (Enquiry Form) Fix */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Keeps background slightly visible */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it's above everything */
}

/* Modal Content */
/* Ensure Hero Section is Behind */
.hero {
    position: relative;
    z-index: 1; /* Keeps it behind modal */
}

/* Modal (Enquiry Form) Fix */
.modal {
    display: none;
    position: fixed; /* Keeps it on top of everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for better visibility */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures modal stays above everything */
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 10000; /* Keeps it above hero section */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001; /* Ensures button stays clickable */
}


/* Ensure Hero Section Stays Behind */
.hero {
    position: relative;
    z-index: 1; /* Keeps hero section behind the modal */
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.row {
    display: flex;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background: #d9534f;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: relative;
  z-index: 3;
  color: white;
  padding: 0;
  border-radius: 0;
  background: none; /* ✅ No background */
}


.overlay h1 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: red;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  position: relative;
  z-index: 4;
}

/* Dots for Navigation */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
  background: red;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
}
/* New Secttion added` */
.overlay {
  position: relative;
  z-index: 2;
}
.overlay h1 {
  font-size: 60px;
  margin-bottom: 10px;
}
.overlay p {
  font-size: 20px;
  color: #e0e0e0;
  margin-top: 0;
}


/* Company Section Styling */
@keyframes bookOpen {
    0% {
      opacity: 0;
      transform: perspective(800px) rotateY(-90deg);
    }
    100% {
      opacity: 1;
      transform: perspective(800px) rotateY(0deg);
    }
  }
  
  
.company-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background: #fff;
}

.company-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    gap: 50px;

    /* Initial State */
    opacity: 0;
    transform: perspective(800px) rotateY(-90deg);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transform-origin: left;
}

.company-container.visible {
    animation: bookOpen 1s ease forwards;
}


/* When scrolled into view */
.company-container.visible {
    animation: rollIn 1s ease forwards;
}

/* Image Styling */
.company-image img {
    width: 500px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Content Styling */
.company-content {
    max-width: 500px;
    font-family: "Poppins", sans-serif;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 50px; /* Adjust based on logo size */
    height: auto;
}

.company-title {
    font-size: 36px;
    font-weight: bold;
    color: #111;
    position: relative;
}

.company-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 40px;
    height: 3px;
    background: red;
}

.company-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 3px;
    background: red;
}

.company-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Call-to-Action Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: red;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: darkred;
    transform: scale(1.05);
}

/* Animation Active Class */
.company-section.visible .company-container {
    opacity: 1;
    transform: translateX(0);
}

/* Marble Collections Section */
.marble-collections {
    background: url('marble/statuario.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Section Title Styling */
.section-title {
    font-size: 36px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title .title-border {
    position: relative;
    padding-bottom: 10px;
}

.section-title .title-border::before,
.section-title .title-border::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: red;
    top: 50%;
}

.section-title .title-border::before { left: -50px; }
.section-title .title-border::after { right: -50px; }

/* Marble Collections Section */
.marble-collections {
    background: url('marble/statuario.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .marble-collections::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85); /* Softer overlay */
    z-index: 1;
  }
  
  .marble-collections .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
  }

  
  
  /* Section Title Styling */
  .section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
    position: relative;
  }
  
  .section-title .title-border::before,
  .section-title .title-border::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: red;
    top: 50%;
  }
  
  .section-title .title-border::before {
    left: -60px;
  }
  .section-title .title-border::after {
    right: -60px;
  }
  
  /* Tabs */
  .marble-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 12px;
  }
  
  .tab {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 16px;
    transition: all 0.3s ease;
  }
  
  .tab.active {
    color: red;
    border-bottom: 2px solid red;
  }
  
  /* Content Area */
  .marble-content {
    display: none;
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  .marble-content.active {
    display: block;
  }
  
  /* Grid Carousel */
  .carousel {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .marble-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  
  .marble-grid::-webkit-scrollbar {
    display: none;
  }
  
  .marble-item {
    min-width: 260px;
    max-width: 300px;
    flex: 0 0 auto;
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .marble-item:hover {
    transform: translateY(-5px);
  }
  
  .marble-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .marble-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
  }
  
  /* Carousel Arrows */
  .prev, .next {
    background: none;
    border: none;
    font-size: 26px;
    color: #444;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
  }
  
  .prev:hover, .next:hover {
    color: red;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .section-title {
      font-size: 30px;
    }
  
    .marble-item {
      min-width: 80%;
    }
  
    .marble-item img {
      height: 220px;
    }
  
    .marble-tabs {
      gap: 15px;
      flex-wrap: wrap;
    }
  }
/* Progress Bar Styling */
.progress-bar {
    height: 4px;
    width: 0%;
    background: red;
    transition: width 4s linear;
    border-radius: 5px;
    margin-top: 8px;
  }
  
  /* Animate progress */
  .progress-bar.animate {
    width: 100%;
  }
    
/* Quartz Section */
@keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .quartz-image,
.quartz-text {
  animation-play-state: paused;
}

  .quartz-image {
    animation: slideInLeft 1.2s ease forwards;
  }
  
  .quartz-text {
    animation: fadeInRight 1.2s ease forwards;
    animation-delay: 0.2s;
  }
  
.quartz-section {
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    padding: 60px 0;
    overflow: hidden; /* Ensure background stays inside */
}

.quartz-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: url('marble/Black-marble.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1; /* Make it subtle */
    z-index: 0;
    pointer-events: none; /* Allow clicks through it */
}

.quartz-wrapper {
    position: relative;
    z-index: 1; /* Ensure content sits above background */
}

.quartz-container {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 40px;
}


.quartz-image {
    width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .quartz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures crop & fit */
    border-radius: 10px;
  }
  
.quartz-text {
    flex: 1;
}

.quartz-title {
    font-size: 36px;
    font-weight: bold;
}

.highlight {
    color: red;
}

.quartz-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.quartz-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }
  
.btn {
    display: inline-block;
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
}

.btn:hover {
    background: darkred;
}


/* Arrows */
.arrows {
    margin-top: 20px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    margin-right: 15px;
}

.prev-btn:hover, .next-btn:hover {
    color: red;
}

/* Testimonial Section Styling */
.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
  }
  
  .testimonial-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('marble/statuario.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .testimonial-section > * {
    position: relative;
    z-index: 2;
  }
  
  .testimonial-title {
    font-size: 40px;
    font-weight: bold;
    color: red;
    margin-bottom: 10px;
  }
  
  .testimonial-subtext {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
  }
  
  .testimonial-slider {
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0.4;
    transform: scale(0.98);
    transition: all 0.5s ease;
    display: none;
  }
  
  .testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
  }
  
  .testimonial-content {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .testimonial-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .testimonial-text {
    max-width: 500px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .testimonial-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
  }
  
  .testimonial-text h4 {
    font-size: 16px;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-text p {
    color: #333;
  }
  
  .quote-icon {
    color: red;
    font-size: 26px;
    margin-right: 8px;
  }
  
  .testimonial-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .testimonial-prev-btn,
  .testimonial-next-btn {
    background: red;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .testimonial-prev-btn:hover,
  .testimonial-next-btn:hover {
    background: #cc0000;
  }
 

  
  
    /* Clientage Section */
  .clientage-section {
    background: linear-gradient(to bottom, #fff, #f7f7f7);
    padding: 80px 20px;
    text-align: center;
  }
  
  .clientage-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
  }
  
  .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 30px;
    justify-items: center;
    align-items: center;
    margin-bottom: 50px;
  }
  
  .client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
  }
  
  .client-item:hover {
    transform: translateY(-5px);
  }
  
  .client-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .client-item:hover img {
    filter: grayscale(0%);
  }
  
  .client-item span {
    font-weight: 600;
    font-size: 15px;
    color: #222;
  }
  
  /* India Map */
  .clientage-map img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  /* CTA Bar */
  .clientage-cta {
    background-color: #111;
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .clientage-cta h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .clientage-cta .btn {
    background: red;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .clientage-cta .btn:hover {
    background: darkred;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .client-item img {
      width: 60px;
      height: 60px;
    }
  
    .client-item span {
      font-size: 14px;
    }
  
    .clientage-cta h3 {
      font-size: 18px;
    }
  
    .clientage-cta .btn {
      font-size: 15px;
      padding: 10px 20px;
    }
  }
  
  
/* FAQ Section Styling */
.facts-figures {
    background: url('marble/light-texture.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  .facts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
  }
  
  .fact {
    width: 220px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .fact:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .fact img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .fact:hover img {
    transform: scale(1.1);
  }
  
  .fact h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: red;
  }
  
  .fact p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }
.icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
  }
  
  .fact:hover .icon svg {
    transform: scale(1.1);
    fill: #e60000;
  }
  
.faq-section {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.faq-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: red;
}

.faq-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    font-style: italic;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-question {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
}

/* Toggle effect */
.faq-item.active .faq-answer {
    display: block;
}

/* Background Image Styling */
.faq-background img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Styling */
.footer {
    width: 100%;
    background-color: white;
    padding: 40px 0;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 5vw; /* use vw instead of fixed px for responsiveness */
    width: 100%;
    box-sizing: border-box;
    max-width: none;   /* ensure no restriction */
    margin: 0;         /* remove auto-centering */
}


.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    text-align: left;
}


.footer-section h3 {
    color: red;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    color: #333;
}

/* Social Media Icons */
.footer-social {
    margin: 20px 0;
}

.footer-social a img {
    width: 30px;
    margin: 0 10px;
}

/* Bottom Footer */
.footer-bottom {
    font-size: 14px;
    color: #777;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

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

.footer-bottom ul li a {
    text-decoration: none;
    color: #777;
}

/* Contact Icons */
.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Social SVGs (icon-only links) */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-social a img,
.footer-social a svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.footer-social a:hover img,
.footer-social a:hover svg {
    transform: scale(1.1);
}

/* Increase spacing between sections */
.marble-collections,
.quartz-section,
.testimonial-section,
.faq-section {
    padding: 80px 0; /* Increase padding */
    margin-bottom: 50px; /* Add extra space below */
}

/* Add more space between title and content */
.section-title {
    margin-bottom: 30px;
}

/* Increase spacing in the marble grid */
.marble-grid {
    margin-top: 30px;
}

/* Increase spacing between marble and the next section */
.marble-content {
    margin-bottom: 50px;
}

/*newwwwwwww*/


.marble-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(176, 28, 28, 0.25); /* subtle red glow */
}

.signature-marble {
  position: relative;
  padding: 140px 20px;
  background: linear-gradient(to bottom, #faf8f5, #f2ede7);
  overflow: hidden;
}

.signature-glow-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('marble/statuario.jpg') no-repeat center center / cover;
  opacity: 0.06;
  z-index: 0;
}

.signature-container {
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.signature-left {
  flex: 1;
  min-width: 320px;
}

.signature-heading {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 25px;
}

.signature-description {
  font-size: 20px;
  color: #444;
  line-height: 1.8;
  font-family: 'Lora', serif;
  margin-bottom: 35px;
  max-width: 600px;
}

.signature-btn {
  font-size: 18px;
  padding: 14px 30px;
  background: #b01c1c;
  color: white;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.signature-btn:hover {
  background: #8a1010;
  transform: translateY(-2px);
}

.signature-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.signature-frame {
  border: 10px solid white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.signature-frame img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.signature-frame .caption {
  display: block;
  font-style: italic;
  font-size: 15px;
  color: #777;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .signature-container {
    flex-direction: column;
    text-align: center;
  }

  .signature-heading {
    font-size: 32px;
  }

  .signature-description {
    font-size: 16px;
  }

  .signature-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}



/* Quartz Section */
/* Add extra padding for the Quartz section */
.quartz-container {
    padding: 50px;
}

/* Add spacing before FAQs */
.faq-section {
    margin-top: 80px;
    padding-top: 80px;
}


/* Smooth fade and scale effect on hover */
.card {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
  }
  
  .card:hover {
    transform: scale(1.05);
    opacity: 1;
  }

  /*aboutus*/

  /* Basic styling */
  #about-us {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .about-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .about-image-container {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .about-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Activate on scroll */
  .reveal-on-scroll.active .about-text {
    opacity: 1;
    transform: translateX(0);
  }
  
  .reveal-on-scroll.active .about-image-container {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Responsive Design for Mobile quartz */
@media (max-width: 768px) {
    .quartz-container {
      flex-direction: column;
      gap: 20px;
      padding: 20px 10px;
    }
  
    .quartz-image {
      width: 100%;
      height: auto;
    }
  
    .quartz-text {
      text-align: center;
      width: 100%;
    }
  
    .quartz-title {
      font-size: 28px;
    }
  
    .quartz-text p {
      font-size: 14px;
    }
  
    .quartz-buttons {
      justify-content: center;
    }
  
    .btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }
  
/*newwwwwwww*/

.quartz-essence {
  background: #f8f8f8;
  padding: 120px 20px;
  overflow: hidden;
}

.essence-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.essence-image {
  flex: 1;
  min-width: 320px;
}

.essence-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.essence-image img:hover {
  transform: scale(1.02);
}

.essence-text {
  flex: 1;
  min-width: 320px;
  font-family: 'Lora', serif;
}

.essence-heading {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  color: #111;
  margin-bottom: 20px;
}

.essence-description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.essence-btn {
  background: #b01c1c;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.essence-btn:hover {
  background: #8a1010;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .essence-container {
    flex-direction: column;
    text-align: center;
  }

  .essence-heading {
    font-size: 30px;
  }

  .essence-description {
    font-size: 16px;
  }
}

  /* Mobile Optimization for Company Section */
@media (max-width: 768px) {
    .company-container {
      flex-direction: column;
      text-align: center;
      gap: 30px;
      padding: 0 20px;
    }
  
    .company-image img {
      width: 100%;
      height: auto;
    }
  
    .company-content {
      max-width: 100%;
    }
  
    .company-header {
      justify-content: center;
    }
  
    .company-title {
      font-size: 28px;
    }
  
    .company-content p {
      font-size: 16px;
    }
  
    .btn {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
 
/* Company Section Styling NEWWW */


 /*Blog Section*/


.blog-section {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #b01c1c;
  font-family: 'Georgia', serif;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 320px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #222;
}

.blog-card p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  font-weight: bold;
  color: #b01c1c;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.read-more:hover {
  border-color: #b01c1c;
}

@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
  }
}

.blog-post {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Georgia', serif;
  line-height: 1.8;
}

.blog-post img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-post h1 {
  font-size: 32px;
  color: #b01c1c;
  margin-bottom: 20px;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: #b01c1c;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.back-link:hover {
  border-color: #b01c1c;
}

