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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #d8dee9;
    background-color: #182233;
}

/* Header styles */
header {
    background-color: #24314d;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-family: 'Pacifico', cursive;
    font-size: 32px;
    color: #d8dee9;
    text-decoration: none;
}

.logo span {
    color: #d73192;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: right;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: #d8dee9;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d73192;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #d8dee9;
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #24314d;
        padding: 10px;
        text-align: center;
    }

    .nav-links.active li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* Hero section styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 16, 40, 0.8);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d73192;
    color: #182233;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b32a7a;
}

/* Section styles */
section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #d8dee9;
}

/* About section styles */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    width: 250px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Project section styles */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.project-card {
    background-color: #24314d;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d8dee9;
}

.project-card p {
    margin-bottom: 20px;
}

/* Skills section styles */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 30px;
    text-align: center;
}

.skill-item {
    background-color: #24314d;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.skill-item i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d73192;
}

.skill-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d8dee9;
}

/* Resume section styles */
.resume-content {
    max-width: 800px;
    margin: 0 auto;
}

.resume-item {
    margin-bottom: 40px;
}

.resume-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d8dee9;
}

.resume-details {
    margin-bottom: 20px;
}

.resume-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #d73192;
}

.resume-details p {
    margin-bottom: 10px;
}

.resume-details ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Certifications section styles */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.certification-item {
    background-color: #24314d;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.certification-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.certification-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d8dee9;
}

.certification-item p {
    margin-bottom: 10px;
}

.certification-item .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d73192;
    color: #24314d;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.certification-item .btn:hover {
    background-color: #b32a7a;
}

/* Contact section styles */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #d73192;
}

.contact-item a {
    color: #d73192;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #b32a7a;
}

form {
    flex: 1;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    background-color: #24314d;
    color: #d8dee9;
}

form textarea {
    height: 120px;
}

form input::placeholder,
form textarea::placeholder {
    color: #eef5ff;
}

/* Footer styles */
footer {
    background-color: #24314d;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo a {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: #d8dee9;
    text-decoration: none;
}

.footer-logo span {
    color: #d73192;
}

.footer-links ul {
    list-style: none;
    display: flex;
}

.footer-links ul li {
    margin-right: 20px;
}

.footer-links ul li a {
    color: #d8dee9;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #d73192;
}

.footer-social a {
    display: inline-block;
    margin-left: 10px;
    color: #d8dee9;
    font-size: 24px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #d73192;
}

/* Responsive Styles */

@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }

    .logo {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .hero {
        height: 100vh;
    }

    .hero-content {
        margin-top: 80px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 20px;
        padding-right: 0;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
    }

    .project-card {
        padding: 10px;
    }

    .project-card h3 {
        font-size: 20px;
    }

    .project-card p {
        font-size: 14px;
    }

    .skill-item {
        padding: 10px;
    }

    .skill-item i {
        font-size: 36px;
    }

    .skill-item h3 {
        font-size: 20px;
    }

    .resume-item h3 {
        font-size: 20px;
    }

    .resume-details h4 {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links ul li {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .footer-social {
        margin-top: 10px;
    }
}