  :root {
      --rc-blue:#0d6efd;
      --rc-green:#25D366;
      --rc-dark:#1f2937;
      --rc-gray:#6b7280;
      --rc-bg:#f4f6f8;
    }


    body { background: var(--rc-bg); font-family: 'Segoe UI', sans-serif; color: var(--rc-dark); }

    .rc-header { text-align:center; margin-bottom:2rem; }
    .rc-header img { max-height:80px; margin-bottom:1rem; }
    .rc-header h2 { font-weight:700; margin-bottom:.25rem; }
    .rc-header p { color: var(--rc-gray); }

    .search-input { max-width:420px; margin:0 auto 2rem; border-radius:30px; padding:.75rem 1.25rem; }

    .cards-wrapper { display:flex; gap:1.25rem; overflow-x:auto; padding-bottom:1rem; scroll-snap-type:x mandatory; }
    .cards-wrapper::-webkit-scrollbar { height:6px; }
    .cards-wrapper::-webkit-scrollbar-thumb { background:#cbd5e1; border-radius:10px; }

    .person-card { min-width:300px; background:#fff; border-radius:18px; padding:1.25rem; scroll-snap-align:start; box-shadow:0 10px 25px rgba(0,0,0,.08); transition:transform .3s ease, box-shadow .3s ease; }
    .person-card:hover { transform:translateY(-6px); box-shadow:0 16px 35px rgba(0,0,0,.12); }
    .avatar { width:96px; height:96px; border-radius:50%; object-fit:cover; border:4px solid #fff; box-shadow:0 6px 16px rgba(0,0,0,.15); margin-bottom:.75rem; }
    .person-card h6 { font-weight:700; margin-bottom:.1rem; }
    .person-card small { color: var(--rc-blue); font-weight:600; }
    .person-card p { font-size:.9rem; color: var(--rc-gray); margin:.75rem 0 1rem; }
    .social-icons a { margin-right:.55rem; font-size:1.15rem; color: var(--rc-gray); transition: transform .2s ease, color .2s ease; }
    .social-icons a:hover { transform: translateY(-2px); }
    .fa-whatsapp { color: var(--rc-green); }
    .fa-linkedin { color:#0077b5; }
    .fa-twitter { color:#1da1f2; }
    .fa-facebook { color:#1877f2; }
    .fa-youtube { color:#ff0000; }
    .fa-globe { color: var(--rc-dark); }
    .card-actions .btn { border-radius:30px; font-size:.8rem; padding:.35rem .9rem; }

    .partners img { max-height:80px; object-fit:contain; }

     /* Navbar */
    .navbar {
      background-color: #1f2937;
    }
    .navbar-toggler{
        background-color: #fff;
    }
     /* Titles */
    .page-title {
      text-align: center;
      margin: 40px 0 10px;
      font-weight: 700;
    }

    .page-subtitle {
      text-align: center;
      color: #6c757d;
      margin-bottom: 30px;
    }

 /* Search */
    .search-bar {
      max-width: 420px;
      margin: 0 auto 35px;
    }
 /* Horizontal Cards */
    .card-scroll {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding-bottom: 30px;
      scroll-snap-type: x mandatory;
    }

    .card-scroll::-webkit-scrollbar {
      height: 8px;
    }

    .card-scroll::-webkit-scrollbar-thumb {
      background: #adb5bd;
      border-radius: 10px;
    }

    .profession-card {
      min-width: 300px;
      max-width: 300px;
      border: none;
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      scroll-snap-align: start;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .profession-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

    .profile-img {
      height: 210px;
      object-fit: cover;
    }

    .card-subtitle {
      font-size: 0.85rem;
      color: #0d6efd;
      font-weight: 600;
    }

    .social-icons a {
      color: #495057;
      margin-right: 10px;
      font-size: 1.15rem;
      transition: transform 0.2s, color 0.2s;
    }

    .social-icons a:hover {
      color: #0d6efd;
      transform: scale(1.15);
    }
.org-image{
    max-height: 150px;
    max-width: 150px;
    border: 2px solid #0d6efd;
    border-radius: 50%;
}
.partner-logo {
      border: #25D366 solid 1px;
    }

 footer{
    background-color: #1f2937;
 }