/* ================= ABOUT US PAGE ================= */

.aboutus-page{
  padding: 90px 0;
  background: #ffffff;
}

.aboutus-page-container{
  width: 92%;
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

/* Content */
.aboutus-page-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,0,0,0.08);
  color: #32CD32;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.aboutus-page-title{
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.aboutus-page-title span{
  color: #32CD32;
}

.aboutus-page-text{
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 650px;
}

/* Highlights */
.aboutus-page-highlights{
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.aboutus-page-highlight{
  min-width: 140px;
}

.aboutus-page-highlight h3{
  font-size: 32px;
  font-weight: 900;
  color: #32CD32;
  margin-bottom: 4px;
}

.aboutus-page-highlight p{
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

/* Image */
.aboutus-page-image{
  width: 100%;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.aboutus-page-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aboutus-page-image:hover img{
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .aboutus-page-container{
    grid-template-columns: 1fr;
  }

  .aboutus-page-title{
    font-size: 36px;
  }

  .aboutus-page-image{
    height: 380px;
  }
}

@media(max-width: 600px){
  .aboutus-page{
    padding: 60px 0;
  }

  .aboutus-page-title{
    font-size: 28px;
  }

  .aboutus-page-text{
    font-size: 15px;
  }

  .aboutus-page-image{
    height: 280px;
    border-radius: 14px;
  }

  .aboutus-page-highlights{
    justify-content: center;
    text-align: center;
  }
}

/* ////////////////////////////////////////// section 2 //////////////////////////////////////////// */
/* ================= ABOUT WHY CHOOSE US ================= */

.about-whyus{
  padding: 90px 0;
  background: #fafafa;
}

.about-whyus-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.about-whyus-head{
  text-align: center;
  margin-bottom: 50px;
}

.about-whyus-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,0,0,0.08);
  color: #32CD32;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.about-whyus-title{
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.about-whyus-title span{
  color: #32CD32;
}

.about-whyus-desc{
  max-width: 720px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* Points grid */
.about-whyus-points{
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-whyus-point{
  padding: 26px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.about-whyus-point:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.about-whyus-point h3{
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.about-whyus-point p{
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .about-whyus-title{
    font-size: 34px;
  }

  .about-whyus-points{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .about-whyus{
    padding: 60px 0;
  }

  .about-whyus-title{
    font-size: 26px;
  }

  .about-whyus-desc{
    font-size: 15px;
  }

  .about-whyus-points{
    grid-template-columns: 1fr;
  }
}




/* ////////////////////////////////////////// section 2 //////////////////////////////////////////// */
/* ================= ABOUT MVV SECTION ================= */

.about-mvv{
  padding: 90px 0;
  background: #ffffff;
}

.about-mvv-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.about-mvv-head{
  text-align: center;
  margin-bottom: 50px;
}

.about-mvv-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,0,0,0.08);
  color: #32CD32;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}

.about-mvv-title{
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.about-mvv-title span{
  color: #32CD32;
}

.about-mvv-desc{
  max-width: 760px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* Grid */
.about-mvv-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Boxes */
.about-mvv-box{
  padding: 28px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.about-mvv-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(225,29,72,0.18);
  border-color: rgba(225,29,72,0.18);
}

/* Top */
.about-mvv-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-mvv-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(225,29,72,0.12);
  color: #32CD32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

.about-mvv-box h3{
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin: 0;
}

.about-mvv-box p{
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* List */
.about-mvv-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.about-mvv-list li::marker{
  color: #32CD32;
  font-weight: 900;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .about-mvv-title{
    font-size: 34px;
  }
  .about-mvv-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .about-mvv{
    padding: 60px 0;
  }
  .about-mvv-title{
    font-size: 26px;
  }
  .about-mvv-desc{
    font-size: 15px;
  }
  .about-mvv-grid{
    grid-template-columns: 1fr;
  }
}



/* ////////////////////////////////////////// section 2 //////////////////////////////////////////// */
/* ================= ABOUT CTA ================= */

.about-cta{
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    rgba(225,29,72,0.08),
    rgba(225,29,72,0.03)
  );
}

.about-cta-container{
  width: 92%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Content */
.about-cta-content h2{
  font-size: 44px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.15;
}

.about-cta-content h2 span{
  color: #32CD32;
}

.about-cta-content p{
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 28px;
}

/* Buttons */
.about-cta-actions{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta-btn{
  text-decoration: none;
  font-weight: 900;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 15px;
  transition: 0.3s ease;
}

/* Primary */
.about-cta-btn.primary{
  background: #32CD32;
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 225, 39, 0.3);
}

.about-cta-btn.primary:hover{
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* Outline */
.about-cta-btn.outline{
  background: transparent;
  border: 2px solid rgba(0,0,0,0.18);
  color: #111;
}

.about-cta-btn.outline:hover{
  border-color: #32CD32;
  color: #32CD32;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .about-cta-content h2{
    font-size: 36px;
  }
}

@media(max-width: 600px){
  .about-cta{
    padding: 60px 0;
  }

  .about-cta-content h2{
    font-size: 26px;
  }

  .about-cta-content p{
    font-size: 15px;
  }

  .about-cta-btn{
    width: 100%;
    text-align: center;
  }
}

