 :root {
            --primary-color: #072247;
            --secondary-color: #00abe3;
            --text-color: #333;
            --light-bg: #f8f9fa;
        }
        
      
        
        .page-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
        }
        
       
        .page-subtitle {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .member-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* height: 100%; */
            text-align: center;
            padding: 12px 12px 18px;
            max-width: 280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        
        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .member-img-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .member-img-outer {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .member-card:hover .member-img-outer {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        .member-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid white;
        }
        
        .member-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            z-index: 10;
            border: 2px solid white;
        }
        
        .badge-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        }
        
        .badge-success {
            background: linear-gradient(45deg, #28a745, #20c997);
        }
        
        .badge-warning {
            background: linear-gradient(45deg, #ffc107, #fd7e14);
        }
        
        .badge-danger {
            background: linear-gradient(45deg, #dc3545, #e83e8c);
        }
        
        .badge-info {
            background: linear-gradient(45deg, #17a2b8, #6f42c1);
        }
        
        .member-info {
            padding: 0 5px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .member-name {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: var(--primary-color);
            line-height: 1.2;
        }
        
        .member-post {
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
            font-size: 0.85rem;
            line-height: 1.2;
        }
        
        .member-desc {
            margin-bottom: 12px;
            color: #666;
            line-height: 1.4;
            flex-grow: 1;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: auto;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #00abe3;
            color: white;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
  
        .swiper {
            padding: 25px 10px 45px;
        }
        
     
     
        
        @media (max-width: 768px) {
            .member-img-container {
                width: 110px;
                height: 110px;
            }
            
            .member-img-outer {
                width: 90px;
                height: 90px;
            }
            
            .member-card {
                padding: 10px 10px 15px;
                max-width: 260px;
            }
            
            .swiper-button-next, 
            .swiper-button-prev {
                display: none;
            }
        }
  


    .swiper-button-next, .swiper-button-prev {
      color: #072247;
      font-size: 12px !important;
    }
    .swiper-pagination-bullet {
      background: #072247;
     display: none !important;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 14px !important;
        font-weight: 700;
    }