
/* =========================
   CARD
========================= */
.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* =========================
   HEADING
========================= */
.about-text h1 {
  color: var(--text-black);
  font-weight: 700;
  margin-bottom: 10px;
   text-align: center; 
}

/* =========================
   QUOTE
========================= */
.quote {
  color: var(--primary-blue);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 20px;
  text-align:center;
}

/* =========================
   TEXT
========================= */


/* =========================
   FLOAT IMAGE (MAIN PART)
========================= */
.about-image {
  float: right;
  width: 260px;
  margin: 0 0 15px 25px;
  text-align: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.about-image img:hover {
  transform: scale(1.03);
}

/* =========================
   IMAGE CAPTION
========================= */
.image-caption {
  margin-top: 10px;
}

.image-caption h4 {
  font-size: 14px;
  color: var(--primary-blue);
  margin: 0;
  font-weight: 600;
}

.image-caption span {
  font-size: 12px;
  color: var(--accent-red);
}

/* =========================
   CLEAR FLOAT FIX
========================= */
.about-text::after {
  content: "";
  display: block;
  clear: both;
}

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

  .about-card {
    padding: 25px;
  }

  .about-text h1 {
    font-size: 22px;
	 text-align: center; 
  }

  .about-text p {
    font-size: 14px;
  }

  .about-image {
    width: 220px;
  }

}

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

  .about-card {
    padding: 20px;
  }

  .about-image {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .about-text h1 {	  
    font-size: 20px;
    text-align: center;
  }

  .quote {
    text-align: center;
  }

}