
  .mech-page {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: #f7f7f7;
    color: #333;
    text-align: justify;
  }

  .mech-page ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin-left: -23px;
  }

  .mech-page p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 28px;
  }

  /* Breadcrumb */
  .mech-page .breadcrumb {
    background: #0D2C54;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 60px 0px;
    font-size: 35px;
    font-weight: 900;
    border-bottom: 6px solid #dba921;    
  }

  .mech-page .breadcrumb a {
    color: #dba921;
    text-decoration: none;
    margin-right: 5px;
  }

  .mech-page .breadcrumb h1 {
    margin: 0 5px;
    color: #fff;
    font-size: 35px;
  }

  /* Background section */
  .mech-page .background-sec {
    background-image: url("/images/backgr.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 50px;
    border-radius: 40px;
  }

  .mech-page .com-img img {
    height: 670px;
  }

  /* Section Styling */
  .mech-page section {
    padding: 60px 10%;
  }

  .mech-page section:nth-child(even) {
    background: #fff;
    margin-top: -20px;
  }

  .mech-page section:nth-child(odd) {
    background: #f3f6fa;
  }

  .mech-page h2 {
    color: #dd2828;
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    margin-left: 0px;
    line-height: 40px;
  }

  .mech-page h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #0D2C54;
    margin-top: 8px;
    border-radius: 3px;
  }

  .mech-page h4 {
    color: #3d7c02ff;
  }

  .mech-page .full-text p a {
    text-decoration: none;
    color: #dd2828;
    font-weight: 600;
  }

  .mech-page .full-text p a:hover {
    color: #0D2C54;
  }

  /* Grid Layouts */
  .mech-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 60px;
  }

  .mech-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .mech-page .full-text p {
    text-align: center;
    font-size: 18px;
    max-width: 100%;
    margin: 3rem auto 2rem auto;
    line-height: 1.6;
  }

  /* Feature Cards */
  .mech-page .card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease;
    height: 280px;
  }

  .mech-page .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .mech-page .card i {
    font-size: 40px;
    color: #dd2828;
    margin-bottom: 15px;
  }

  .mech-page .card h3 {
    color: #dd2828;
  }

  .mech-page .accordion-content h3 {
    color: #dd2828;
  }

  .mech-page img {
    max-width: 100%;
    border-radius: 12px;
  }

  /* Accordion */
  .mech-page .accordion {
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .mech-page .accordion-item {
    border-bottom: 1px solid #ddd;
  }

     .mech-page .accordion-header {
      background: linear-gradient(90deg, #c52d2f, #c7b598);
      color: #fff;
      padding: 10px 15px;
      font-size: 19px;
      cursor: pointer;
      font-weight: 600;
      position: relative;
      border-radius: 5px;
      margin-bottom: 5px;
    }

  .mech-page .accordion-header::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: #c52d2f;
  }

  .mech-page .accordion-header.active::after {
    content: "-";
  }

  .mech-page .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    background: #f9f9f9;
    margin-bottom: 15px;
  }

  .mech-page .accordion-content p {
    margin: 15px 0;
    font-size: 15px;
  }

  .mech-page .art-img {
    max-width: 100%;
    text-align: center;
    margin: 30px;
  }

  /* Child FAQ Accordion */
  .mech-page .faq-accordion {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .mech-page .faq-item {
    border-bottom: 1px solid #ddd;
  }

  .mech-page .faq-header {
    padding: 12px 15px;
    cursor: pointer;
    background: #f9f9f9;
    font-weight: 600;
    position: relative;
  }

  .mech-page .faq-header::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .mech-page .faq-header.active::after {
    content: "−";
  }

  .mech-page .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #fff;
    padding: 0 15px;
  }

  .mech-page .faq-content ul {
    padding: 5px 36px 20px;
  }

  /* CTA */
  .mech-page .cta {
    background: linear-gradient(179deg, rgba(197, 45, 47, .7), rgba(199, 181, 152, .7)),
      url('/images/admission-apply-now-bg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 60px 200px;
  }

  .mech-page .cta h2 {
    color: #fff; 
  }
   .mech-page .cta h3 {
    color: #fff; 
    font-size: 28px;
  }

  .mech-page .cta button {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    background: #c52d2f;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
  }

  .mech-page .cta button:hover {
    background: #fff;
    color: #0D2C54;
  }

  /* Section 3: Career Grid */
  .mech-page .career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
.mech-page .career-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 15px 35px;
    transition: transform 0.2s ease;
    position: relative;
  
}
  .mech-page .career-card:hover {
    transform: translateY(-5px);
  }

  .mech-page .career-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
  }

.mech-page .career-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
    margin-left: 0px;
    text-align: left;
}
  .mech-page .career-card p {
    font-size: 15px;
    line-height: 1.6;
    display: none;
    margin-top: 10px;
  }

  .mech-page .career-card ul {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
    display: none;
  }

  .mech-page .career-card button {
    background: #dd2828;
    color: #fff;
    border: none;
    padding: 8px 14px;
    margin-top: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
  }

  .mech-page .career-card button:hover {
    background: #072e57;
  }

  .mech-page .career-card.active p,
  .mech-page .career-card.active ul {
    display: block;
  }

  /* Section 4 */
  .mech-page .intro {
    font-size: 16px;

    margin-bottom: 30px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .mech-page h2 {
      font-size: 25px;
    }

    .mech-page section {
      padding: 20px;
    }

    .mech-page img {
      max-width: 100%;
    }

    .mech-page .accordion-header {
      font-size: 18px;
    }

    .mech-page .breadcrumb {
      font-size: 20px;
    }

    .mech-page .cta {
      padding: 10px 20px;
    }
  }

