:root {
  --stone-grey: #6E6E6E;
  --sand-beige: #D8C3A5;
  --moss-green: #6B8E23;
  --white: #FFFFFF;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--stone-grey);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* TOP BAR */
.topbar {
  background: #6B8E23;
  color: #FFFFFF;
  font-size: 14px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.social-links a {
  color: #FFFFFF;
  margin-left: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #D8C3A5;
}

/* HEADER */
.main-header {
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  color: #6E6E6E;
}

.logo span {
  color: #6B8E23;
}

.logo img {
  height: 80px;
  width: auto;
}

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #6E6E6E;
  font-weight: 500;
  padding: 8px 10px;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #6B8E23;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  min-width: 200px;
}

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

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #6E6E6E;
  transition: 0.3s;
}

/* Hamburger Icon */

/* RESPONSIVE */
@media(max-width: 768px) {

  .top-flex {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    display: none;
  }

  .menu-toggle {
    display: block;
    padding: 6px 10px;
  }

  .menu-toggle{
  display:block;
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  font-size:28px;
}

.main-header{
  position:relative;
}
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    display: none;
    border-top: 3px solid #6B8E23;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: menuFade 0.3s ease;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #D8C3A5;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 14px;
    font-size: 16px;
  }

  .nav-menu a:hover {
    background: #D8C3A5;
    color: #6B8E23;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

}

/* Smooth animation */
@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
  url("../img/banner 9.png");
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  text-align: center;
  color: #FFFFFF;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* Main Button */
.hero-btn-main{
  background:#6B8E23;
  color:#FFFFFF;
  padding:14px 34px;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  letter-spacing:.5px;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  transition:all .35s ease;
  display:inline-block;
}

.hero-btn-main:hover{
  background:#5c7a1e;
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,0.18);
}

/* Outline Button */
.hero-btn-outline{
  background:transparent;
  border:2px solid #D8C3A5;
  color:#FFFFFF;
  padding:14px 34px;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  letter-spacing:.5px;
  transition:all .35s ease;
}

.hero-btn-outline:hover{
  background:#D8C3A5;
  color:#2E2E2E;
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}
/* Mobile */
@media(max-width:768px){

.hero-content h1{
  font-size:32px;
}

.hero{
  padding:100px 0;
}

}
/* Section */
.section {
  padding: 40px 0;
}

.section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

/* Categories */
/* SECTION */

.stone-categories{
    position: relative;
    padding: 80px 0;
    background: url("../img/Gardening-stones-on-pathway_75a2af72-baf5-4986-b2b0-b3e3e9ca79b1_1024x1024.webp") center/cover no-repeat;
}

/* Dark overlay for readability */

.stone-categories .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* Container above overlay */

.stone-categories .container{
    position: relative;
    z-index: 2;
}

/* Section Heading */

.section-heading{
    text-align: center;
    max-width: 750px;
    margin: auto;
    color: #fff;
}

/* Small label */

.section-heading span{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a4d65e;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Main Heading */

.section-heading h2{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraph */

.section-heading p{
    font-size: 16px;
    line-height: 1.7;
    color: #d6d6d6;
}


.stone-categories .container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* GRID LAYOUT */

.category-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* FIRST 3 CARDS */

.category-grid .stone-card:nth-child(1){
    grid-column: 1 / span 2;
}

.category-grid .stone-card:nth-child(2){
    grid-column: 3 / span 2;
}

.category-grid .stone-card:nth-child(3){
    grid-column: 5 / span 2;
}

/* SECOND ROW CENTERED */

.category-grid .stone-card:nth-child(4){
    grid-column: 2 / span 2;
}

.category-grid .stone-card:nth-child(5){
    grid-column: 4 / span 2;
}

/* CARD DESIGN */

.stone-card{
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.stone-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stone-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content{
    padding: 25px;
    text-align: center;
}

.card-content h3{
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.card-content p{
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* BUTTON */

.stone-btn{
    display: inline-block;
    padding: 10px 28px;
    background: #6a8f2a;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.stone-btn:hover{
    background: #56751f;
}

/* TABLET VIEW */

@media (max-width: 992px){

.category-grid{
    grid-template-columns: repeat(2,1fr);
}

.category-grid .stone-card{
    grid-column: auto !important;
}

}

@media (max-width:768px){

.section-heading h2{
    font-size: 30px;
}

.section-heading p{
    font-size: 15px;
}

}

/* MOBILE VIEW */

@media (max-width: 600px){

.category-grid{
    grid-template-columns: 1fr;
    gap: 30px;
}

.stone-card img{
    height: 200px;
}

}
/*------------------------------------
certificate
------------------------------------*/
.certification-section{
  background: linear-gradient(135deg,#D8C3A5,#f4efe6);
  padding:50px 0;
  overflow:hidden;
  position:relative;
}

/* Decorative top line */
.certification-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#6B8E23,#D8C3A5,#6B8E23);
}

/* Track */
.certification-track{
  display:flex;
  gap:35px;
  animation:scrollCert 10s linear infinite;
  align-items:center;
}

/* Card Style */
.cert-item{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:240px;
  padding:14px 20px;
  border-radius:12px;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(8px);

  font-weight:600;
  color:#6E6E6E;
  font-size:15px;
  white-space:nowrap;

  border:1px solid rgba(255,255,255,0.5);

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:all .35s ease;
}

/* Logo */
.cert-item img{
  height:40px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.9;
  transition:.4s;
}

/* Hover */
.cert-item:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.cert-item:hover img{
  filter:grayscale(0%);
  transform:scale(1.15);
}

/* Animation */
@keyframes scrollCert{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* Mobile */
@media(max-width:768px){

.certification-track{
  gap:25px;
  animation-duration:5s;
}

.cert-item{
  min-width:200px;
  font-size:14px;
  padding:12px 16px;
}

.cert-item img{
  height:25px;
}

}

/*-----------------------------
Why Choose Us
-------------------------------*/
.why-choose{
padding:80px 0;
background:linear-gradient(180deg,#f9faf7,#eef3e7);
}

/* HEADER */

.why-header{
text-align:center;
max-width:720px;
margin:auto;
margin-bottom:70px;
}

.why-header span{
letter-spacing:3px;
font-size:13px;
color:#6a8f2a;
font-weight:600;
}

.why-header h2{
font-size:42px;
margin:12px 0;
color:#222;
}

.why-header p{
color:#666;
line-height:1.7;
}

/* GRID */

.why-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:45px;
align-items:center;
max-width:1100px;
margin:auto;
}

/* CENTER IMAGE */

.why-center{
grid-column:2;
text-align:center;
}

.why-center img{
width:260px;
height:260px;
object-fit:cover;
border-radius:50%;
border:8px solid #fff;
box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

/* CARD */

.why-item{
background:white;
padding:28px;
border-radius:16px;
border:2px solid #e8e8e8;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
position:relative;
transition:.35s;
}

/* TOP ACCENT LINE */

.why-item::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#6a8f2a,#a6c55a);
border-radius:16px 16px 0 0;
}

/* HOVER */

.why-item:hover{
transform:translateY(-10px);
border-color:#6a8f2a;
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/* TITLE */

.why-item h3{
font-size:20px;
margin-bottom:10px;
color:#222;
}

/* TEXT */

.why-item p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* POSITION */

.left{
grid-column:1;
}

.right{
grid-column:3;
}

/* MOBILE */

@media (max-width:768px){

/* GRID FIX */

.why-grid{
display:flex;
flex-direction:column;
align-items:center;
gap:25px;
}

/* CENTER IMAGE */

.why-center{
order:-1;
margin-bottom:20px;
}

.why-center img{
width:160px;
height:160px;
}

/* CARDS */

.why-item{
width:90%;
max-width:420px;
padding:22px;
text-align:center;
}

/* REMOVE LEFT RIGHT POSITION */

.left,
.right{
grid-column:auto;
}

/* TEXT SIZE */

.why-item h3{
font-size:18px;
}

.why-item p{
font-size:14px;
line-height:1.6;
}

}




.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/img/about1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}

/* Story */
.about-luxury{
  padding:80px 0;
  background:linear-gradient(135deg,#ffffff,#f4efe6);
}

/* Layout */

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}


/* Image Section */

.about-visual{
  position:relative;
}

.stone-frame{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,0.2);
  transform:rotate(-2deg);
}

.stone-frame img{
  width:100%;
  display:block;
}


/* Floating Cards */

.floating-card{
  position:absolute;
  background:#ffffff;
  padding:16px 20px;
  border-radius:10px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  max-width:180px;
}

.floating-card h4{
  color:#6B8E23;
  font-size:16px;
  margin-bottom:4px;
}

.floating-card p{
  font-size:13px;
  color:#666;
}

.card-1{
  top:-25px;
  left:-20px;
}

.card-2{
  bottom:-25px;
  right:-20px;
}


/* Text Section */

.about-badge{
  background:#D8C3A5;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  display:inline-block;
  margin-bottom:20px;
}

.about-text h2{
  font-size:38px;
  color:#6E6E6E;
  margin-bottom:18px;
}

.about-text p{
  color:#555;
  line-height:1.7;
  margin-bottom:16px;
}


/* Highlights */

.about-highlights{
  display:flex;
  gap:40px;
  margin-top:25px;
  margin-bottom:30px;
}

.highlight h3{
  font-size:28px;
  color:#6B8E23;
}

.highlight span{
  font-size:13px;
  color:#666;
}


/* Button */

.about-btn-premium{
  background:#6B8E23;
  color:#fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.about-btn-premium:hover{
  background:#5c7a1e;
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,0,0,0.15);
}


/* Mobile */

@media(max-width:768px){

.about-wrapper{
  grid-template-columns:1fr;
}

.about-text h2{
  font-size:28px;
}

.about-highlights{
  justify-content:space-between;
}

.floating-card{
  display:none;
}

}
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/img/contact.png') center/cover no-repeat;
  position: relative;
  margin-bottom: 40px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

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

  .banner-content p {
    font-size: 14px;
  }
}

/*---------------------------------------------
new arrival
-------------------------------------------------*/
/******** PRODUCTS SECTION ********/

.new-arrivals{
padding:50px 0;
background:linear-gradient(135deg,#D8C3A5,#f4efe6);
}

/******** HEADING ********/

.section-head{
text-align:center;
margin-bottom:50px;
}

.section-head span{
font-size:13px;
letter-spacing:3px;
color:#6a8f2a;
font-weight:600;
}

.section-head h2{
font-size:38px;
margin:10px 0;
color:#222;
}

.section-head p{
color:#666;
}



/******** SLIDER ********/

.slider-wrapper{
position:relative;
}

.product-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px 5px;
}

.product-slider::-webkit-scrollbar{
display:none;
}

/******** PRODUCT CARD ********/

.product-card{
flex:0 0 220px;   /* fixed slider width */
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.35s;
}


.product-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/******** IMAGE ********/

.img-box{
position:relative;
height:200px;
overflow:hidden;
}

.img-box img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.product-card:hover img{
transform:scale(1.08);
}

/******** HOVER BUTTON ********/

.action-buttons{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
opacity:0;
background:rgba(0,0,0,0.45);
transition:.3s;
}

.product-card:hover .action-buttons{
opacity:1;
}

/******** WHATSAPP BUTTON ********/

.whatsapp-btn{
background:#6a8f2a;
color:#fff;
padding:10px 22px;
border-radius:30px;
text-decoration:none;
font-size:14px;
font-weight:500;
}

/******** TEXT ********/

.product-card h3{
font-size:16px;
padding:15px;
text-align:center;
color:#333;
}

/******** ARROWS ********/

.slide-btn{
position:absolute;
top:45%;
width:42px;
height:42px;
border-radius:50%;
border:none;
background:#6a8f2a;
color:white;
font-size:18px;
cursor:pointer;
box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

.prev{ left:-20px; }
.next{ right:-20px; }

/******** VIEW MORE BUTTON ********/

.view-more-products{
text-align:center;
margin-top:30px;
}

.view-more-btn{
display:inline-block;
background:#6a8f2a;
color:#fff;
padding:12px 32px;
border-radius:40px;
text-decoration:none;
font-size:15px;
font-weight:500;
transition:0.3s;
}

.view-more-btn:hover{
background:#4e6d1e;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
/******** MOBILE ********/

@media(max-width:768px){

.product-slider{
gap:15px;
padding-left:10px;
}

.product-card{
flex:0 0 160px;   /* mobile card width */
}

.img-box{
height:150px;
}

.slide-btn{
display:none;
}

}
/*----------------------------------
why-choose-us section
----------------------------------*/
.why-choose-us {
  padding: 30px 0;
  background: #CFAE70;
  font-family: 'Poppins', sans-serif;
}

.why-head {
  text-align: center;
  max-width: 680px;
  margin: auto;
  margin-bottom: 45px;
}

.why-head h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-head p {
  color: #777;
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.why-card {
  background: white;
  padding: 34px 26px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid #eee;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ICON */
.why-card .icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14.5px;
  color: #777;
  line-height: 1.5;
}

/* RESPONSIVE */
/* TABLET */
@media(max-width: 992px){
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE — 2 CARDS PER ROW */
@media(max-width: 600px){
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-card {
    padding: 22px 16px;
  }

  .why-head h2 {
    font-size: 26px;
  }

  .why-card h3 {
    font-size: 15px;
  }

  .why-card p {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/* FAQ Section */

.faq-premium {
  background: linear-gradient(180deg,#f7f7f5,#eef2ea);
  padding: 110px 20px;
}

/* Section Titles */

.faq-premium .small-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #6a8f2a; /* stone green */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-premium .main-title {
  font-size: 40px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

.faq-premium .subtitle {
  color: #666;
  font-size: 16px;
  max-width: 680px;
  margin: auto;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* FAQ Grid */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 26px;
}

/* FAQ Card */

.faq-card {
  background:#fff;
  border-radius:16px;
  padding:22px 26px;
  border-left:5px solid #6a8f2a; /* stone accent */
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:.35s ease;
  cursor:pointer;
  position:relative;
}

.faq-card:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  border-left-color:#8cab3c;
}

/* Question */

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

.faq-question p {
  font-size:18px;
  font-weight:600;
  color:#222;
  margin:0;
  transition:.3s;
}

.faq-card:hover p {
  color:#6a8f2a;
}

/* Answer */

.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease,padding .35s ease;
  padding-top:0;
}

.faq-card.active .faq-answer {
  max-height:260px;
  padding-top:15px;
}

.faq-answer p {
  color:#666;
  font-size:14px;
  line-height:1.7;
}
.faq-premium .main-title{
font-size:40px;
font-weight:700;
}

.faq-premium .subtitle{
font-size:16px;
line-height:1.7;
color:#666;
}

.faq-question p{
font-size:18px;
font-weight:600;
}

.faq-answer p{
font-size:15px;
line-height:1.7;
}
/* Toggle Icon */

.faq-toggle {
  font-size:22px;
  color:#6a8f2a;
  transition:.3s;
}

.faq-card.active .faq-toggle {
  transform:rotate(45deg);
  color:#222;
}

/* Responsive */

@media (max-width:768px){

.faq-premium .main-title{
  font-size:30px;
}

.faq-question p{
  font-size:16px;
}

.faq-answer p{
  font-size:13px;
}

}
.bulk-section {
  padding: 90px 0;
  background:#D8C3A5;
}

/* MAIN WRAPPER */

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: .35s ease;
}

.bulk-wrapper:hover{
  transform: translateY(-4px);
}
.section-tag{
font-size:13px;
letter-spacing:3px;
color:#6a8f2a;
font-weight:600;
display:block;
margin-bottom:8px;
}
/* LEFT IMAGE */

.bulk-image {
  width: 55%;
  height: 380px;
  overflow: hidden;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.bulk-wrapper:hover .bulk-image img{
  transform: scale(1.08);
}

/* RIGHT CONTENT */

.bulk-content {
  width: 45%;
  padding: 45px 40px;
  position: relative;
}

/* ACCENT BORDER */

.bulk-content::before{
  content:"";
  position:absolute;
  left:0;
  top:40px;
  bottom:40px;
  width:5px;
  background:#6a8f2a;
  border-radius:4px;
}

/* TITLE */

.bulk-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color:#222;
}

/* SUBTITLE */

.bulk-content .subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 22px;
  line-height:1.6;
}

/* BULLET POINTS */

.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.bulk-points li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color:#444;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6a8f2a;
  font-weight: 700;
}

/* CONTACT ROW */

.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  font-weight: 600;
  color:#333;
}

/* OPTIONAL BUTTON STYLE */

.bulk-contact a{
  background:#6a8f2a;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.bulk-contact a:hover{
  background:#4e6d1e;
}

/* RESPONSIVE */

@media(max-width:992px){

.bulk-wrapper {
  flex-direction: column;
}

.bulk-image,
.bulk-content {
  width: 100%;
}

.bulk-image {
  height: 300px;
}

}

@media(max-width:600px){

.bulk-content {
  padding: 28px 22px;
}

.bulk-content h2 {
  font-size: 24px;
}

.bulk-points li{
  font-size:14px;
}

}

/*------------------------------------------------
About Section
-------------------------------------------------*/
/* SECTION */

.stone-about{
background:linear-gradient(180deg,#FAF7F2,#F3EBDD);
padding:50px 0;
}

/* IMAGE */

.stone-about-img{
position:relative;
border-radius:20px;
overflow:hidden;
}

.stone-about-img img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* BADGE */

.stone-badge{
position:absolute;
bottom:20px;
left:20px;
background:#6B8E23;
color:#fff;
padding:12px 20px;
border-radius:10px;
text-align:center;
}

.stone-badge span{
font-size:12px;
display:block;
}

.stone-badge strong{
font-size:20px;
}

/* CONTENT */

.section-tag{
color:#6B8E23;
font-size:13px;
letter-spacing:2px;
font-weight:600;
}

.stone-about-content h2{
font-size:36px;
font-weight:700;
color:#2E2E2E;
margin:12px 0;
}

.stone-about-content h2 span{
color:#6B8E23;
}

.stone-about-content p{
color:#555;
line-height:1.7;
}

/* BUTTONS */

.about-buttons{
margin-top:25px;
display:flex;
gap:14px;
}

.stone-btn{
padding:10px 20px;
border-radius:30px;
font-weight:600;
text-decoration:none;
font-size:14px;
}

.stone-btn.primary{
background:#6B8E23;
color:#fff;
}

.stone-btn.primary:hover{
background:#58761b;
}

.stone-btn.outline{
border:2px solid #6B8E23;
color:#6B8E23;
}

.stone-btn.outline:hover{
background:#6B8E23;
color:#fff;
}

/* FEATURES */

.stone-features{
margin-top:70px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.feature-card{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

.feature-card h4{
color:#2E2E2E;
margin-bottom:8px;
}

.feature-card p{
font-size:14px;
color:#666;
}

/* HIGHLIGHT */

.feature-card.highlight{
background:#6B8E23;
color:#fff;
}

.feature-card.highlight p{
color:#fff;
}

/* RESPONSIVE */

@media(max-width:992px){

.stone-features{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.stone-features{
grid-template-columns:1fr;
}

.stone-about-content h2{
font-size:28px;
}

.about-buttons{
flex-direction:column;
}

}

/*-------------------------------------------------
Contact Section
-------------------------------------------------


/* ===== CONTACT SECTION ===== */

.contact-title{
font-weight:800;
color:#5d7d1f;
font-size:34px;
}

.contact-subtitle{
color:#7a7a7a;
font-size:15px;
}

/* ===== MAP BOX ===== */

.map-box{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border:1px solid rgba(0,0,0,0.05);
}

.map-box iframe{
border-radius:18px 18px 0 0;
width:100%;
}

/* ===== CONTACT INFO ===== */

.contact-info-stack{
padding:20px;
display:grid;
gap:16px;
background:#fff;
}

.info-item{
display:flex;
gap:14px;
align-items:flex-start;
}

.info-item i{
font-size:20px;
color:var(--moss-green);
}

.info-item h6{
margin:0;
color:var(--stone-grey);
font-weight:600;
}

.info-item p{
margin:0;
font-size:14px;
color:#6E6E6E;
}

/* ===== FORM ===== */

.themed-form{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
border:1px solid rgba(0,0,0,0.05);
}

.themed-form h3{
color:var(--stone-grey);
font-weight:700;
margin-bottom:18px;
}

/* ===== INPUTS ===== */

.themed-input{
border-radius:12px;
border:1px solid #ddd;
padding:12px 14px;
font-size:14px;
transition:.25s;
background:#fafafa;
}

.themed-input:focus{
border-color:var(--moss-green);
box-shadow:0 0 0 3px rgba(107,142,35,0.15);
background:#fff;
}

/* ===== BUTTON ===== */

.btn-submit-themed{
background:var(--moss-green);
color:#fff;
padding:12px 26px;
border-radius:999px;
font-weight:600;
border:none;
transition:.25s;
}

.btn-submit-themed:hover{
background:#5d7d1f;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.contact-title{
font-size:28px;
}

.themed-form{
padding:22px;
}

}

/*---------------------------------------------
Shop Section
--------------------------------------------*/
/* ===== SHOP SECTION ===== */

.shop-section{
background:linear-gradient(180deg,#F5EFE6,#FAF7F2);
padding:70px 0;
}

/* ===== HEADER ===== */

.shop-header{
text-align:center;
margin-bottom:30px;
}

.shop-header h2{
font-weight:800;
color:var(--moss-green);
letter-spacing:.5px;
font-size:34px;
margin-bottom:10px;
}

.shop-header h2::after{
content:"";
width:60px;
height:3px;
background:var(--moss-green);
display:block;
margin:10px auto 0;
border-radius:2px;
}

.shop-header p{
color:#6E6E6E;
font-size:15px;
}

/* ===== FILTER BUTTONS ===== */

.shop-filters{
padding-bottom:25px;
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.filter-btn{
padding:7px 16px;
font-size:13px;
border-radius:25px;
border:1px solid #d6d6d6;
background:#fff;
color:var(--stone-grey);
cursor:pointer;
transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
background:var(--moss-green);
color:#fff;
border-color:var(--moss-green);
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* ===== PRODUCT GRID ===== */

/* ===== PRODUCT GRID ===== */

#productGrid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

/* Tablet */

@media(max-width:992px){
#productGrid{
grid-template-columns:repeat(3,1fr);
gap:20px;
}
}

/* Mobile */

@media(max-width:768px){
#productGrid{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:12px;
padding:0 10px;
}
}

/* Small Mobile */

@media(max-width:480px){
#productGrid{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:10px;
padding:0 8px;
}
}

/* Card width fix */

.product-card{
width:100%;
min-width:0;
}

/* ===== TABLET ===== */

@media(max-width:992px){
#productGrid{
grid-template-columns:repeat(3,1fr);
gap:20px;
}
}

/* ===== MOBILE (2 PRODUCTS PER ROW) ===== */

@media(max-width:768px){
#productGrid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}
}

/* ===== PRODUCT CARD ===== */

.product-card{
transition:transform .3s ease,box-shadow .3s ease;
width:100%;
}

.product-box{
border-radius:16px;
overflow:hidden;
background:#fff;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
border:1px solid rgba(0,0,0,0.05);
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 14px 32px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */

.product-img{
position:relative;
overflow:hidden;
background:#f3f3f3;
}

.product-img img{
width:100%;
height:auto;
display:block;
transition:transform .4s ease;
}

.product-card:hover img{
transform:scale(1.08);
}

/* ===== HOVER OVERLAY ===== */

.hover-overlay{
position:absolute;
inset:0;
display:flex;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.45);
opacity:0;
transition:.3s;
}

.product-card:hover .hover-overlay{
opacity:1;
}

/* ===== BUTTON ===== */

.btn-view-details{
padding:8px 20px;
border-radius:30px;
background:var(--sand-beige);
color:var(--stone-grey);
font-size:13px;
font-weight:600;
text-decoration:none;
transition:.25s;
}

.btn-view-details:hover{
background:var(--moss-green);
color:#fff;
}

/* ===== PRODUCT INFO ===== */

.product-info{
padding:14px;
text-align:center;
}

.product-info h5{
font-size:15px;
font-weight:600;
color:var(--stone-grey);
margin:0;
}

/* ===== SMALL MOBILE ===== */

@media(max-width:480px){

.shop-header h2{
font-size:24px;
}

.product-info h5{
font-size:13px;
}

.btn-view-details{
padding:5px 12px;
font-size:11px;
}

}
/*-------------------------------------------------
product detail page
-----------------------------------------------*/

:root {
  --ivory: #FAF7F2;
  --terracotta: #C65A3A;
  --charcoal: #2E2E2E;
  --gold: #CFAE70;
}

/* PRODUCT DETAILS SECTION */
.product-details-section {
  background: var(--ivory);
  padding: 60px 20px;
}

/* CONTAINER */
.product-details-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID LAYOUT */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.product-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.04);
}

/* RIGHT INFO */
.product-info {
  color: var(--charcoal);
}

/* CATEGORY TAG */
.product-category {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 6px;
}

/* PRODUCT NAME */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.product-description {
  line-height: 1.7;
  font-size: 15px;
  color: #555;
}

/* META DETAILS */
.product-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.product-meta strong {
  color: var(--charcoal);
}

/* ENQUIRY BUTTON */
.btn-enquiry {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--terracotta);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-enquiry:hover {
  background: var(--charcoal);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-title {
    font-size: 26px;
  }

  .btn-enquiry {
    padding: 10px 22px;
    font-size: 13px;
  }
}




/* Footer */
/* ================= FOOTER ================= */

/* ===== FOOTER MAIN ===== */

.site-footer{
position:relative;
background:url("../img/pebble-stone.jpg") center/cover no-repeat;
padding:80px 20px 40px;
color:#fff;
}

/* DARK OVERLAY */

.site-footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65); /* adjust darkness here */
z-index:0;
}

/* CONTENT ABOVE OVERLAY */

.site-footer .container{
position:relative;
z-index:2;
}

/* GRID */

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:45px;
}

/* LOGO */

.footer-logo img{
height:80px;
margin-bottom:15px;
}

/* BRAND TEXT */

.footer-brand p{
font-size:14px;
line-height:1.8;
color:rgba(255,255,255,0.85);
}

/* HEADINGS */

.site-footer h3{
font-size:18px;
margin-bottom:18px;
font-weight:600;
color:#D8C3A5;
position:relative;
}

/* heading underline */

.site-footer h3::after{
content:"";
width:40px;
height:2px;
background:#6B8E23;
display:block;
margin-top:6px;
}

/* LINKS */

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

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:rgba(255,255,255,0.85);
font-size:14px;
transition:.25s;
}

.footer-links a:hover{
color:#6B8E23;
padding-left:6px;
}

/* CONTACT */

.footer-contact p{
font-size:14px;
line-height:1.8;
margin-bottom:14px;
color:rgba(255,255,255,0.85);
}

.footer-contact strong{
color:#D8C3A5;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom{
background:rgba(0,0,0,0.7);
margin-top:60px;
}

.footer-bottom-inner{
max-width:1200px;
margin:auto;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:13.5px;
color:#fff;
}

.footer-bottom a{
color:#D8C3A5;
text-decoration:none;
font-weight:600;
}

.footer-bottom a:hover{
color:#6B8E23;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
gap:35px;
}

}

@media(max-width:600px){

.site-footer{
text-align:center;
padding:60px 20px 30px;
}

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom-inner{
flex-direction:column;
gap:6px;
}

}
/* Scroll Top Button */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: #6B8E23;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Show Button */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Effect */
.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(207, 174, 112, 0.6);
}

/* Icon Styling */
.scroll-top i {
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Icon Bounce on Hover */
.scroll-top:hover i {
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 22px;
    right: 14px;
    bottom: 16px;
  }
}
