:root {
  --primary: rgb(0, 0, 0);
  --primary-light: rgb(0, 2, 146);
  --primary-dark: rgb(42, 68, 108);
  --gray-light: #f5f7fa;
  --gray-dark: #6b7280;
  --white: #ffffff;
  --black: #111827;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: var(--gray-light);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 160px 0 180px;
  position: relative;
  overflow: hidden;
}

/* Wave effect using SVG background */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.1' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.1' fill='%23ffffff'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
  
  /* Rotate the wave */
  transform: rotate(180deg);
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}

/* About Intro */
.about-intro {
  padding: 80px 0;
  position: relative;
}

.intro-container {
  background-color: var(--white);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.intro-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.intro-title::after {
  /* content: '';      */
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  text-align: justify;
}

/* Mission Vision Section */
.mv-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
}

.mv-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.mv-card {
  flex: 1;
  min-width: 300px;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-card::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
  opacity: 0.2;
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.mv-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.mv-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.mv-text {
  opacity: 0.9;
  font-size: 1.05rem;
  text-align: justify;
}

/* Values Section */
/* Values Section */
.values-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid var(--primary-dark);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.value-content {
  flex: 1;
}

.value-number {
  font-size: 1rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 10px;
}

.value-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1f1f2e;
}

.value-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .hero-subtitle{
      font-size: 0.8rem;
  }

  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--white);
}

.team-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--black);
}

.team-position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-container {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.stats-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMSI+PHBhdGggZD0iTTMwIDIxLjVjNC42OTQgMCA4LjUgMy44MDYgOC41IDguNXMtMy44MDYgOC41LTguNSA4LjUtOC41LTMuODA2LTguNS04LjUgMy44MDYtOC41IDguNS04LjV6TTMwIDBDMTMuNDMzIDAgMCAxMy40MzMgMCAzMHMxMy40MzMgMzAgMzAgMzBzMzAtMTMuNDMzIDMwLTMwUzQ2LjU2NyAwIDMwIDB6bTAgNDVjLTguMjg0IDAtMTUtNi43MTYtMTUtMTVzNi43MTYtMTUgMTUtMTUgMTUgNi43MTYgMTUgMTUtNi43MTYgMTUtMTUgMTV6Ii8+PC9nPjwvZz48L3N2Zz4=");
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .intro-container {
    padding: 40px;
  }

  .mv-container {
    flex-direction: column;
    align-items: center;
  }

  .mv-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .intro-title {
    font-size: 2rem;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
  
  .intro-text{
      text-align: justify;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .intro-container {
    padding: 30px;
    margin-top: -40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 30px 20px;
  }
}
