  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  html,
  body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  :root {
    --primary-color-: '#3845FF';
    --button-color-: '#3845FF';
  }
  a {
    text-decoration: none;
  }
  li {
    list-style: none;
  }

  .header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 40%);
  }

  .headertop {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 36px;
  }
  .left-top a {
    color: #fff;
    font-size: 15px;
  }
  .right-top a {
    color: #fff;
    font-size: 15px;
  }
  .left-top a .fa,
  .right-top a .fa {
    margin-right: 4px;
    font-size: 14px;
  }
  .right-top a .fa {
    font-size: 16px;
  }
  nav.header-menu {
    display: flex;
    padding: 6px 3rem;
    align-items: center;
    justify-content: space-between;
  }
  nav.header-menu .logo img {
    width: 150px;
  }
  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
  .nav-menu ul li a {
    color: #121212;
    font-size: 16px;
    font-weight: 400;
  }

  /* tanuj */
  .hero-section-inner {
    display: flex;
  }
  .hero-section-left {
    width: 50%;
  }
  .hero-section-right {
    width: 50%;
  }
  .hero-section-left-inner {
    width: 625px;
    padding: 10.5rem 0rem 0 2rem;
  } 
  .hero-section-left-inner h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 100%;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .hero-section-left-inner p {
    font-size: 15px;
    line-height: 150%;
    color: rgba(85, 85, 85, 0.8);
    font-weight: 400;
    padding: 0 6px;
    text-align: justify;
  }

  .button_section {
    padding: 27px 0;
    display: flex;
    gap: 20px;
  }
  .btn-switch {
    position: relative;
    display: inline-flex;
    background: #f1f2f6;
    border-radius: 40px;
    padding: 4px;
  }

  .switch-btn {
    position: relative;
    z-index: 2;
    padding: 10px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
  }

  .switch-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: 50%;
    background: #3845ff;
    border-radius: 40px;
    transition: transform 0.3s ease;
    z-index: 1;
  }
  .switch-btn.active {
    color: #fff;
  }

  .btn-switch.right .switch-bg {
    transform: translateX(100%);
  }

  .hero-section-right-inner {
    height: 612px;
    width: 428px;
    margin: 40px 0;
  }
  .slider img {
    height: 100%;
    width: 100%;
  }
  .hero-section-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
  }
  .slides {
    display: flex;
    /* width: 300%; */
    height: 100%;
    transition: transform 0.6s ease;
  }
  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    flex-shrink: 0;
  }

  /* job section */

  .jobs-section {
    padding: 30px 0;
    background: #f8f9ff;
    margin: auto;
  }
  .container {
    width: 1200px;
    margin: auto;
  }
  .section-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 35px;
  }
  .section-header h2 span {
    color: #3845ff;
  }
  .section-header p {
    color: #666;
    max-width: 600px;
    line-height: 110%;
    margin-bottom: 40px;
    margin-top: 10px;
    font-size: 15px;
  }
  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .job-card {
    padding: 22px;
    border-radius: 14px;
    /* box-shadow: 0 4px 14px rgba(0, 0, 0, 19%); */
    background: linear-gradient(to top right, #fafbff,#dfe3f1);
  
    display: flex;
    flex-direction: column;
    height: 400px;
    height: 386px;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    /* min-height: 70px; */
  }
  .tags span {
    font-size: 13px;
    background: #f1f3ff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 400;
  }

  .job-info {
    font-size: 14px;
    color: #666;
    margin-top: auto;
  }

  .job-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }

  .apply-btn {
    background: #3845ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
  }
  .desc-btn {
    background: #eee;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
  }

  /* services section */

  .services-section {
    padding: 30px 0;
    background: #f8f9ff;
    text-align: center;
  }
  .services-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 100%;
  }
  .services-header span {
    color: #3845ff;
  }
  .services-header p {
    max-width: 600px;
    margin: auto;
    color: #666;
    line-height: 150%;
    margin-bottom: 50px;
    margin-top: 10px;
    font-size: 15px;
  }
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 76px;
    justify-content: center;
    padding: 20px 0;
  }

  .service-card {
    width: 285px;
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 3px;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: #eef0ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 18px;
  }
  .service-icon img {
    width: 64px;
    height: 64px;
  }
  .service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 100%;
  }
  .service-card p {
    line-height: 125%;
    font-size: 15px;
    color: #666;
    font-weight: 400;
  }

  /* industry section */
  .industry-section {
    padding: 30px 0;
    background: #f2f4ff;
  } 
  .industry-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 100%;
  }
  .industry-header span {
    color: #3845ff;
  }
  .industry-header p {
    max-width: 600px;
    /* margin: auto; */
    color: #666;
    line-height: 150%;
    margin-bottom: 50px;
    font-size: 15px;
  }
  .industry-grid {  
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-columns: 400px 400px 450px; */
    gap: 12px;
    /* background-color: #fff; */
  }
  .industry-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .industry-icon {
    font-size: 22px;
    color: #3845ff;
    background: #eef0ff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .industry-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: capitalize;
  }
  .industry-card p {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 125%;
  }
  /* process section */

  .process-section {
    padding: 30px 0;
    background: #f8f9ff;
  }

  .process-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .process-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 100%;
  }

  .process-header span {
    color: #3845ff;
  }

  .process-header p {
    color: #666;
    margin-top: 10px;
    font-size: 15px;
  }

  .process-layout {
    display: grid;
    grid-template-columns: 216px 285px 263px;
    gap: 170px;
    align-items: center;
    justify-content: center;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .step {
    padding: 14px 20px;
    border-radius: 30px;
    border: 0.5px solid #3845ff;
    background: #fff;
    color: #3845ff;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    transition: all 0.25s ease;
    font-weight: 600;
  }

  .step:hover:not(.active) {
    background: rgba(56, 69, 255, 0.08);
    transform: translateX(6px);
  }

  .step.active {
    background: black;
    color: #fff;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateX(8px);
  }

  .process-image {
    position: relative;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
    width: 285px;
  }

  .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .process-image img.process-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .process-image img.process-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  .tag {
    position: absolute;
    background: #fff;
    padding: 6px 12px;
    font-size: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    font-weight: 500;
    z-index: 5;
  }

  .tag1 {
    top: 20%;
    left: -20px;
  }
  .tag2 {
    top: 40%;
    right: -20px;
  }
  .tag3 {
    bottom: 20%;
    left: -20px;
  }

  .process-content-wrapper {
    position: relative;
    min-height: 300px;
  }

  .process-content {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .process-content.active {
    display: block;
    opacity: 1;
  }

  .process-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
  }

  .process-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 15px;
  }

  @media (max-width: 1024px) {
    .process-layout {
      grid-template-columns: 220px 1fr;
      gap: 30px;
    }
    .process-content-wrapper {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    .process-layout {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .process-image {
      height: 300px;
    }
  }
  /* bottom section */
  .cta-section {
    background: linear-gradient(90deg, #4a5cff, #3845ff);
    color: #fff;
    padding: 70px 0;
    text-align: center;
  }
  .cta-container {
    max-width: 700px;
    margin: auto;
  }
  .cta-section h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 100%;
  }
  .cta-section p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 140%;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .cta-btn {
    background: #fff;
    color: #3845ff;
    border: none;
    padding: 10px 26px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
  }
  .cta-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: center;
  }
  .cta-social a {
    color: #fff;
    font-size: 16px;
    opacity: 0.9;
  }

  /* footer */
  .footer {
    background: black;
    color: #fff;
    padding-top: 40px;
  }
        
  .footer-logo {  
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 143px;
    width: 450px;
  }

  .footer-bottom {
    border-top: 1px solid #222;
    padding: 15px 0;
    /* display: flex; */
    /* justify-content: right; */
    text-align: center;
    font-size: 15px;
  }
 

  /* contact us page */

  .contact-section {
  background: #f4f6ff;
  padding: 80px 0;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
}

.contact-left h1 {
  font-size: 66px;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 420px;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #dcdcdc;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  height: 100px;
  border-radius: 20px;
  resize: none;
}

.contact-form button {
  width: 420px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #3845ff, #5a6bff);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.contact-card {
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  color: #fff;
  position: relative;
}

.contact-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.contact-card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.contact-card-info p {
  font-size: 12px;
  opacity: 0.8;
}

.contact-card-info h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
.main_container_hight{
  height: 100px;
}
