
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f5f5f5;
    }

    /* NAVIGATION */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      /* background-color: #ffffff; */
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #880588;
    }

    .nav-links a {
      font-size: 40px;
      margin-left: 100px;
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #880588;
    }

    /* BANNER */
    .banner {
      height: 300px;
      background: url('./banner-bg.png') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      background-blend-mode: overlay;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .banner h1 {
      font-size: 40px;
      font-weight: bold;
    }

    /* ABOUT SECTION */
    .about-content {
      max-width: 1000px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .about-content h2 {
      font-size: 28px;
      color: #880588;
      margin-bottom: 20px;
    }

    .About-Us {
      font-size: 25px;
      color: #880588;
      justify-content: center;
      text-align: center;
      padding: 10px;
    } 

  

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}









.about-content {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  animation: fadeIn 1s ease-in;
}

.founder-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 1.5rem;
}

.founder-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.founder-img:hover {
  transform: scale(1.05);
}

.founder-intro h1 {
  font-size: 1.8rem;
  color: #9b29a5;
  margin-bottom: 0.4rem;
}

.founder-intro h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
}

.about-body h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #ba1c50;
  position: relative;
  padding-left: 0.5rem;
  border-left: 4px solid #ba1c50;
}

.about-body p,
.about-body ul {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0;
}

.about-body ul {
  padding-left: 1.2rem;
}

.about-body ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.about-body ul li::before {
  content: '✔';
  color: #ba1c50;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .founder-profile {
    flex-direction: column;
    text-align: center;
  }

  .founder-img {
    width: 150px;
    height: 150px;
  }

  .founder-intro h1 {
    font-size: 1.5rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo img {
    height: 50px;
    margin-bottom: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 8px;
  }
}