@font-face {
  font-family: 'Nunito-Regular';
  src: url('./../Nunito/static/Nunito-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-Bold';
  src: url('./../Nunito/static/Nunito-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-SemiBold';
  src: url('./../Nunito/static/Nunito-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px grey;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, rgba(8, 21, 118, 1), rgba(1, 156, 215, 1));
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right, rgba(8, 21, 118, 1), rgba(1, 156, 215, 1));
}

:root {
  --primary-color: #081576;
  --font-family-regular: 'Nunito-Regular', sans-serif;
  --font-family-bold: 'Nunito-Bold', sans-serif;
  --font-family-semibold: 'Nunito-SemiBold', sans-serif;
}

/* Vision Heading START */
.vision_heading_text {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-bottom: 20px;
}

.vision_text {
  font-family: var(--font-family-regular);
  font-size: 1rem;
  text-align: left;
}

.vision_heading {
  font-family: var(--font-family-bold);
  font-size: 40px;
  text-align: left;
  margin-bottom: 15px;
}

.vision_image {
  margin-right: 20px;
  margin-bottom: 20px;
}
.vision_image img {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 480px;
}
/* Vision Heading END */

/* Mission Heading START */
.mission_heading_text {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-bottom: 20px;
}

.mission_text {
  font-family: var(--font-family-regular);
  font-size: 1rem;
  text-align: left;
}

.mission_heading {
  font-family: var(--font-family-bold);
  font-size: 40px;
  text-align: left;
  margin-bottom: 15px;
}

.mission_image {
  margin-right: 20px;
  margin-bottom: 20px;
}

.mission_image img {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 480px;
}
/* Mission Heading START */

/* Values START */
.values {
  background: linear-gradient(to right, rgba(8, 21, 118, 1), rgba(1, 156, 215, 1));
  height: 548.88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.values_heading{
  font-family: var(--font-family-bold);
  font-size: 40px;
  text-align: center;
  margin-bottom: 100px;
  color: #FFF;
}
.values_col_1_heading, .values_col_2_heading, .values_col_3_heading{
  font-family: var(--font-family-semibold);
  font-size: 26px;
  margin-top: 22px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  color: #FFF;
}
.values_col_1_text, .values_col_2_text, .values_col_3_text{
  font-family: var(--font-family-regular);
  font-size: 17px;
  padding-bottom: 30px;
  color: #FFF;
}
.values_col_1, .values_col_2 {
  border-right: 1px solid rgba(227, 227, 227, 0.5);
  padding-right: 20px;
}
.values_col_1 {
  margin-left: 20px;
  padding-right: 10px;
}

.values_col_2 {
  padding-right: 10px;
}

.values_col_3 {
  margin-left: 20px;
}

/* Values END */




/* TEST :start */
.main-solutionsMFT-brand {
  display: flex;
  /* cursor: pointer; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.main-solutionsMFT-brand-first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-solutionsMFT-brand-first h2 {
  color: #3F3F3F;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
  width: 55%;
}

.main-solutionsMFT-brand-second {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
  flex-wrap: wrap;
}

.main-solutionsMFT-brand-second img {
  width: 8%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.main-solutionsMFT-brand-second img:hover {
  filter: grayscale(0%);
}

.main-solutionsMFT-brand-second-brandlogo3 {
  width: 80px !important;
  height: 80px;
}

@media (max-width: 1280px) {
  .main-solutionsMFT-brand-second img {
    width: 10%;
  }
}

@media (max-width: 1024px) {
  .main-solutionsMFT-brand-second img {
    width: 18%;
  }
  .main-solutionsMFT-brand-first h2 {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .main-solutionsMFT-brand-second img {
    width: 25%;
  }
  .main-solutionsMFT-brand-first h2 {
    width: 90%;
  }
}

@media (max-width: 450px) {
  .main-solutionsMFT-brand-first h2 {
    font-size: 16px;
  }
  .main-solutionsMFT-brand-second img {
    width: 30%;
  }
}

@media (max-width: 350px) {
  .main-solutionsMFT-brand-second img {
    width: 35%;
  }
  .main-solutionsMFT-brand-second-brandlogo3 {
    width: 60px !important;
    height: 60px;
  }
}
/* TEST :end */





/* solution START */
.solution {
background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 60px;
}

.solution_heading {
font-family: var(--font-family-bold);
font-size: 40px;
text-align: center;
margin-bottom: 28px;
color: #000;
margin-top: 30px;
}

.solution_heading_text {
text-align: center;
font-family: var(--font-family-regular);
margin-left: 60px;
margin-right: 60px;
margin-bottom: 30px;
}

.solution_row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.solution_col_1,
.solution_col_2,
.solution_col_3,
.solution_col_4,
.solution_col_5 {
flex: 1;
max-width: 300px;
min-height: 315px;
border-radius: 10px;
background-color: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-right: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution_col_1:hover,
.solution_col_2:hover,
.solution_col_3:hover,
.solution_col_4:hover,
.solution_col_5:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution_col_1 img,
.solution_col_2 img,
.solution_col_3 img,
.solution_col_4 img,
.solution_col_5 img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto 20px;
}

.solution_col_1_heading,
.solution_col_2_heading,
.solution_col_3_heading,
.solution_col_4_heading,
.solution_col_5_heading {
font-family: var(--font-family-semibold);
font-size: 22px;
margin-bottom: 25px;
color: #000;
}

.solution_col_1_text,
.solution_col_2_text,
.solution_col_3_text,
.solution_col_4_text,
.solution_col_5_text {
font-family: var(--font-family-regular);
font-size: 14px;
color: #828282;
}
/* solution END */
.carousel-indicators {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}

.carousel-indicators li {
display: inline-block;
width: 15px;
height: 15px;
margin: 0 5px;
cursor: pointer;
background-color: #1c47e3;
border: 1px solid #1c47e3;
border-radius: 3px;
}

.carousel-indicators .active {
background-color: #fff;
}

.email-text a {
color: inherit; /* Inherit text color from parent */
text-decoration: none; /* Remove underline from the link */
}

.location-info {
display: flex;
margin-top: 30px;
}

.location-icon {
margin-right: 10px; /* Add right margin for spacing */
}

.location-text p {
margin: 0; /* Remove default margins for paragraphs */
font-family: var(--font-family-medium);
}

.location-text span {
font-family: var(--font-family-regular);
font-size: 15px;
}

.location-text {
color: #FFFFFF; /* Set text color to white */
}


.copyright {
display: flex; /* Use flexbox */
justify-content: space-between; /* Space the items evenly */
margin-top: 15px;
color: #FFFFFF;
}

.copyright p {
margin: 0; /* Remove default margin */
}

.terms {
text-align: right; /* Align the terms to the right */
}

.email-text a {
  color: inherit; /* Inherit text color from parent */
  text-decoration: none; /* Remove underline from the link */
  }

  .location-info {
  display: flex;
  margin-top: 30px;
  }

  .location-icon {
  margin-right: 10px; /* Add right margin for spacing */
  }

  .location-text p {
  margin: 0; /* Remove default margins for paragraphs */
  font-family: var(--font-family-medium);
  }

  .location-text span {
  font-family: var(--font-family-regular);
  font-size: 15px;
  }

  .location-text {
  color: #FFFFFF; /* Set text color to white */
  }

  /* Footer Start */
.footer{
  background-color: #00094D;
  height: 430px;
}
.footer_col_1, .footer_col_2, .footer_col_3{
  margin-top: 80px !important;
  text-align: left;
}
.footer_col_1{
  margin-left: 110px;
  padding-right: 60px !important;
}
.footer_col_1_text{
  color: #FFFFFF;
  font-family: var(--font-family-regular);
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 16px;
}
.footer_col_2_text{
  color: #FFFFFF;
  font-family: var(--font-family-regular);
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 16px;
}
.footer_col_2_text li {
  list-style-type: none;
  font-family: var(--font-family-regular);
  margin-top: 5px;
}
.footer_col_2_text a {
  color: #FFFFFF; /* Set default color to white */
  text-decoration: none; /* Remove underline */
}
.footer_col_2_text a:hover {
  color: #019BD6; /* Change color to black on hover */
}
.footer_socials {
  display: flex;
  gap: 10px; /* Add spacing between buttons */
}
.footer_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px; /* Set the width */
  height: 40px; /* Set the height */
  border-radius: 50%; /* Make the button perfectly round */
  background-color: transparent;
  border: 1px solid white;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}
.footer_icon:hover {
  background-color: #019BD6; /* Change background color on hover */
}
.header_socials {
  display: flex;
  gap: 10px; /* Add spacing between buttons */
}
.header_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px; /* Set the width */
  height: 40px; /* Set the height */
  border-radius: 50%; /* Make the button perfectly round */
  background-color: transparent;
  border: 1px solid white;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease; /* Add transition for hover effect */
}
.header_icon:hover {
  background-color: #FFF; /* Change background color on hover */
}
.header_icon:hover img {
  filter: brightness(0); /* Makes the image black */
}
.footer_col_2_heading{
  font-family: var(--font-family-bold);
  color: #FFFFFF;
}
.contact-info {
  display: flex;
}
.email-icon {
  margin-right: 10px; /* Add right margin for spacing */
}
.email-text p {
  margin: 0; /* Remove default margins for paragraphs */
  font-family: var(--font-family-medium);
}
.email-text span {
  font-family: var(--font-family-regular);
  font-size: 15px;
}
.email-text {
  color: #FFFFFF; /* Set text color to white */
}
.email-text a {
  color: inherit; /* Inherit text color from parent */
  text-decoration: none; /* Remove underline from the link */
}
.location-info {
  display: flex;
  margin-top: 30px;
}
.location-icon {
  margin-right: 10px; /* Add right margin for spacing */
}
.location-text p {
  margin: 0; /* Remove default margins for paragraphs */
  font-family: var(--font-family-medium);
}
.location-text span {
  font-family: var(--font-family-regular);
  font-size: 15px;
}
.location-text {
  color: #FFFFFF; /* Set text color to white */
}
.footer_row {
  position: relative; /* Set position relative to enable absolute positioning of pseudo-element */
}

.footer_row:before {
  content: ""; /* Add content to the pseudo-element */
  position: absolute; /* Set position absolute to position the pseudo-element */
  bottom: 0; /* Position it at the bottom of the container */
  left: 50%; /* Position it at the middle horizontally */
  width: 87%; /* Set the width of the pseudo-element to half of the container */
  height: 1px; /* Height of the border */
  background-color: rgba(227, 227, 227, 0.5); /* Color of the border */
  transform: translateX(-50%); /* Center the pseudo-element */
}

.copyright {
  display: flex; /* Use flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin-top: 15px;
  text-align: center;
  font-family: var(--font-family-regular);
  font-size: 14px;
  color: #FFFFFF;
}

.copyright p {
  text-align: center;
}

.copyright a {
  color: inherit; /* Inherit text color from parent */
  text-decoration: none; /* Remove underline from the link */
}

.copyright a:hover {
  color: #019BD6;
}


    .about {
      background: linear-gradient(to right, rgba(28, 8, 118, 1), rgba(1, 156, 215, 0.9)), url('./../images/center_banner.png'); /* Set background gradient and image */
      background-repeat: no-repeat; /* Prevent background image from repeating */
      opacity: 0.8; /* Set the opacity of the background image */
      height: 700px;
      color: #FFFFFF;
      display: flex; /* Use flexbox for layout */
      align-items: center; /* Center vertically */
      width: 100%;
    }

    .about_col_1{
      margin-left: 150px;
    }

    .about_content {
      text-align: center; /* Center text */
    }

    .about_small_heading {
      font-family: var(--font-family-semibold);
      font-size: 30px;
    }

    .about_big_heading {
      font-family: var(--font-family-bold);
      font-size: 40px;
    }

    .about_p {
      font-family: var(--font-family-regular);
      font-size: 17px;
    }

    .about_goal {
      font-family: var(--font-family-bold);
      font-size: 22px;
    }
    .industry-section {
      padding: 2rem 0;
  }
  .industry-heading {
    font-family: var(--font-family-bold);
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: bold;
      color: #1a4462;

  }
  .industry-description {
    font-family: var(--font-family-regular);
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #1a4462;
  }
  .industry-card {
      background-color: #e3f2fd;
      border-radius: 15px;
      padding: 2em !important;
      margin: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .industry-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

  }
  .industry-card h2 {
      font-size: 1.5rem;
      margin-top: 1rem;
      font-weight: bold;
      color: #1a4462 !important;
  }
  .industry-card p {
      font-size: 1rem;
      margin-top: 0.5rem;
      color: #1a4462 !important;
  }
  .industry-img {
      max-width: 75px;
      /* width: 75%; */
      height: auto;
      margin-right: 1rem;
  }
  .industry-card-row {
      display: flex;
      flex-direction: row;
      align-items: center;
  }
  @media (max-width: 767px) {
    .industry-card-row {
      flex-direction: column !important;
      width: 100% !important;
      align-items: center;
      text-align: center;
    }

    .industry-card {
      flex-direction: column !important;
      width: 100% !important;
      text-align: center;
    }
    .industry-row{
      flex-direction: column !important;
      width: 100% !important;
    }

  }