body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    color: #ffffff;
}

.img-zoom {
    cursor: pointer;
    transition: transform 0.25s ease;
}

.img-zoom:hover {
    transform: scale(1.1);
}

.modal-dialog {
    max-width: 90%;
    margin: 1.75rem auto;
}

.modal-content {
    background-color: #f8f9fa;
}

.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* header {
    background: linear-gradient(135deg, #2980b9, #8e44ad); 
    padding: 50px 0;
    color: white;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); 
} */

header {
    background: linear-gradient(135deg, #2980b9, #8e44ad);
    padding: 30px 0;
    color: white;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the header */
    border-radius: 5px; /* Optional: Add rounded corners */
}

header h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 2.5rem;
}

header h1 {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 2rem;
}

.social-links .btn {
    margin-right: 10px;
}

.content h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

.content p {
    font-family: 'Roboto', sans-serif;
}

section {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.text-center img {
    display: block;
    margin: 0 auto;
    max-width: 45%;
    height: auto;
}

.img-zoom:hover {
    transform: scale(1.1);
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
}

/* Caption styling */
.img-caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h2 {
        font-size: 2rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .social-links .btn {
        margin-right: 5px;
    }
}

/* Additional improvements */
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}