nav a{
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 20px 20px;
    transition-duration: 0.3s;
    margin-left: -5px;
}
nav a:hover{
    background-color: rgb(10, 96, 255);
    color: white;
}
nav a:active{
    background-color: brown;
    color: white;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    color: #333;
}
/* Header */
.header {
    text-align: center;
    padding: 20px;
    background: #13a8b6;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

/* Sidebar */
.sidebar {
    margin-bottom: 20px;
}
.sidebar img {
    max-width: 100%;
    border-radius: 10px;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.text-section, .image-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
}
.text-block {
    max-width: 600px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    color: #333;
}

/* Header */
.header {
    text-align: center;
    padding: 20px;
    background: #13a8b6;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.text-block {
    max-width: 600px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
}
.text-section, .image-section {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
}
.image-section img {
    max-width: 100%;
    border-radius: 10px;
}
.image-section img {
    width: 100%;
    height: 250px; /* Set a uniform height */
    object-fit: cover; /* Ensures the image fills the space without stretching */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: block;
}
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    align-items: start; /* Ensures items align properly */
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
img {
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}
