 /* Reset CSS */
 * {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:poppins;
}

body {
    line-height: 1.6;
    color: #333;
}



.contactUs-btn {
    background-color: #a61c1f;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contactUs-btn i {
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    color: white;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/empty-hall.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    padding: 0 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
text-align: left;

}

.hero-card {
    background: white;
    max-width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 50px 5%;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.about h2 span {
    color: #a61c1f;
}

.about-content {
    display: flex;
    gap: 30px;
  
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height:456px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

/* Partners Section */
.partners {
    padding: 50px 5%;
    background-color: #f9f9f9;
}

.partners h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.partners h2 span {
    color: #a61c1f;
}

.partners p {
    margin-bottom: 30px;
}

.partner-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.partner-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    flex: 1;
}

.partner-img {
    width:142px;
    height:132px;
    overflow: hidden;
    border-radius: 8px;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partner-info{width:calc(100% - 142px);}
.partnerPara{margin-bottom:0 !important;}

.partner-info h3 {
    color: #a61c1f;
    margin-bottom: 5px;
}

/* Team Section */
.team {
    padding: 50px 5%;
}

.team h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team p {
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
   
    gap: 20px;
}

.team-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-info {
    padding: 15px;
}

.team-info h3 {
    color: #a61c1f;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.add-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #f9f9f9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* contactUs Section */
.contactUs {
    padding: 50px 5%;
    background-color: #f9f9f9;
}

.contactUs h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.contactUs h3 {
    color: #a61c1f;
    text-align: center;
    margin-bottom: 30px;
}

.office-hours {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.contactUs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contactUs-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.contactUs-card img {
    width: 100%;
    height:100%;
    object-fit: cover;
}

.contactUs-info {
    padding: 20px;
}

.contactUs-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    align-items: center;
}

.contactUs-item i {
    margin-right: 10px;
    color: #a61c1f;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height:290px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 30px 5%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px){
    
    header {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin-left: 10px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        margin-bottom: 30px;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }

    .partner-cards {
        flex-direction: column;
        text-align:center;
        justify-content:center;
        margin:0 auto;
    }
    .partner-card{ text-align:center;
        justify-content:center;
        margin:0 auto;}
}

@media (max-width:540px) {
    .hero{height:640px !important;}
    .hero-text h1 {
        font-size: 2rem;
        text-align:center;
        margin:0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contactUs-grid {
        grid-template-columns: 1fr;
    }
    .partner-card{
        flex-wrap: wrap;

    }
    .partner-info{width:100%;}
}