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

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


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

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

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

    .background-sec {
      /* ensure it has height so image shows */
      background-image: url("/images/backgr.png");
      /* adjust path as needed */
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      color: #fff;
      padding: 50px;
      border-radius: 40px;
    }

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

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

    /* Section Styling */
    section {
      padding: 60px 10%;
    }

    section:nth-child(even) {
      background: #fff;
    }

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

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

    h4 {
      color: #3d7c02ff;
    }

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

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

    .full-text p a:hover {

      color: #0D2C54;
    }


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

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

    .full-text p {
      text-align: center;
      /* or justify if you prefer */
      font-size: 18px;
      max-width: 100%;
      margin: 3rem auto 2rem auto;
      line-height: 1.6;
    }

    /* Feature Cards */
    .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;
    }

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

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

    .card h3 {
      color: #dd2828;
    }

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

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

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

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

    .accordion-header {
      background: linear-gradient(130deg, #7f9ec5, #e04a4a);
      color: #fff;
      padding: 15px 20px;
      font-size: 21px;
      cursor: pointer;
      position: relative;
      user-select: none;
      font-weight: 600;
    }

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

    .accordion-header::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 20px;
    }

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

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

    .accordion-content p {
      margin: 15px 0;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #0D2C54, #dd2828);
      color: white;
      text-align: center;
      padding: 60px 200px;
    }

    .cta h2 {
      color: white;
    }

    .cta button {
      margin-top: 20px;
      padding: 12px 30px;
      font-size: 16px;
      border: none;
      border-radius: 30px;
      background: #dba921;
      color: #0D2C54;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta button:hover {
      background: white;
    }
/* section 3 */


        h2 {
            
            font-size: 28px;
            margin-bottom: 20px;
          
        }

        .career-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .career-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            padding: 20px;
            transition: transform 0.2s ease;
            position: relative;
        }

        .career-card:hover {
            transform: translateY(-5px);
        }

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

        .career-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #444;
        }

        .career-card p {
            font-size: 16px;
            line-height: 1.6;
            display: none;
            margin-top: 10px;
        }

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

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

        }

        .career-card.active p {
            display: block;
        }
/* section 4 */
       h2 {           
            font-size: 28px;
            margin-bottom: 20px;
           
        }

        .intro {           
            font-size: 16px;
            max-width: 700px;           
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .career-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .career-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            padding: 20px;
            transition: transform 0.2s ease;
            position: relative;
        }

        .career-card:hover {
            transform: translateY(-5px);
        }

        .career-card img {
            width: 50px;
            height: 50px;
            margin-bottom: 10px;
        }

        .career-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #444;
            margin-left: 0px;
        }

        .career-card p {
            font-size: 14px;
            line-height: 1.6;
            display: none;
            margin-top: 10px;
        }

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

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

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

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


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

      body>section {
        padding: 20px;
      }


      img {
        max-width: 100%;
      }

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

      .breadcrumb {
        font-size: 20px;
      }

      .cta {
        padding: 10px 20px;
      }
    }
  