/* General Styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1e1e1e;
    color:rgb(7, 65, 65);
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.container {
    padding: 10px 10%;
}

/* Header Styles */
#header {
    width: 100%;
    height: 50vh;
    background-image: url('360_F_218185587_P4zituDtWJOfClUKL6merI0BgLMIxoeC.jpg');
    background-size: 100% 100%;
    background-position: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: large;
}

.logo {
    width: 200px;
}

nav ul li {
    list-style-type: none;
    margin: 10px 20px;
    display: inline-block; 
}

nav ul li a {
    color: white; /* darkturquoise color */
    text-decoration: none;
    font-size: 500px;
    position: relative; 
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ffffff; /* white color */
    position: absolute;
    left: 0;
    bottom: -6px; 
}

nav ul li a:hover::after {
    width: 100%;
    transition: 0.1s;
}

.header-text {
    margin-top: 1%;
    font-size: 40px;
    margin-left: 150px;
    color:paleturquoise;
}

.header-text p {
    color: #dcdcdc;;
    font-size: large; /* Increase font size */
    margin: 10px 0;
    margin-left: 20px;
    letter-spacing: 0.1em; /* Increase space between letters */
    word-spacing: 0.2em; /* Increase space between words */
    line-height: 2.8; /* Increase space between lines */
}
section {
    margin-left: 270px;
    margin-bottom: 5px;
    padding: 15px;
    
}

section img {
    width: 60%; /* Make images fill container */
    height: auto;
    margin: 10px 0;
    border-radius: 20px;
}

section h2 {
    margin-top: 2px;
    color: paleturquoise;
}

section li {
    font-size: large; 
    margin: 2px 0; /* Reduce vertical space */
    word-spacing: 0.1em; /* Slightly reduce space between words */
    line-height: 1.5; /* Reduce line spacing */
    color: #dcdcdc;
}

#sidebar {
    width: 250px;
    background: #2C3E50;
    padding: 20px;
    color:rgb(2, 16, 16);
    height: 100vh;
    position: fixed;
    margin-bottom: 20px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin: 40px 0;
}

.sidebar-links a {
    color: paleturquoise;
    text-decoration: none;
    
}

#content {
    margin-left: 270px;
    padding: 20px;
}
#content h2 {
    color: paleturquoise;
}

.article-card {
    display: flex;
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.article-card img {
    width: 150px;
    height: auto;
}

.article-content {
    padding: 15px;
}
.article-content h2{
    color: paleturquoise;
}

.article-content h3 {
    margin: 0 0 10px;
}

/* Navigation Section Styles */
#nav-section {
    text-align: center;
    margin: 60px 0; /* Added more space between the h2 and navigation section */
}

#nav-section .subtitle {
    font-size: 24px;
    margin-bottom: 40px; /* Increased bottom margin for more space */
    color:  white; /* darkcyan color */
}

#nav-section .buttons {
    margin: 20px 0;
}

#nav-section .buttons .btn2 {
    margin: 10px;
    padding: 14px 50px;
    background: white; /* darkcyan color */
    color: #1e1e1e; /* dark background color */
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.5s;
}

#nav-section .buttons .btn2 i {
    margin-right: 8px;
}

#nav-section .buttons .btn2:hover {
    background: #20b2aa; /* lighter cyan color */
}

/* Contact Section Styles */
#contact {
    padding: 20px 0;
    color: paleturquoise;
    margin-left: 190px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-left {
    flex-basis: 35%;
}

.content-right {
    flex-basis: 60%;
}

.content-left p {
    margin-top: 30px;
}

.content-left p i {
    color: #00ced1; /* darkcyan color */
    margin-right: 15px;
    font-size: 25px;
}

form input, form textarea {
    width: 100%;
    border: 0;
    outline: none;
    padding: 15px;
    margin: 15px 0;
    font-size: 18px;
    border-radius: 6px;
    color: #1e1e1e; /* dark background color */
    background: #ffffff; /* white color */
    border: 1px solid #ffffff; /* white color */
}

form .btn2 {
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    background: #00ced1; /* darkcyan color */
    color: #1e1e1e; /* dark background color */
    border: none;
}

form .btn2:hover {
    background: white; /* lighter cyan color */
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #1e1e1e; /* dark background color */
    font-weight: 500;
    margin-top: 20px;
    color: #ffffff; /* white color */
}

.copyright i {
    color: #00ced1; /* darkcyan color */
}

@media only screen and (max-width: 600px) {
    #header {
        background-image: url('360_F_218185587_P4zituDtWJOfClUKL6merI0BgLMIxoeC.jpg');
    }

    .header-text {
        margin-top: 100%;
        font-size: 16px;
    }
}