/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Gallery Item */
.gallery-item {
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    transition: transform 0.3s ease;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Navbar customization */
.navbar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About section customization */
.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 1.2rem;
    width: 24px;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #0d6efd;
}

.achievement-card {
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}