body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
header {
    background: #222;
    color: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #f4b400;
}
section.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh; /* Full height to center vertically */
    padding: 0 50px;
    text-align: center;
}
.text-container {
    flex: 1;
    text-align: center;
}
.image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center; /* Vertically centers the image */
}
.profile-photo {
    width: 350px; /* Adjust size */
    height: auto;
    border-radius: 50%;
    margin-top: 20px;
    margin-right: 80px;
}

.about-section {
    background-color: #f1f1f1;
    padding: 50px 0;
    text-align: center;
}
.about-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
}
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 50px;
}
.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

/* Skills Section */
.skills-section {
    background-color: #fff;
    padding: 50px;
    text-align: center;
}
.skills-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}
.skill {
    margin-bottom: 20px;
}
.skill p {
    font-size: 18px;
    margin-bottom: 5px;
}
.progress-bar {
    width: 80%;
    max-width: 600px;
    background-color: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    height: 25px;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.progress-fill {
    height: 100%;
    background-color: #f4b400;
    text-align: right;
    padding-right: 10px;
    line-height: 25px;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    transition: width 1.5s ease-in-out;
}
/* Certificates Section */
.certificates-section {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
}
.certificates-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}
.certificates-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.certificate {
    width: 280px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.certificate img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.certificate p {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}
/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}
.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.contact-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    width: 400px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.contact-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #0056b3;
}

/* Contact Info */
.contact-info {
    width: 300px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.contact-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}
.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
.social-icons a img {
    width: 30px;
    margin: 5px;
    transition: 0.3s;
}
.social-icons a img:hover {
    transform: scale(1.1);
}