html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
  }
  .nav{
    position: sticky;
    top: 0;
    z-index: 99;
  }
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .highlight {
    color: #0077b6;
  }
  .coming-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .btn-explore {
    background-color: #0077b6;
    color: white;
  }
  .btn-explore:hover {
    background-color: #005f87;
  }
  .ai-image {
    max-width: 300px;
    height: auto;
  }
  .image-wrapper {
    position: relative;
    display: inline-block;
  }
  .follow-text {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-align: center;
    color: #0077b6;
    font-weight: 500;
  }
  .mission-section {
    background-color: #f8f9fa;
    padding: 60px 0;
  }

  .mission-container {
    max-width: 900px;
    margin: auto;
  }

  .mission-image {
    max-width: 100%;
    height: auto;
  }

  .mission-logo {
    max-height: 80px;
    margin-bottom: 20px;
  }

  .mission-heading {
    font-weight: bold;
    font-size: 2rem;
  }

  .highlight-icon {
    color: #e63946;
    font-size: 1.5rem;
  }
  @media(max-width: 768px){
    body{
      margin:1px auto;
    }
  }

  @media (max-width: 768px) {
    .mission-heading {
      font-size: 1.6rem;
      text-align: center;
    }

    .mission-text {
      text-align: center;
    }

    .follow-us {
      writing-mode: horizontal-tb;
      transform: none;
      margin-top: 10px;
    }
  }
  .mellow-section {
    background-color: #037497;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
  }
  @media (min-width: 992px) {
    .mellow-section {
      margin-top: 200px;
      margin-bottom: 150px;
    }
  }

  .mellow-heading {
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .mellow-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .mellow-badge {
    background-color: #037497;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .mellow-title {
    font-weight: 600;
    font-size: 1.1rem;
  }

  .mellow-desc {
    color: #555;
    font-size: 0.95rem;
  }
  .team-section {
    padding: 60px 15px;
    text-align: center;
  }

  .team-member img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #e6f7fd;
    padding: 5px;
    margin-bottom: 15px;
  }

  .team-name {
    font-weight: 600;
    font-size: 1rem;
  }

  .linkedin {
    color: #037497;
    font-weight: bold;
  }

  @media (min-width: 992px) {
    .team-section {
      padding-top: 150px;
      padding-bottom: 150px;
    }
  }
  .body {
    background-color: #d9f4ff;
  }

  .faq-section {
    padding: 80px 15px;
  }

  .faq-question {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
  }

  .faq-answer {
    display: none;
    background: white;
    padding: 15px 20px;
    border-radius: 0.5rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    border-top: 1px solid #eee;
  }

  .faq-active + .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-in-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-5%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .faq-question {
font-weight: 600;
font-size: 1rem;
padding: 20px;
background: white;
border-radius: 0.5rem;
cursor: pointer;
margin-bottom: 2.5rem;
transition: background-color 0.3s ease;
}

.faq-answer {
background: white;
padding: 15px 20px;
border-radius: 0.5rem;
margin-bottom: 1rem;
display: none;
transition: background-color 0.3s ease;
color: whhite;
}

.faq-question.faq-active,
.faq-question.faq-active + .faq-answer {
background-color: #037497;
color: white; /* Light blue for both */
}
.main-container {
    font-family: 'Segoe UI', sans-serif;
    padding: 150px 15px;
  }

  .form-control:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
    background-color: #eaf4ff;
  }

  .btn-custom {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
  }

  .btn-custom:hover {
    background-color: #0056b3;
  }

  .footer-info {
    margin-top: 50px;
  }

  .footer-info h5 {
    font-weight: 600;
  }