* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    padding-top: 50px;
}
.navbar-toggler {
    border-color: white; 
}

.navbar-toggler-icon {
    filter: invert(1); 
}

.banner{
    background-color: #011F59 !important;}
.hero {
     background: url("images/class.jpg") no-repeat center center/cover;
     height: 50vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     color: white;
 }
 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6); 
     z-index: 1;
 }

 .hero h1 {
     position: relative;
     z-index: 2;
     font-size: 3rem;
     font-weight: bold;
 }

 /* About Section */
 #about {
     text-align: center;
     padding: 50px 15px;
 }

 #about p {
     font-size: 1.2rem;
     color: #333;
     max-width: 900px;
     margin: 0 auto;
     line-height: 1.8;
 }

 /* Vision & Mission Cards */
 .card-container {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .card {
     background: white;
     color: #333;
     border-radius: 10px;
     padding: 25px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s;
 }

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

 .card img {
     width: 80px;
     height: 80px;
     margin: 10px auto;
 }

 .card h2 {
     font-size: 1.8rem;
     margin-bottom: 10px;
     color: #011F59;
 }

 .card p {
     font-size: 1rem;
     color: #555;
 }

 /* Meet Our Team */
 .team-section {
     padding: 50px 0;
     background: #f9f9f9;
     text-align: center;
 }

 .swiper {
     width: 80%;
     height: auto;
     margin: 0 auto;
 }

 .swiper-slide {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .team-card {
     background: white;
     color: #333;
     border-radius: 10px;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     text-align: center;
     width: 250px;
     margin: 0 auto;
     transition: transform 0.3s;
 }

 .team-card:hover {
     transform: scale(1.05);
 }

 .team-card img {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     margin-bottom: 10px;
 }

 .team-card h3 {
     font-size: 1.5rem;
     color: #011F59;
 }

 .team-card p {
     font-size: 1rem;
     color: #777;
 }
  /* Footer Styles */
footer {
background-color: #011F59 !important;
color: white;
padding: 3rem 0 1.5rem;
margin-top: 32px;

}

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

.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 2rem;
}

.footer-section {
flex: 1;
min-width: 250px;
margin-bottom: 1.5rem;
padding: 0 1rem;
}

.footer-heading {
position: relative;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
}

.footer-heading::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: gold;
}

.footer-list {
list-style: none;
padding: 0;
margin: 0;
}

.footer-list li {
margin-bottom: 0.75rem;
display: flex;
align-items: center;
}

.footer-list li i {
margin-right: 0.5rem;
width: 16px;
color: gold;
}

.social-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
display: inline-flex;
align-items: center;
}

.social-links i {
font-size: 1.1rem;
}

.footer-bottom {
text-align: center;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.footer-content {
 flex-direction: column;
}
.about-cards{
    margin: 10px;
    gap: 10px;
}

.footer-section {
 margin-bottom: 2rem;
}
}
 /* Responsive Design */
 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2rem;
     }
 }