/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-color: #FCF6F5;
}

.transparent-header{
width:100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 99;
background: transparent;
}

/* Hero */
.hero {
  background: url('../Images/About-Image\ 2.png') no-repeat center center/cover;
  height: 68vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero h1 a {
  text-decoration: none;
  color: inherit; /* keeps the text color same as h1 */
}

.hero h1 a:hover {
  color: #f2c94c; /* optional: hover color */
}


.hero p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* About Section */

.text h2{
  color: #FCE877;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  text-align: center;
  padding-bottom: 10px;
  /*border-bottom: 3px solid #484847;*/
}

.about-section {
  padding: 5px 270px 15px 270px;
}

.about-content {
  color: rgb(248, 248, 248);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

.about-content p{
  text-align: justify;
}

.about-content .text {
  flex: 1;
}

.text{
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  padding: 0.2rem;
  padding-top: 1rem;
  border-radius: 10px;
}

.about-content .image {
  flex: 1;
  text-align: center;
}

.about-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 270px 0px 270px;
  justify-content: space-between;
  gap: 2rem;
}

.mission, .vision {
  flex: 1 1 45%;
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  padding: 2rem;
  padding-top: 0rem;
  padding-bottom: 0px;
  border-radius: 10px;
  text-align: center;
}

.mission h3, .vision h3 {
  font-size: 22px;
  margin-bottom: 1rem;
  color: rgb(248, 248, 248);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}

.mission p, .vision p {
  font-size: 16px;
  color: rgb(248, 248, 248);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
}


/* Responsive Design */

@media screen and (min-width: 1024px) and (max-width: 1440px){ 
  .about-section {
   padding: 20px 50px 20px 50px;
}

.mission-vision {
   padding: 20px 50px 20px 50px;
}


}

@media (max-width: 768px) {

  .about-section {
   padding: 20px;
  padding-top: 0px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about-content {
    flex-direction: column;
  }

  .mission-vision {
    flex-direction: column;
    padding: 20px;
    padding-bottom: 0px;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .mission, .vision {
    padding: 0rem;
  }

}


.more-details p{
  margin: 25px;
  text-align: center;
  font-size: 1.5rem;
  color: rgb(63, 62, 62);
  font-weight: 900;
}


.more-details p a {
  text-decoration: none;
  color: inherit; /* keeps the text color same as h1 */
}

.more-details p a:hover {
  color: #f2c94c; /* optional: hover color */
}