:root{
--primary:#c9a227;
--text:#1f2937;
--muted:#6b7280;
--bg-soft:#f6f7f9;
}
.navbar {
  position: fixed;   /* scroll करताना navbar stay करेल */
  top: 0;
  left: 0;
  right: 0;
  height: 60px;      /* तुमच्या design नुसार */
  background-color: #fff;
  z-index: 9999;     /* mobile scroll वरही वर राहील */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
html, body {
  overflow-x: hidden;  /* horizontal scroll disable */
  overflow-y: auto;    /* vertical scroll enable */
  margin: 0;
  padding: 0;
}
/* GLOBAL */
body{
font-family:'Inter',sans-serif;
color:var(--text);
letter-spacing:.2px;
-webkit-font-smoothing:antialiased;
scroll-behavior:smooth;
}

/* HERO */
.csr-hero{
position:relative;
height:260px;
overflow:hidden;
}

.csr-hero-img{
width:100%;
height:100%;
object-fit:cover;
}

.csr-overlay{
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(0,0,0,.75),rgba(0,0,0,.35));
}

.csr-hero-content{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-align:center;
}

.csr-breadcrumb{
font-size:14px;
margin-bottom:8px;
color:#fff;
opacity:.9;
}

.csr-breadcrumb a{
color:#fff;
text-decoration:none;
}

.csr-breadcrumb a:hover{
text-decoration:underline;
}

.csr-tag{
font-size:.85rem;
letter-spacing:.15em;
text-transform:uppercase;
opacity:.85;
}

.csr-title{
font-family:'Poppins',sans-serif;
font-weight:600;
font-size:2rem;
margin-top:.5rem;
}

/* SECTION */
.csr-section{
padding:5rem 0;
background:var(--bg-soft);
}

.csr-card{
background:#fff;
padding:2.2rem;
border-radius:16px;
text-align:center;
border:1px solid #e5e7eb;
transition:all .35s ease;
}

.csr-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.csr-icon{
width:65px;
height:65px;
border-radius:50%;
background:linear-gradient(135deg,var(--primary),#a87e1f);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:1.5rem;
margin:0 auto 1.2rem;
box-shadow:0 10px 25px rgba(201,162,39,.35);
}

.csr-card h4{
font-family:'Poppins',sans-serif;
font-weight:600;
margin-bottom:.6rem;
}

.csr-card p{
color:var(--muted);
font-size:1rem;
line-height:1.7;
}

/* WhatsApp LEFT */
.whatsapp-wrapper{
position:fixed;
bottom:25px;
left:25px;
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
z-index:999;
}

.whatsapp-text-box{
background:#fff;
padding:10px 16px;
border-radius:30px;
font-size:14px;
color:#1f2937;
box-shadow:0 10px 25px rgba(0,0,0,.08);
white-space:nowrap;
}

.whatsapp-icon{
width:58px;
height:58px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
box-shadow:0 8px 20px rgba(0,0,0,.15);
transition:.3s ease;
}

.whatsapp-wrapper:hover .whatsapp-icon{
transform:scale(1.08);
box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* MOBILE */
@media(max-width:768px){
.csr-title{font-size:1.7rem;}
.csr-section{padding:3.5rem 0;}
.whatsapp-wrapper{left:15px;bottom:20px;}
.whatsapp-text-box{font-size:12px;padding:8px 12px;}
.whatsapp-icon{width:50px;height:50px;font-size:22px;}
}







