/* =========================
   ABOUT PAGE LAYOUT
========================= */

/* Section spacing */
.about-section {
  padding: 100px 0;
}

/* Grid Layout */
.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =========================
   IMAGE & TEXT WIDTH CONTROL
========================= */

/* Image takes 60% */
.about-img {
  flex: 0 0 60%;
  max-width: 60%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: 0.4s ease;
}

/* Text takes 40% */
.about-grid > div,
.services-preview {
  flex: 0 0 40%;
  max-width: 40%;
}

/* Hover animation */
.about-img:hover {
  transform: translateY(-8px);
}



















/* =========================
   TEXT STYLING
========================= */

.about-section h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-section p {
  color: #94a3b8;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-section strong {
  color: #3b82f6;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {

  .about-grid,
  .services-preview .hero-content {
    gap: 40px;
  }

}

/* Tablet */
@media (max-width: 900px) {

  .about-grid,
  .services-preview .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img,
  .about-grid > div,
  .services-preview .hero-text {
    max-width: 100%;
    flex: 100%;
  }

}

/* Mobile */
@media (max-width: 600px) {

  .about-section,
  .services-preview {
    padding: 70px 0;
  }

  .about-section h2,
  .services-preview h2 {
    font-size: 26px;
  }

}
