body {
    font-family: 'Georgia', serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2, p, nav ul {
    font-family: 'Georgia', serif;
}

label {
    font-size: 18px;
}

select {
    padding: 10px;
    margin: 20px 0;
    font-size: 16px;
}


.tutorial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
}

button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

button:hover {
    background-color: #ddd;
}

.tutorial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
}

button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

button:hover {
    background-color: #ddd;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
}

.exercise-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.exercise {
    flex: 1;
    flex-direction: column;
    align-items: center;
    width: 45%;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
}

.instructions, .editor {
    width: 100%;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 150px;
}

pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

.output, .result {
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

h3 {
    margin-bottom: 10px;
}

.home-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition-duration: 0.4s;
}

.home-button:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}
/* Navigation Bar with Light Blue Gradient */
nav {
    background: linear-gradient(90deg, #add8e6, #87CEFA); /* Light blue to sky blue gradient */
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0; /* Add padding to make the bar taller */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the buttons */
}

.navbar li {
    display: inline-block;
}

.navbar li a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.navbar li a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Slight transparency for hover */
    color: white;
}


body {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

/* About Us Page Styles */
.about-us-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.header-section {
    margin-bottom: 40px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.founding-section, .founder-section {
    margin-bottom: 40px;
}

.founder-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Compiler Page Styles */
.compiler-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    font-family: Georgia, serif;
}

.compiler-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.compiler-container p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Resources Page Styles */
.resources-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    font-family: Georgia, serif;
}

.resources-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.resources-container p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.resource-category {
    margin-bottom: 40px;
}

.resource-category h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.resource-category ul {
    list-style-type: none;
    padding-left: 0;
}

.resource-category ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.resource-category ul li a {
    color: #007BFF;
    text-decoration: none;
}

.resource-category ul li a:hover {
    text-decoration: underline;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.testimonial {
    width: 25%;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial.left {
    margin-right: 10px;
}

.testimonial.right {
    margin-left: 10px;
}

/* Sidebar */
.sidebar {
    width: 25%;
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 80px; /* Adds space between the nav bar and sidebar */
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
