
  /* Guru Ji & Ashmita Bhandari photo */







  .org-section {
    --cream: #fdf6e3;
    --cream-border: #e8ddb5;
    --maroon: #8b0000;
    --dark-red: #a30000;
    --text-dark: #1a1a1a;
    --icon-blue: #2b6cb0;
    --icon-pink: #d6249f;

    font-family: "Noto Sans Devanagari", "Segoe UI", Arial, sans-serif;
    background: var(--cream);
    border: 1px solid var(--cream-border);
    border-radius: 20px;
    padding: 40px 30px 60px;
    max-width: 1100px;
    margin: 30px auto;
    box-sizing: border-box;
  }

  .org-section * { box-sizing: border-box; }

  .org-title {
    text-align: center;
    color: var(--maroon);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 40px;
  }

  .org-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .org-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: start;
  }

  /* Photo + red oval base */
  .org-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .org-photo-base {
    position: absolute;
    bottom: -6px;
    width: 150px;
    height: 34px;
    background: var(--dark-red);
    border-radius: 50%;
    z-index: 1;
  }

  .org-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    /* Replace the placeholder below with your real photo:
       <img class="org-photo" src="your-photo.jpg" alt="Name">
    */

    border-radius: 6px 6px 0 0;
  }

  /* Placeholder silhouette used until a real photo is added */
  .org-photo.placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    
    color: #8a8a8a;
    font-size: 13px;
    text-align: center;
    padding-bottom: 8px;
  }

  .org-info h3 {
    color: var(--maroon);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 4px 0 2px;
    line-height: 1.3;
  }

  .org-info .org-role {
    color: var(--maroon);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 10px;
  }

  .org-info p.org-desc {
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 16px;
  }

  .org-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .org-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
  }

  .org-socials a.fb { background: #1877f2; }
  .org-socials a.ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
  .org-socials a.x  { background: #000; }

  .org-btn {
    display: inline-block;
    background: var(--maroon);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 4px;
    transition: background 0.2s ease;
  }

  .org-btn:hover { background: var(--dark-red); }

  @media (max-width: 800px) {
    .org-grid { grid-template-columns: 1fr; gap: 50px; }
  }

  @media (max-width: 480px) {
    .org-card { grid-template-columns: 1fr; text-align: center; }
    .org-photo-wrap { justify-content: center; margin-bottom: 10px; }
    .org-socials, .org-btn { justify-content: center; }
    .org-socials { justify-content: center; }
  }
  }
  
  .team-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.team-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 10%;
    overflow: hidden;
    border: 5px solid #f3f3f3;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h5 {
    margin-bottom: 8px;
    font-weight: 700;
}

.team-card p {
    color: #666;
    margin-bottom: 0;
}