   :root {
            --brand-green: #088534;
            --accent-yellow: #ffcf33;
            --white: #ffffff;
            --card-bg: rgba(255, 255, 255, 0.95);
        }

   
     body { font-family: 'Inter', sans-serif; overflow-x: hidden;  }



    .custom-scrollbar::-webkit-scrollbar { width: 6px; }
    .custom-scrollbar::-webkit-scrollbar-track { background: #1a2d5a; }
    .custom-scrollbar::-webkit-scrollbar-thumb { background: #F2801F; border-radius: 10px; }
        
      




  .exh {
            background-color: var(--brand-green);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 50px 20px;
            color: var(--white);
        }


        .container-exh {
            max-width: 1200px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h2 {
            font-size: 3rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -1px;
            font-weight: 800;
            color: #fff;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 10px;
            color: aliceblue;
        }

        .header .divider {
            width: 80px;
            height: 5px;
            background: var(--accent-yellow);
            margin: 20px auto;
            border-radius: 10px;
        }

        /* Grid Layout */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        /* Card Styling */
        .profile-card {
            background: var(--card-bg);
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .profile-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        /* Icon Wrapper */
        .icon-wrapper {
            width: 65px;
            height: 65px;
            background: var(--brand-green);
            color: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.7rem;
            transition: 0.3s;
        }

        .profile-card:hover .icon-wrapper {
            background: var(--accent-yellow);
            color: var(--brand-green);
            border-radius: 50%;
        }

        .profile-card h3 {
            color: #222;
            font-size: 1.05rem;
            margin: 0;
            line-height: 1.4;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
            .profile-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
            .profile-card { padding: 20px 15px; }
        }




         