/**
 * SLA360 Chit Funds - About Page Layout
 */

.about-hero-section {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #020847 0%, #0066CC 100%);
  text-align: center;
}
.about-hero-section h1 {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-hero-section h1 span {
  color: #FF6600;
}
.about-hero-section .page-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.about-hero-section .page-breadcrumb li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
}
.about-hero-section .page-breadcrumb li:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255,255,255,0.6);
}
.about-hero-section .page-breadcrumb li:last-child:after {
  display: none;
}
.about-hero-section .page-breadcrumb a {
  color: #FF6600;
}
.about-hero-section .page-breadcrumb a:hover {
  color: #fff;
}

.about-intro-section {
  padding: 80px 0;
  background: #fff;
}
.about-intro-section .row {
  align-items: center;
}
.about-intro-section h2 {
  font-size: 36px;
  color: #020847;
  font-weight: 700;
  margin-bottom: 25px;
}
.about-intro-section .text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-intro-section .about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-intro-section .about-img img {
  width: 100%;
  display: block;
}

.about-values-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.about-values-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.about-values-section .section-head h2 {
  font-size: 36px;
  color: #020847;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-values-section .section-head p {
  color: #666;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.about-values-section .value-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border-top: 4px solid #0066CC;
}
.about-values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-top-color: #FF6600;
}
.about-values-section .value-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #020847 0%, #0066CC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.about-values-section .value-card .icon i {
  font-size: 28px;
  color: #fff;
}
.about-values-section .value-card h4 {
  font-size: 20px;
  color: #020847;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-values-section .value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.about-why-section {
  padding: 80px 0;
  background: #fff;
}
.about-why-section h2 {
  font-size: 36px;
  color: #020847;
  font-weight: 700;
  margin-bottom: 30px;
}
.about-why-section .why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-why-section .why-list li {
  padding: 18px 0 18px 55px;
  position: relative;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
}
.about-why-section .why-list li:last-child {
  border-bottom: none;
}
.about-why-section .why-list li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: #0066CC;
  font-size: 20px;
  font-weight: bold;
}
.about-why-section .why-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #020847 0%, #0066CC 100%);
  text-align: center;
}
.about-cta-section h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.about-cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 25px;
}
.about-cta-section .btn {
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: #FF6600;
  border-color: #FF6600;
  color: #fff;
}
.about-cta-section .btn:hover {
  background: #ff8533;
  border-color: #ff8533;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-hero-section h1 { font-size: 28px; }
  .about-intro-section h2,
  .about-values-section .section-head h2,
  .about-why-section h2 { font-size: 28px; }
  .about-intro-section,
  .about-values-section,
  .about-why-section { padding: 50px 0; }
}
