@charset "UTF-8";
/* CSS Document */



        .team-container {
            padding: 50px 0;
        }

        .team-card {
            background-color: #073042;
            border-radius: 0px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .team-member-img {
            width: 120px;
            height: 120px;
            border-radius: 0%;
            object-fit: cover;
            border: 4px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
        }

   

 /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
			text-align: center!important;
        }

        .modal-header {
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            color: white!important;
            border: none;
            padding: 25px;
			text-align: center!important;
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
			 color: white!important;
        }

        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .btn-close:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .modal-body {
            padding: 30px;
			background: #009DC5;
background: radial-gradient(circle,rgba(0, 157, 197, 1) 0%, rgba(7, 48, 66, 1) 100%);
        }

        .modal-bio-img {
            width: 230px;
            border-radius: 0%;
            object-fit: cover;
            margin-bottom: 15px;
        }
    .position-badge {
            
            color: white;
            padding: 5px 15px;
            border-radius: 0px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        .bio-text {
            line-height: 1.7;
            color: #fff!important;
			
font-size: 0.9rem!important;
font-weight:100!important;
			text-align: center!important;
        }

        .social-links {
            margin-top: 25px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 0%;
            margin: 0 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .social-link.linkedin {
            background-color: transparent;
            color: white;
        }

        .social-link.twitter {
            background-color: transparent;
            color: white;
        }

        .social-link.email {
             background-color: transparent;
            color: white;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

    

        /* Animation for modal */
        .modal.fade .modal-dialog {
            transform: scale(0.8) translateY(-50px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .modal.show .modal-dialog {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal-backdrop.fade {
            opacity: 0;
        }

        .modal-backdrop.show {
            opacity: 0.6;
            background: #073042;
        }