body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    overflow-x: hidden;
}

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

a:hover {
    color: #007bff;
}

h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0;
}

p {
    color: #ccc;
}

.navbar {
    background-color: #1e1e1e;
    border-bottom: 1px solid #444;
}

.navbar .navbar-brand {
    color: #f0f0f0;
    font-weight: 600;
}

.navbar .nav-link {
    color: #ccc;
    margin-right: 20px;
}

.navbar .nav-link:hover {
    color: #007bff;
}

#hero {
    background: url('images/bg.png') center center no-repeat;
    background-size: cover;
    height: 100vh;
    color: #f0f0f0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero h1, #hero h2 {
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}

#hero h1 {
    font-weight: 600;
    animation-delay: 0.5s;
}

#hero h2 {
    font-weight: 400;
    animation-delay: 0.75s;
}

#about {
    padding: 50px 0;
}

#about h2 {
    color: #f0f0f0;
    text-align: center;
}

#about p {
    color: rgb(44, 44, 44);
    text-align: center;
}

#skills {
    background-color: #1e1e1e;
    padding: 50px 0;
}
#skills p{
    color: rgb(44, 44, 44);
    text-align: center;
}

.skill-card {
    background-color: #2c2c2c;
    border: 1px solid #444;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.skill-card h5 {
    color: #f0f0f0;
}
.project-card {
    background-color: #1e1e1e;
    border: 1px solid #444;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); 
}



.project-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

.project-card h5 {
    color: #fff;
}

.project-card p {
    color: #ccc;
}

.project-card .btn-primary, .project-card .btn-secondary {
    margin: 10px 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.project-card .btn-primary:hover, .project-card .btn-secondary:hover {
    transform: scale(1.1);
}

.project-card .btn-primary:hover {
    background-color: rgb(20, 19, 19); /* Change color for primary button */
}

.project-card .btn-secondary:hover {
    background-color: #6c757d; /* Change color for secondary button */
}


.social-menu ul {
    display: flex;
    padding: 0;
    justify-content: center;
    margin-left: 0px;
}

.social-menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}

.social-menu ul li .fab {
    font-size: 25px;
    line-height: 40px;
    transition: .3s;
    color: #f0f0f0;
}

.social-menu ul li .fab:hover {
    color: #fff;
}

.social-menu ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e1e1e;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}

.social-menu ul li a:hover {
    transform: translate(0, -10%);
}

.social-menu ul li:nth-child(1) a:hover {
    background-color: #4267B2;
}

.social-menu ul li:nth-child(2) a:hover {
    background-color: black;
}

.social-menu ul li:nth-child(3) a:hover {
    background-color: #E1306C;
}

.project-card .btn-primary, .project-card .btn-secondary {
    margin-right: 10px;
}

.project-card .btn:hover {
    transform: scale(1.05);
}

.project-card .btn-primary:hover {
    background-color: #0056b3;
}

.project-card .btn-secondary:hover {
    background-color: #444;
}

@media (min-width: 768px) {
    .project-card {
        height: auto;
    }
}

#experience {
    background-color: #1e1e1e;
    padding: 50px 0;
}

#experience h2 {
    color: #f0f0f0;
}

.experience-list li {
    background-color: #2c2c2c;
    border: 1px solid #444;
    padding: 15px 20px;
    transition: transform 0.3s;
    color: #f0f0f0;
}

.experience-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

#contact {
    padding: 50px 0;
}

#contact h2 {
    color: #f0f0f0;
    text-align: center;
}

#contact .form-label {
    color: #f0f0f0;
}

.form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #f0f0f0;
}

.form-control:focus {
    background-color: #444;
    color: #f0f0f0;
}

footer {
    background-color: #1e1e1e;
    color: white;
    padding: 20px;
}

footer a {
    color: white;
}

footer a:hover {
    color: #007bff;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}