/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #f5f5f5;
    background-color: #1a1a1a;
}

a {
    color: #00aced;
    text-decoration: none;
}

h1, h2, h3 {
    color: #00aced;
}

p {
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Horizontal Line Divider */
.section-divider {
    width: 80%;
    height: 1px;
    background-color: #4d4d4d;
    margin: 0 auto;
}

/* Navigation Bar */
nav {
    background-color: #0d0d0d;
    padding: 20px 5px;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    margin: 0 10px;
    color: #f5f5f5;
}

nav .nav-links {
    display: flex;
    position: relative;
    align-items: center;
}

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

nav .nav-links li a {
    color: #f5f5f5;
    font-weight: bold;
    transition: color 0.3s;
}

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

/* Menu Icon for Mobile */
nav .menu-icon {
    display: none;
    font-size: 24px;
    color: #f5f5f5;
    cursor: pointer;
}

/* Header Section */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/image.png'); /* Replace with your image file */
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Adjust for readability */
    z-index: -1;
}

.header-content {
    position: relative;
    text-align: center;
    padding-top: 200px;
    z-index: 1;
}

.header-content h1 {
    font-size: 48px;
}

.header-content p {
    font-size: 24px;
}

.header-content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00aced;
    color: #fff;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.header-content .btn:hover {
    background-color: #0084b4;
}

/* About Me Section */
.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.about-content p {
    flex: 1;
    text-align: justify;
}

/* Certifications */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cert-item {
    width: 48%;
    margin-bottom: 20px;
}

.cert-item ul {
    padding-left: 20px;
}

.cert-item li {
    margin-bottom: 10px;
}

/* Experience */
.experience-item {
    margin-bottom: 30px;
}

.experience-item h3 {
    font-size: 24px;
}

.experience-item span {
    display: block;
    font-size: 14px;
    color: #ccc;
}

.experience-item ul {
    padding-left: 20px;
}

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

/* Projects */
.project-item {
    margin-bottom: 30px;
}

.project-item h3 {
    font-size: 24px;
}

.project-item a {
    color: #00aced;
}

.project-item a:hover {
    text-decoration: underline;
}

/* Languages 
#languages ul {
    text-align: center;
}
    */

#languages li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Contact */
#contact {
    text-align: center;
}

#contact p {
    font-size: 18px;
}

.social-links a {
    color: #f5f5f5;
    margin: 0 10px;
    font-size: 24px;
}

.social-links a:hover {
    color: #00aced;
}

/* Footer */
footer {
    background-color: #0d0d0d;
    padding: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        position: absolute;
        background-color: #0d0d0d;
        top: 50px;
        right: 0;
        width: 200px;
        flex-direction: column;
    }
    nav .nav-links li {
        margin: 10px 0;
    }
    nav .menu-icon {
        display: inline-block;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-content img {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .cert-item {
        width: 100%;
    }
}

/* Smooth scrolling adjustment */
html {
    scroll-behavior: smooth;
}

.about-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content horizontally */
    margin-right: 20px;
}

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.about-social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Center the icons horizontally */
}

.about-social-links a {
    color: #f5f5f5;
    margin: 0 10px;
    font-size: 24px;
}

.about-social-links a:hover {
    color: #00aced;
}

.about-content p {
    flex: 1;
    text-align: justify;
    margin-top: 0;
}

/* For tablets and larger screens */
@media (min-width: 768px) {
    /* Styles */
}

/* For smartphones */
@media (max-width: 767px) {
    /* Styles */
}

img {
    max-width: 100%;
    height: auto;
}
/* Adjusted existing styles */
