* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Albert Sans', sans-serif;
}

html {
  scroll-behavior: smooth;

}


.main_container {
  width: 100%;
  height: 100vh;
}

.navbar_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav_links {
  display: flex;
  align-items: center;
  gap: 40px;

  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;

}

.nav_links a {
  text-decoration: none;
  color: #000000;

}

.nav_links a:hover {
  color: #65C2B0;
  transition: all 0.3s ease-in-out;
}

/* Hamburger hidden by default */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .navbar_container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav_links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 20px;
   
    padding: 20px 0;
   
  }
  .nav_links a{
    border-bottom: 1px solid black;
  }

  .nav_links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .get_intouch_btn {
    display: none;
  }
}

.outer_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.banner_container {

  position: relative;
  background-image: url('./images/banner_main.png');
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 612px;
  gap: 30px;
  border-radius: 14px;
  margin-bottom: 105px;
}

.banner_text {
  min-width: 55%;
}

#stickCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* behind other content */
  background: transparent;
  pointer-events: none;
}




.crafting_technology_txt {

  font-weight: 600;
  font-size: 55px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #ffffff;
  transition: opacity 0.5s ease;

}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.thinks_ahead_txt {
  font-weight: 600;
  font-size: 55px;
  letter-spacing: 0px;
  background: linear-gradient(270.27deg, #65C2B0 44.08%, #EFB556 77.44%, #D85F68 99.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.banner_para {

  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0px;
  color: #ffffff;
  transition: opacity 0.5s ease;

}

.banner_btn {
  position: relative;
  display: inline-block;
  padding: 10.5px 31px 10.5px 31px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(133.36deg, #D85F68 5.04%, #F5CC8A 31.92%, #65C2B0 68.77%, #3A6390 95.2%);
  color: black;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0px;
}

.banner_btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 7px;
  z-index: -1;
}

.banner_btn:hover {
  box-shadow:
    0 4px 20px rgba(45, 121, 205, 0.3),

    0 2px 10px rgba(45, 121, 205, 0.2),

    inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.three_dots_banner {
  display: flex;

  align-items: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 52px;
}

.three_dots_banner .bannerdot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
  /* smooth animation */
  cursor: pointer;
}

.three_dots_banner .bannerdot.active {
  width: 20px;
  /* more wide */
  background-color: orange;
  /* orange color when active */
  border-radius: 20px;
  /* more oval shape */
}


.get_intouch_btn {
  position: relative;

  padding: 8px 16px 8px 18px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(133.36deg, #D85F68 5.04%, #F5CC8A 31.92%, #65C2B0 68.77%, #3A6390 95.2%);
  color: black;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;

  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0px;

}

.get_intouch_btn:hover {
  box-shadow:
    0 4px 20px rgba(45, 121, 205, 0.3),
    /* main shadow */
    0 2px 10px rgba(45, 121, 205, 0.2),
    /* secondary soft glow */
    inset 0 0 6px rgba(255, 255, 255, 0.2);
  /* optional inner highlight */
}


.banner_right_img {

  border-radius: 50%;
  padding: 10px;
  /* border thickness */
  background: conic-gradient(#3A6390 0deg, #3EFFFF 90deg, #EFB556 180deg, #D85F68 270deg, #3A6390 360deg);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: spinnerAnimation 4s infinite alternate ease-in-out;
}

.banner_right_img {

  border-radius: 50%;
  object-fit: cover;
  animation: floatImage 3s infinite ease-in-out;
}

@media(max-width:1360px){
  .banner_text {
    min-width: 60%;
  }
}

@media (max-width: 1024px) {
  .banner_container {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 45px;
  }

  .banner_text {
    min-width: 100%;
    padding: 0 20px;
  }

  .crafting_technology_txt,
  .thinks_ahead_txt {
    font-size: 40px;
    line-height: 1.2;
  }

  .banner_para {
    font-size: 18px;
    line-height: 1.4;
  }

  .three_dots_banner {
    justify-content: center;
    margin-bottom: 30px;
  }

  .banner_btn {
    font-size: 14px;
    padding: 8px 24px;
  }

  .banner_right_img {
    width: 250px;
    height: 250px;
    padding: 6px;
  }

  .banner_right_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 600px) {

  .crafting_technology_txt,
  .thinks_ahead_txt {
    font-size: 28px;
  }

  .banner_para {
    font-size: 16px;
  }

  .banner_btn {
    font-size: 12px;
    padding: 6px 20px;
  }

  .banner_right_img {
    width: 180px;
    height: 180px;
  }
}


.heading_wrapper {
  min-height: 120px;
  /* Adjust based on expected heading height */
}

.subtext_wrapper {
  min-height: 100px;
  /* Adjust based on expected subtext height */
}

/* Circle spinner animation */
/* @keyframes spinnerAnimation {
    0% {
        background: conic-gradient(#3A6390 0deg, #3A6390 0deg);
    }
    50% {
        background: conic-gradient(#3A6390 0deg, #3EFFFF 90deg, #EFB556 180deg, #D85F68 270deg, #3A6390 360deg);
    }
    100% {
        background: conic-gradient(#3A6390 0deg, #3A6390 0deg);
    }
} */

/* Floating image animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}



.get_intouch_btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 7px;
  z-index: -1;
}

.about_us_image {
  background-image: url('./images/people.svg');
  width: 437.3468322753906px;
  height: 437.3468322753906px;
  position: relative;
}

.about_us_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;

}

.about_us_heading {

  display: inline-block;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(270.1deg, #282E66 -13.09%, #65C2B0 26.12%, #EFB556 65.32%, #D85F68 117.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.about_us_para_section {

  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;

}




.goals_card {

  position: absolute;
  font-weight: 500;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: 0px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 52px;
  background-color: #ffffff;

  backdrop-filter: blur(51.802146911621094px);

  box-shadow: 0px 0px 10px 0px #2D79CD1A;
  animation: float 3s ease-in-out infinite;


}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
    /* move up */
  }

  100% {
    transform: translateY(0px);
    /* move back down */
  }
}


.goals_card:nth-of-type(1) {
  top: 0px;
  left: 30%;

  border-left: 2px solid #5F82A5
}

.goals_card:nth-of-type(2) {
  bottom: 50%;
  left: -80px;
  border-left: 2px solid #65C2B0
}

.goals_card:nth-of-type(3) {
  border-left: 2px solid #EFB556;
  bottom: 0;
}

.goals_card:nth-of-type(4) {
  border-left: 2px solid #D85F68;
  right: 0;
  bottom: 35%;

}

@media (max-width: 1024px) {
  .about_us_section {
    flex-direction: column;
    gap: 60px;
    padding: 40px 20px;

  }

  .about_us_image {
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .goals_card {
    width: 300px;
  }

  .about_us_para_section {
    font-size: 15px;
    line-height: 24px;
  }

  .about_us_heading {
    font-size: 36px;
  }

  .contact_us_btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    background: linear-gradient(133.36deg, #D85F68 5.04%, #F5CC8A 31.92%, #65C2B0 68.77%, #3A6390 95.2%);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    cursor: pointer;
  }
}

@media (max-width: 600px) {
  .about_us_image {
    width: 220px;
    height: 220px;
  }

  .goals_card {
    width: 212px;
    font-size: 12px;
  }

  .goals_card:nth-of-type(1) {
    top: -13px;
    left: 20%;

    border-left: 2px solid #5F82A5
  }

  .goals_card:nth-of-type(2) {
    bottom: 50%;
    left: -73px;
    border-left: 2px solid #65C2B0
  }

  .goals_card:nth-of-type(3) {
    border-left: 2px solid #EFB556;
    bottom: -15px;
    left: -17%;
  }

  .goals_card:nth-of-type(4) {
    border-left: 2px solid #D85F68;
    right: -47px;
    bottom: 23%;

  }

  .hide-on-mobile {
    display: none;
  }

  .about_us_heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .about_us_para_section {
    font-size: 14px;
    line-height: 22px;
  }

  .contact_us_btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

.bold_text {

  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;

}

.contact_us_btn {
  position: relative;
  display: inline-block;
  padding: 10.5px 32.5px 10.5px 32.5px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(133.36deg, #D85F68 5.04%, #F5CC8A 31.92%, #65C2B0 68.77%, #3A6390 95.2%);
  color: black;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0px;
  margin-top: 33px;
}

.contact_us_btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 7px;
  z-index: -1;
}

.contact_us_btn:hover {
  box-shadow:
    0 4px 20px rgba(45, 121, 205, 0.3),

    0 2px 10px rgba(45, 121, 205, 0.2),

    inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.our_mission_txt {
  margin-top: 100px;
  margin-bottom: 26px;
  font-weight: 800;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: 0px;
  text-transform: uppercase;
  background: linear-gradient(270.27deg, #65C2B0 44.08%, #EFB556 77.44%, #D85F68 99.69%);
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.mission_cards_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 77px;

}

.fade-in-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-slide.visible {
  opacity: 1;
  transform: translateY(0);
}


.mission_card {
  position: relative;
  overflow: hidden; /* Hide the animated overlay outside */
  backdrop-filter: blur(51.8px);
  box-shadow: 0px 0px 10px 0px #2D79CD1A;
  padding-bottom: 16px;
  transition: transform 0.3s ease;
}

.mission_card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 201, 125, 0.25),
    rgba(141, 233, 200, 0.25)
  );
  transition: top 0.5s ease;
  z-index: 0;
}

/* On hover: slide the overlay down */
.mission_card:hover::before {
  top: 0;
}

/* Keep card content above the overlay */
.mission_card > * {
  position: relative;
  z-index: 1;
}


.card_wrapper {
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  gap:5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mission_line {
  width: 100%;
  height: 11px;
  border-radius: 327px;
  backdrop-filter: blur(24.264055252075195px);
  background-color: #F4F7FA;
  box-shadow: 0px 0px 4.04px 0px #44BEFA0F inset;
  margin-bottom: 46px;


}

.mission_card_heading {

  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0px;

}

.mission_card_para {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;

  margin-bottom: 10px;
}

.mission_line_footer {
  width: 100%;
  height: 3px;
  background: linear-gradient(270.1deg, #282E66 -13.09%, #65C2B0 26.12%, #EFB556 65.32%, #D85F68 117.58%);

}
.mission_line_footer:nth-of-type(1){

}


@media (max-width: 1024px) {
  .mission_cards_container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }

  .mission_card {
    width: 45%;
    margin-bottom: 20px;
  }

  .mission_card_heading {
    font-size: 18px;
  }

  .mission_card_para {
    font-size: 14px;
    line-height: 1.4;
  }

  .our_mission_txt {
    font-size: 16px;
    margin: 60px 10px 20px;
  }
}

@media (max-width: 600px) {
  .mission_cards_container {
    flex-direction: column;
    align-items: center;
  }

  .mission_card {
    width: 90%;
  }

  .card_wrapper {
    padding: 0 15px;
  }

  .our_mission_txt {
    font-size: 14px;
    line-height: 24px;
  }

  .mission_card_heading {
    font-size: 16px;
  }

  .mission_card_para {
    font-size: 13px;
  }
}


.industries_serverd_section {
  padding: 60px 20px;
  overflow: hidden;
}

.industries_served_cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px;
  scroll-padding-left: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.industries_served_cards::-webkit-scrollbar {
  display: none;
}

.industries_served_cards .card {
  flex: 0 0 auto;
  min-width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  backdrop-filter: blur(51.802146911621094px);

  box-shadow: 0px 0px 10px 0px #2D79CD1A;
  
  transition: transform 0.3s ease;
  cursor: grab;
}

.industries_served_cards .card:hover {
  transform: translateY(-5px);
}

.slider_arrows {
  display: flex;
  justify-content: space-between;

  align-items: center;
  margin-bottom: 30px;
}

.arrows_container {
  display: flex;
  padding-right: 135px;
  align-items: center;
  gap: 20px;
}

.arrows_container img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrows_container img:hover {
  transform: scale(1.1);
}

.industries_logo_wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #F4F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}




.industried_served_footer {
  height: 10px;
  background-color: #F4F7FA;
  border-radius: 99px;
  box-shadow: inset 0px 0px 4px #44BEFA1A;
}

.slider_dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.slider_dots .sliderdot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}


.slider_dots .sliderdot.active {
  width: 20px;
  height: 10px;
  background-color: orange;
  border-radius: 999px;
}



.industries_logo_wrap {
  width: 94px;
  height: 94px;
  top: 2772px;
  left: 138.99px;
  border-top-left-radius: 32px;
  border-top-right-radius: 214px;
  border-bottom-right-radius: 184px;
  border-bottom-left-radius: 194px;
  padding: 5px;
  margin-bottom: 31px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #F4F7FA;

  padding: 10px 15px;


}

.industries_served_txt_heading {

  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 2px;
  margin-bottom: 8px;


}

.industries_served_heading {

  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 2%;
  color: #000000;
  padding-left: 140px;



}



.industries_served_para_txt {

  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1px;
  margin-bottom: 26px;


}

.industries_served_heading span {
  background: linear-gradient(270.07deg, #282E66 -5.72%, #65C2B0 15.75%, #EFB556 37.21%, #D85F68 65.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media (min-width: 1024px) {
  .industries_served_cards {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .industries_serverd_section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .industries_served_heading {


    padding-left: 0;
    ;
  }

  .arrows_container {

    padding-right: 0;

  }

  .industries_served_txt_heading {
    font-size: 17px;
    padding-left: 16px;
  }

  .industries_served_para_txt {
    font-size: 13px;
    padding-left: 16px;
  }

  .industries_logo_wrap {
    width: 80px;
    height: 80px;
  }

  .industries_served_cards {
    gap: 10px;
  }

  .industries_served_cards .card {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .industries_serverd_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .industries_served_heading {
    font-size: 24px;
    line-height: 32px;
  }

  .industries_served_cards {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .industries_served_cards::-webkit-scrollbar {
    display: none;
    /* hide scrollbar */
  }

  .industries_served_cards {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .industries_served_txt_heading {
    font-size: 15px;
    padding-left: 12px;
  }

  .industries_served_para_txt {
    font-size: 12px;
    padding-left: 12px;
  }

  .industries_logo_wrap {
    width: 70px;
    height: 70px;
  }

  .slider_arrows {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .arrows_container {
    width: 100%;
    justify-content: flex-end;
  }

  .arrows_container img {
    width: 24px;
    height: 24px;
  }

  .slider_dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
  }


}



.our_services_heading {
 

  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  
  margin-bottom: 26px;
  padding-left: 100px;
color:#ffffff;


}
.our_services_heading span{
  background: linear-gradient(270.27deg, #65C2B0 44.08%, #EFB556 77.44%, #D85F68 99.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services_container {
  background-color: #081031;
  width: 100%;
  padding-bottom: 70px;
  position: relative;
  z-index: 100;
  padding-top: 50px;


}



.services_main_wrap {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.service_category {
  display: flex;
  align-items: center;
  gap: 10px;


}

.service_category_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services_img {
  margin-bottom: 25px;
}

.services_line {
  background-color: #111F5B;
  width: 257px;
  height: 2px;

}

.service_category_heading {
  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 10px;

}

.service_category_para {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 24px;

}


.outer_services_part {
  position: relative;
  top: -30px;
  margin: 0 auto;
  width: 1159px;
  height: 60px;
  background: linear-gradient(270.1deg, #282E66 -13.09%, #65C2B0 26.12%, #EFB556 65.32%, #D85F68 117.58%);
  z-index: 1;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

@media (max-width: 1024px) {
  .services_main_wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
  }

  .our_services_heading {
    font-size: 32px;
    padding-left: 40px;
  }

  .services_img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .service_category_heading {
    font-size: 17px;
  }

  .service_category_para {
    font-size: 13px;
  }

  .services_line {
    width: 100%;
    max-width: 250px;
  }

  .services_container {
    height: auto;
    padding-bottom: 100px;
  }

  .outer_services_part {
    width: 90%;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .our_services_heading {
    font-size: 24px;
    padding-left: 20px;
  }

  .service_category {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service_category_heading {
    font-size: 16px;
  }

  .service_category_para {
    font-size: 12px;
    line-height: 1.4;
  }

  .services_img {
    max-width: 100%;
  }

  .services_line {
    max-width: 100%;
  }

  .outer_services_part {
    height: 40px;
    border-radius: 20px;
  }
}


.our_current_focus_heading {
  background: linear-gradient(270.26deg, #282E66 -4.2%, #65C2B0 21.16%, #EFB556 46.53%, #D85F68 80.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


}

.why_choose_tech_zink_section {
  margin-top: 129px;

}

.why_choose_wrapper {
  position: relative;
}

.why_choose_tech_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 20px;
}

.curve_div {
  backdrop-filter: blur(24.264055252075195px);
  width: 42.5px;
  height: 56.5px;


  box-shadow: 0px 0px 4.04px 0px #44BEFA0F inset;

}

.why_choose_tech_zink_heading {

  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #111F5B;
  padding-left: 140px;
}

.why_choose_number {
  font-weight: 800;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #ffffff;

}

.why_choose_categories {
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(51.8px);
  padding: 2.64px 118px 2.64px 2px;
  border-radius: 154px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
}

/* === Generic animated left card === */
.why_choose_wrapper:hover .why_choose_left_card,
.why_choose_wrapper:hover .why_choosesecond_left_card,
.why_choose_wrapper:hover .why_choosethird_left_card,
.why_choose_wrapper:hover .why_choosefourth_left_card {
  display: block;
  animation: fadeSlideIn 0.4s ease forwards;
}

/* Common styles for all left cards */
.why_choose_left_card,
.why_choosesecond_left_card,
.why_choosethird_left_card,
.why_choosefourth_left_card {
  position: absolute;
  left: -37px;
  padding: 14px 11px 14px 21px;
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  top: 9px;
  z-index: -1;
  display: none;
  opacity: 0;
  transform: translateX(-10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Individual card colors */
.why_choose_left_card {
  background-color: #354D76;
}

.why_choosesecond_left_card {
  background-color: #63BCAD;
}

.why_choosethird_left_card {
  background-color: #E17F62;
}

.why_choosefourth_left_card {
  background-color: #EBA55A;
}

/* Fade and slide in animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.left_why_choose_tech_part {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why_choose_tech_zink_heading span {
  background: linear-gradient(270.26deg, #282E66 -4.2%, #65C2B0 21.16%, #EFB556 46.53%, #D85F68 80.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .why_choose_tech_zink_heading {
    font-size: 32px;
    padding-left: 60px;
  }

  .why_choose_tech_wrapper {
    flex-direction: column;

    gap: 40px;
    margin-top: 30px;
    padding: 0 40px;
  }

  .right_why_choose_tech_part img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .why_choose_categories {
    padding: 5px 5px;
  }

  .why_choose_number {
    font-size: 16px;
  }

  .left_why_choose_tech_part {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .why_choose_tech_zink_heading {
    font-size: 24px;
    padding-left: 20px;
    text-align: left;
  }

  .left_why_choose_tech_part {
    width: 100%;
    align-items: center;
    padding: 5px 0px 5px 20px
  }

  .why_choose_tech_wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .why_choose_categories {
    padding: 1px 3px;
    font-size: 14px;
  }

  .why_choose_number {
    font-size: 14px;
  }

  .why_choose_left_card,
  .why_choosesecond_left_card,
  .why_choosethird_left_card,
  .why_choosefourth_left_card {
    left: -25px;
    padding: 10px 10px 10px 15px;
  }

  .right_why_choose_tech_part img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}


.otside_wrapper {
  padding-left: 135px;
  padding-right: 136px;
  margin-bottom: 84px;
}

.our_current_focus_section {

  backdrop-filter: blur(51.802146911621094px);

  box-shadow: 0px 0px 10px 0px #2D79CD1A;

  border-radius: 30px;
  padding: 23px 26px 10px 29px;
}

.current_focus_wrapper {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.reimagining_txt {

  font-weight: 700;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 2%;
  margin-bottom: 9px;

}
.footer_focus{
  backdrop-filter: blur(24.264055252075195px);
  background-color: #F4F7FA;
box-shadow: 0px 0px 4.04px 0px #44BEFA0F inset;
width: 100%;
height: 11px;
margin-top: 33px;
border-radius: 327px;

}

.remaining_para {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  margin-bottom: 31px;

}

.our {
  background: #282E66;

  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.current_shade {
  background: linear-gradient(270.26deg, #282E66 -4.2%, #65C2B0 21.16%, #EFB556 46.53%, #D85F68 80.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;


}

.focus_shade {
  background: linear-gradient(270.26deg, #282E66 -4.2%, #65C2B0 21.16%, #EFB556 46.53%, #D85F68 80.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;

}

.categories_tree {
  display: flex;
  justify-content: flex-start;
}

.categories_column {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}

.tick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Vertical dashed line (between steps) */
.row:not(:last-child) .tick::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: repeating-linear-gradient(to bottom,
      #aaa,
      #aaa 4px,
      transparent 4px,
      transparent 8px);
  margin-top: 5px;
}

/* Text style */
.row p {
  margin: 0;
  font-size: 14px;
}

/* Tick icon animation and styling */
.tick-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Status styles */
.status-done .tick-icon {
  background-color: #65C2B0;
  /* Green */
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-inprogress .tick-icon {
  background-color: #F6C576;
  /* Yellow */
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

.status-pending .tick-icon {
  background-color: #E0E0E0;
  /* Grey */
  box-shadow: 0 0 6px rgba(158, 158, 158, 0.5);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 1024px) {
  .otside_wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .our_current_focus_section {
    padding: 20px;
  }

  .current_focus_wrapper {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .right_current_focus_part {
    width: 100%;
  }

  .left_current_focus_part img {
    width: 100%;
    height: auto;
    max-width: 600px;
  }

  .our,
  .current_shade,
  .focus_shade {
    font-size: 32px;
  }

  .reimagining_txt {
    font-size: 17px;
  }

  .remaining_para {
    font-size: 15px;
  }

  .categories_tree {
    flex-direction: column;
  }

  .categories_column {
    gap: 10px;
  }

  .row p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .otside_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .our,
  .current_shade,
  .focus_shade {
    font-size: 24px;
  }

  .reimagining_txt {
    font-size: 16px;
    line-height: 1.6;
  }

  .remaining_para {
    font-size: 14px;
    line-height: 1.6;
  }

  .current_focus_wrapper {
    gap: 20px;
  }

  .tick img {
    width: 16px;
    height: 16px;
  }

  .row {
    gap: 10px;
  }

  .row p {
    font-size: 12px;
  }
}

.Frequently_Asked_Questions {
  color: #282E66;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: center;
  margin-bottom: 44px;

}

.Frequently_Asked_Questions span {
  background: linear-gradient(270.26deg, #282E66 -4.2%, #65C2B0 21.16%, #EFB556 46.53%, #D85F68 80.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion {
  padding-left: 135px;
  padding-right: 135px;
  padding-bottom: 94px;
}

.accordion_text_heading {

  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 2%;
  color: #65C2B0;


}

.accordion_text_heading span {
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2%;
  padding-left: 10px;

}

.accordion-item {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 22px;
  overflow: hidden;

  backdrop-filter: blur(51.802146911621094px);

  box-shadow: 0px 0px 10px 0px #2D79CD1A;

}

.accordion-header {
  background-color: #ffffff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;

}

.accordion-body {
  display: none;
  padding: 15px;
  background: #fff;
}

.accordion-body p {
  padding-left: 23px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 2%;


}

.accordion-item.active .accordion-body {
  display: block;
}

.toggle-icon {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .accordion {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
  }

  .Frequently_Asked_Questions {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .accordion_text_heading,
  .accordion_text_heading span {
    font-size: 16px;
  }

  .accordion-body p {
    font-size: 13px;
  }

  .toggle-icon {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .accordion {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  .Frequently_Asked_Questions {
    font-size: 24px;
  }



  .accordion_text_heading,
  .accordion_text_heading span {
    font-size: 14px;
  }

  .accordion-body p {
    padding-left: 10px;
    font-size: 12px;
  }


}


.footer_container {
  background-color: #081031;
  width: 100%;
  padding-left: 135px;
  padding-right: 126px;
  padding-top: 37px;
  padding-bottom: 44px;

}

.footer_left_questions_container {
  border-left: 1px dashed #111F5B;
}

.footer_left_questions_container {
  position: relative;
  padding-left: 32px;
  /* space for the "border" */
}

.footer_left_questions_container::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  /* border width */
  height: 100px;
  background: linear-gradient(270.1deg,
      #282E66 -13.09%,
      #65C2B0 26.12%,
      #EFB556 65.32%,
      #D85F68 117.58%);
}

.footer_nav {
  display: flex;
  align-items: center;
  padding-bottom: 68px;
  gap: 200px;
}

.right_footerLinks {
  display: flex;
  gap: 40px;
  text-decoration: none;
}

.right_footerLinks a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;

}

.contact_category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 43px;

}

.have_more_question_txt {

  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 2%;



}

.question_txt {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 2%;
  background: linear-gradient(270.09deg, #282E66 -4.46%, #65C2B0 11.89%, #EFB556 28.24%, #D85F68 50.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.phone_txt {

  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  letter-spacing: 0%;

}

.phone_number_txt {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;

  line-height: 20px;
  letter-spacing: 0%;

}

.social_media_platform_cards {
  display: flex;
  align-items: center;
  gap: 10px;

}

.social_media_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-content: center;
  border: 1px solid transparent;
  /* Set a border width */
  border-image-source: linear-gradient(180deg, rgba(216, 95, 104, 0.35) 0%, rgba(239, 181, 86, 0.35) 50%, rgba(101, 194, 176, 0.35) 100%);
  border-image-slice: 1;
  padding: 21px 28px;
  border-radius: 4px;
  width: 109px;
}

.platform_txt {

  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0%;

}

.feel_free_txt {

  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 54px;

}


.social_main_container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
  margin-bottom: 20px;


}

.we_are_in_social_media_txt {

  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 2%;
  margin-bottom: 22.5px;

}

.social_media_shade_txt {

  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 2%;
  background: linear-gradient(270.16deg, #282E66 -6.68%, #65C2B0 12.48%, #EFB556 31.64%, #D85F68 57.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.send_us_a_quick_message_txt {
  font-weight: 500;
  font-size: 22px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 2%;
  margin-bottom: 20px;

}

.quick_message_shade_txt {
  background: linear-gradient(270deg, #282E66 -6.25%, #65C2B0 13.93%, #EFB556 34.12%, #D85F68 61.03%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.please_send_message_txt {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;

  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 42px;

}

.social_media_form {
  backdrop-filter: blur(51.802146911621094px);
  box-shadow: 0px 0px 10px 0px #2D79CD1A;
  padding: 20px 30px;




}

.submit_form_container {
  display: flex;
  flex-direction: column;


  gap: 20px;

}

.message_input {
  width: 100%;
  padding-bottom: 80px;
}

.form_inputs {
  display: flex;
  gap: 15px;
  width: 100%;

}


input {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 50%;



}

.submit_btn_container {
  display: flex;
  justify-content: end;

}

.submit_btn {
  padding: 14px 38px 14px 32px;
  border-radius: 3px;
  border: none;
  background-color: #FFFFFF;

  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  line-height: 100%;
  letter-spacing: 0%;

}


input:focus {
  border-color: #4caf50;
  /* Change border color on focus */
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  /* Subtle green glow */
}

input::placeholder {
  color: #aaa;
  /* Lighter placeholder text color */
}

.name_input {
  background-color: #f9f9f9;
}

.email_input {
  background-color: #f9f9f9;
}

/* Optionally, you can add a hover effect for input fields */
input:hover {
  border-color: #888;
  /* Darker border on hover */
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #111F5B;
  padding-top: 20px;
}

.footer_links {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;

}

.footer_links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
}

.copyright_txt {

  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #ffffff;

}

@media (max-width: 1024px) {
  .footer_nav {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .social_main_container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .footer_right_questions_container,
  .footer_left_questions_container {
    width: 100%;
  }

  .form_inputs {
    flex-direction: column;
  }

  input {
    width: 100%;
  }

  .footer {
    flex-direction: column;

    gap: 10px;
    padding: 20px;
  }



  .right_footerLinks {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .footer_container {
    height: auto;
    padding: 20px 15px;
  }

  .footer_nav {
    gap: 20px;
  }

  .submit_btn_container {
    justify-content: center;
  }

  .submit_btn {
    width: 100%;
  }

  .social_media_platform_cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social_media_card {
    padding: 16px 20px;
  }

  .please_send_message_txt {
    font-size: 13px;
  }

  .have_more_question_txt,
  .we_are_in_social_media_txt,
  .send_us_a_quick_message_txt {
    font-size: 18px;
  }

  .phone_txt,
  .phone_number_txt {
    font-size: 13px;
  }
}