/* =========================
   ABOUT US SECTION
========================= */
.about-us-section {
  padding: 6rem 0;
  background: #ffffff;
}

.about-us-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* =========================
   LEFT TITLE
========================= */
.about-us-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 0.95;
  margin: 0;
  color: #000;
}

/* =========================
   RIGHT CONTENT
========================= */
.about-us-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #222;
  margin-bottom: 1.25rem;
  max-width: 640px;
}

.highlight-text {
  color: #8b1026;
  font-weight: 600;
}

/* =========================
   TABLET - Keep desktop layout
========================= */
/* Tablet (768px - 992px) - Keep desktop layout */
@media (max-width: 992px) and (min-width: 768px) {
  .about-us-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .about-us-title h2 {
    font-size: clamp(72px, 10vw, 96px);
    line-height: 0.95;
  }
}

/* =========================
   MOBILE (below 768px)
========================= */
@media (max-width: 768px) {
  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-us-title h2 {
    font-size: 72px;
    line-height: 1;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .about-us-section {
    padding: 4rem 0;
  }

  .about-us-title h2 {
    font-size: 48px;
  }

  .about-us-content p {
    font-size: 14px;
  }
}
/* =========================
   WHY ONE NATION ONE ELECTION
========================= */
.why-onoe {
  background: #8b1026;
  color: #fff;
  width: 100%;
  padding: 4.5rem 0 5rem;
}

/* =========================
   INTRO PARAGRAPH
========================= */
.why-onoe-intro {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 32px;
}

.why-onoe-intro p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================
   MAIN GRID
========================= */
.why-onoe-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================
   LEFT SECTION
========================= */
.why-onoe-left {
  position: relative;
}

.accent-line {
  display: block;
  width: 48px;
  height: 4px;
  background: #f5a623;
  margin-bottom: 1rem;
}

.why-onoe-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 500;
}

/* =========================
   ASHOKA WATERMARK (DESKTOP)
========================= */
.ashoka-bg {
  position: absolute;
  bottom: -40px;
  left: -20px;

  width: min(420px, 40vw);   /* responsive scaling */
  height: auto;

  opacity: 1;
  pointer-events: none;
}

/* =========================
   RIGHT CARDS
========================= */
.why-onoe-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.6rem 1.5rem;
  font-size: 14px;
  line-height: 1.6;
    border-bottom: 3px solid white;

}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 0.6rem;
}

.why-card.highlight h3 {
  color: #f5a623;
}

/* =========================
   TABLET - Keep desktop layout (768px - 992px)
========================= */
/* Tablet - Keep desktop layout */
@media (max-width: 992px) and (min-width: 768px) {
  .why-onoe-grid {
    grid-template-columns: 0.9fr 1.6fr; /* Give more space to cards section */
    gap: 3.5rem;
  }

  .why-onoe-left h2 {
    font-size: clamp(38px, 5vw, 46px);
  }

  .why-onoe-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* Reduced gap to make cards broader */
  }

  .why-card {
    padding: 1.8rem 1.8rem; /* Increased padding to make cards broader */
  }

  /* Keep Ashoka emblem visible on tablet */
  .ashoka-bg {
    display: block;
  }
}

/* =========================
   MOBILE (below 768px)
========================= */
@media (max-width: 768px) {
  .why-onoe-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-onoe-left h2 {
    font-size: 38px;
  }

  .why-onoe-cards {
    grid-template-columns: 1fr;
  }

  /* Hide Ashoka emblem on mobile */
  .ashoka-bg {
    display: none;
  }
}

/* =========================
   RESPONSIVE — MOBILE
========================= */
@media (max-width: 576px) {

  .why-onoe {
    padding: 3.5rem 0;
  }

  .why-onoe-grid {
    gap: 2.5rem;
  }

  .why-onoe-left h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .accent-line {
    width: 36px;
    height: 3px;
  }

  .why-onoe-intro p {
    font-size: 13px;
  }

  .why-onoe-cards {
    gap: 1.25rem;
  }

  .why-card {
    padding: 1.4rem 1.3rem;
    font-size: 13px;
    line-height: 1.65;
  }

  .why-card h3 {
    font-size: 17px;
  }
}


/* =========================
   OUR VISION
========================= */
.our-vision {
  width: 100%;
  background: #ffffff;
  padding: 5rem 0;
}

.our-vision-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* =========================
   IMAGE SIDE
========================= */
.vision-image-wrap {
  position: relative;
  max-width: 520px;
}

.vision-image {
  width: 100%;
  height: auto;
  display: block;

  /* Organic shape */
  clip-path: path(
    "M160,10
     C250,-20 380,40 400,140
     C420,240 330,330 230,360
     C130,390 40,310 20,210
     C0,110 70,30 160,10 Z"
  );
}

/* =========================
   TEXT SIDE
========================= */
.vision-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.vision-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #f5a623;
  margin-top: 8px;
}

.vision-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 1.2rem;
}

.highlight-text {
  color: #8b1026;
  font-weight: 600;
}

/* =========================
   TABLET - Keep desktop layout (768px - 992px)
========================= */
/* Tablet - Keep desktop layout */
@media (max-width: 992px) and (min-width: 768px) {
  .our-vision-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    text-align: center;
  }

  .vision-image-wrap {
    margin: 0;
  }

  .vision-content h2 {
    font-size: clamp(32px, 4vw, 36px);
  }
}

/* =========================
   MOBILE (below 768px)
========================= */
@media (max-width: 768px) {
  .our-vision-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .vision-image-wrap {
    margin: 0 auto;
  }

  .vision-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .vision-content h2 {
    font-size: 32px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .our-vision {
    padding: 3.5rem 0;
  }

  .vision-content h2 {
    font-size: 28px;
  }

  .vision-content p {
    font-size: 13.5px;
  }

  .vision-image {
    clip-path: none;
    border-radius: 18px;
  }
}
/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   MISSION SECTION
========================= */
.mission {
  padding: 4rem 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  font-family: "Georgia", serif;
}

/* =========================
   GRID LAYOUT
========================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 2.4rem;
  row-gap: 2rem;
}

/* =========================
   HEADING
========================= */
.mission-heading {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.6rem; /* visual alignment like screenshot */
}

.mission-heading h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #000;
}

.underline {
  display: block;
  width: 56px;
  height: 3px;
  background: #E98E0F;
  margin-top: 10px;
}

/* =========================
   CARDS (SQUARE)
========================= */
.card {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* =========================
   SOLID COLOR CARDS
========================= */
.maroon {
  background: #8b1026;
  color: #fff;
}

.yellow {
  background: #f3b34d;
  color: #fff;
}

/* =========================
   IMAGE CARDS
========================= */
.image {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 20, 35, 0.65);
  border-radius: 10px;
}

.image p {
  position: relative;
  z-index: 1;
}

/* =========================
   INDIVIDUAL IMAGES
========================= */
.img-1 {
  background-image: url("/assets/images/vision.png");
}

.img-2 {
  background-image: url("/assets/images/imagereq.JPG");
}

.img-3 {
  background-image: url("/assets/images/imagereq2.JPG");
}

/* =========================
   TABLET - Keep desktop layout (768px - 992px)
========================= */
/* Tablet - Keep desktop layout */
@media (max-width: 992px) and (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    column-gap: 2.4rem;
  }

  .mission-heading {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0.6rem;
  }
}

/* =========================
   MOBILE LARGE (640px - 768px) - Original tablet behavior
========================= */
@media (max-width: 768px) and (min-width: 641px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.6rem;
  }

  .mission-heading {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

/* =========================
   RESPONSIVE – MOBILE (below 640px)
========================= */
@media (max-width: 640px) {
  .mission {
    padding: 3rem 1.2rem;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
  }

  .mission-heading h2 {
    font-size: 1.8rem;
  }

  .card {
    font-size: 0.85rem;
    padding: 1.2rem;
  }
}
