

/* Make the container take full screen height and center the content */
.container {
    background-color: #006980;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center;     /* Center content horizontally */
    min-height: 100vh;       /* Make sure container takes full viewport height */
  
}

.container h1{

    margin-top:60px; 
    font-size: 60px;
    color:white;
    margin-bottom: 10px;
}


.container p{
    color: white;
    font-size: 20px;
    
    
}

.about-section {
    padding: 50px 0;
    width: 100%;  /* Ensure the section takes full width */
    
    background-color: #006980;
}

/* Boss section - Larger size and centered */
.boss {
    background-color: rgba(237, 234, 230);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
    width: 60%;
    transition: transform 0.3s ease-in-out;
    
}

.boss:hover {
    transform: translateY(-10px);
}

.boss .team-image img,
.team-image img {
    width: 150px; /* Ensure uniform size */
    height: 150px; /* Ensure circular dimensions */
    border-radius: 50%; /* Make the images circular */
    object-fit: cover; /* Cover the circle without stretching */
    object-position: center; /* Display the center of the image */
}

.boss .team-info h2 {
    font-size: 2em;
    color: #34495e;
}

.boss .team-info p {
    font-size: 1.2em;
    color: #95a5a6;
}

/* Other team members */
.team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%; /* Ensure team section takes full width */
}

.team-member {
    background-color: rgba(237, 234, 230);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    margin: 20px;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    height: auto;
}

.team-member:hover {
    transform: translateY(-10px);
}



.team-info {
    margin-top: 20px;
}

.team-info h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #34495e;
}

.team-info p {
    font-size: 1em;
    color: #95a5a6;
}