body {
    font-family: 'Poppins', sans-serif;
    background-color: #222831 !important;
}

.bg-darker {
    background-color: #1a1e24 !important;
}

.navbar {
    background-color: rgba(34, 40, 49, 0.95) !important;
    backdrop-filter: blur(10px);
}
.nav-link {
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
}
.nav-link:hover {
    color: #00c8ff !important;
}

.hero-img {
    width: 320px;
    height: 400px; 
    border-radius: 30px !important;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.4), 0px 0px 20px rgba(0, 200, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
}

.skill-box {
    background-color: #222831;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill-box:hover {
    transform: translateY(-10px);
    border-color: #00c8ff !important;
    box-shadow: 0 10px 20px rgba(0, 200, 255, 0.1);
}

.project-card {
    transition: transform 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    border-color: #00c8ff !important;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #444;
}

.social-icon {
    color: #EEEEEE;
    font-size: 2rem;
    transition: 0.3s;
}
.social-icon:hover {
    color: #00c8ff;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .hero-img {
        width: 250px;
        height: 320px;
        margin-bottom: 30px;
    }

    #home .col-md-6 {
        text-align: center !important;
    }

    .display-5 {
        font-size: 2.2rem;
    }
    
    .fs-3 {
        font-size: 1.5rem !important;
    }

    #home .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0 !important;
    }

    .content-about p {
        padding: 0 15px;
    }
}