/* Banner Styles */
.about-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  
  .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .banner-content p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* About Us Section */
  .about-us {
    padding: 60px 20px;
    background: #f8f9ff;
    color: #2d3748;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .about-row.reverse {
    flex-direction: row-reverse;
  }
  
  .about-text {
    flex: 1;
    padding: 20px;
  }
  
  .about-text h2 {
    font-size: 32px;
    color: #4a5568;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
  }
  
  .about-text ul {
    list-style: none;
    padding-left: 0;
  }
  
  .about-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
  }
  
  .about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
  }
  
  .about-image {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .about-founder{
  padding:60px 20px;
  background:white;
}

.founder-card{
  max-width:600px;
  margin:auto;
  text-align:center;
  padding:40px 30px;
  border-radius:14px;
  background:#ffffff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.founder-card h2{
  font-size:28px;
  margin-bottom:10px;
  color:#4a5568;
}

.founder-card h3{
  font-size:24px;
  margin-bottom:5px;
  color:#2d3748;
}

.founder-title{
  color:#667eea;
  font-weight:600;
  margin-bottom:12px;
}

.founder-desc{
  color:#555;
  font-size:15px;
  margin-bottom:12px;
}

.founder-vision{
  font-size:15px;
  color:#444;
  line-height:1.6;
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-row,
    .about-row.reverse {
      flex-direction: column;
    }
  
    .banner-content h1 {
      font-size: 36px;
    }
  
    .banner-content p {
      font-size: 16px;
    }
  }
  