body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto; /* Centers the content */
    padding-left: 20px; /* Ensures left spacing */
    padding-right: 20px;
}
img {
    margin-left: 20px; /* Adds space to the right of the image */
}
.speech {
    background: #e3e3d9; /* Light yellow background */
    border-left: 5px solid #daf6f575; /* Orange highlight bar */
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.speech h3 {
    color: #c1d0e1; /* Dark orange title */
    font-style: normal;
}

.speech p {
    font-style: normal;
    font-size: 16px;
}

.heading {
    font-family: 'Courier New', monospace;
    font-size: 26px;
}
h1.heading {
    color: rgb(51, 55, 60); /* Color for H1 */
}

h2.heading {
    color: rgb(137, 149, 152); /* Color for H2 */
}
h3.heading {
    color: rgb(99, 188, 202); /* Color for H2 */
}
.body-text {
    font-family: 'Verdana', sans-serif;
    font-size: 18px;
    color: #1a2125;
}
h1 {
    font-size: 3vw; /* Scales with screen width */
}

p {
    font-size: 1.2em; /* Adjusts proportionally */
}
body {
    color: #1b1b1b; /* Default text color */
}

h1 {
    color: #8fbac7; /* Header color */
}

p {
    color: #1f1d1d; /* Paragraph text color */
}

nav a {
    color: white; /* Navigation link color */
}

nav a:hover {
    color: #84a4ae; /* Change color when hovering */
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #87aeb8;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header img {
    height: 80px;
    margin-right: 15px;
}
nav {
    display: flex;
    justify-content: center;
    background: #9ed7d8;
    padding: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}
nav a:hover {
    background: #88bfc8;
    border-radius: 5px;
}
.hero {
    background: url('hero-image.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(158, 200, 198);
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.carousel button:hover {
    background-color: #0056b3;
}

.section {
    padding: 30px;
    background: white;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
footer {
    text-align: center;
    padding: 20px;
    background: #a6cbcde3;
    color: white;
    margin-top: 20px;
}
.image-container {
    text-align: center;
    margin-top: 20px;
}
.image-container img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}
.language-toggle {
    text-align: right;
    padding: 10px;
    background: #f4f4f4;
}
.language-toggle button {
    background: #aae1e7;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.video-container video {
    width: 30%;
    max-width: 400px;
    border-radius: 8px;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}
.break-before {
    flex-basis: 100%;
}
.team-member {
    flex: 1 1 calc(33.333% - 40px); /* Three per row with gaps */
    box-sizing: border-box;
    text-align: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px; /* Prevent too small on narrow screens */
    max-width: 300px;
}
.full-width-member {
    flex: 1 1 calc(33.333% - 40px);
    max-width: 33.333%;
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.team-member h3 {
    font-size: 18px;
    margin: 5px 0;
}
.team-member p {
    font-size: 14px;
    color: #555;
}
.team-member a {
    display: block;
    text-decoration: none;
    color: #0da8ad;
    font-weight: bold;
    margin-top: 5px;
}


