*{
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: "Space Grotesk", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

.navbar header{
    background-image: linear-gradient(to right,#de6262,#ffb88c);
}
.nav{
    position: relative;
    z-index: 1;
    margin: 0px;
    padding: 0px;
    margin-bottom: 0;
    border: 0;
    margin-top: 0;
}
.navbar.fixed-top {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.about-head{
    color: darkorchid;
}

.about-container{
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
}

.about-container img{
    flex-shrink: 0;
}

.about-container p{
    margin: 0;
}

.introduce {
    background-image: url(./istockphoto-1418628408-612x612.jpg);
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.1); /* Darker overlay for readability */
}


.resume{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    border: none;
}

.custom-btn{
    background-color: slateblue;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #dee2e6;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline .container {
    position: relative;
    margin: 20px 0;
}

.timeline .container .timeline-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0d6efd;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline .container .text-box {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline .container:nth-child(odd) .text-box {
    margin-right: auto;
    margin-left: 55%;
}

.timeline .container:nth-child(even) .text-box {
    margin-left: auto;
    margin-right: 55%;
}

.timeline h2, .timeline h3, .timeline p, .timeline small {
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 10px;
    }

    .timeline .container .timeline-image {
        width: 40px;
        height: 40px;
    }

    .timeline .container .text-box {
        margin-left: 40px !important;
        margin-right: 0 !important;
    }
}

.text-box{
    padding: 20px 30px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    font-size: 15px;
}

.btn-primary.btn{
    background-color: slateblue;
}

#skills-section.skills-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.skills-list img{
    max-width: 80px;
    height: 80px;
    object-fit: contain;
}

/* .introduce{
    padding: 20px;
    margin-bottom: 0;
} */

#about{
    padding-top: 0;
}

.btn:hover {
    background-color: #5a5a9c;
    color: #fff;
}

.hero-heading{
    margin-bottom: 20px;
}

#projects .card {
    transition: transform 0.2s;
}

#projects .card:hover {
    transform: scale(1.05);
}


footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
}
