body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}


/* Video Background */

.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    /* Adjusted to make sure video fills the section */
    height: 100%;
    /* Adjusted to make sure video fills the section */
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* Content Overlay */

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    text-align: center;
}


/* Profile Photo Styles */

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
}


/* Overlay Styles */

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}


/* Header Styles */

.profile-header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}


/* Contact Info */

.contact-info p {
    margin: 5px 0;
}


/* Skills Section */

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.skill {
    width: 30%;
    margin: 10px 0;
}

.progress {
    background-color: #ddd;
    border-radius: 5px;
}

.progress-bar {
    background-color: #007bff;
    height: 20px;
    border-radius: 5px;
    color: white;
    text-align: center;
}


/* Form Styles */

form {
    max-width: 500px;
    margin: 0 auto;
}


/* Social Icons */

.social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 1.5em;
}

.social-icons a:hover {
    color: #007bff;
}


/* Experience Section */

.experience-item ul {
    list-style: none;
    padding: 0;
}

.experience-item li {
    margin-bottom: 15px;
}


/* Mobile Responsiveness */

@media (max-width: 768px) {
    .skill {
        width: 100%;
        margin: 5px 0;
    }
    h1 {
        font-size: 2em;
    }
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    .progress-bar {
        height: 15px;
    }
}