/* Background & Section */
.about-section {
  background: linear-gradient(135deg, #0984e3, #26de81); /* Logo theme gradient */
  color: #ffffff; /* Text visible on gradient */
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.sub-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e0f7fa; /* Light cyan for contrast */
}
.highlight {
  color: #ffffff;
}

/* Images */
.about-image,
.image-card {
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-image img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image:hover img,
.image-card:hover img {
  transform: scale(1.08);
}
.about-image:hover,
.image-card:hover {
  box-shadow: 0 12px 28px rgba(38, 222, 129, 0.45);
}

/* Video Frame */
.video-frame {
  position: relative;
  max-width: 720px;
  margin: 50px auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}
.video-frame video {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #000;
}

/* Loan Cards */
.loan-card {
  background: linear-gradient(145deg, #0984e3, #26de81); /* Logo theme gradient */
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.loan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(38, 222, 129, 0.45);
}
.loan-card h5 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Buttons inside cards or sections */
.btn.custom-btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0984e3, #26de81);
  transition: transform 0.3s ease, background 0.3s ease;
}
.btn.custom-btn:hover {
  background: linear-gradient(135deg, #26de81, #0984e3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .about-section { padding: 60px 20px; }
  .video-frame { max-width: 100%; }
  .loan-card { margin-bottom: 20px; }
}
@media (max-width: 768px) {
  .section-title { font-size: 1.8rem; }
  .sub-title { font-size: 1.1rem; }
  .btn.custom-btn { display: block; margin: 12px auto; }
}
