body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #5C6BC0;
    /* Softer primary color */
    color: white;
    text-align: center;
    padding: 1em;
}

.social-icons a {
    color: white;
    margin: 0 8px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #B39DDB;
    /* Lighter color on hover */
}

.main-content {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
}

.about-me {
    flex: 1;
    padding: 20px;
    background-color: #EDE7F6;
    /* Softer background color */
    border-radius: 8px;
    transition: transform 0.3s;
}

.about-me:hover {
    transform: scale(1.02);
    /* Slightly zoom in on hover */
}

.profile-picture {
    border-radius: 50%;
    max-width: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.profile-picture:hover {
    transform: rotate(360deg);
}

.projects {
    flex: 2;
    padding: 20px;
}

.projects li {
    margin-bottom: 20px;
}

.projects a.btn-outline-primary {
    color: #5C6BC0;
    border-color: #5C6BC0;
    transition: background-color 0.3s, color 0.3s;
}

.projects a.btn-outline-primary:hover {
    background-color: #B39DDB;
    /* Lighter color on hover */
    color: white;
}

.nav-tabs .nav-item a.nav-link {
    color: #5C6BC0;
    transition: color 0.3s;
}

.nav-tabs .nav-item a.nav-link:hover {
    color: #B39DDB;
}

.icon-box {
    text-align: center;
    transition: transform 0.3s;
}

.icon-box img {
    max-width: 80px;
    border-radius: 50%;
}

.icon-box:hover {
    transform: scale(1.1);
}

.icon-box p {
    margin-top: 10px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #45505b;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/

.resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #45505b;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #0563bb;
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #0563bb;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    background: #f7f8f9;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #0563bb;
}