/* * {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: Arial, sans-serif;

}



body {

    background: #fff;

}



.hero {

    position: relative;

    width: 100%;

    height: 350px;

    background: url("../../../../assets/images/about/image.png") center/cover no-repeat;

    display: flex;

    align-items: center;

    padding-left: 60px;

    color: white;

}



.hero .overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.55);

}



 .hero-content {

    position: relative;

    max-width: 600px;

}



.hero-content h1 {

    font-size: 45px;

    font-weight: 700;

    margin-bottom: 15px;

}



.hero-content p {

    font-size: 16px;

    line-height: 1.6;

}



.bottom-nav {

    width: 100%;

    background-image: linear-gradient(to right, #023262, #12c3f2);

    padding: 15px 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.bottom-nav a {

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

}



.bottom-nav a:hover {

    text-decoration: underline;

}
 */

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


.about-hero {
  position: relative;
  width: 100%;
  min-height: 45vh;
  background-image: url("../../../../assets/images/history/abou.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-hero::after{
    content: "";
    position: absolute;
    width: 15%;
    height: 0.5vh;
    background-color: #f1f1f1;
    top: 58%;
    left: 41.5%;
}
.about-hero::before{
    content: "";
    position: absolute;
    width: 10%;
    height: 0.5vh;
    background-color: #3593ff;
    top: 61%;
    left: 41.5%;
}



.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.about-hero .content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 20px;
}


.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}


.popap {
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.popap a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.popap span {
  margin: 0 6px;
  /* opacity: 0.8; */
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .popap {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }
}

