* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('images/Background.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; 
    line-height: 1.6;
    padding-top: 200px;
}


.navbar {
    background-color: transparent !important; 
    padding: 1px 0;
    box-shadow: none !important; 
    z-index: 10; 
}
.navbar-brand {
    font-weight: bold;
    font-size: 28px;
    color: black !important;
}
.navbar-nav .nav-item {
    margin-left: 25px;
}
.navbar-nav .nav-link {
    color: black !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.navbar-nav .nav-link:hover {
    color: #ff8c00;
}
.main-content {
    margin-top: 80px; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.image-section {
    padding: 20px;
    position: relative;
}
.image-section img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    width: 100%;
}
.quote {
    font-size: 24px;
    font-weight: 500;
    color: black !important; 
    background-color: rgba(0, 0, 0, 0) !important;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    transition: opacity 0.5s ease-in-out;
    border: none; 
}
.quote p {
    font-size: 18px;
    font-style: italic;
    color: black !important; 
}

.quote .author {
    font-size: 16px;
    color: black !important; 
    margin-top: 10px;
}
.quote-section .quote {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
.quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}
.gallery .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card img {
    width: 350px;
    height: 250px;
    object-fit: cover;
}
.media-display {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.media-display .content {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.media-display img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}
.media-display iframe {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}
.media-display .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    background-color: transparent;
    border: none;
}
.hidden {
    display: none;
 }
 .quiz-container {
    background-color: rgba(255, 255, 255, 0.8); 
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 600px;
    text-align: center;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
h1, h2 {
    font-family: 'Slabo 27px', serif;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 30px 0; 
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #003366;
}

.intro, .summary {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
} 

.intro p, .summary p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* Accordion styles */
.accordion {
    background-color: #003366;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-top: 10px;
}

.accordion:hover {
    background-color: #00509E;
}

.active, .accordion:hover {
    background-color: #00509E;
}

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    margin-bottom: 10px;
    border-left: 5px solid #003366;
    border-radius: 5px;
}

.panel ul {
    list-style-type: none;
    padding-left: 20px;
}

.panel li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
}

.panel li span {
    font-weight: bold;
}
.custom-home-btn {
    margin-top: 100px;
}
