/* Profile Image Styles */
.profile-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-container:hover .profile-image {
    transform: scale(1.1);
}

/* Project Card Image Styles */
.project-card-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(15, 23, 42, 0.05);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Navbar Logo Styles */
.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease;
}

.logo-container:hover .nav-logo {
    transform: scale(1.1);
}

/* Background Images */
.hero-gradient {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('backg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-gradient {
    background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), url('background-blur-bright-220067.jpg');
    background-size: cover;
    background-position: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .profile-container {
        width: 150px;
        height: 150px;
    }

    .project-card-image {
        height: 180px;
    }

    .nav-logo {
        width: 32px;
        height: 32px;
    }
}