@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,900&display=swap");
@font-face {
  font-family: 'Satoshi';
  src: url('path-to-satoshi.woff') format('woff'), /* Add other formats if available */
       url('path-to-satoshi.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, "Urbanist";
}

body {
  background: #ffffff;
  min-height: 100vh;
}


header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -10px;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 12;
}

header .logo {
  font-weight: 700;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header .logo img {
  width: 2.0em;
  height: 1.0em;
  font-size: 2em;

}

header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li {
  list-style: none;
  margin-left: 20px;
  font-weight: 700;
}

header ul li a {
  text-decoration: none;
  padding: 6px 15px;
  color: rgb(0, 0, 0);
  border-radius: 15px;
}

/* header ul li a:hover {
  background-color: #ddd;
    color: black;
} */

#menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}


#menu li:last-child {
  margin-right: 0;
}

#menu a {
  text-decoration: none;
  color: black;
  position: relative;
}

#menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #1CC382;
  border-radius: 10px;
  transform-origin: left;
  transition: width 0.3s ease-in-out;
}

#menu a:hover::after {
  width: 100%;
}

#menu .active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #1CC382;
  border-radius: 10px;
}

/* Styling for the buttons in the header */
header .button {
  background-color: #4CAF50;
  /* Light green color for "Hire Talent" */
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  padding: 10px 35px;
  margin: 10px 5px;
  cursor: pointer;
  transition: background-color 0.4s, transform 0.4s;
  /* Slower transition */
}

header .button.white {
  background-color: white;
  /* White color for "Get Hired" */
  color: #4CAF50;
  border-radius: 50px;
  padding: 10px 35px;
  margin: 10px 5px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #4CAF50;
  cursor: pointer;
  transition: background-color 0.4s, transform 0.4s;
  /* Slower transition */
}

/* Add :hover styles */
header .button:hover,
header .button.white:hover {
  transform: translateY(-2px);
  /* Move the button slightly upwards on hover */
}

/* Add :active styles */
header .button:active {
  background-color: #3e8e41;
  /* Darker green for button when pressed */
  transform: scale(0.95);
  /* Scale down the button slightly when pressed */
}

header .button.white:active {
  background-color: #3e8e41;
  /* Darker green for button when pressed */
  color: #ffffff;
  /* Darker green for button when pressed */
  transform: scale(0.95);
  /* Scale down the button slightly when pressed */
}


/* Your existing CSS for desktop */

/* New CSS for mobile menu */


/* Media query for mobile */
@media screen and (max-width: 768px) {
    .mobile-menu {
    display: flex ;
    justify-content: space-between;
  }
  header{
    background-color: white;
  }

  .bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    /* margin-left: -18em; */
    transition: 0.4s;
  }

  .close-bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
    transform-origin: center;
  }

  #close-menu.active .close-bar:first-child {
    transform: rotate(45deg);
    margin-top: -1em;
  }

  #close-menu.active .close-bar:last-child {
    margin-top: -0.5em;
    transform: rotate(-45deg);
  }

  #menu {
    list-style: none;
    padding: 0;
    position: absolute;
    /* position: fixed; */
    top: 6rem;
    left: -100%;
    width: 100%;
    height: 80vh;
    background-color: #fff;
    flex-direction: column;
    text-align: center;
    z-index: 10;
    transition: left 1s cubic-bezier(0.19, 1, 0.22, 1);
    /* Add smooth left transition */
  }
  .hidden {
    display: none;
  }

  header {
    padding: 15px 20px;
    /* Reduce padding for smaller screens */
  }

  header ul li {
    margin: 15px 0;
  }

  #menu.active {
    left: 0;
  }

  .mobile-menu {
    display: block;
  }

  #burger-menu.active~#close-menu {
    display: block;
  }
}






.banner {
  position: relative;
  margin-top: 109px;
  width: 100%;
  height: 1064px;
  /* Set the desired height for the banner */
  overflow: hidden;
}

/* .banner img {
  width: 1055px;
  height: 706px;
    background-size: 68% auto;
  margin-left: 50%;
  object-fit: cover;
} */


.banner img {
  object-fit: cover;
  width: 90%;
  height: 100%;
  margin-top: -5%;
  margin-left: 85%;
  transform: translateX(-50%);
    overflow: hidden;
}

.banner .Banner-Image-2{
  margin-left: 65%;
  width: 70%;
  height: 105%;
}


.slide {
  overflow: hidden;
  flex: 0 0 100%;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
/* width: 1440px; */
    width: 90%;
    height: 706px;
    background: linear-gradient(87deg, #4C40F7 45.86%, rgba(76, 64, 247, 0.00) 72.89%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  z-index: 1; /* Ensure overlay is above the image */
}

.overlay-content {
  padding: 20px;
  position: relative;
  z-index: 2; /* Ensure content is above the overlay */
}

/* Add hover effect to display the overlay */
.banner-overlay {
  opacity: 1;
}

.overlay-content {
  margin-left: -15em;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
}

.overlay-content button {
  background-color: #3ceca8;
  color: #4CAF50;
  border: none;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 12px;
  margin: 10px 5px;
  cursor: pointer;
}

.overlay-content #banner-text {
  text-align: left;
  /* Align text content to the left */
}
.overlay-content #banner-text > h1{
  text-align: left;
  font-size: 52px;
  /* Align text content to the left */
}
.overlay-content #banner-text > p{
  text-align: left;
  font-size: 20px;
  /* Align text content to the left */
}

.overlay-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  /* Add margin to create spacing between elements */
}

.overlay-content p {
  text-align: left;
  /* Align paragraph to the left */
  width: 600px;
  margin-bottom: 20px;
  /* Add margin to create spacing between elements */
}

/* [Pressing button */

.overlay-content .button {
  background-color: #4CAF50;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 20px;
  margin: 10px 5px;
  cursor: pointer;
  transition: background-color 0.4s, transform 0.4s;
  /* Slower transition */
}

/* Add :active styles */
.overlay-content .button:active {
  background-color: #3e8e41;
  /* Darker green for button when pressed */
  transform: scale(0.95);
  /* Scale down the button slightly when pressed */
}





.banner-overlay h1 {
  font-size: 36px;
  font-weight: bold;
}

.banner .button {
  background-color: #4CAF50;
  /* Light green color for "Hire Talent" */
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 50px;
  padding: 9px 40px;
  margin: 10px 5px;
  cursor: pointer;
}

.banner .btn-data {
  background-color: transparent;
  /* Light green color for "Hire Talent" */
  color: #ffffff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 12px;
  border-radius: 50px;
  padding: 2px 12px;
  margin: 10px 5px;
  cursor: pointer;
}

.rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.star-rating .star {
  color: #FDC639;
}

/* Additional styles */
.rating-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-section .company-name {
  color: #FFFBFB;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.15px;
  margin-left: 10px;
  /* Adjust the margin as needed */
}

.rating-section .company-logo {
  margin-left: -100px;
  margin-bottom: -25px;
  width: 23px;
  height: 23px;
  vertical-align: middle;
}

.star-rating {
  display: flex;
  align-items: center;
  margin-top: 5px;
  /* Adjust the spacing as needed */
}

.separator {
  width: 50px;
  padding-right: 25px;
  height: 50px;
  color: #fff;

}

/* Keep your existing CSS for the banner and overlay */

/* Add styles for the banner-slider and slide */
.banner-slider {
  display: flex;
  width: 100%;
  /* Set the width to 100% for responsiveness */
  transition: transform 0.5s ease;
}


/* Add styles for the slider navigation */
.slider-nav {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  z-index: 3;
}

.prev-slide,
.next-slide {
  background: #fff;
  /* Background color for navigation buttons */
  background-repeat: no-repeat;
  color: transparent;
  border: none;
  width: 33px;
  height: 33px;
  /* font-size: 24px; */
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}





.prev-slide {
  transform: rotate(180deg);
  margin-left: 20px;
}

.next-slide {
  margin-right: 20px;
}

.prev-slide svg {
  width: 12px;
  height: 14px;
  /* margin-left: px; */
  /* margin-top: -5px; */
}

.next-slide svg {
  width: 12px;
  height: 14px;
  /* margin-left: 8px; */
  /* margin-top: -5px; */
}


.prev-slide:hover,
.next-slide:hover {
  background-color: rgba(255, 255, 255, 0.8);
  /* Darker background when hovered */
}



/* Styles for screens smaller than or equal to 768px */
@media (max-width: 768px) {
  .banner {
    margin-top: 0;
    height: auto;
    /* Adjust height for responsiveness */
  }

  /* .banner img {
    width: 27em;
    margin-left: -68%;
    overflow-x: visible;
  } */

.banner img {
  width: 1055px;
  height: 725px;
    background-size: 68% auto;
  margin-left: 50%;
  object-fit: cover;
}

  .banner-overlay {
    width: 100%;
    background: linear-gradient(88deg, #4C40F7 0%, rgba(76, 64, 247, 0.00) 120%);
  }

  .banner .Banner-Image-2{
  margin-left: 50%;
  width: 100%;
  height: 105%;
}

  .overlay-content {
    margin-left: 0;
    align-items: center;
  }

  .overlay-content button {
    font-size: 11px;
    padding: 8px 10px;
  }

  .overlay-content h1 {
    font-size: 20px;
  }

  #banner-text {
    text-align: center;
    /* Center-align text content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Ensure the container takes up the full height of its parent */
  }


  .overlay-content #banner-text > h1{
  text-align: left;
  font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 25px; /* 132.143% */
letter-spacing: -1.12px;
  /* Align text content to the left */
}
.overlay-content #banner-text > p{
  text-align: center;
  font-size: 18px;
  width: 90%;
  /* Align text content to the left */
}

    #banner-text h1{
    text-align: center;
/* font-family: Satoshi; */
font-size: 27.741px;
font-style: normal;
font-weight: 700;
line-height: 36.658px; /* 132.143% */
letter-spacing: -1.11px;
  }

  #banner-text h1,
  #banner-text p {
    text-align: center;
    /* Center-align both heading and paragraph */
    margin: 10px 0;
    /* Add margin for spacing between elements */
  }

  #banner-text p {
    width: 400px;
    font-size: 16px;
    text-align: center;
    /* Center-align both heading and paragraph */
    margin: 10px 0;
    /* Add margin for spacing between elements */
  }


  .slider-nav {
   margin-top: 5em;
}
  

}






/* FORM COMPLETE CSS */


 .formContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

.contact-form {
  text-align: center;
  padding: 20px;
  width: 459px;
  height: 651px;
  background-color: #fffdfd;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  /* Adjust the font size as needed */
  text-align: left;
  color: #333;
}

.contact-form .rect2 {
  width: 40%;
  height: 5px;
  background: #1CC382;
  border-radius: 3px;
  margin-top: -4%;
  margin-bottom: 4%;
}

.contact-form label {
  display: block;
  text-align: left;
  margin-bottom: 3px;
  font-size: 14px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form .form-control {
  width: 100%;
  margin-left: 0%;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 14px;
}

.btn-secondary {
  padding: 10px 20px;
  background-color: #1CC382;
  color: #fff;
  border: none;
  width: 90%;
  height: 43px;
  margin-left: -10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.4s, transform 0.4s;
  /* Slower transition */
}

/* Add :hover styles */
.btn-secondary:hover {
  transform: translateY(-2px);
  /* Move the button slightly upwards on hover */
}

/* Add :active styles */
.btn-secondary:active {
  background-color: #159b60;
  /* Darker green for button when pressed */
  transform: scale(0.95);
  /* Scale down the button slightly when pressed */
}



/* Media for Forms in Mobile */
@media screen and (max-width: 768px)
{


  .contact-form{
    width: 90vw;
    max-height: 715px;
    /* margin: 0 auto; */
    overflow-y: scroll;
  }
form{overflow-y: scroll;}

  .pop-up-Positioning1{
    margin-top:8em;
  }
  .pop-up-Positioning{
    margin-top:8em;
  }

.contact-text {
    width: 85vw;
  }
  .contact-form {
    width: 90vw;
  }
 


  .contact .formContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* overflow: scroll; */
}


}










.blue-box {
  background-color: #F0EFFF;
  position: relative;
  color: rgb(0, 0, 0);
  width: 100%;
  height: 290px;
  /* margin-left: 50px; */
  margin-top: -22.3em;
  /* border-radius: 45px; */
  padding: 40px 0;
  overflow: hidden;
  /* Prevent content overflow */
}

.blue-box-content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.blue-box h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.marquee {
  display: flex;
  width: 100em;
  margin: 55px;
  overflow: hidden;
  /* Hide any overflowing content */
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
  /* Animation for marquee */
}

.marquee img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  /* Adjust spacing between logos */
  width: 100px;
  /* Adjust logo size */
  height: auto;
}

#johnson {
  width: 200px;
  height: 40px;
}

#edwards {
  width: 290px;
  height: 40px;
}

#abbott {
  width: 120px;
  height: 42px;
}

#bd {
  width: 120px;
  height: 42px;
}

#pfizer {
  width: 120px;
  height: 52px;
}

#moderna {
  width: 120px;
  height: 52px;
}


@keyframes marquee-scroll {
  from {
    transform: translateX(100%);
    /* Start from the right side */
  }

  to {
    transform: translateX(-100%);
    /* Move to the left side */
  }
}

/* Styles for screens smaller than or equal to 768px (typical mobile screens) */
@media (max-width: 768px) {
  .blue-box {
    height: auto;
    /* Adjust height to fit content */
    padding: 20px 0;
    /* Adjust padding for spacing */
    margin-top: 0em;
  }

  .marquee {
    width: 70em;
    margin: 15px;
    overflow-x: scroll;
    /* Enable horizontal scrolling for logos */
    white-space: nowrap;
    animation: marquee-scroll 10s linear infinite;
    /* Enable marquee animation for small screens */
  }

  .marquee img {
    margin: 0 10px;
    /* Adjust spacing between logos */
    width: 100%;
    /* Adjust logo size */
    height: auto;
  }


  .blue-box-content h2 {
    font-size: 24px;
    /* Reduce heading font size for smaller screens */
    margin-bottom: 10px;
    /* Adjust margin for spacing */
  }


}



/* Cards wala box */


.cards-section {
  padding: 40px 0;
  background-color: #fff;
}

.container {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns in the grid */
  gap: 20px;
  /* Spacing between cards */
  max-width: 1064px;
  /* margin: 0 35px; */
  margin: 0 auto;
}

#card-1 {
  box-shadow: none;
}

.card {
  position: relative;
  /* Set position to relative for circle positioning */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 365px;
  height: 327px;
  flex-shrink: 0;
  border-radius: 27px;
  background: #FFF;
  box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.10);
  transition: background-color 0.3s, color 0.3s;
}

.card1 {
  position: relative;
  /* Set position to relative for circle positioning */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  /* 121.429% */
  letter-spacing: -1.68px;
  width: 365px;
  height: 327px;
  flex-shrink: 0;
  border-radius: 27px;
}

.circle {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background-color: #ffffff;
  /* Change the circle's background color */
  position: absolute;
  top: 43px;
  /* Position the circle above the card */
  left: 50%;
  /* Move the circle to the center horizontally */
  transform: translateX(-50%);
  /* Center the circle */
  z-index: 1;
  /* Place circle above the card */
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.10))
}

.circle img {
  margin-top: 25px;
  margin-left: 27px;
}

.card h3 {
  font-size: 20px;
  position: relative;
  margin-top: 125px;
  color: #555;
}

.text {
  margin-top: 10px;
  width: 265px;
  height: 85px;
  text-align: center;
}

.card p {
  font-size: 16px;
  color: #555;
}

.card:hover {
  background-color: #4C40F7;
  /* Blue background color on hover */
  color: #ffffff;
  /* Text color on hover */
}

.card:hover h3 {
  color: #ffffff;
  /* Change the color of the heading text on hover */
}

.card:hover p {
  color: #ffffff;
  /* Change the color of the heading text on hover */
}

.card-top-content {
  display: hidden;
  color: #ffffff;
  font-size: 0px;
}

.containerExpert{
  display:flex;
  /* 
  margin-left: 10%;
  */
  margin-top: -5%;
  margin-bottom: -10%;
  justify-content:space-around;
}


/* .containerExpert .data-1-content{
  margin-left: 8%;
  overflow: hidden;
}  */
.containerExpert .data-1-img{
  margin-left: -20%;
} 


@media (max-width: 768px) 
{
  .containerExpert{
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
  }
  .data-1-img{
    display: flex;
    width: 100%;
    margin: 0rem !important;
    align-items: center;
    justify-content: center;
  }

    .data-1 .contact-reach ul li {
    font-size: 16px;
    width: 343px;
    margin-left: -1em;

    /* Adjust font size for smaller screens */
  }
  .data-1 .contact-reach ul li img{
    font-size: 14px;
    margin-left: 3em;
    /* width: 353px; */
    /* Adjust font size for smaller screens */
  }

  .container {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    overflow: scroll;
  }
  .card1{
    display:none
  }
  .sliderBankingcard{
    justify-content: flex-start !important;
    padding: 0rem 1rem;
  }

  .card-top-content {
    color: var(--mindful-gray-white, #000000);
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: -1.56px;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .card1 {
    position: relative;
    font-size: 0px;
    font-style: normal;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: -1.68px;
    width: 0px;
    height: 0px;
    flex-shrink: 0;
    border-radius: 27px;
    animation: fadeIn 1s ease-in-out 1s forwards;
  }

  .card1 img {
    display: none;
  }

  #green {
    color: #1CC382;
  }

  .card {
    width: 100%;
    max-width: 365px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }

  .circle {
    width: 90px;
    height: 90px;
    top: 2em;
  }

  .circle img {
    margin-top: 15px;
    margin-left: 15px;
  }

  .card h3 {
    font-size: 18px;
    margin-top: 7em;
  }

  .text {
    margin-top: 4px;
  }

  .card p {
    font-size: 14px;
  }

  .card1 {
    width: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }
}







.blue-box2-wrapper{
  display: flex;
  justify-content: center;
}

.blue-box2 {
  display: flex;
  justify-content:center;
  background-color: #4C40F7;
  width: 80%;
  height: 100%;
  border-radius: 62px;
  padding: 40px;
  color: white;
  text-align: center;
}


.content-top {
  width: 100%;
  text-align: center;
  color: var(--mindful-gray-white, #FFF);
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  /* 153.846% */
  letter-spacing: -1.56px;
  margin-bottom: 2rem;
}





.container2 {
  max-width: 1200px;
  align-items: center;
  /* margin: 0 auto; */
  /* margin: 0 -2%; */
}

.container2 .content-top{
  margin-top:4%;
  margin-bottom:5%;
}


.blue-box2 h2 {
  font-size: 36px;
  margin-bottom: 140px;
}




.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 5%;
}

.card2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  max-width: 374px;
  width: 80%;
  height: 479px;
  border-radius: 27px;
  box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.10);
  padding: 20px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 20px;
}


.union {
  position: absolute;
  width: 894.692px;
  height: 885.225px;
  margin-top: -350px;
  margin-left: -230px;
  transform: rotate(180.291deg);
  overflow-y: hidden;
}



.circle2 {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background-color: #4C40F7;
  position: absolute;
  top: -53px;
  left: calc(50% - 53px);
  z-index: 1;
}


.card2 h3 {
  font-size: 20px;
  position: relative;
  margin-top: 65px;
  color: #555;
}

.card2 p {
  font-size: 16px;
  color: #555;
}

.card2 .service {
  width: 75%;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-top: 15px;
}








.blue-box-3-wrapper {
  display: flex;
  justify-content: center;
}

.blue-box3 {
  padding: 3rem 0rem;
  background-color: #4C40F7;
  width: 80.5rem;
height: 77.875rem;
  /* width: 80%;
  height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.5rem;
  /* border-radius: 25px; */
  color: white;
  text-align: center;
}


.blue-box3 .apply {
  background-color: #ffffff;
  /* Grey background color */
  color: #4C40F7;
  /* Blue text color */
  font-weight: bold;
  border: none;
  /* margin-top: 20px; */
  width: 19.4375rem;
height: 3.5625rem;
  margin-top: 4.37em;
  margin-bottom: 4em;
  border-radius: 62px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.blue-box3 .apply:hover {
  background-color: #000000;
  /* Blue background color on hover */
  color: #ffffff;
  /* White text color on hover */
}


.card3 {
  position: relative;
  /* Set position to relative for circle positioning */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: rgb(0, 0, 0);
  width: 365px;
  height: 327px;
  flex-shrink: 0;
  border-radius: 27px;
  box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.10);
  transition: background-color 0.3s, color 0.3s;
  align-items: flex-start;
}

.card3 .line {
  width: 317px;
  height: 1px;
  background-color: #000000;
  margin: 20px;
}

.card3 img {
  margin-left: 25px;
  margin-top: 20px;
}

.card3 h4 {
  margin-left: 25px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px;
  /* 212.5% */
  letter-spacing: -0.96px;
}

.card3 h5 {
  margin-left: 27px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-top: -15px;
  line-height: 60px;
  /* 340% */
  letter-spacing: -0.6px;
}


.blue-box3 .apply-direct {
  background-color: #ffffff;
  /* Grey background color */
  color: #000000;
  /* Blue text color */
  width: 318px;
  height: 46px;
  border: 1px solid #000000;
  margin-top: 10px;
  margin-left: 25px;
  border-radius: 1rem;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.blue-box3 .apply-direct:hover {
  background-color: #4C40F7;
  /* Blue background color on hover */
  color: #ffffff;
  /* White text color on hover */
}


    .blue-box3 .content-top {
    /* margin-top: 20px; */
    margin-top: 1.02em;
    margin-bottom: 9px;
  }
    .blue-box3 .content-next {
    width: 50%;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    margin-top: 9px;
    margin-bottom: 74px;
    margin-left: 25%;
  }


/* Media Query for 768px screen width */
@media screen and (max-width: 768px) {
  .blue-box3 {
    width: 100%;
    /* Adjust the width for smaller screens */
    height: 100%;
    margin-left: 0;
    /* Remove left margin */
    margin-bottom: 30px;
    /* Adjust margin for smaller screens */
  }

  .blue-box3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }

  .blue-box3 .apply {
    margin-left: 0;
    /* Remove left margin */
  }

  .blue-box3 .card3 {
    width: 100%;
    max-width: 365px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }




      .blue-box3 .content-next {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    margin-top: 20px;
    margin-bottom: 25px;
    margin-left: 5%;
  }


  .card3 .line {
    width: 317px;
    height: 1px;
    background-color: #000000;
    margin: 20px;
  }

  .union {
    display: none;
  }

  .card3 h4 {
    margin-left: 10%;
    /* Remove left margin */
  }

  .card3 h5 {
    margin-left: 10%;
    /* Remove left margin */
  }

  .blue-box3 .apply-direct {
    width: 90%;
    /* Make the button full width on smaller screens */
    margin: 0 5%;
    /* Remove left margin */
  }
}













/* Blue-Box4 - LADKI WALA BLUE DABBA */

.blue-box-wrapper4{
  display: flex;
  justify-content: center;
}

.blue-box4 {
  background-color: #4C40F7;
  /* width: 1352px; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 476px;
  margin-bottom: 75px;
  margin-top: 75px;
  border-radius: 56px;
  padding: 40px;
  color: white;
  text-align: center;
  height: 100%;
}



/* Pressed Buttons */

.blue-box4  .button,
.blue-box4 .button.white {
  /* Common styles for both buttons */
  width: 242px;
  height: 67px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  /* 40px */
  letter-spacing: -0.25px;
  border-radius: 50px;
  padding: 10px 35px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.blue-box4 .button {
  background-color: #4CAF50;
  color: white;
  border: none;
  margin-left: 90%;
}

.blue-box4  .button.white {
  background-color: white;
  color: #4CAF50;
  border: 2px solid #4CAF50;
  margin-left: 70%;
}

/* Add :active styles */
.blue-box4 .button:active,
.blue-box4 .button.white:active {
  background-color: #3e8e41;
  /* Darker green for "Hire Talent" button when pressed */
  color: #f2f2f2;
  transform: scale(0.95);
  /* Scale down the button slightly when pressed */
}

.blue-box4  .button.white:active {
  background-color: #f2f2f2;
  /* Light gray for "Get Hired" button when pressed */
  color: #3e8e41;
}



.blue-box4  .content-top {
  width: 673px;
  color: var(--mindful-gray-white, #FFF);
  text-align: center;
  font-size: 47px;
  width: 80%;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  /* 153.846% */
  letter-spacing: -1.56px;
  text-align: center;
  margin-left: 12%;
  margin-top: 20px;
  margin-bottom: 4rem;
}


.blue-box4 .content-next {
  margin-left: 22%;
  width: 60%;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  margin-bottom: 25px;
  margin-top: -35px;
}




/* Contact Form */

.contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 10%;
  list-style: none;
}
.contact-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  margin-bottom: -10%;
  list-style: none;
}

  .contact-1  .formContainer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: -10%;
  margin-bottom: 10%;
  list-style: none;
}

@media screen and (max-width: 768px) {
    .contact-1 .formContainer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  /* overflow: scroll; */
}
}

.contact .contact-heading {
  margin-bottom: 5%;
}

.contact .contact-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 34.6px;

  /* 138.4% */
}
.contact-text{
  width: 23em;
  font-size: 1.2rem;
font-style: normal;
font-weight: 400;
line-height: 2.12044rem;
}
.contact-reach {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  /* Add margin between the two divs */
}


.contact-reach ul {
  list-style: none;
  /* Remove list style */
  padding-left: 0;
  /* Remove default padding */
  margin-top: 15px;
  /* Remove default margin */
}

.contact-reach ul li {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: left;
  display: flex;
  align-items: center;
  /* Align items vertically within each list item */
}

.contact-reach ul li img {
  margin-right: 20px;
  /* Add space between image and content */
}

.contact-reach a {
  text-decoration: none;
  color: #000000;
}
.contact-content {
  max-width: 50vw;
  margin-right: 10%;
}








/* FOOTER WALA BLUE DABBA */

.blue-box5-wrapper {
  display: flex;
  flex-direction: row;
   width: 100%;
  height: 100%;
  border-radius: 56px 56px 0px 0px;
  margin-top: 7%;
  background: #4C40F7;
  padding: 40px;
  padding-top: 140px;
  color: white;
  text-align: center;
}

.blue-box5 {
  width: 70%;
  border-radius: 56px 56px 0px 0px;
  /* margin-top: 7%; */
  margin-top: -2em;
  margin-left: -3em;
  background: #4C40F7;
  padding: 40px;
  color: white;
  text-align: center;
}

.reach,
.quick {
  display: inline-block;
  vertical-align: top;
  margin-right: 70px;
  margin-left: 20px;
  /* Add margin between the two divs */
}

.reach h3 {
  margin-left: -70%;
  margin-bottom: 15px;
}
.quick h3 {
  margin-left: -15%;
  margin-bottom: 15px;
}


.reach ul,
.quick ul {
  list-style: none;
  /* Remove list style */
  padding-left: 0;
  /* Remove default padding */
  margin: 0;
  /* Remove default margin */
}

.reach ul li,
.quick ul li {
  margin-bottom: 25px;
  text-align: left;
  display: flex;
  align-items: center;
  /* Align items vertically within each list item */
}

.reach ul li img {
  margin-right: 20px;
  /* Add space between image and content */
}

.reach a,
.quick a {
  text-decoration: none;
  color: #ffffff;
}



.newsletter-footer {
  text-align: center;
  padding: 20px;
  margin-left: 1em;
  margin-top: -1em;
}

.newsletter-footer h2 {
  margin-left: -2em;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 600;
}
.newsletter-footer p {
  text-align: left;
  margin-left: 3em;
  margin-top: -1em;
  margin-bottom: 1em;
}
.input-group {
  margin-bottom: 20px;
  margin-left: 43px;
}
.input-group .btn-primary {
  margin-bottom: 18px;
  margin-left: -90px;
}

.form-control {
  width: 313px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.btn-primary {
  padding: 10px 20px;
  background-color: #1CC382;
  color: #fff;
  border: none;
  width: 105px;
  height: 45px;
  margin-top: 2em;
  margin-left: 1em;
  /* border-radius: 0 5px 5px 0; */
  border-radius:  5px 5px ;
  cursor: pointer;
  font-size: 14px;
}

.footer-social-icons ul {
  list-style: none;
  margin-left: -9em;
  /* margin: 0; */
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-social-icons li {
  margin: 0 10px;
}

.footer-social-icons img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width:768px)
{
  .blue-box5-wrapper {
  display: flex;
  flex-direction: column;
   width: 100%;
  height: 100%;
  border-radius: 56px 56px 0px 0px;
  margin-top: 7%;
  background: #4C40F7;
  padding: 40px;
  color: white;
  text-align: center;
}
  .blue-box5 {
  display: flex;
  flex-direction: column;
   width: 100%;
  height: 80%;
  border-radius: 56px 56px 0px 0px;
  margin-top: 7%;
  /* margin-left: 1.em; */
  background: #4C40F7;
  padding: 40px;
  color: white;
  text-align: center;
}

.reach h3 {
  margin-left: 5%;
  margin-bottom: 15px;
}
.reach li {
  width: 315px;
}
.quick h3 {
  margin-left: -15%;
  margin-bottom: 15px;
}

.quick ul li {
  margin-bottom: 25px;
  text-align: left;
  display: flex;
  margin-left: 15%;
  justify-content: left;
  /* align-items: center; */
  /* Align items vertically within each list item */
}

.newsletter-footer{
  margin-top:-2em;
  margin-left:-2em;
  /* align-items: center; */
  justify-content: center;
}

.newsletter-footer h2 {
  margin-bottom: -10px;
  margin-left: 0.5em;
  font-size: 25px;
  color: #ffffff;
   justify-content: center;
}

.input-group {
  /* margin-bottom: 20px;
  */
  margin-left: 0.5em; 
  justify-content: center;
}

.form-control {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.btn-primary {
  padding: 10px 20px;
  background-color: #1CC382;
  color: #fff;
  border: none;
  width: 105px;
  height: 43px;
  margin-top: 1em;
  justify-content: center;
  /* margin-left: -10px; */
  /* border-radius: 0 5px 5px 0; */
  border-radius:  5px 5px ;
  cursor: pointer;
  font-size: 14px;
}



.footer-social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
  margin-left: 7em;
}


.footer-social-icons img {
  width: 30px;
  height: 30px;
}

}










.content-top1 {
  width: 1443px;
  margin-left: -2%;
  color: var(--mindful-gray-white, #FFF);
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  /* 153.846% */
  letter-spacing: -1.56px;
  text-align: center;
  margin-bottom: 160px;
}


.content-next1 {
  width: 573px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  margin-top: -120px;
  margin-bottom: 25px;
  margin-left: 30%;
}






.data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 5%;
  list-style: none;

}

.data .data-heading {
  margin-bottom: 5%;
}
.data-heading >h2 >span{
  color: hsla(157, 75%, 44%, 1);
}

.data .data-text {
  font-size: 20px;
  margin-left: 1%;
  font-style: normal;
  font-weight: 400;
  line-height: 34.6px;
  /* 138.4% */
}



.data-img img {
  position: absolute;
  margin-left: -9em;
  margin-top: -5em;

}

.data .input-group {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 1%;
}


.data .form-control {
  width: 60%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 14px;
}

.data .btn-primary {
  padding: 10px 20px;
  background-color: #1CC382;
  color: #fff;
  border: none;
  width: 105px;
  height: 45px;
  margin-left: -10%;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-size: 14px;
}

@media screen {
  .data .btn-primary {
  margin-top: 1.1em;
  height: 43px;
}
}


/* BUSINESS MAN AND BUSINESS GROUP WALA DABBAS */


.data-1 {
  margin-top: 5%;
  margin-bottom: 10%;
  background: linear-gradient(180deg, #EDFFF8 0%, rgba(237, 255, 248, 0.00) 100%);
}


.data-1-content button {
  background-color: transparent;
  color: #4C40F7;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 12px;
  margin: 60px 10%;
  cursor: pointer;
}

  .data-1-heading > span{
    color: #1CC382;
  }

  .data-2-heading > span{
    color: #4C40F7;
  }

  .data-1-heading {
    color: var(--mindful-gray-white, #000000);
    text-align: left;
  font-size: 47px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  /* 153.846% */
  letter-spacing: -1.56px;
  margin-bottom: -4rem;
  margin-top: -5rem;
  margin-left: 5rem;
  }
  .data-2-heading {
    width: 100%;
    color: var(--mindful-gray-white, #000000);
    text-align: left;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  /* 153.846% */
  letter-spacing: -1.56px;
  margin-bottom: 2rem;
  margin-left: -10%;
  }

/* .data-1-heading {
  margin: -5% 10%;
} */

@media screen and (min-width: 769px) {

  .data-1-heading1 {
    display: none;
  }

  .data-3 {
    display: none;
  }

}




.data-1-img {
  padding: 4rem 4rem;
}

.data-1-img > img{
  width: 30rem;
}


.data-1 .contact-reach {
  margin-left: 10%;
  width: 700px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  /* Add margin between the two divs */
}


.data-1 .contact-reach ul {
  list-style: none;
  /* Remove list style */
  padding-left: 0;
  /* Remove default padding */
  margin-top: 10%;
  /* Remove default margin */
}

.data-1 .contact-reach ul li {
  margin-bottom: 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: 1.4px;
  text-align: left;
  display: flex;
  align-items: center;
  /* Align items vertically within each list item */
}

.data-1 .contact-reach ul li img {
  margin-right: 20px;
  /* Add space between image and content */
}

.data-1 .contact-reach a {
  text-decoration: none;
  color: #000000;
}



.data-3 .contact-reach {
  margin-left: 10%;
  width: 700px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  /* Add margin between the two divs */
}


.data-3 .contact-reach ul {
  list-style: none;
  /* Remove list style */
  padding-left: 0;
  /* Remove default padding */
  margin-top: 10%;
  /* Remove default margin */
}

.data-3 .contact-reach ul li {
  margin-bottom: 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 195%;
  /* 39px */
  letter-spacing: 1.4px;
  text-align: left;
  display: flex;
  align-items: center;
  /* Align items vertically within each list item */
}

.data-3 .contact-reach ul li img {
  margin-right: 20px;
  /* Add space between image and content */
}

.data-3 .contact-reach a {
  text-decoration: none;
  color: #000000;
}



.data-1-content .btn-data{
  color: #1CC382;
}


.formContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}


.data-2-content .btn-data{
  margin-bottom: 1.5em;
  margin-left: -0.5rem;
}

/* Media Query for 768px screen width */
@media screen and (max-width: 768px) {
    .data-1-heading {
    margin: -5% 4%;
    display: none;
  }
  .data-3-heading1 {
    width: 100%;

  }
  .data-1-content button {
    margin-left: 2.5em;
    margin-bottom: -0.3em;
  }
  .data-1-content{
    width: 100%;
  }
  .data-img img {
    position: absolute;
    /* margin-left: 0em;*/
    margin-top: -1em;
    margin-left: 0.2em;
    width: 90% !important;
  
  }

.data-1 .contact-reach ul li {
  /* margin-left: 10px; */
  line-height:22.2px ;
}


  .data-1-heading1 {
    /* width: 100%; */
    color: var(--mindful-gray-white, #000000);
    text-align: left;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: -1.56px;
    margin-left: 2.0em;
    margin-top: 20px;
    margin-bottom: 0px;
  }



  #green {
    color: #1CC382;
  }



  .data-1-img {
    margin-top: 2%;
    margin-left: 7%;
    margin-right: auto;
    /* display: block; */
    width: 70%;
    /* Adjust image width for smaller screens */
    height: 10%;
    /* Adjust image width for smaller screens */
  }

  .data-1 .contact-reach {
    margin-left: 5%;
    /* Adjust container margin for smaller screens */
    width: 62%;
    /* Adjust container width for smaller screens */
  }

  .data-1 .contact-reach ul li {
    font-size: 14px;
    /* Adjust font size for smaller screens */
  }

}

.data-2 {
  margin-top: 5%;
  margin-bottom: 0%;
  background: linear-gradient(180deg, #F3F3FF 0%, rgba(248, 248, 255, 0.00) 100%);
}

.data-3 {
  margin-top: 5%;
  margin-bottom: 10%;
  background: linear-gradient(180deg, #F3F3FF 0%, rgba(248, 248, 255, 0.00) 100%);
}

.data-2-content button {
  background-color: transparent;
  color: #4C40F7;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 12px;
  margin: 60px 8%;
  cursor: pointer;
}

.data-3-content button {
  background-color: transparent;
  color: #4C40F7;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 12px;
  margin: 60px 8%;
  cursor: pointer;
}

.data-2-heading {
  margin: -5% 0%;
}

.data-2-img {
  margin-top: 5%;
  margin-left: -5%;
  margin-right: 5%;
}

.data-2-content .btn-data{
  margin-bottom: 1.5em;
}

.data-2 .contact-reach {
  margin-left: 0%;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  margin-top: -50px;
  /* Add margin between the two divs */
}

.dataDream-job-wrapper{
margin-top: -50px;  
margin-bottom: -50px;  
}

.data-2 .contact-reach ul {
  list-style: none;
  /* Remove list style */
  padding-left: 0;
  /* margin-left: -5%; */
  /* Remove default padding */
  margin-top: 10%;
  /* Remove default margin */
}

.data-2 .contact-reach ul li {
  margin-bottom: 15px;
  font-size: 20px;
  width: 693px;
  /* width: 100%; */
  font-style: normal;
  font-weight: 600;
  line-height: 57px;
  /* line-height: 195%; */
  /* 39px */
  letter-spacing: 1.4px;
  text-align: left;
  display: flex;
  align-items: center;
  /* Align items vertically within each list item */
}

.data-2 .contact-reach ul li img {
  margin-right: 20px;
  /* Add space between image and content */
}

.data-2 .contact-reach a {
  text-decoration: none;
  color: #000000;
}

/* .containerHireTalent{
  display: flex;
  width: 100vh;
} */
.content-top> span{
  color: #1eef9f;
}

.data-content{
  width: 40vw;
}

.data-text{
  margin-top:-1em;
}
.data-heading > h2{
  font-size:3rem;
}


  .button-wrapper-job{
    justify-content: center;
    align-items: center;
    margin-left: -3.5em;
  }


  .data-1-content .button-data-1{
    margin-left: -0.3em;
    margin-top: 0em;
    background-color: #1CC382;
    color: #fff;
    padding: 0.7em 1.4em;
  }

  .data-2-content .button-data-2{
    margin-left: -0.3em;
    margin-top: 0em;
    background-color: #1CC382;
    color: #fff;
    padding: 0.7em 1.4em;
  }


/* Media Query for 768px screen width */
@media screen and (max-width: 768px) {
  .data-1-content .button-data-1{
    margin-left: 1.2em;
    padding: 0.5em 1.2em;
  }
  
  .data-1-content .button-data-1{
    margin-left: 1.2em;
    padding: 0.5em 1.2em;
  }
  
  .data-1-content .button-data-1{
    margin-left: 1.2em;
    padding: 0.5em 1.2em;
  }
  
  
  .button-wrapper-job{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .blue-box4 .button{
    margin-left:0;
  }
  .blue-box4 {
    width: 90%;
  }
  .blue-box4 .content-top {
color: #FFF;
text-align: center;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 37px; /* 132.143% */
letter-spacing: -0.84px;
width: 100%;
margin-left: 0%;
margin-bottom: -1rem;

  }

  
.blue-box4 .content-next {
  width: 90%;
  margin-left: 0.7rem;
    text-align: center;
    font-size: 0.8rem;
    font-style: normal;
    margin-bottom: 25px;
}
  
  .blue-box4  .button,
  .blue-box4 .button.white{
    margin-left:15%;
  }

  .blue-box4  .button,
.blue-box4 .button.white {
  /* Common styles for both buttons */
  width: 182px;
  height: 47px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  /* 40px */
  letter-spacing: -0.25px;
  border-radius: 50px;
  padding: 10px 35px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}



  .content-top{
    font-size:2rem;
    padding: 0 0.5rem;
    line-height: 2rem;
  }
  .data .input-group {
    margin-top: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .circle2{
    margin-top:25rem;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: transparent;
      position: absolute;
      left: calc(20% - 53px);
      z-index: 1;
    
  }
  .cards-container{
    display: flex;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
  }

  .circle2> img{
    width: 100%;
    margin-top: 6rem;
  }
  .card2{
    min-width: 80vw !important;
    height: 35rem;
  }

  
  .blue-box2 {
    display: flex;
    flex-direction: column;
    width: 99%;
    padding: 2rem;
    }
  
  .blue-box2 .container2 {
    margin-top: 2em;
    margin-bottom: 2em;
    }
  .containerHireTalent{
    display: flex;
    flex-direction: column !important;
    width: 100%;
    overflow-x: hidden;
  }
  .content-next{
    max-width: 90%;
    margin-top: 2rem;
  }
  .blue-box4 .content-next{
font-size: 12px;
margin-top: 2rem;
  }
  .data-2 {
    display: none;
  }

  .data-3-content button {
    margin-left: 2.5em;
    margin-bottom: -0.3em;
  }

  
  .data-3-content .button-data-1{
    margin-left: 2.5em;
    margin-top: 0em;
    background-color: #1CC382;
    color: #fff;
    padding: 0.5em 1.4em;
  }

  .data-3-heading {
    margin: -5% 4%;
    /* Adjust heading margin for smaller screens */
    display: none;
  }

  .data-3-heading1 {
    width: 373px;
    color: var(--mindful-gray-white, #000000);
    text-align: left;
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: -1.56px;
    margin-left: 1.5em;
    margin-top: 20px;
    margin-bottom: 0px;
  }



  #blue {
    color: #4C40F7;
  }



  .data-3-img {
    margin-top: 2%;
    margin-left: 15%;
    margin-right: auto;
    /* display: block; */
    width: 100%;
    /* Adjust image width for smaller screens */
    height: 10%;
    /* Adjust image width for smaller screens */
  }
  .data-img img {
    position: relative;
  }

  .data-3 .contact-reach {
    margin-left: 14%;
    /* Adjust container margin for smaller screens */
    width: 62%;
    /* Adjust container width for smaller screens */
  }

  .data-3 .contact-reach ul li {
    font-size: 14px;
    width: 353px;
    margin-left: -2.7em;
    /* Adjust font size for smaller screens */
  }
  .data-3 .contact-reach ul li img{
    font-size: 14px;
    margin-left: 1.5em;
    /* width: 353px; */
    /* Adjust font size for smaller screens */
  }
  .dataDream-job-wrapper{
    display: flex;
    flex-direction: column;
    /* align-items: ; */
    margin-top: 50px;
  }

  .card2 > h3 {
    font-size: 20px;
    position: relative;
    margin-top: 10px;
    color: #555;
  }
  .data .data-heading 
  {
    text-align: center;
}
  .data .data-heading >h2
  {
    text-align: center;
    font-size: 28px;
}
.data-text{
  text-align: center;
  /* font-size: 18px; */
}
.data .data-text{
  max-width: 363px;
  text-align: center;
  font-size: 16px;
}

.data .input-group{
  margin-top: -0.1em;
}

}


@media screen and (max-width: 768px) {
    .contact-text{
    width: 90vw;
  }

  .contact-form {
    width: 90vw;
  }
  /* .formContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: scroll;
  } */


  .formContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: scroll;
}

  .contact-reach {
    margin-right: 0px;
    align-items: center;
}
  .contact-heading >img{
    width: 80vw;
  }
  .data-content{
    width: 100vw;
  }
  


  .contact-content
  {
    padding: 0 2rem;
    max-width: 100%;
  }

  #contact-text{
  width:373px;
  margin-left: 3%;
 }
}




@media screen and (max-width: 768px){
  .blue-box5{
    display: flex;
    flex-direction: column;
  }
}




.popup-newsletter .overlay-pop-up{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 5;
  display: none;
}

.popup-newsletter .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: #fff;
  border: 1px solid black;
  width: 450px;
  height: 250px;
  z-index: 7;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 35px;
}

/* .popup-newsletter .close-btn-popup{
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #222;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  z-index: 15;
  cursor: pointer;
} */

.popup-newsletter .btn-secondary{
  margin-left: 5%;
  margin-top: 5%;
}

.popup-newsletter.active .overlay-pop-up{
display: block;
}

.popup-newsletter.active .popup-content
{
  transition: all 300ms ease-in-out;
  transform: translate(-50%,-50%) scale(1);
}

.popup-newsletter h1 {
    color: #159b60; /* Change the heading color to green */
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.popup-newsletter #caution {
    font-size: 12px; /* Change the font size of the last paragraph to smaller */
    color: #f74040;
}

@media screen and (max-width: 768px) {
  .popup-newsletter .popup-content{
  width: 363px;
  height: 250px;
}
}