@charset "utf-8";

   .home_slider_content {
    display: flex;
    justify-content: flex-start;  /* Align to left */
    align-items: flex-start;      /* Align vertically to top (optional) */
    text-align: left;             /* Ensure left alignment for text */
    padding-left: 60px;           /* Add some space from left edge */
    height: 100%;                 /* Ensure full height to align properly */
}

.home_slider_content_inner {
    max-width: 600px;             /* Optional: limit width */
}

.home_slider_title, .home_slider_subtitle {
    background: none !important;  /* Remove any box backgrounds */
    padding: 0;                   /* Remove any default padding */
    margin: 0 0 10px 0;           /* Space between heading and subtitle */
    color: white;                 /* Make sure text is visible */
    
}






   h1 {
    margin-top: 100px;
    text-align: center;
  }

  .hero {
    background: url("{% static 'images/home_slider_1.jpg' %}") no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    
  }

  .hero h1 {
    color: #fff;
    font-size: 3rem;
    text-align: center;
  }

  .story {
    padding: 4rem 2rem;
    background: #fff;
  }

  .story .content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .story .text {
    flex: 1 1 500px;
  }

  .story .text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .story .text p {
    margin-bottom: 1rem;
    color: #333;
  }

  .story .image {
    flex: 1 1 400px;
    text-align: center;
  }

  .story .image img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    width: auto;
    object-fit: contain;
  }

  .vision-mission-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .vision-image {
    flex: 1 1 400px;
    max-width: 500px;
    padding: 10px;
  }

  .vision-image img {
    width: 100%;
    max-height: 350px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
  }

  .vision-text {
    flex: 1 1 400px;
    padding: 10px 30px;
  }

  .vision-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
  }

  .vision-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .founders-note-section {
  background-color: #f0f0f0;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.founders-note-text {
  max-width: 900px;
  margin: 0 auto;
}

.founders-note-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.founders-note-text p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: #444;
 
  quotes: "“" "”";
}

.founders-note-text p::before {
  content: open-quote;
  font-size: 2rem;
  vertical-align: top;
  color: #999;
}

.founders-note-text p::after {
  content: close-quote;
  font-size: 2rem;
  vertical-align: bottom;
  color: #999;
}

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }

    .story .text h2,
    .vision-text h2 {
      font-size: 1.5rem;
    }

    .story,
    .vision-mission-section {
      padding: 2rem 1rem;
      flex-direction: column;
    }

    .vision-text {
      padding: 10px 0;
    }

    .founders-note-text h2 {
    font-size: 1.6rem;
  }

  .founders-note-text p {
    font-size: 1rem;
    padding: 0;
  }
}
  
