  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Merriweather', serif;
  }

  /* ===== Banner Section ===== */
  .banner {
    background: url('../Images/about-banner.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    /* full screen height */
    display: flex;
    align-items: center;
    position: relative;
    color: #000;
    /* black text color */
  }

  /* Optional overlay (for dark/light adjustment) */
  .banner::before {
    content: "";
    position: absolute;
    inset: 0;
  }

  /* Content positioning */
  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }

  /* ===== Heading Styling ===== */
  .banner-heading h1 {
    font-size: 45px;
    font-family: 'Merriweather', serif;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .banner-heading h1 span {
    color: #dc3f4d;
  }

  /* ===== Paragraph Styling ===== */
  .banner-heading p {
    font-size: 20px;
    line-height: 1.6;
    color: #222;
  }



  .mission-vision-section {
    background-color: #f6f4ef;
    padding: 80px 0;
  }

  /* Card Styling */
  .mv-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 60px 20px 40px;
    /* extra top space for header */
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* Header Top Bar */
  .mv-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    z-index: 5;
    /* ✅ ensures header stays on top */
  }

  .mv-header h2 {
    font-size: 20px;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
  }

  .mv-header.mission {
    background-color: #3257a8;
  }

  .mv-header.vision {
    background-color: #dc3f4d;
  }

  /* Card Image */
  .mv-card img {
    width: 70px;
    margin-bottom: 20px;
  }

  /* Paragraph Text */
  .mv-card p {
    font-size: 15px;
    color: #000000;
    margin-top: 10px;
    line-height: 1.6;
  }


  .why-hire-section {
    background-color: #ffffff;
    color: #e0e0e0;
    border-radius: 10px;
    padding: 40px 0;
  }

  .why-heading {
    color: #000000;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .why-heading span {
    color: #dc3f4d;
  }

  .why-hire-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 12px;
  }

  .image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }


      .faq-section {
    background: url('../Images/FAQs.png') no-repeat center center/cover;
    padding: 80px 0;
    color: #333;
  }

  .faq-title {
    color: #000000;
    font-weight: bold;
    margin-top: -16% !important;
    font-size: 38px;
  }

  .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
  }

  /* Hover & Active Blue Color */
  .accordion-button:hover,
  .accordion-button:not(.collapsed) {
    background-color: #007bffd5;
    color: #fff;
  }

  .accordion-body {
    background-color: #f8f9fa;
  }

  /* Force right alignment */
 
.faq-right {
    margin-left: auto;
    margin-right: -60px;
}


/* Large screens (1200px to 1400px) */
@media (max-width: 1400px) {
    .banner-heading h1 {
        font-size: 42px;
    }
    
    .banner-heading p {
        font-size: 19px;
    }
    
    .faq-right {
        margin-right: -30px;
    }
}

/* Medium-large screens (992px to 1199px) */
@media (max-width: 1199px) {
    .banner-heading h1 {
        font-size: 38px;
    }
    
    .banner-heading p {
        font-size: 18px;
    }
    
    .mission-vision-section {
        padding: 70px 0;
    }
    
    .mv-card {
        padding: 50px 15px 30px;
    }
    
    .mv-header {
        width: 70%;
        font-size: 18px;
    }
    
    .why-heading {
        font-size: 34px;
    }
    
    .why-hire-section p {
        font-size: 17px;
    }
    
    .faq-section {
        padding: 70px 0;
    }
    
    .faq-title {
        font-size: 34px;
        margin-top: -12% !important;
    }
    
    .faq-right {
        margin-right: 0;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .banner {
        height: 80vh;
    }
    
    .banner-heading h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }
    
    .banner-heading p {
        font-size: 17px;
    }
    
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mv-card {
        margin-bottom: 30px;
        padding: 50px 20px 30px;
    }
    
    .mv-header {
        width: 75%;
        font-size: 17px;
        padding: 8px 0;
    }
    
    .mv-card img {
        width: 60px;
    }
    
    .mv-card p {
        font-size: 14px;
    }
    
    .why-hire-section {
        padding: 30px 0;
    }
    
    .why-heading {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .why-hire-section p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 30px;
        margin-top: 0 !important;
        text-align: center;
        margin-bottom: 30px !important;
    }
    
    .faq-right {
        margin-left: 0;
    }
    
    .accordion-button {
        font-size: 1rem;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .banner {
        height: 70vh;
        text-align: center;
    }
    
    .banner-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .banner-heading h1 {
        font-size: 30px;
    }
    
    .banner-heading p {
      display: none;
    }
    
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mv-card {
        padding: 45px 15px 25px;
    }
    
    .mv-header {
        width: 80%;
        font-size: 16px;
    }
    
    .mv-card img {
        width: 55px;
    }
    
    .mv-card p {
        font-size: 13.5px;
    }
    
    .why-hire-section {
        padding: 25px 0;
    }
    
    .why-heading {
        font-size: 28px;
        text-align: center;
    }
    
    .why-hire-section p {
        font-size: 15px;
        text-align: center;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
}

/* Mobile phones (481px to 575px) */
@media (max-width: 575px) {
    .banner {
        height: 60vh;
    }
    
    .banner-heading h1 {
        font-size: 26px;
    }
    
    
    .mission-vision-section {
        padding: 40px 0;
    }
    
    .mv-card {
        padding: 40px 15px 20px;
    }
    
    .mv-header {
        width: 85%;
        font-size: 15px;
        padding: 7px 0;
    }
    
    .mv-header h2 {
        font-size: 16px;
    }
    
    .mv-card img {
        width: 50px;
        margin-bottom: 15px;
    }
    
    .mv-card p {
        font-size: 13px;
    }
    
    .why-hire-section {
        padding: 20px 0;
    }
    
    .why-heading {
        font-size: 24px;
    }
    
    .why-hire-section p {
        font-size: 14px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .accordion-button {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* Small mobile phones (320px to 480px) */
@media (max-width: 480px) {
    .banner {
        height: 50vh;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .banner-heading h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .mission-vision-section {
        padding: 30px 0;
    }
    
    .mv-card {
        padding: 35px 10px 15px;
        border-radius: 15px;
    }
    
    .mv-header {
        width: 90%;
        font-size: 14px;
        padding: 6px 0;
        border-radius: 8px;
    }
    
    .mv-header h2 {
        font-size: 14px;
    }
    
    .mv-card img {
        width: 45px;
        margin-bottom: 10px;
    }
    
    .mv-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .why-hire-section {
        padding: 15px 0;
    }
    
    .why-heading {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .why-hire-section p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 22px;
        margin-bottom: 20px !important;
    }
    
    .accordion-button {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .accordion-body {
        font-size: 0.85rem;
        padding: 12px;
    }
}   
