

/* History Section */


/* Mission Section */
.mission-section {
    background-color: #094789;
    color: #fff;
    padding: 40px 0;
}

.mission-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.mission-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

.mission-image {
    display: block;
    margin: 0 auto;
    width: 70%;
    border-radius: 10px;
}

/* Timeline Section */
.timeline-section {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #094789;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #094789;
}

.timeline-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.bd{
    background-color: #5b5456;
}




/* Chior style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

.choirs-section {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #004080;
    text-transform: uppercase;
}

.choirs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.choir-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choir-card:hover {
    transform: translateY(-10px);
}

.choir-img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 10px;
}

.choir-card p {
    font-size: 16px;
    color: #666;
}

.chr{
    background-color: #cccccc;
    background-image: url('images/1.jpg');
}

/* mission and vision */


/* Mission & Vision Section */
.mission-vision-section {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

/* Section Header */
.section-header h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Content Block */
.content-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Individual Content Items */


.content-item h2 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 15px;
}

.content-item p {
    font-size: 1.1em;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Hover Effect for Content Items */
.content-item:hover {
    transform: translateY(-5px);
}


/* core values */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Core Values Section */
.core-values-section {
    background-color: #fff;
    padding: 50px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-header h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

/* Core Values Cards */
.core-values-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    flex: 0 1 calc(20% - 20px);
    background-color: #e7f1ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.card .icon {
    font-size: 40px; /* Icon size */
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 10px;
}

.card p {
    font-size: 1em;
    color: #7f8c8d;
}

/* Goals Section */
.goals-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    margin-top: 20px;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.goal-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%; /* Width of the goal items */
    text-align: center;
}

.goal-item h2 {
    font-size: 1.5em;
    color: #34495e;
}

.goal-item p {
    font-size: 1em;
    color: #7f8c8d;
}

/* Hover Effect for Core Values Cards */
.card:hover {
    transform: translateY(-5px);
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .card {
        flex: 0 1 calc(45% - 20px);
    }

    .goal-item {
        width: 95%;
    }
}
.hamburger {
	display: none;
	font-size: 30px;
	cursor: pointer;
	padding: 15px;
}


/* Hide the menu on small screens */
@media (max-width: 768px) {
	nav {
		display: flex;
		justify-content: flex-end;
		/* Push the hamburger to the right */
	}

	nav ul {
		display: none;
		/* Hide the menu initially */
		flex-direction: column;
		align-items: flex-start;
		/* Align menu items to the left */
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		/* Absolutely position the menu */
		top: 0;
		right: 0;
		/* Position the menu on the right side */
		z-index: 1000;
		padding: 0;
	}

	nav ul li {
		width: 100%;
		text-align: right;
		/* Align menu items to the right */
	}

	nav ul li a {
		padding: 15px;
		text-align: right;
		/* Align links to the right */
		font-size: 1rem;
		/* Adjust font size */
		color: #333333;
		/* Dark text for readability */
		text-decoration: none;
		/* Remove underline from links */
		transition: background-color 0.3s ease, color 0.3s ease;
		/* Smooth transition */
	}

	/* Hover effect for links */
	nav ul li a:hover {
		background-color: #fb8b23;
		/* Highlight on hover */
		color: #ffffff;
		/* Change text color on hover */
	}

	/* Show the menu when toggled */
	nav ul.show {
		display: flex;
		/* Show the menu when toggled */
	}

	.hamburger {
		display: block;
		/* Show hamburger icon */
	}
}

#menu {
	display: none;
}

.menu-toggle {
	display: block;
	/* Ensure the toggle is visible */
}

