  .maniBannerAll {
    background-color: #1E1B4B;
    /*background-color: #031119;*/
    padding: 30px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }

  .maniBannerAll h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .maniBannerAll p {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: justify;
  }

  .maniBannerAll .btn-warning {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
  }

  .maniBannerAll .row.align-items-center {
    align-items: flex-start !important;
  }

  .maniBannerAll img {
    max-height: 350px;
    width: 100%;
    /*object-fit: cover;*/
    object-fit: contain;
  }

  @media (max-width: 767.98px) {
    .maniBannerAll {
      text-align: center;
      padding: 15px 0;
    }
    .maniBannerAll h1 {
      font-size: 2.2rem;
    }
    .maniBannerAll img {
      max-height: 300px;
    }
  }


/*end*/



  .itServices {
    padding: 0;
  }

  .itServices .service-card {
    perspective: 1000px;
    height: 350px;
    background: #031119;
  }

  .itServices .service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .itServices .service-card:hover .service-card-inner {
    transform: rotateY(180deg);
  }

  .itServices .service-card-front,
  .itServices .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
  }

  .itServices .service-card-front {
    background: #051c2c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .itServices .service-card-front h3 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .itServices .service-card-back {
    background: #031119;
    transform: rotateY(180deg);
  }

  .itServices .service-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .itServices .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .itServices .hover-lift {
    transition: transform 0.2s;
  }

  .itServices .hover-lift:hover {
    transform: translateY(-5px);
  }

  .itServices .about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
  }

/*end*/

.resume-banner {
    background:#031119;
        background: #031119;
    padding: 60px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }

/*end*/

/*start*/

  .career-card {
    transition: all 0.3s ease;
    border-left: 4px solid #ec3237;
  }

  .career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .career-card h5 {
    font-size: 1.2rem;
  }

  .badge {
    font-size: 0.85rem;
  }

  @media(max-width: 576px) {
    .career-card .text-md-end {
      text-align: left !important;
      margin-top: 10px;
    }
  }

/*end*/

/*start*/


  .bg-blue {
    background-color: #0e2540;
    transition: all 0.3s ease;
  }

  .bg-blue:hover {
    background-color: #0c1f36;
    transform: translateY(-5px);
  }

  .how-it-works h5 {
    color: #fff;
  }

  .how-it-works p {
    color: #d1d5db;
  }

@media (max-width: 576px) {
  .how-it-works p {
    text-align: justify;
    text-justify: inter-word; /* proper justify */
    word-spacing: normal;     /* extra gap avoid */
  }
}


/*end*/

/*careerModal start*/

/* Modal Form Styling same as Contact Page */
.careerModal {
  position: fixed;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  background: rgba(0, 0, 0, 0.6); /* backdrop */
  z-index: 1050; /* above everything */
}

.careerModal .modal-content {
  background: #031119;
  border-radius: 1px;
  padding: 30px 25px;
  max-width: 500px;
  width: 100%;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.careerModal .modal-content h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.careerModal .modal-content input[type='text'],
.careerModal .modal-content input[type='email'],
.careerModal .modal-content input[type='file'],
.careerModal .modal-content select,
.careerModal .modal-content textarea {
  background: none;
  border: none;
  border-bottom: solid 2px #fff;
  color: #fff;
  font-size: 1em;
  letter-spacing: 1px;
  margin-bottom: 1.5em;
  padding: 0 0 0.6em 0;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
}

.careerModal .modal-content input::placeholder,
.careerModal .modal-content textarea::placeholder {
  color: #fff;
  opacity: 0.7;
}

.careerModal .modal-content input:focus,
.careerModal .modal-content textarea:focus {
  outline: none;
  border-bottom-color: #1488cc;
}

.careerModal .modal-content button {
  background: none;
  border: solid 2px #fff;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 12px 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}

.careerModal .modal-content button:hover {
  background: #fff;
  color: #031119;
}

/* Close Button */
.careerModal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s;
}

.careerModal .close:hover {
  color: #1488cc;
}

/* Mobile Friendly */
@media (max-width: 576px) {
.careerModal {
 top:-120px
}
  .careerModal .modal-content {
    padding: 20px;
  }
  .careerModal .modal-content h2 {
    font-size: 1.25rem;
  }
}

/*careerModal end*/
