/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}



/* Section Styles */
section {
    padding: 40px 0;
}

/* Card Styles */
.card {
    border: none;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #2980b9;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Typography */
@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}
/* Navigation Styles */
nav {
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin: 0 1rem;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #ecf0f1;
}

.card-img-top {
    height: 200px; /* Set the desired height for the images */
    object-fit: cover; /* Maintain aspect ratio while covering the entire container */
}

.card {
    margin-bottom: 20px; /* Add some spacing between the cards */
}

/* Optional: Style for the modal */
.modal-body {
    text-align: center; /* Center content in the modal body */
}
