/* Reset and basic styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #fff;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Header styles */
  header {
    background: #000;
    padding: 15px 0;
    color: #fff;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  .nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    color: #f39c12;
  }
  
  /* Breadcrumb */
  .breadcrumb_section {
    background: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .breadcrumb_section h1 {
    margin: 0;
  }
  
  /* About content */
  .about_content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .about_content p {
    font-size: 16px;
    color: #555;
  }
  
  /* Mission and Vision section */
  .about_mission {
    background: #f4f6f8;
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .team-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;        /* keeps image square */
    object-fit: cover;          /* crops slightly to fill square nicely */
    border-radius: 50%;         /* makes it circular */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  /* Footer styles */
  footer {
    background: #222;
    color: #ccc;
    padding: 40px 0 20px;
  }
  
  footer h4, footer h6 {
    color: #fff;
    margin-bottom: 20px;
  }
  
  footer p, footer li {
    font-size: 14px;
    line-height: 1.8;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  footer ul li a:hover {
    color: #f39c12;
  }
  
  .social-icons a {
    margin-right: 10px;
    color: #ccc;
    font-size: 16px;
  }
  
  .social-icons a:hover {
    color: #f39c12;
  }
  
  .bottom_footer {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    border-top: 1px solid #444;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* ensures full image fits inside */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 767px) {
    .about-image {
      max-height: 250px;
    }
  }
  