 
/* ================= PREMIUM SAFFRON ABOUT ================= */

.onf-about-premium {
    padding: 40px 20px;
    text-align: center;
    font-family: "Poppins", "Segoe UI", sans-serif;

    /* Premium saffron gradient */
    background: linear-gradient(
        180deg,
        #fff6df 0%,
        #fbebc5 40%,
        #ffe4af 100%
    );
}

/* Symbol */
.onf-symbol img {
    width: 150px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    margin-bottom: 28px;
}

/* Heading */
.onf-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

/* Description */
.onf-description {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3b3b3b;
}

/* Dharma text */
.onf-sanskrit {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.onf-english {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 50px;
}

/* Grid */
.onf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}

/* Premium glass card */
.onf-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 32px 22px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.onf-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Icon */
.onf-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

/* Card title */
.onf-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #222;
}

/* Card text */
.onf-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .onf-grid {
        grid-template-columns: 1fr;
    }

    .onf-heading {
        font-size: 2rem;
    }
}

/* ====================Foundation Principles Section====================== */

/* ===== Premium Background ===== */

.onf-principles-premium {
    position: relative;
    padding: 40px 20px 40px;
    background:#fff9e8 ;
    text-align: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* wrapper */
.onf-wrapper {
    max-width: 1150px;
    margin: auto;
}

/* title */
.onf-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

/* subtitle */
.onf-subtitle {
    color: #6b5b3e;
    margin-bottom: 60px;
}

/* grid */
.onf-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* card */
.onf-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 40px 28px;

    box-shadow:
        0 15px 35px rgba(255,140,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.35);

    transition: all .45s ease;
}

/* floating hover */
.onf-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow:
        0 30px 60px rgba(255,140,0,0.35),
        0 0 25px rgba(255,180,60,0.45);
}

/* icon */
.onf-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb347, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255,120,0,0.45);
}

/* headings */
.onf-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #222;
}

/* text */
.onf-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* badge */
.onf-card span {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #ff7a00;
    background: rgba(255,140,0,0.12);
    border: 1px solid rgba(255,140,0,0.35);
}

/* bottom wave
.onf-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    /* background: radial-gradient(circle at 50% -20%, #fff3cf 60%, transparent 61%); 
}*/


/* responsive */
@media (max-width: 900px) {
    .onf-cards {
        grid-template-columns: 1fr;
    }

    .onf-title {
        font-size: 2rem;
    }
}


/* <!-- ===============guiding light bharat================ --> */
:root {
  --bg-color: #f8f7e9;
  --text-main: #2c3e50;
  --text-muted: #5d6d7e;
  --accent-gold: #f1c40f;
  /* Card Header Colors */
  --header-blue: #2196f3;
  --header-green: #2e7d32;
  --header-orange: #ff8f00;
}

.guiding-lights {
  background-color: var(--bg-color);
  padding: 20px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Header */
.main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--text-muted);
  line-height: 1.5;
}

.motto-container {
  margin-bottom: 50px;
}

.motto-text {
  color: #b8860b;
  font-weight: 600;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 5px;
}

/* Grid */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Card Styling */
.leader-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

/* Dynamic Headers */
.card-header {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.card-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.icon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.blue-bg { background-color: var(--header-blue); }
.green-bg { background-color: var(--header-green); }
.orange-bg { background-color: var(--header-orange); }

/* Card Body */
.card-body {
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.pill-tag {
  display: inline-block;
  background: #fff9c4;
  color: #827717;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 700;
  margin: 0 auto 20px;
  width: fit-content;
}

.bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Achievement/Highlight Box */
.achievement-box {
  background: #fffdf0;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 25px;
  border: 1px solid transparent;
}

.border-blue { border-color: #bbdefb; }
.border-green { border-color: #c8e6c9; }
.border-orange { border-color: #ffe0b2; }

/* Footer Focus */
.footer-focus {
  margin-top: auto;
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}

.footer-focus h5 {
  color: #cc9900;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.footer-focus p {
  font-size: 0.75rem;
  color: #7f8c8d;
  font-weight: 500;
}

/* ===== Leader Image ===== */
/* 
.leader-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Smooth zoom on hover */
/* .leader-card:hover .leader-image img {
  transform: scale(1.08);
} */

/* Remove old header spacing effect */
/* .card-body {
  padding: 26px 24px 28px;
} */ 


/* ===== Unity Section ===== */

.onf-unity {
  padding: 40px 20px;
  text-align: center;

  /* soft sacred gradient */
  background:
    radial-gradient(circle at top, #ffe7b8 0%, #fff6e6 40%, #ffffff 100%);

  font-family: "Poppins", "Noto Serif Devanagari", serif;
}

.unity-container {
  max-width: 900px;
  margin: auto;
}

/* Om symbol */
.om-symbol {
  font-size: 3rem;
  color: #e65100;
  margin-bottom: 16px;
  text-shadow: 0 6px 18px rgba(230, 81, 0, 0.25);
}

/* Title */
.unity-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #1a1a1a;
}

/* Main paragraph */
.unity-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 36px;
}

/* Divider line */
.divider {
  /* width: 500px; */
  width: 100%;
  max-width: 500px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e65100, transparent);
  margin: 30px auto;
}

/* Sanskrit line */
.vasudha {
  font-size: 1.6rem;
  font-weight: 600;
  color: #c47a00;
  margin-bottom: 8px;
}

/* Meaning */
.vasudha-meaning {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .unity-title {
    font-size: 1.9rem;
  }

  .unity-text {
    font-size: 1rem;
  }

  .vasudha {
    font-size: 1.4rem;
  }
}

/* ========================onf journey=======================  */

/* ===== Section ===== */

.onf-journey-grid {
  padding: 20px 20px 60px;
  /* background: #f6f2ea; */
    background:
    radial-gradient(circle at top, #ffe7b8 0%, #fff6e6 40%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
}

.journey-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.journey-header p {
  color: #666;
  max-width: 650px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* ===== Grid ===== */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* ===== Card ===== */

.journey-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

/* Hover */
.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Top row */

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.year {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
}

/* Badge */

.badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Status colors */

.completed .badge { background: #e6f6ea; color: #1e8e3e; }
.upcoming  .badge { background: #fff4e0; color: #f57c00; }
.planned   .badge { background: #ece8ff; color: #5e35b1; }

/* Bottom colored line */

.completed { border-bottom: 4px solid #1e8e3e; }
.upcoming  { border-bottom: 4px solid #f57c00; }
.planned   { border-bottom: 4px solid #5e35b1; }

/* Text */

.journey-card h3 {
  margin: 8px 0 8px;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.journey-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {
  .journey-header h2 {
    font-size: 2.2rem;
  }
}


/* =======================Leagal Transparency Section======================= */

/* ===== Section ===== */

.legal-clean {
  /* background: #f6f1e4; */
    background:
    radial-gradient(circle at top, #ffe7b8 0%, #fff6e6 40%, #ffffff 100%);
  padding: 40px 20px 60px;
  font-family: "Poppins", sans-serif;
}

.legal-inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* ===== Header ===== */

.legal-head h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-head p {
  color: #666;
  margin-bottom: 50px;
}

/* ===== Cards Row ===== */

.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

/* ===== Individual Card ===== */

.legal-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.legal-card h3 {
  margin: 14px 0 16px;
  font-size: 1.15rem;
}

/* Icon circle */

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

/* Color themes */

.green {
  border: 1px solid #6fd19b;
}
.green .icon-circle {
  background: #dff5e8;
  color: #1b8a4b;
}

.blue {
  border: 1px solid #86b7ff;
}
.blue .icon-circle {
  background: #e4efff;
  color: #2f6bd9;
}

/* ===== Trust Card ===== */

.trust-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  border: 1px solid #ff9f43;
  box-shadow: 0 12px 30px rgba(255,140,0,0.15);
}

.trust-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.trust-card p {
  color: #555;
  line-height: 1.7;
}

/* Motto */

.motto {
  margin-top: 18px;
}

.sanskrit {
  display: block;
  font-size: 1.5rem;
  color: #ff6a00;
  font-weight: 600;
}

.english {
  font-size: 0.9rem;
  color: #777;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .legal-head h2 {
    font-size: 2.1rem;
  }
}
