* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.main {
  height: 100vh;
  width: 100%;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Section */
.header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/aboutus.jpg') no-repeat center center/cover;
    filter: blur(2px);
    z-index: -1;

}
.header {
    color: #000000;
    text-align: center;
    padding: 20px 20px;
    height: 400px;
}

.header h1 {
    font-size: 45px;
    font-weight: 40px;
    margin-bottom: 35px;
    margin-top: 75px;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    background: #e9f2f3;
}

.about-content {
    max-width: 50%;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.about-image img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
}

/* Mission & Vision */
.mission-vision {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 60px;
    background: #e9f2f3;
}

.mission, .vision {
    width: 40%;
}

.mission i, .vision i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

/* Core Values */
.values {
    text-align: center;
    padding: 50px;
    background-color: #e9f2f3;
}

.value-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.card {
    width: 30%;
    padding: 20px;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 30px;
    color: #ff6600;
    margin-bottom: 10px;
}
/* Contact Section */
.contact {
    text-align: center;
    padding: 50px;
    background: #05375c;
    color: white;
}

.contact .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.contact .btn:hover {
    background: #cc5500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-content, .about-image {
        max-width: 100%;
    }

    .about-image img {
        width: 80%;
    }

    .mission-vision {
        flex-direction: column;
    }

    .mission, .vision {
        width: 100%;
        margin-bottom: 20px;
    }

    .value-cards {
        flex-direction: column;
    }

    .card {
        width: 90%;
        margin-bottom: 20px;
    }
}
/* Footer Main Section */
.footer {
    background: url('../images/map.png') no-repeat center center; 
    background-size: cover;
    padding: 10px 10%;
    text-align: center;
    position: relative;
    color: white;
  }
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
  }
  
  .footer * {
    position: relative;
    z-index: 2;
  }
  
  .footer h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: left;
  }
  
  .locations {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .location-box {
    padding: 7px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    text-align: left;
    margin-left: 5px;
  }
  
  .location-box iframe {
        width: 100%;
        height: 200px;
        border-radius: 40px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
  .location-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .location-box a {
    font-size: 14px;
    font-weight: 300;
  }
  .location-box p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .location-box a {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
  
  .location-box a:hover {
    color: #ff6600;
  }
  
  /* Social Community Section */
  .social-community {
    padding: 20px;
    margin-top: 20px;
  }
  
  .social-community h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .footer-social-icons a i {
    margin-right: 8px;
  }
  
  .footer-social-icons a:hover {
    background: #ff6600;
    color: black;
  }
  
  /* Bottom Footer */
  .bottom-footer {
    background: #000;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #bbb;
  }
  
  .bottom-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .bottom-footer a:hover {
    color: #ffeb3b;
  }