        .row {
            display: flex;
            justify-content: center; 
            flex-wrap: wrap; 
            gap: 20px; 
        }

        .card {
            margin: 0 auto; 
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .heade {
                text-align: center;
                background-image: url('uploads/staff.jpg');
            background-position: 10% 40%;
            background-size: cover;
            height: 300px;
            width: 100%;
        }

        .heade h2 {
            padding-top: 90px;
            font-size: 2.5rem;
            color: #fff;
        }

        .containe {
            margin-top: 5px;
            text-align:center;
        }

        .principal-card {
            text-align: center;
            margin-bottom: 40px;
        }

        .principal-card img {
        border-radius: 12px;
        width: 700px; /* Increased width */
        height: 700px; /* Increased height */
        object-fit: cover;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     }


        .principal-card h3 {
            font-size: 1.8rem;
            font-weight: bold;
            margin-top: 15px;
            color: #333;
        }

        .principal-card p {
            font-size: 1.1rem;
            color: #777;
        }

        .row {
            padding-left: 50px;
            padding-right: 50px;
            display: flex;
            justify-content: center; /* Center content */
            flex-wrap: wrap;
            gap: 20px;
        }

        .col-md-2 {
            flex: 0 0 18%;
            max-width: 18%;
            margin-bottom: 20px;
        }

        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .card img {
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            height: 350px;
            object-fit: cover;
        }

        .card-body {
            text-align: center;
            padding: 15px;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .card-text {
            font-size: 1rem;
            color: #777;
            margin-bottom: 8px;
        }

        .contact-infoss {
            font-size: 0.9rem;
            color: #007bff;
        }

        .contact-infos i {
            margin-right: 8px;
        }

        @media (max-width: 1200px) {
            .col-md-2 {
                flex: 0 0 30%;
                max-width: 30%;
            }
        }

        @media (max-width: 768px) {
            .col-md-2 {
                flex: 0 0 48%;
                max-width: 48%;
            }
        }