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

        .team-scrollable {
            background-color:transparent;
         
         
            padding: 20px;
            max-height: 280px;
            overflow-y: auto;
            
           
            transition: all 0.3s linear;
        }

        .team-scrollable::-webkit-scrollbar {
            width: 8px;
        }

        .team-scrollable::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .team-scrollable::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .team-scrollable::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .teamm-grid {
            display: grid;
           grid-template-columns: auto auto auto auto;
            gap: 5px;
            padding: 10px;
        }

        .teamm-member {
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .teamm-member:hover {
            transform: translateY(-5px);
        }

        .member-image {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            margin: auto;
            display: block;
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-name {
            font-size: 16px;
            margin-bottom: 5px;
            color: #fff;
        }

       

        @media (max-width: 768px) {
            .teamm-grid {
            
    grid-template-columns: 1fr 1fr;
    gap: 17px 10px;
    overflow: auto;
   

            }
        }

        @media (max-width: 480px) {
           .teamm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 17px 10px;
    overflow: auto;
  
}
        }
        
        
        
        
  .team-members-grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .team-member-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .team-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .team-member-image {
            overflow: hidden;
        }
        
        .team-member-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .team-member-card:hover .team-member-image img {
            transform: scale(1.05);
        }
        
        .team-member-info {
            padding: 20px;
            text-align: center;
        }
        
        .team-member-name {
            margin: 0 0 5px;
            color: #2c3e50;
            font-size: 1.3rem;
        }
        
        .team-member-position {
            color: #e74c3c;
            font-weight: 600;
            margin: 0 0 15px;
            font-size: 0.9rem;
        }
        
        .team-member-bio {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .team-member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-member-social a {
            color: #555;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .team-member-social a:hover {
            color: #3498db;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .team-member-card {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .col-sm-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }