/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #0d1b2a;
    color: #e0e1dd;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #1a1a2e;
    color: white;
}

.nav-name {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #e0e1dd;
    font-size: 18px;
}

nav ul li a:hover {
    color: #778da9;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    height: 100vh;
    text-align: center;
    background: linear-gradient(to right, #0d1b2a, #1b263b);
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.text-content {
    flex: 1;
}

.image-content img {
    width: 500px;
    height: auto;
    border-radius: 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    color: #ffffff;
}

.hero-content span {
    color: #78a1bb;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: normal;
    color: #a3bac3;
}

/* About Section */
#about {
    background-color: white;
    padding: 80px 90px;
    color: black;
}

#about h1 {
    color: #084786;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 480px;
    height: 400px;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    padding-left: 20px;
    text-align: left;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0d1b2a;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Skills Section */
#skills {
    padding: 80px 20px;
    text-align: center;
    background: #1b263b;
}

#skills h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skill {
    background: #415a77;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #084786;
}

/* Contact Cards */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
}

.contact-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.contact-card .icon {
    font-size: 36px;
    color: #084786;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 18px;
    color: #084786;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 16px;
    color: #333333;
}

/* Message Form */
.message-form {
    margin: 40px auto;
    max-width: 500px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.message-form h3 {
    font-size: 24px;
    color: #084786;
    margin-bottom: 20px;
    text-align: center;
}

.message-form form {
    display: flex;
    flex-direction: column;
}

.message-form input,
.message-form textarea {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    outline: none;
}

.message-form button {
    padding: 15px;
    font-size: 16px;
    color: #ffffff;
    background: #084786;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.message-form button:hover {
    background: #063970;
}
