
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', 'sans-serif';
}
.p-navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
}
.p-bg-color {
    background-color: #dcf6ff;
}
.p-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
.p-nav-list {
    padding: 5px 10px;
    list-style: none;
    margin-bottom: unset;
    text-align: center;
}
.p-nav-list li {
    display: inline;
    padding: 0 15px;
}
.p-nav-list li a {
    text-decoration: none;
    color: #393939;
}
.p-header {
    height: 90vh;
    align-items: center;
    display: flex;
    justify-content: center;
}
.p-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px
}
.p-header-content img {
    width: 400px;
    border-radius: 100%;
    border: solid 6px #c7e1ff;
    
}
.p-header-text q {
    font-size: 18px;
    color: #6e6e6e;
}
.p-social-media-links {
    text-align: center;
    font-size: 42px;
    margin-top: 10px;
}
.p-social-media-links a {
    color: unset;
    padding: 5px 10px;
}

/* About us */

.about-section {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    padding: 20px;
    padding-top: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.education, .career {
    margin-bottom: 20px;
}
.year {
    font-weight: bold;
    color: #333;
}
.school, .degree {
    font-size: 1.2em;
}
.location {
    color: #666;
}
.achievement {
    margin-top: 5px;
    font-style: italic;
    color: #444;
}
.headline {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}
.experience, .goal {
    margin-top: 10px;
}
.skills .title {
    font-weight: bold;
    margin-top: 15px;
}
.skills .list {
    padding-left: 15px;
    color: #555;
}

/* Experience */
.experience-section {
    padding: 20px;
    padding-top: 60px;
    background-color: #ade8f4;
    border-radius: 8px;
}
.experience-header h2 {
    margin-bottom: 15px;
}
.experience-item {
    margin-bottom: 20px;
}
.year {
    font-weight: bold;
    margin-bottom: 5px;
}
.company {
    font-size: 1.1em;
    color: #333;
}
.role {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}
.details {
    padding-left: 20px;
    list-style-type: disc;
}
ul.details li {
    margin-bottom: 5px;
}

/* Projects section */
.projects-section {
    padding: 20px;
    padding-top: 60px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-card {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.project-card p {
    margin: 0 0 15px;
    color: #555;
}

.project-links a {
    text-decoration: none;
    margin-right: 10px;
}

.project-links img {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .project-card {
        width: 100%;
    }
}

/* SKILLS */
#skillsCarousel {
    width: 100%;
}
.skills-section {
    text-align: center;
    padding-top: 60px;
}

.skills-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.skill {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.skill i {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.skill p {
    font-size: 1.1em;
    color: #333;
}

.carousel-item {
    padding: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #333;
}

@media (max-width: 768px) {
    .skill {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .skill {
        width: 100%;
    }
}

/* Certification */
.certification-section {
    margin: 40px 0;
    padding: 20px;
}

.certification-section .container {
    max-width: 100%;
    padding: 0;
}

.certification-section h2.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 700;
}

.certification-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.certification-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cert-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
}

.certification-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.certification-section h4 {
    font-size: 1.4em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.course-contents {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1em;
}

.course-contents li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 6px;
}

.course-contents li:before {
    content: "\2022";
    font-size: 1.5em;
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .certification-section .row:last-child {
        text-align: center;
    }    
}

/* Contact Section */
.contact-section {
    margin-top: 60px 0;
    padding: 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.contact-section .container {
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section h2.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.contact-section .contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.contact-section .contact-email {
    font-size: 1.5em;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-section .contact-email:hover {
    color: #0056b3;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 1.1em;
}
.footer .container{
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section h2.section-title {
        font-size: 2em;
    }

    .contact-section .contact-email {
        font-size: 1.2em;
    }

    .footer p {
        font-size: 1em;
    }
}
