    /* ── HERO BANNER ── */
    .about-hero {
      background: linear-gradient(120deg, var(--navy-dark) 55%, var(--navy) 100%);
      padding: 100px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 380px; height: 380px;
      border-radius: 50%;
      background: rgba(122,182,72,.13);
    }
    .about-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: rgba(122,182,72,.08);
    }
    .about-hero .eyebrow {
      display: inline-block;
      background: var(--green);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .about-hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
    }
    .about-hero h1 span { color: var(--green); }
    .about-hero p.lead {
      color: rgba(255,255,255,.75);
      font-size: 1rem;
      max-width: 540px;
      line-height: 1.8;
    }
    .hero-stat-bar {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 36px;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: var(--green);
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 11px;
      color: rgba(255,255,255,.65);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-img-wrap img {
      width: 100%;
      max-width: 420px;
      border-radius: 18px;
      box-shadow: 0 30px 80px rgba(0,0,0,.4);
      border: 4px solid rgba(122,182,72,.35);
    }
    .hero-badge {
      position: absolute;
      bottom: -18px; left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 30px;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(122,182,72,.4);
    }

    /* ── SECTION UTILITIES ── */
    .section-eyebrow {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }
    .section-title span { color: var(--green); }
    .section-divider {
      width: 50px; height: 4px;
      background: var(--green);
      border-radius: 4px;
      margin: 12px 0 18px;
    }

    /* ── WHO WE ARE ── */
    .who-section { background: var(--white); padding: 90px 0; }
    .who-card {
      background: var(--navy);
      border-radius: 16px;
      padding: 36px 32px;
      color: #fff;
      height: 100%;
    }
    .who-card .icon-wrap {
      width: 54px; height: 54px;
      background: var(--green);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      font-size: 24px;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .who-card h5 {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 10px;
      color: var(--green);
      position: relative;
      z-index: 1;
    }
    .who-card p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.75; margin: 0; position: relative;
      z-index: 1; }
    .who-text p { color: var(--text-muted); font-size: .95rem; line-height: 1.9; }
    .reach-badge {
      background: var(--navy);
      color: #fff;
      border-radius: 16px;
      padding: 28px 32px;
      text-align: center;
    }
    .reach-badge .big { font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; }
    .reach-badge .sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 6px; }

    /* ── MISSION ── */
    .mission-section {
      background: var(--navy);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .mission-section::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(122,182,72,.07);
    }
    .mission-section .section-title { color: #fff; }
    .mission-section .section-eyebrow {
      background: rgba(122,182,72,.2);
      color: var(--green);
    }
    .mission-point {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 22px;
    }
    .mission-point .mp-icon {
      min-width: 42px; height: 42px;
      background: var(--green);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px;
    }
    .mission-point h6 { color: var(--green); font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
    .mission-point p { color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.7; margin: 0; }
    .mission-circle {
      width: 27rem; height: 27rem;
      border-radius: 50%;
      background: rgba(122,182,72,.12);
      /* border: 2px dashed rgba(122,182,72,.4); */
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto;
      position: relative;
      background-image: url("../images/our_mission.png");
          background-size: cover;
    background-position: left;
    }
    .mission-circle-inner {
      width: 180px; height: 180px;
      border-radius: 50%;
      background: var(--green);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      text-align: center;
    }
    .mission-circle-inner .mi-title { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.2; }
    .mission-circle-inner .mi-sub { font-size: .7rem; color: rgba(255,255,255,.8); margin-top: 4px; }

    /* ── DIRECTOR ── */
    .director-section { background: var(--section-bg); padding: 90px 0; }
    .director-card {
      background: #fff;
      border-radius: 20px;
      padding: 48px 40px;
      box-shadow: 0 12px 48px rgba(13,31,78,.08);
      position: relative;
    }
    .director-card::before {
      content: '"';
      position: absolute; top: 16px; left: 32px;
      font-size: 6rem;
      color: var(--green-light);
      font-family: Georgia, serif;
      line-height: 1;
    }
    .director-card blockquote {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.9;
      font-style: italic;
      margin: 0 0 28px;
      padding-top: 40px;
    }
    .director-profile { display: flex; align-items: center; gap: 18px; }
    .director-avatar {
      width: 68px; height: 68px;
      border-radius: 50%;
      background: var(--green);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; font-weight: 800; color: #fff;
      border: 3px solid var(--green-light);
      flex-shrink: 0;
    }
    .director-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
    .director-title { font-size: .82rem; color: var(--green-dark); font-weight: 600; }

    /* ── TEAM ── */
    .team-section { background: #fff; padding: 90px 0; }
    .team-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(13,31,78,.09);
      transition: transform .3s ease, box-shadow .3s ease;
      text-align: center;
    }
    .team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(13,31,78,.15); }
    .team-card-img {
      width: 100%; aspect-ratio: 1/1;
      object-fit: cover;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; font-weight: 800; color: var(--green);
    }
    .team-card-body { padding: 20px 16px; }
    .team-card-body h6 { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
    .team-card-body span { font-size: .78rem; color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

    /* ── PAN INDIA / PRESENCE ── */
    .pan-section {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      padding: 90px 0;
      position: relative; overflow: hidden;
    }
    .pan-section::after {
      content: '';
      position: absolute; bottom: -80px; right: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(122,182,72,.1);
    }
    .pan-section .section-title { color: #fff; }
    .pan-section .section-eyebrow { background: rgba(122,182,72,.2); color: var(--green); }
    .state-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(122,182,72,.35);
      color: #fff;
      font-size: .83rem;
      font-weight: 500;
      padding: 8px 18px;
      border-radius: 30px;
      margin: 5px;
      transition: background .25s, transform .25s;
    }
    .state-pill:hover { background: rgba(122,182,72,.2); transform: translateY(-2px); }
    .state-pill i { color: var(--green); font-size: 14px; }
    .pan-stat {
      text-align: center;
      padding: 28px 20px;
      background: rgba(255,255,255,.06);
      border-radius: 16px;
      border: 1px solid rgba(122,182,72,.2);
    }
    .pan-stat .n { font-size: 2.4rem; font-weight: 800; color: var(--green); }
    .pan-stat .l { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

    /* ── AWARDS ── */
    .awards-section { background: var(--section-bg); padding: 90px 0; }
    .award-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: 0 6px 28px rgba(13,31,78,.07);
      transition: transform .3s, box-shadow .3s;
      border-top: 4px solid var(--green);
    }
    .award-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(13,31,78,.14); }
    .award-card .aw-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 14px; }
    .award-card h6 { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 8px; }
    .award-card p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

    /* ── SERVICES STRIP ── */
    .services-strip { background: var(--white); padding: 80px 0; }
    .svc-pill {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy);
      color: #fff;
      border-radius: 40px;
      padding: 12px 24px;
      font-size: .88rem;
      font-weight: 600;
      margin: 6px;
      transition: background .25s, transform .25s;
    }
    .svc-pill i { color: var(--green); font-size: 18px; }
    .svc-pill:hover i { color: #fff; font-size: 18px; }
    .svc-pill:hover { background: var(--green); transform: translateY(-3px); }

    /* ── ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-left { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
    .fade-left.visible { opacity: 1; transform: translateX(0); }
    .fade-right { opacity: 0; transform: translateX(36px); transition: opacity .7s ease, transform .7s ease; }
    .fade-right.visible { opacity: 1; transform: translateX(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .about-hero { padding: 70px 0 50px; }
      .hero-img-wrap { margin-top: 48px; }
      .hero-stat-bar { gap: 20px; }
      .director-card { padding: 36px 24px; }
      .mission-circle { width: 23rem; height: 23rem; }
      .mission-circle-inner { width: 140px; height: 140px; }
    }

    /* ── PAGE HEADER ── */
    .page-header {
      background: linear-gradient(110deg, var(--navy-dark) 0%, #112966 60%, #173580 100%);
      padding: 48px 0 0;
      position: relative;
      overflow: hidden;
    }
    .page-header::before {
      content: '';
      position: absolute; top: -60px; right: 10%;
      width: 320px; height: 320px; border-radius: 50%;
      background: rgba(122,182,72,.1);
      pointer-events: none;
    }
    .page-header::after {
      content: '';
      position: absolute; bottom: 30px; left: -80px;
      width: 220px; height: 220px; border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .page-breadcrumb .breadcrumb { margin-bottom: 10px; }
    .page-breadcrumb .breadcrumb-item a { color: var(--green); text-decoration: none; font-size: .82rem; font-weight: 600; }
    .page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.6); font-size: .82rem; }
    .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
    .page-header-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }
    .page-header-title span { color: var(--green); }
    .page-header-sub {
      color: rgba(255,255,255,.65);
      font-size: .95rem;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 0;
    }
    .page-header-badge-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      padding-bottom: 24px;
    }
    .ph-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(122,182,72,.4);
      color: #fff;
      border-radius: 30px;
      padding: 9px 20px;
      font-size: .82rem;
      font-weight: 600;
      backdrop-filter: blur(4px);
    }
    .ph-badge i { color: var(--green); font-size: 15px; }
    .page-header-wave { line-height: 0; margin-top: 28px; }
    .page-header-wave svg { width: 100%; height: 50px; display: block; }
    @media (max-width: 767px) {
      .page-header-badge-row { justify-content: flex-start; margin-top: 20px; }
      .page-header { padding: 36px 0 0; }
    }

    /* ── AWARDS REDESIGN ── */
    .awards-section { background: var(--navy-dark); padding: 100px 0; position: relative; overflow: hidden; }
    .awards-section::before {
      content: '';
      position: absolute; top: -120px; left: -120px;
      width: 500px; height: 500px; border-radius: 50%;
      background: rgba(122,182,72,.06);
    }
    .awards-section::after {
      content: '';
      position: absolute; bottom: -80px; right: -80px;
      width: 350px; height: 350px; border-radius: 50%;
      background: rgba(255,255,255,.03);
    }
    .awards-section .section-title { color: #fff; }
    .awards-section .section-eyebrow { background: rgba(122,182,72,.18); color: var(--green); }
    /* Featured Award */
    .award-featured {
      background: linear-gradient(135deg, rgba(122,182,72,.18) 0%, rgba(122,182,72,.05) 100%);
      border: 1px solid rgba(122,182,72,.35);
      border-radius: 24px;
      padding: 44px 40px;
      display: flex;
      gap: 32px;
      align-items: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 16px;
    }
    .award-featured::before {
      content: '★';
      position: absolute; top: -20px; right: 30px;
      font-size: 9rem;
      color: rgba(122,182,72,.07);
      line-height: 1;
    }
    .award-featured-icon {
      min-width: 90px; height: 16rem;
      background: var(--green);
      border-radius: 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.6rem; color: #fff;
      box-shadow: 0 12px 36px rgba(122,182,72,.4);
      flex-shrink: 0;
    }
    .award-featured-tag {
      display: inline-block;
      background: var(--green);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 12px;
      margin-bottom: 8px;
    }
    .award-featured h4 { font-weight: 800; color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
    .award-featured p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.75; margin: 0; }
    /* Award Grid Cards */
    .award-grid-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(122,182,72,.18);
      border-radius: 18px;
      padding: 28px 24px;
      height: 100%;
      transition: background .3s, transform .3s, border-color .3s;
      position: relative;
      overflow: hidden;
    }
    .award-grid-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--green), transparent);
      border-radius: 0 0 18px 18px;
      opacity: 0;
      transition: opacity .3s;
    }
    .award-grid-card:hover { background: rgba(122,182,72,.1); transform: translateY(-6px); border-color: rgba(122,182,72,.45); }
    .award-grid-card:hover::after { opacity: 1; }
    .award-grid-card .agc-icon {
      width: 56px; height: 56px;
      background: rgba(122,182,72,.15);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--green);
      margin-bottom: 18px;
      transition: background .3s;
    }
    .award-grid-card:hover .agc-icon { background: var(--green); color: #fff; }
    .award-grid-card h6 { font-weight: 700; color: #fff; font-size: .95rem; margin-bottom: 8px; }
    .award-grid-card p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.7; margin: 0; }
    .award-grid-card .agc-year {
      display: inline-block; margin-top: 14px;
      font-size: .75rem; font-weight: 700; color: var(--green);
      letter-spacing: 1px; text-transform: uppercase;
    }
    /* Milestone Timeline */
    .award-timeline { position: relative; padding: 10px 0; }
    .award-timeline::before {
      content: '';
      position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, transparent, rgba(122,182,72,.4), transparent);
      transform: translateX(-50%);
    }
    .atl-item {
      display: flex; align-items: flex-start; gap: 20px;
      margin-bottom: 36px;
      position: relative;
    }
    .atl-item:nth-child(odd) { flex-direction: row; padding-right: calc(50% + 24px); }
    .atl-item:nth-child(even) { flex-direction: row-reverse; padding-left: calc(50% + 24px); }
    .atl-dot {
      position: absolute; left: 50%;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--green);
      border: 3px solid var(--navy-dark);
      transform: translateX(-50%);
      top: 4px;
      box-shadow: 0 0 0 4px rgba(122,182,72,.2);
      z-index: 1;
    }
    .atl-year {
      font-size: .8rem; font-weight: 800; color: var(--green);
      letter-spacing: 1px; text-transform: uppercase;
      white-space: nowrap;
      min-width: 50px;
      padding-top: 2px;
    }
    .atl-content { flex: 1; }
    .atl-content h6 { font-weight: 700; color: #fff; font-size: .88rem; margin-bottom: 4px; }
    .atl-content p { color: rgba(255,255,255,.55); font-size: .78rem; line-height: 1.6; margin: 0; }
    /* Recognition counter strip */
    .award-counter-strip {
      background: rgba(122,182,72,.12);
      border: 1px solid rgba(122,182,72,.25);
      border-radius: 20px;
      padding: 32px 20px;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 56px;
    }
    .awd-stat { text-align: center; }
    .awd-stat .an { font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1; }
    .awd-stat .al { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 5px; }
    @media (max-width: 767px) {
      .award-featured { flex-direction: column; text-align: center; padding: 32px 24px; }
      .award-timeline::before { left: 8px; }
      .atl-item:nth-child(odd),
      .atl-item:nth-child(even) { flex-direction: column; padding: 0 0 0 36px; }
      .atl-dot { left: 8px; }
    }


.page-header-right-img-wrap{
        width: 12rem;
    border-radius: 1rem;
    background-color: #fff;
    padding: 0.51rem;
    margin: auto;

}

.page-header-right-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.housekeeping{
    background: url("../images/Housekeeping Excellence.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.Facility{
    background: url("../images/Integrated Facility Management.jpg");
background-size: cover;
    background-repeat: no-repeat;
}

.Sanitation{
    background: url("../images/garbage_collection.jpg");
background-size: cover;
    background-repeat: no-repeat;
}

.Manpower{
    background: url("../images/Security.jpg");
    background-position: top;
background-size: cover;
    background-repeat: no-repeat;
}

.who-card-overlay{
    background-color: #1a2e6e;
    position: absolute;
    /* border: 10px solid red; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: 0;
    border-radius: 16px;
}
.director_message_avatar{
    width: 5rem;
    height: 5rem;
}
.director_message_avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footprint_img{
    padding: 1rem;
        text-align: center;
overflow: auto;
    background: rgba(255, 255, 255, .06);
    border-radius: 16px;
    border: 1px solid rgba(122, 182, 72, .2);
}
.footprint_img_wrap img{
    width: 100%;
    border-radius: 16px;
}
 
@media only screen and (max-width:767px){
.footprint_img_wrap{
height: 30rem;
    width: 40rem;
}
.certificate-grid-card{
  flex-wrap: wrap;
  justify-content: center;
}
.certificate-grid-card .award-grid-card{
  width: 100%!important;
}
}

