

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
/* ===== HERO ===== */
.about-page-hero {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    url("../assets/images/section.png") center/cover no-repeat;
  z-index: -1;
}

.about-page-hero-content h1 {
  font-size: 55px;
}

.about-page-hero-content p {
  font-size: 20px;
  color: #ddd;
}

/* ===== COMMON CONTAINER ===== */
.about-page-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ===== WHO ===== */
.about-page-who {
  padding: 70px 0;
  background: #f8f8f8;
}

.about-page-who-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-page-who-header h2 {
  font-size: 40px;
  color: #1E3D6B;
  font-weight: 600;
}

.about-page-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-page-who-card {
    display: flex
;
    gap: 15px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
}
.about-page-who-card.full {
  grid-column: span 2;
}

.about-page-who-img {
  width: 70px;
  height: 70px;
  background: #ddd;
}

/* ===== APPROACH ===== */
.about-page-approach {
  padding: 70px 0;
  border-top: 1px solid #eee;
}

.about-page-approach-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-page-approach-cards {
  display: flex;
  gap: 40px;
}

.about-page-approach-card {
  flex: 1;
}

.about-page-icon {
  width: 100px;
  height: 100px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 60px;
  margin-bottom: 12px;
}

/* ===== SUCCESS ===== */
.about-page-success {
  padding: 70px 0;
  border-top: 1px solid #eee;
}

.about-page-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}

.about-page-success-cards {
  display: flex;
  gap: 20px;
}

.about-page-success-card {
    flex: 1;
    padding: 20px;
    border: 1px solid #eee;
    text-align: left;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
}
.about-page-success-card span {
  color: #fff;
}

.about-page-success-card h3 {
  font-size: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-page-who-grid {
    grid-template-columns: 1fr;
  }

  .about-page-who-card.full {
    grid-column: span 1;
  }

  .about-page-approach-cards {
    flex-direction: column;
  }

  .about-page-success-cards {
    flex-direction: column;
  }

  .about-page-hero-content h1 {
    font-size: 28px;
  }
}


/* ===== WHY SECTION ===== */
.about-page-why {
  padding: 70px 0;
  border-top: 1px solid #eee;
}

/* HEADER */
.about-page-why-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-page-why-header h2 {
  font-size: 40px;
  font-weight: 700;
}

/* CARDS ROW */
.about-page-why-cards {
  display: flex;
  gap: 40px;
}

/* CARD */
.about-page-why-card {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  transition: 0.3s;
}

/* ICON */
.about-page-why-icon {
  width: 100px;
  height: 100px;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: auto;
  margin-bottom: 15px;
}

/* TEXT */
.about-page-why-card h3 {
  font-size: 20px;
  font-weight: 400;
}

/* HOVER */
.about-page-why-card:hover {
  transform: translateY(-6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-page-why-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-page-why-card {
    flex: 0 0 45%;
  }
}

@media (max-width: 576px) {
  .about-page-why {
    padding: 40px 20px;
  }

  .about-page-why-header h2 {
    font-size: 28px;
  }

  .about-page-why-card {
    flex: 0 0 100%;
  }

  .about-page-why-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
}



/* ===== TESTIMONIAL SECTION ===== */
.about-page-testimonial {
  padding: 70px 0;
  border-top: 1px solid #eee;
}

/* WRAPPER */
.about-page-testimonial-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.about-page-testimonial-left {
  flex: 1;
}

.about-page-testimonial-left h2 {
  font-size: 40px;
  font-weight: 700;
}

/* RIGHT SIDE */
.about-page-testimonial-right {
  flex: 1;
}

/* CARDS */
.about-page-testimonial-cards {
  display: flex;
  gap: 40px;
}

/* CARD */
.about-page-testimonial-card {
    flex: 1;
    background: rgba(0, 0, 0, 0.05);
    padding: 16px;
    border-radius: 6px;
    transition: 0.3s;
    background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
    color: white;
}

/* USER */
.about-page-testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* AVATAR */
.about-page-testimonial-avatar {
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
}

/* NAME */
.about-page-testimonial-user h4 {
  font-size: 14px;
  font-weight: 500;
}

/* TEXT */
.about-page-testimonial-card p {
  font-size: 15px;
  line-height: 22px;
}

/* HOVER */
.about-page-testimonial-card:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-page-testimonial-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-page-testimonial-left {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .about-page-testimonial-cards {
    flex-direction: column;
  }

  .about-page-testimonial-left h2 {
    font-size: 28px;
  }
}



/* ===== ENQUIRY FORM SECTION (CSS) ===== */
.about-page-enquiry {
  padding: 70px 0;
  border-top: 1px solid #eee;
}

/* HEADER */
.about-page-enquiry-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-page-enquiry-header h2 {
  font-size: 40px;
  font-weight: 700;
}

/* FORM */
.about-page-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ROW */
.about-page-form-row {
  display: flex;
  gap: 40px;
}

/* FORM GROUP */
.about-page-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* FULL WIDTH */
.about-page-form-group.full {
  flex: 100%;
}

/* LABEL */
.about-page-form-group label {
  font-size: 14px;
  font-weight: 500;
}

/* INPUT + SELECT */
.about-page-form-group input,
.about-page-form-group select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  outline: none;
}

/* FOCUS EFFECT */
.about-page-form-group input:focus,
.about-page-form-group select:focus {
  border-color: black;
}

/* BUTTON */
.about-page-form-btn {
  text-align: center;
}

.about-page-form-btn button {
  padding: 12px 30px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.about-page-form-btn button:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-page-form-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-page-enquiry-header h2 {
    font-size: 28px;
  }
}

/* ===== CTA SECTION (CSS) ===== */
.about-page-cta {
  padding: 60px 0;
  display: flex;
  justify-content: center; 
  border-top: 1px solid #eee;
}

/* BOX */
.about-page-cta-box {
  text-align: center;
  max-width: 600px;
}

/* TITLE */
.about-page-cta-box h2 {
  color: #1E3D6B;
    font-size: 40px;
    font-weight: 700;
}

/* BUTTON WRAPPER */
.about-page-cta-btn {
  display: flex;
  justify-content: center;
}

/* BUTTON */
.about-page-cta-btn a {
    display: inline-block;
    padding: 12px 30px;
   
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
}

/* HOVER */
.about-page-cta-btn a:hover {
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-page-cta-box h2 {
    font-size: 26px;
  }

  .about-page-cta-btn a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}