/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    text-align: center;
    padding: 50px 20px;
    background-color: #06BBCC;
    color: white;
    margin-bottom: 50px;
    border-radius: 10px;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    font-size: 20px;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.profile-photo {
    text-align: center;
    margin-bottom: 20px;
}

.profile-photo img {
    width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Qualifications under the photo */
.qualifications  {

    font-weight: bold;
    margin-top: 10px;
    font-size: 15px;

    text-align: left;
    margin-left: 0;
    padding: 10px;
    list-style-type: none;
    color: #0b0e1b;
    font-family: 'Arial', sans-serif;

}



ul>p{
    margin-top: 20px;
    font-size: 25px;
    font-weight: bolder;
    color: #0b0e1b;
    font-family: 'Arial', sans-serif;

}


/* Details Section */
.details {

    margin-left: 20px; /* Add space between image and details */
}

.details h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #06BBCC;
}

.details p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    color: #666;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    text-align: center;
}

.gallery h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .profile-photo {
        margin-right: 60px;
    }

    .details {
        text-align: left;
        margin-left: 0;
    }
}
