* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

.container {
  max-width: 1629px;
  margin: 0 auto;
  padding: 24px 24px; 
}


/* HERO */
.hero {
  text-align: center;
  margin-bottom: 20px;
}


.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* .stats-box {
  display: flex;
  justify-content: space-between;
  background: #dde7fa;
  padding: 24px 32px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.stat h3 {
  font-size: 1.6rem;
}

.stat span {
  font-size: 0.9rem;
  color: #666;
} */

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.split img {
  width: 79%;
  border-radius: 14px;
}

.split .text h2 {
  margin-bottom: 12px;
}





.stats-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin: 60px auto;
  /* max-width: 1200px; */
  width:100%;
}

.stat {
  flex: 1;
  text-align: center;
  padding:10px 5px;
  border-radius: 18px;
  background: #f6f7f9;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* number */
.stat h3 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

/* text */
.stat span {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.5px;
}

/* hover effect */
.stat:hover {
  background: #6ab5e4;
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* 
.values-section {
  padding: 80px 0;
}

.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.value-card a {
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
}

.value-card a:hover {
  text-decoration: underline;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
} */
.values-section {
    padding: 60px 20px;
    background: #f9fafc;
}

.values-grid {
    
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 in one row */
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card img.icon {
    width: 55px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.value-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.green { background: #d1fae5; }
.red { background: #fee2e2; }
.blue { background: #dbeafe; }
.purple { background: #ede9fe; }
.yellow { background: #fef3c7; }

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 16px 16px;
  }

  .hero {
    margin-bottom: 16px;
  }
}



@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .stats-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
.about-section {
  max-width: 1100px;
  margin: 40px auto; 
  padding: 0 24px;
}


.about-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.image-box {
  width: 100%;
  max-width: 420px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.text-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.text-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .image-box {
    max-width: 100%;
    height: 320px;
  }
}



@media (min-width: 991px) and (max-width: 1366px) {

  .hero h1 {
    font-size: 2.3rem;
  }

  .about-section {
    max-width: 1000px;
  }

  .about-content {
    gap: 32px;
  }

  .image-box {
    max-width: 380px;
    height: 380px;
  }

  .text-card {
    padding: 28px;
  }
}



@media (min-width: 769px) and (max-width: 990px) {

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    max-width: 520px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .image-box {
    max-width: 420px;
    height: 420px;
  }

  .text-card {
    max-width: 520px;
    text-align: center;
  }
}




@media (min-width: 481px) and (max-width: 768px) {

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .image-box {
    max-width: 360px;
    height: 360px;
  }

  .text-card {
    padding: 24px;
    text-align: center;
  }
}



@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
    padding: 0 10px;
  }

  .about-section {
    margin: 30px auto;
    padding: 0 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }

  .image-box {
    max-width: 100%;
    height: 300px;
  }

  .text-card {
    padding: 22px;
    text-align: center;
  }

  .text-card h3 {
    font-size: 20px;
  }

  .text-card p {
    font-size: 13.5px;
  }
}




@media (min-width: 991px) and (max-width: 1366px) {

  .split {
    gap: 32px;
    margin-bottom: 70px;
  }

  .split img {
    width: 85%;
  }

  .split .text h2 {
    font-size: 1.9rem;
  }
}



@media (min-width: 769px) and (max-width: 990px) {

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    justify-items: center;
    text-align: center;
  }

  .split img {
    width: 70%;
  }

  .split .text h2 {
    font-size: 1.8rem;
  }
}


@media (min-width: 481px) and (max-width: 768px) {

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
    justify-items: center;
    text-align: center;
  }

  .split img {
    width: 85%;
  }

  .split .text h2 {
    font-size: 1.6rem;
  }
}



@media (max-width: 480px) {

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    text-align: center;
  }

  .split img {
    width: 100%;
  }

  .split .text h2 {
    font-size: 1.4rem;
  }
}




@media (min-width: 991px) and (max-width: 1366px) {

    .values-section {
        padding: 55px 20px;
    }

    .values-grid {
        gap: 26px;
    }

    .value-card {
        padding: 26px;
    }
}



@media (min-width: 769px) and (max-width: 990px) {

    .values-section {
        padding: 50px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 24px;
    }

    .value-card {
        padding: 26px;
    }
}



@media (min-width: 481px) and (max-width: 768px) {

    .values-section {
        padding: 45px 16px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr); /* still 2 per row */
        gap: 20px;
    }

    .value-card {
        padding: 24px;
    }

    .value-card h3 {
        font-size: 17px;
    }
}



@media (max-width: 480px) {

    .values-section {
        padding: 40px 14px;
    }

    .values-grid {  
        grid-template-columns: 1fr; /* 1 per row */
        gap: 18px;
    }

    .value-card {
        padding: 22px;
        text-align: center;
    }

    .value-card img.icon {
        margin-left: auto;
        margin-right: auto;
    }

    .value-card h3 {
        font-size: 16.5px;
    }

    .value-card p {
        font-size: 14px;
    }
}