/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background-color: #333;
    color: #FFF;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    color: #FFF;
    font-size: 1.5rem;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.1rem;
}

.navbar ul li a:hover {
    color: #66FCF1; /* Teal accent */
}

/* Hamburger Menu Styles */
.navbar-toggle {
    display: none;
    font-size: 1.5rem;
    color: #FFF;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu.active {
        display: flex;
    }

    /* Centering Menu Items */
    .navbar ul {
        align-items: center;
    }
}

/* Hero Section */
.hero {
    background-color: #1B1B1B; /* Dark background */
    height: 100vh;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.hero .btn {
    padding: 10px 30px;
    font-size: 1.2rem;
    background-color: #66FCF1; /* Teal accent */
    color: #1B1B1B;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #45A29E; /* Darker teal */
}

/* Section Styles */
.section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* About Section */
.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Skills Section */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skills-list li {
    background-color: #333;
    color: #FFF;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

/* Experience Section */
.experience .job {
    margin-bottom: 40px;
}

.experience .job h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.experience .job p {
    font-size: 1.2rem;
    color: #666;
}

/* Contact Section */
.contact p {
    font-size: 1.2rem;
    text-align: center;
}

.contact p a {
    color: #66FCF1; /* Teal accent */
    text-decoration: none;
}

.contact p a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #FFF;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Contact Section */
.contact p {
    font-size: 1.2rem;
    text-align: center;
}

.contact p a {
    color: #66FCF1; /* Teal accent */
    text-decoration: none;
    margin: 0 10px;
    font-size: 2rem; /* Larger icon size */
    transition: color 0.3s;
}

.contact p a:hover {
    color: #45A29E; /* Darker teal */
}

