* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

body {
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #0077be, #00a6d6);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.navcon {
    background-color: #006994;
    padding: 1rem 0;
    text-align: center;
}

.navcon ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navcon ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.navcon ul li a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Background Image Section */
.background-section {
    background: url('/images/Mission image.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 4rem;
    text-align: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

/* Cards */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 30px;
}

.card {
    flex: 0 0 calc(30% - 20px);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 15px;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
}

.card-img {
    width: 100%;
    height: 120px;
    background-color: #88d9e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;  /* Bigger icon */
    margin-bottom: 15px;
}

.card-content {
    padding: 1.5rem;
}

/* Footer */
footer {
    background-color: #004d6d;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

#importance {
    background: url('../images/Mission_image.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    padding: 4rem;
    text-align: center;
}

/* Dark overlay on background */
#importance .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.hero {
    text-align: center;
    margin-top: 100px;  /* Ensures it stays below the navbar */
    padding: 4rem 1rem;
}

/* Center-align title and paragraph */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;  /* Bigger font */
    text-align: center;
    margin-bottom: 20px;
}

