body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.header {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.header img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #d4af37;
    margin-bottom: 20px;
    
}

.header h1 {
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .header img {
        width: 150px;
        height: 150px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 1em;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



     /* Base Navbar Styles */
     .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(149,178,176, 0.7);
        color: #0f0f0f;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Current Page Link (Visible in Mobile View) */
    .navbar .current-page {
        font-size: 1.2em;
        font-weight: bold;
        color: #333;
    }

    /* Hamburger Menu Button */
    .navbar .hamburger {
        display: none;
        font-size: 1.5em;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Full Menu (Desktop View) */
    .navbar ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        transition: color 0.3s;
    }

    .navbar ul li a.active {
        color: #ffdd57;
    }

    .navbar ul li a:hover {
        color: #ffdd57;
    }

    /* Hidden Menu for Mobile View */
    @media (max-width: 768px) {
        .navbar .hamburger {
            display: block;
        }

        .navbar ul {
            display: none;
            position: absolute;
            top: 60px;
            right: 20px;
            background: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            flex-direction: column;
            gap: 15px;
            padding: 10px 20px;
            z-index: 1000;
        }

        .navbar ul.active {
            display: flex;
        }
    }


    .work-experience {
        margin-top: 50px;
    }

    .work-experience .job-item {
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .work-experience .job-item:hover {
        transform: scale(1.05);
    }

    .work-experience img {
        width: 60px;
        height: 60px;
        margin-right: 20px;
        object-fit: contain;
    }

    .work-experience h3 {
        font-size: 1.5em;
        color: #1E2A78;
        margin: 0;
    }

    .work-experience span {
        display: block;
        font-size: 0.9em;
        color: #555;
        margin-bottom: 5px;
    }

    .work-experience p {
        margin: 0;
    }

    @media (max-width: 768px) {
        .work-experience .job-item {
            flex-direction: column;
            text-align: center;
        }

        .work-experience img {
            margin-bottom: 15px;
        }
    }


    .education-section {
        margin-top: 50px;
    }

    .education-section .education-item {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .education-section .education-item:hover {
        transform: scale(1.05);
    }

    .education-section img {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }

    .education-section h3 {
        font-size: 1.5em;
        margin: 0 0 5px;
        color: #1E2A78;
    }

    .education-section span {
        font-size: 0.9em;
        color: #555;
        display: block;
    }

    @media (max-width: 768px) {
        .education-section .education-item {
            flex-direction: column;
            text-align: center;
        }

        .education-section img {
            margin-bottom: 10px;
        }
    }


    .achievements-section {
        margin-top: 50px;
    }

    .achievements-section ul {
        list-style: none;
        padding: 0;
    }

    .achievements-section li {
        background: #fff;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .achievements-section li:hover {
        transform: translateY(-5px);
    }

    @media (max-width: 768px) {
        .achievements-section {
            text-align: center;
        }
    }
    .slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: #00000000;
}

.slide {
    display: none;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.caption {
        text-align: center;
        padding: 10px;
        font-size: 1.2em;
        color: #000000;
        background: rgba(149,178,176, 0.7);
        border-radius: 10px;
        margin-top: 10px;
    }


.slideshow-container .prev,
.slideshow-container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 2;
}

.slideshow-container .prev {
    left: 10px;
}

.slideshow-container .next {
    right: 10px;
}

.dot-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #717171;
}


.advocate-section {
    margin-top: 50px;
}

.advocate-section ul {
    list-style: none;
    padding: 0;
}

.advocate-section li {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.advocate-section li:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .advocate-section {
        text-align: center;
    }
}

.publications-section {
    margin-top: 50px;
}

.publications-section ul {
    list-style: none;
    padding: 0;
}

.publications-section li {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.publications-section li a {
    text-decoration: none;
    color: #1E2A78;
    font-weight: bold;
    transition: color 0.3s;
}

.publications-section li a:hover {
    color: #ffdd57;
}

.publications-section li:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .publications-section {
        text-align: center;
    }
}
.skills-section {
    margin-top: 50px;
}

.skills-section .skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skills-section .skill-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: calc(33.333% - 10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.skills-section .skill-item:hover {
    transform: scale(1.05);
}

.skills-section .skill-item i {
    font-size: 2em;
    color: #1E2A78;
    margin-bottom: 10px;
}

.skills-section .skill-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.skills-section .skill-item p {
    font-size: 0.9em;
    color: #555;
}

@media (max-width: 768px) {
    .skills-section .skill-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .skills-section .skill-item {
        width: 100%;
    }
}
.references-section {
    margin-top: 50px;
}

.references-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.reference-item {
    text-align: center;
    transition: transform 0.3s;
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
}

.reference-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.reference-item span {
    display: block;
    font-weight: bold;
    color: #06000f;
}

.reference-item:hover {
    transform: scale(1.1);
}

.reference-item:hover img {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .reference-item {
        flex: 1 1 100%;
    }
}

.contact-download {
    margin-top: 50px;
    text-align: center;
}

.contact-download .button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-download .contact-button {
    background: #1E2A78;
    color: #fff;
}

.contact-download .contact-button:hover {
    background: #143062;
}

.contact-download .download-button {
    background: #ffd700;
    color: #1E2A78;
}

.contact-download .download-button:hover {
    background: #e6c200;
}

@media (max-width: 768px) {
    .contact-download .button {
        display: block;
        margin: 10px auto;
        width: 80%;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-download .button {
        width: 90%;
        font-size: 0.9em;
    }
}
.footer {
    background: rgba(149,178,176, 0.7);
    color: #0f0f0f;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        font-size: 0.9em;
    }
}