/* ========== RNK Safety Nets | About Page Styles ========== */
.about-area-sec {
  background: linear-gradient(135deg, #f0f7ff 0%, #e3f8ff 100%);
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.about-container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-content {
  flex: 1 1 50%;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004d73;
  margin-bottom: 20px;
}

.highlight {
  color: #00aaff;
}

.about-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-list ul {
  list-style: none;
  padding: 0;
}
.about-list li {
  color: #004d73;
  margin-bottom: 8px;
  font-weight: 500;
}

.about-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.about-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #00aaff;
  color: #fff;
}
.primary-btn:hover {
  background: #008ecc;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid #00aaff;
  color: #004d73;
}
.secondary-btn:hover {
  background: #004d73;
  color: #fff;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}
.about-main-img {
  width: 100%;
  height: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-main-img:hover {
  transform: scale(1.05);
}

/* Cards Section */
.about-extra-container {
  margin-top: 80px;
  text-align: center;
}

.about-extra-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.about-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.about-card h3 {
  color: #004d73;
  margin-bottom: 15px;
  font-weight: 700;
}
.about-card p {
  color: #555;
  line-height: 1.7;
}
.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.3);
}

/* Contact Info */
.about-contact-info {
  margin-top: 60px;
  background: #004d73;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}
.about-contact-info h4 {
  margin-bottom: 15px;
  color: #00d4ff;
  font-weight: 700;
}
.about-contact-info p {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }
  .about-main-img {
    max-width: 100%;
  }
}
