/* Reset all the default styles to zero */

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

/* Main Styling */

body {
    font-family: 'IBM Plex Sans', sans-serif;
}

h1, h2, h3 {
    font-family: 'IBM Plex Mono', monospace;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #333;
}

/* Utility Classes */

.logo {
    height: 24px;
}

.home-section {
    font-size: 24px;
    height: calc(100vh - 57px); 
} 

.home-heading {
    padding-top: 100px;
}

.home-h1 {
    font-size: 64px;
}

.home-text {
    padding: 64px 0 36px 0;
}

.contact-link {
    padding-right: 16px;
}

.home-contact {
    padding-bottom: 24px;
}

.about-section {
    font-size: 24px;
    padding-top: 56px;
    width: 100%;
    height: calc(100vh - 57px);
}

.about-profile {
    display: flex;
    justify-content: center;
    padding-top: 76px;
}


.profile {
    width: 240px;
    height: 240px;
}

.about-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-text {
    margin: 48px 0;
    max-width: 700px;
    background-color: #fafafa;
    border: 1px solid #eaeaea;
    padding: 36px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.skills-section {
    font-size: 24px;
    padding-top: 56px;
}

.skills-education {
    padding: 48px 0;
    font-size: 20px;
}

.progress-section {
    padding: 8px 0;
}

.education-details {
    padding-top: 32px;
}

.education-detail {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.courses {
    padding: 24px 0;
}

.course {
    padding: 36px;
    background-color: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin: 12px 0;
}

.btn {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    background-color: #eee;
    margin-right: 12px;
}

.project-section {
    font-size: 24px;
    padding-top: 56px;
}

.page-heading {
    font-size: 48px;
    padding-bottom: 16px;
}

.projects {
    padding: 24px 0;
}

.project {
    padding: 36px 0;
    border-bottom: 1px solid #eaeaea;
}

.thumbnail {
    width: 100%;
    border-radius: 16px;
}

.project-details {
    padding: 12px 48px;
}

/* Bootstrap Classes Utility Overriding */

.navbar {
    border-bottom: 1px solid #eaeaea;
    z-index: 999;
}

.active {
    font-weight: bold;
    background-color: #f6f6f6;
}

.nav-link {
    padding: 8px 24px !important;
}

.navbar-toggler {
    border: none;
}

.nav-link:hover,
.navbar-toggler:hover {
    background-color: #f6f6f6;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.progress {
    height: 5px;
}

.progress .progress-bar{
    animation: progress 3s;
}

@keyframes progress{
    0% { width:0%; }
}

.fa-brands {
    font-size: 32px;
}

/* Media Queries */

@media (max-width: 768px) {
    .home-heading {
        padding-top: 50px;
    }

    .about-profile {
        padding-top: 16px;
    }


    .skills-education {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home-section {
        font-size: 16px;
    }

    .home-heading {
        padding-top: 120px;
    }

    .home-h1 {
        font-size: 36px;
    }

    .about-section {
        font-size: 16px;
    }

    .about-profile {
        padding-top: 96px;
    }

    .skills-section {
        font-size: 16px;
    }

    .progress-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .education-details {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pe-4 {
        padding-right: 8px !important;
    }

    .btn {
        display: block;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .about-text {
        display: block;
    }

    .project-section {
        font-size: 16px;
    }

    .fa-brands {
        font-size: 24px;
    }
}