/* ---------------------------
   BRAHMASHREE — styles.css
   Professional retail look with subtle backgrounds
--------------------------- */

/* RESET + BASE */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#007a5f;
  --green-2:#009B62;
  --accent:#F4A261;
  --muted:#6b7b7a;
  --card:#ffffff;
  --bg:#f1f7f5;          /* light greenish background for entire page */
  --section-bg:#f9fff9;   /* subtle background for sections */
  --max-width:1200px;
  --rounded:12px;
}
body{
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  color:#123;
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

/* NAV */
.nav{
  background:#ffffff;
  border-bottom:1px solid #e0e0e0;
  position:sticky;
  top:0;
  z-index:40;
  box-shadow:0 6px 18px rgba(15,15,15,0.03);
}
.nav-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:20px;
  padding:14px 20px;
}
.nav-logo{height:62px;width:auto;display:block}

/* LEFT IMAGE + LOGO */
.nav-left{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-god-img{
  height:66px;      /* perfect balance */
  width:auto;
  object-fit:contain;
}

/* links */
.nav-links{
  display:flex;
  gap:18px;
  list-style:none;
  justify-self:center;   /* centers Products/About/Contact */
}
.nav-links a{
  color:#213;
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
}
.nav-links a:hover{
  background:#e6f9f1;
}
.nav-actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-self:end;   /* keeps Contact/Get Quote at right */
}
.icon-btn{
  color:var(--green);
  text-decoration:none;
  font-weight:700;
  padding:8px 10px;
}
.cta{
  background:var(--green);
  color:#fff;
  padding:9px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

/* HERO */
.hero-hero{
  max-width:var(--max-width);
  margin:28px auto;
  padding:30px 20px;
  background:linear-gradient(180deg,#f9fff9 0%,#ffffff 100%);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(12,20,16,0.06);
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:36px;
  align-items:center;
}
.hero-text h1{
  font-size:34px;
  color:#053;
  margin-bottom:12px;
}
.lead{
  color:var(--muted);
  margin-bottom:18px;
  font-size:16px;
}
.hero-ctas{
  display:flex;
  gap:12px;
  margin-bottom:16px;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}
.btn-outline{
  background:transparent;
  border:1px solid #e6efe9;
  color:#0b2;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
}
.trust-list{
  display:flex;
  gap:16px;
  list-style:none;
  margin-top:8px;
  color:var(--muted);
}
.hero-media{
  display:flex;
  justify-content:center;
}
.hero-media-img{
  width:420px;
  max-width:100%;
  height:320px;
  object-fit:contain;
  background:#ffffff;
  border-radius:12px;
  padding:12px;
  box-shadow:0 8px 26px rgba(10,20,10,0.06);
}

.slider {
  position: relative;
  width: 100%;
  height: 320px; /* adjust to your hero height */
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

/* PRODUCTS */
.section{
  max-width:var(--max-width);
  margin:40px auto;
  padding:20px;
  background:var(--section-bg);   /* subtle section background */
  border-radius:14px;
  box-shadow:0 6px 20px rgba(12,18,14,0.04);
}
.section-head{text-align:center;margin-bottom:28px}
.section-head h2{font-size:26px;color:#063;margin-bottom:8px}
.section-head p{color:var(--muted)}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.product-card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(12,18,14,0.06);
  display:flex;
  flex-direction:column;
}
.product-media{
  background:#f9fff9;  /* subtle card background */
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-media img{
  width:100%;
  max-height:210px;
  object-fit:contain;
}
.product-body{padding:16px}
.product-body h3{margin-bottom:8px;color:#034}
.product-body p{color:var(--muted);font-size:14px;margin-bottom:12px}
.product-actions{display:flex;justify-content:space-between;align-items:center}
.price{font-weight:700;color:#053}
.small-btn{background:var(--green-2);color:#fff;padding:8px 12px;border-radius:8px;text-decoration:none}

/* ABOUT */
.about-section{
  background:var(--section-bg);
  border-radius:14px;
  padding:22px;
  box-shadow:0 8px 20px rgba(10,20,10,0.04);
}
.about-inner{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:24px;
  align-items:center;
}
.about-media img{
  width:100%;
  max-height:320px;
  border-radius:12px;
  object-fit:contain;
  object-position:center;
  background:#ffffff;
}
.about-text h2{color:#064;margin-bottom:12px}
.about-list{margin:14px 0;list-style:disc;padding-left:18px;color:var(--muted)}

/* CONTACT */
.contact-section{
  display:flex;
  justify-content:center;
  margin-bottom:36px;
}
.contact-inner{
  width:100%;
  max-width:720px;
}
.contact-card{
  background:linear-gradient(180deg,#ffffff,#f9fff9);  /* subtle gradient background */
  padding:22px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(6,20,12,0.04);
}
.contact-card h2{margin-bottom:6px}
.muted{color:var(--muted)}
.contact-quick{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0}
.contact-link{background:#f7fff7;color:var(--green-2);padding:10px 12px;border-radius:10px;text-decoration:none;font-weight:700}
.contact-form{display:flex;flex-direction:column;gap:12px;margin-top:8px}
.contact-form .row{display:flex;gap:12px}
.contact-form input,.contact-form textarea{padding:12px;border-radius:8px;border:1px solid #e8f0ee;font-size:14px}
.form-actions{display:flex;gap:12px;margin-top:6px}

/* FOOTER */
.footer{
  background:#054;
  color:#ffffff;
  padding:26px 0;
  margin-top:30px;
}
.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:0 20px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-logo{
  height:44px;
  width:auto;
  display:block;
  background:#ffffff;
  padding:6px 10px;
  border-radius:8px;
}
.footer-left p{
  font-size:14px;
  color:#e6f4ef;
  margin:0;
}
.footer-right{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-right p{
  font-size:14px;
  color:#d3efe6;
  margin:0;
}
.socials a{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:#ffffff;
}
.socials a:hover{color:#F4A261}

/* RESPONSIVE */
@media (max-width:1024px){
  .hero-grid{grid-template-columns:1fr 380px}
  .about-inner{grid-template-columns:1fr}
}
@media (max-width:768px){
  .nav-links{display:none}
  .hero-grid{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .hero-media-img{height:260px}
}
@media (max-width:420px){
  .product-grid{grid-template-columns:1fr}
  .hero-text h1{font-size:22px}
  .hero-media-img{height:200px}
  .nav-actions .cta{display:none}
}

/* ===========================
   PRESTIGIOUS CLIENTS SLIDER
=========================== */

.clients-section{
  text-align:center;
}

.clients-slider-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:20px;
}

.clients-slider{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:12px 6px;
  max-width:720px;
}

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

.client-slide{
  min-width:160px;
  background:#ffffff;
  border-radius:14px;
  padding:18px 14px;
  box-shadow:0 8px 20px rgba(10,20,10,0.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.client-slide img {
  width: 120px;
  height: 70px;
  object-fit: contain;   /* IMPORTANT */
  display: block;
  margin: 0 auto;

}

.client-slide span{
  font-weight:600;
  font-size:14px;
  color:#054;
}

.client-nav{
  background:#ffffff;
  border:none;
  width:36px;
  height:36px;
  border-radius:50%;
  box-shadow:0 6px 16px rgba(0,0,0,0.12);
  cursor:pointer;
  font-size:20px;
  color:#054;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* existing styles remain as before */

/* HERO PARALLAX */
.hero-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg,#f9fff9 0%,#ffffff 100%);
}

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

.hero-media-img {
  transition: transform 0.2s ease-out;
}

.particles-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* PRODUCT HOVER EFFECT */
.product-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 28px rgba(12,18,14,0.15); }

/* FADE-IN */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.show { opacity: 1; transform: translateY(0); }