* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: #000;
    }

    /* HERO SECTION */
    .hero {
  background-image: url('team-meeting.png'); /* ensure the file name is correct */
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(0, 38, 255);
  position: relative;
  padding: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    }
    .hero-content {
  position: relative;
  z-index: 1.5;
  margin-bottom: 120px;
}

    .logo {
      width: 150px;
      height: 150px;
    margin-left:25px;
    }

    .hero-content h3 {
      font-size: 1.8rem;
      margin-bottom: -20px;
      color: #ffea00;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: bold;
    }

    /* ABOUT SECTION */
    .about {
      color:black;
      padding: 10px 10px;
      font-weight:bold;
      font-size:larger;
    }
.about-text {
  font-weight: bold;
  width: 100%;
  padding: 40px 20px; /*reduced horizontal padding for small sceerns*/
  border-radius: 0; /* optional: square edges */
  background-image: url('city-skyline.jpg'); /* your background image */
  background-size: cover;
  background-position: right center; /* align to the right */
  background-repeat: no-repeat;
  color:white;
  background-color: rgba(0, 0, 0, 0.6); /* darker overlay for readability */
  background-blend-mode: overlay;
  line-height: 1.6;
  overflow-y: auto;
  word-wrap: break-word;

}
h1{
  text-align: center;
  font-weight: bolder;
  color:rgb(0, 38, 255);
}

    /* FOOTER */
    .footer {
      background: url('4.png') center/cover no-repeat;
      opacity: 0.9;
      padding: 30px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #000;
    }

    .footer-logo {
      margin: -10px 0;
      width: 100px;
      height: auto;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1000px;
      width: 90%;
      margin-top: 20px;
    }

    .footer-content div {
      flex: wrap;
      margin: 30px 20px;
    }

    .footer-content h4 {
      color:rgb(255, 234, 0);
      margin-bottom: 10px;
	  font-size: 1.4rem;
    }

    .footer-content p {
      color:rgb(0, 38, 255);
      font-weight: bold;
    }

     /* Responsive text */
   @media (max-width: 768px) {
  .about-text {
    padding: 20px 15px;
    font-size: 1rem;
    background-position: center;
    background-size: cover;
  }

      .about-text {
        padding: 20px;
        text-justify: auto;
      }

      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-content div {
        margin: -10px 0 0 0;
      }
     .copyright p{
      font-size:bolder;
     }
    }
