body {
    background-color: #f4f8f6 !important;
}

.slider1 {
    position: relative;
    height: 90vh;
    background-image: url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider2 {
    position: relative;
    height: 90vh;
    background-image: url('img/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* black overlay */
.slider1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* adjust opacity here */
    z-index: 1;
}

.slider1 h1 {
    position: relative;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top:6rem;
    /* better look on small screens */
}

.result-section {
    
    padding: 40px 20px;
    text-align: center;
}

.result-section h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.time-text {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.bazaar-card {
    background: #679085;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.result-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-top: 15px;
}

.trusted-khaiwal {
  background-color: #f4f8f6;
  font-family: "Poppins", sans-serif;
}

.kh-card {
  background-color: #6f9b93;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.kh-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff !important;
}

.trusted-khaiwal p {
  margin-bottom: 6px;
}

.trusted-khaiwal .btn {
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .kh-card {
    padding: 20px;
  }

  .kh-title {
    font-size: 1.4rem;
  }
}

/* Shared look */
:root{
  --bg-cream:#f4f8f6;
  --teal:#6f9b93;
  --teal-dark:#3f6f68;
  --brand-gold:#d4a640;
  --ink:#1d1d1d;
}

/* ---------- Live Chart ---------- */
.live-chart{
  background:var(--bg-cream);
}
.pill-title{
  background:var(--teal);
  color:#fff;
  border-radius:14px;
  padding:.6rem 1.2rem;
  display:inline-block;
  font-weight:600;
  min-width: 220px;
}
.chart-wrap{
  width:min(420px, 90%);
  height:520px;
  background:var(--teal);
  border-radius:10px;
  padding:18px;
  position:relative;
}
.chart-grid{
  position:absolute;
  inset:18px;
  border:3px solid var(--teal-dark);
  background:transparent;
  /* draw grid with repeating gradients */
  background-image:
    linear-gradient(var(--teal-dark) 2px, transparent 2px),
    linear-gradient(90deg, var(--teal-dark) 2px, transparent 2px);
  background-size: 100% 44px, 44px 100%;
  background-position: top left, top left;
}
.reminder-bar{
  background:#e2efe9;
  border-top:4px solid var(--teal-dark);
  border-bottom:4px solid var(--teal-dark);
  color:#333;
}

/* ---------- Brand band ---------- */
.brand-band{
  background:#fff;
  border-top:4px solid #2e2e2e20;
  border-bottom:4px solid #2e2e2e20;
}
.brand-logo{
  font-weight:800;
  font-size:clamp(26px, 5vw, 38px);
  letter-spacing:.5px;
}
.brand-logo .brand-1{ color:#188d8a; }
.brand-logo .brand-2{ color:var(--brand-gold); }
.brand-sub{ color:#6b7b7a; }

/* ---------- History ---------- */
.history{
  background:#fff;
  border-top:4px solid #2e2e2e40;
  border-bottom:4px solid #2e2e2e40;
}
.history-head{
  display:inline-block;
  background:var(--teal);
  color:#fff;
  padding:.45rem .9rem;
  border-radius:12px;
  font-weight:600;
  font-size:.95rem;
}
.history-pill{
  height:16px;
  border-radius:999px;
  background:#1b5e57;
  opacity:.9;
}
.history .pill-title{ background:#1b5e57; }

/* ---------- Contact Us ---------- */
.contact-us{
  background:#fff;
}
.contact-us .btn{
  border-radius:10px;
  font-weight:600;
}
.cta-join{
  border-radius:10px;
  color:#083b44;
}

/* ---------- Legal ---------- */
.legal{
  background:#1f1f1f;
  color:#ddd;
}
.legal h6{ color:#fff; font-weight:700; }
.legal p{ line-height:1.55; }

/* ---------- Responsiveness ---------- */
@media (max-width: 576px){
  .chart-wrap{ height:430px; }
}



/* responsive adjustments */
@media (max-width: 768px) {
    .slider1 {
        height: 60vh;
    }

    .slider1 h1 {
        font-size: 1.8rem;
    }
}