@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
/* 
Yellow: #F5AD18;
Maroon: #9E1C60;
Purple: #811844;
Dark Purple #561530; 
*/


body {
    font-family: "Roboto Mono", sans-serif !important;
}

.momo-signature-regular {
    font-family: "Momo Signature", cursive;
    font-weight: 400;
    font-style: normal;
}

.bg-maroon {
    background-color: #9E1C60;
}

.navbar-custom a {
    color: #ffffff;
    /* Your desired color */
}

.navbar-custom a:hover {
    color: #b7b9c4;
    /* Color for hover state */
}

/* ---- particles.js container ---- */
#particles-js {
    width: 100%;
    height: 500px;
    background-color: #4C4C4C;
    background-image: url('');
    background-repeat: no-repeat;
}

.particle-image {
    height: 300px;
}

.visible-border {
    border: solid 3px green;
}

.absolute-pos {
    position: absolute;
}

.know-more {
    padding: 50px 0 50px 0;
    text-align: center;
    font-size: 20px;
    margin-bottom: 80px;
    background-color: #811844;
    color: #ffffff;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?technology,circuit');
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?technology,circuit');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.section-title {
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.skill-badge {
    font-size: 0.9rem;
    margin: 3px;
}

.timeline-item {
    border-left: 2px solid #0d6efd;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0d6efd;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 5px;
}