/* homepage.css */

/* Hero Section */
.hero {
    background: #9cb1ce;
    padding: 100px 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #0e1a2b;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
  }
  
  /* Services Section */
  .services-section {
    background-color: #f9f9fb;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .services-section .overview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #222;
  }
  
  .services-section .overview-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Why Us Section */
  .why-us {
    background-color: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .why-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
  }
  
  .why-us-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .why-us-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Team Section */
  .team {
    background: #f9f9fb;
    padding: 60px 40px;
    text-align: center;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .team-member {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-6px);
  }
  
  .team-img {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .role {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
  }
  
  .bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Call To Action */
  .cta {
    background: linear-gradient(to right, #007bff, #00bfff);
    padding: 60px 40px;
    text-align: center;
    color: white;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: white;
    color: #007bff;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #f1f1f1;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #0e1a2b;
    color: white;
    font-size: 0.95rem;
  }