  .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;
  }

  .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;
  }


/*end*/

   .blog-section {
      font-family: 'Segoe UI', sans-serif;
      padding: 80px 0;
      background-color: #051c2c;
      color: #fff;
   }

   .blog-card {
      background-color: #0e2a3e;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      margin-bottom: 60px;
      overflow: hidden;
      transition: transform 0.3s ease;
   }

   .blog-card:hover {
      transform: translateY(-5px);
   }

   .blog-card .left img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 0px;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
   }

.blog-card img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 0px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
   }
   .blog-content {
      padding: 40px 30px;
   }

   .blog-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
      color: #fff;
   }

   .blog-subtitle {
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #fcd535;
   }

   .blog-date {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 20px;
   }

   .blog-list p,
   .blog-content p {
      margin-bottom: 1.2rem;
      text-align: justify;
      color: #e0e0e0;
      line-height: 1.7;
   }

   .blog-highlights p {
      background-color: #ffffff;
      color: #000;
      border-left: 5px solid #fcd535;
      padding: 12px 18px;
      margin-bottom: 1rem;
      font-weight: 500;
      border-radius: 6px;
   }

   /* Responsive tweaks */
   @media (max-width: 991px) {
      .blog-card img {
         border-radius: 0;
         height: 250px;
      }

      .blog-content {
         padding: 25px 20px;
      }

      .blog-subtitle {
         font-size: 1.5rem;
      }
   }



   .blog-info-section {
      background-color: #031119;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
      padding: 80px 0;
   }

   .blog-info-section h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #fcd535;
      margin-bottom: 20px;
   }

   .blog-info-section p {
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: justify;
      color: #e0e0e0;
      margin-bottom: 1.5rem;
   }

   @media (max-width: 991px) {
      .blog-info-section .col-lg-3,
      .blog-info-section .col-lg-2,
      .blog-info-section .col-lg-5,
      .blog-info-section .col-lg-9 {
         text-align: center;
         padding-top: 20px;
      }

      .blog-info-section h2 {
         font-size: 1.6rem;
      }
   }

   .blogHighlights{
  margin-bottom: 10px;
 }

 .blogHighlights2{
  margin-top: 30px;
 }
 .onMobile{
  display: none;
 }
 .onDesktop{
  display: block;
 }

   @media (max-width: 720px) {
.blog-card {
      border-radius: 0px;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
   }

   .blog-card img {
      border-top-right-radius: 0px;
      border-bottom-right-radius: 0px;
   }
   .blog-card .left img {
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
   }
    .blogHighlights{
  margin-bottom: 0px;
 }

 .blogHighlights2{
  margin-top: 0px;
 }
 .onDesktop{
  display: none;
 }
 .onMobile{
  display:block;
 }
 }

