

*{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
}

.about-hero{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
}
.about-content{
    padding: 5px;
    margin: 22px;
    width: 50%;
}
.about-content h1{
    font-size: 32px;
    color: #ec1b96;
}
.about-p{
    padding: 12px;
    line-height: 24px;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #5d246b, #ff009d);
  color: white;
  /* border-radius: 10px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* margin: 20px 0; */
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 20px;
  background-color: #fff;
  color: #5d246b;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ec1b96;
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image {
    max-width: 100%;
  }
}

/* our vision section  ///  */

.vision-mission-section {
  padding: 80px 5%;
  /* background-color: #f9f9f9; */
  background: 
    radial-gradient(circle, oklch(0.15 0.2 330 / 0), oklch(0.15 0.2 330 / 1)),
    linear-gradient(344deg in oklch, oklch(0.3 0.37 310), oklch(28.502% 0.11302 327.28), oklch(22.681% 0.08726 307.03));
  
}

.section-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ec1b96;
}

.about-cards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
/* .about-cards img{
  width: 40% !important;
} */
.cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  width: 60%;
}

.card {
  flex: 2 2 45%;
  background: #ec1b9523;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 70px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ec1b96;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fafafa;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 768px){
  .about-cards{
    display: flex;
    flex-direction: column;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    flex: 1 1 100%;
  }
}

/* Our growth ///  */


.scorecard-section {
  /* background: linear-gradient(135deg, #007bff, #00a8ff); */
   background: 
    radial-gradient(circle, oklch(0.15 0.2 330 / 0), oklch(0.15 0.2 330 / 1)),
    linear-gradient(344deg in oklch, oklch(0.3 0.37 310), oklch(0.35 0.37 330), oklch(0.3 0.37 310));

  color: #fff;
  text-align: center;
  padding: 80px 5%;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  color: rgba(255, 255, 255, 0.85);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.score-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.score-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.score-box img {
  width: 60px;
  margin-bottom: 20px;
}

.score-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.score-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .score-grid {
    grid-template-columns: 1fr;
  }

  .score-box {
    padding: 30px 20px;
  }
}
