/* ==========common Elements=== */
h1 {
  font-size: var(--h1Fonts);
  font-family: var(--IBMPlexSans);
  font-weight: 500;
}

h2 {
  font-size: var(--h4Fonts);
  font-family: var(--IBMPlexSans);
  font-weight: 500;
}

@keyframes appear3 {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.commonPadding {
  padding: 3.5rem 0rem;
}
.commonParagraph {
  font-family: var(--IBMPlexSans);
  font-weight: 400;
  font-size: var(--bodyText);
  color: var(--heading3Color);
}
.engPara {
  text-align: center;
  margin-top: 1rem;
}
.cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.subHedingPara {
  font-family: var(--IBMPlexSans);
  font-weight: 500;
  font-size: var(--subHeading1);
  color: var(--heading3Color);
}

.serviceHeading {
  font-family: var(--IBMPlexSans);
  font-weight: 500;
  font-size: var(--subHeading1);
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  color: #ffffff;
}
.hiringSection {
  background: #e4f1f2;
}
.hiringWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #468088;
  border-radius: 12px;
  padding: 4.5rem;
}
.hireBtn {
  background-color: #fff;
  color: #468088;
  font-family: var(--IBMPlexSans);
  font-size: var(--bodyText);
  border: none;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: ease all 0.5s;
  cursor: pointer;
}
.hireBtn:hover {
  padding: 1rem 2.5rem;
}

.hiringHeading {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hiringHeading h2 {
  font-size: var(--h4Fonts);
  font-family: var(--IBMPlexSans);
  font-weight: 500;
  line-height: 120%;
  color: var(--linkColor);
}
.hiringHeading p {
  font-size: var(--bodyText);
  font-family: var(--IBMPlexSans);
  font-weight: 400;
  color: var(--linkColor);
}
/* hero section */
.heroServiceSection {
  background: linear-gradient(96.35deg, #468088 0%, #122022 100%);
  padding: 8rem 0rem 3rem 0rem;
}
.heroHeading {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.heroHeading h1 {
  color: var(--linkColor);
}
.differentColor2 {
  color: #f9f2e2;
}

/* ===========tabs section============== */
.tabsSection {
  background-color: #e4f1f2;
}
.tabs-container {
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scroll-x {
  overflow-x: auto; /* Enables horizontal scroll */
  white-space: nowrap;
}

.tabs {
  /* display: grid; */
  display: flex;
  /* grid-template-columns: repeat(6, 1fr); */
  position: relative;
  /* overflow-x: auto; */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: 100rem;
  /* white-space: nowrap; */
  /* max-width: 500px; */
  gap: 0.5rem;
  overflow-x: scroll;
}

.tabs button {
  background: #fcf9f0;
}

.tabs::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}

.tab-btn {
  padding: 1.5rem 1.9rem;
  font-size: var(--bodyText);
  font-weight: 500;
  color: var(--smallHeading);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  font-family: var(--IBMPlexSans);
}

.tab-btn:hover {
  color: #333;
  background: #e0e0e0;
}

.tab-btn.active {
  color: var(--themeGreen);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--themeGreen);
  transition: all 0.3s ease;
}

.tab-content {
  padding: 2rem;
  background-color: #fff;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.firstTabBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.firstTabBox img {
  width: 2.5rem;
  height: 2.5rem;
}
.firstTabBox h3 {
  font-family: var(--IBMPlexSans);
  font-size: var(--h6Fonts);
  color: #333;
  font-weight: 500;
}
.firstTabBoxPara {
  margin-bottom: 1.5rem;
}
.tabsCardsWrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  text-align: center;
}
.tabCards {
  width: 257px;
  padding: 1rem;
  background: #f1f7f6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0.25rem;
}
.tabCards img {
  width: 1.5rem;
  height: 1.5rem;
  align-self: center;
}
.tabCards h3 {
  font-size: var(--bodyText);
  font-family: var(--IBMPlexSans);
  font-weight: 400;
  color: #4d4d4d;
}
/* Responsive styles */
@media (max-width: 768px) {
  .tab-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
  .tabsCardsWrapper {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .tabs {
    padding-bottom: 5px;
    /* Space for scroll */
  }

  .tab-btn {
    padding: 10px 15px;
  }
}
/* ===========developer section ======= */
.developersSection {
  background: linear-gradient(186.32deg, #ffffff -55.94%, #fcf7e8 120.49%);
}
.devHeading {
  width: 35rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 2.5rem;
}
.serviceTechWrap {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.technologyCard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: ease all 0.5s;
  border-top: 4px solid #fff;
  border-radius: 0.25rem;
}
.technologyCard:hover {
  border-top: 4px solid var(--themeGreen);
  background-color: #f1f7f6;
}
.devCard h3 {
  font-family: var(--IBMPlexSans);
  font-size: var(--h6Fonts);
  color: var(--heading3Color);
  font-weight: 500;
}
.devCard p {
  font-family: var(--IBMPlexSans);
  font-size: var(--bodyText);
  color: var(--heading3Color);
  font-weight: 400;
}
.devCard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #f5ebd6;
}
.devCard img {
  width: 100%;
  height: 100%;
}
.devCardsBox {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.serviceBtnBox {
  display: flex;
  justify-content: center;
}

.devCard {
  animation: appear3 linear;
  animation-timeline: view();
  animation-range: entry 0 cover 35%;
}

/* ================= */
.engineerCards {
  padding: 1rem;
  box-shadow: 0px 8px 32px 0px #0000001a;
  backdrop-filter: blur(16px);
  border-radius: 0.5rem;
}

.engineerCards:hover {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.engineeringWrapper {
  /* display: flex; */
  justify-content: space-between;
  gap: 4rem;
}
.stickyHeading {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 14rem;
  height: 13rem;
}
.engeeringHeading {
  justify-items: center;
  padding-bottom: 2rem;
}
.scrollContent {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.number {
  font-size: var(--h3Fonts);
  color: var(--themeGreen);
  font-family: var(--IBMPlexSans);
  font-weight: 600;
  margin-bottom: 1rem;
}
.engineerHeadingInner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.engineerHeadingInner h3 {
  font-size: var(--bodyText);
  color: var(--themeGreen);
  font-family: var(--IBMPlexSans);
  font-weight: 600;
}
.engineerHeadingInner p {
  font-size: var(--caption);
  color: var(--heading3Color);
  font-family: var(--IBMPlexSans);
  font-weight: 400;
}
/* ================== */

.comprehensiveHeading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.comprehensiveCards {
  padding: 2rem 1rem;
  background: #fcf9f2;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: ease all 0.5s;
  border-top: 4px solid transparent;
}
.comprehensiveCards:hover {
  border-top: 4px solid var(--themeGreen);
  background: #f1f7f6;
}
.comprehensiveCards img {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
}
.comprehensiveCardWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.comprehensiveCards h3 {
  font-size: var(--subHeading1);
  font-family: var(--IBMPlexSans);
  font-weight: 600;
  color: var(--smallHeading);
}
.comprehensiveCards p {
  font-size: var(--bodyText);
  color: var(--smallHeading);
  font-family: var(--IBMPlexSans);
  font-weight: 400;
}
/* =============== */
.empowerWrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.empowerWrapper img {
  width: 100%;
  height: 100%;
}
.empowerHeading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.empowerHeading h4 {
  font-family: var(--IBMPlexSans);
  font-size: var(--caption);
  color: var(--smallHeading);
  font-weight: 500;
}
.empowerHeading h2 {
  color: var(--smallHeading);
}
.empowerHeading h3 {
  font-family: var(--IBMPlexSans);
  font-weight: 500;
  font-size: var(--h6Fonts);
  letter-spacing: -1%;
  line-height: 120%;
}
/* =============== */
.faqHeading {
  text-align: center;
  margin-bottom: 2rem;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  margin: 0 auto;
}

.accordion .accordion-item {
  border-radius: 5px;
  border: 1px solid var(--themeGreen);
}

.accordion .accordion-item .accordion-item-description-wrapper hr {
  border: none;
  visibility: visible;
}

.accordion .accordion-item.open .accordion-item-description-wrapper hr {
  visibility: visible;
}

.accordion .accordion-item .accordion-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-title {
  font-weight: 500;
  font-family: var(--IBMPlexSans);
  color: #333;
  font-size: var(--bodyText);
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
  transition: var(--transition);
}

.accordion
  .accordion-item.open
  .accordion-item-header
  .accordion-item-header-icon {
  transform: rotate(-180deg);
}

.accordion .accordion-item .accordion-item-description-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: var(--transition);
}

.accordion .accordion-item.open .accordion-item-description-wrapper {
  grid-template-rows: 1fr;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description {
  min-height: 0;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description
  p {
  padding: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--IBMPlexSans);
  color: #666666;
  font-size: var(--bodyText);
}

/* ================hire talent page========== */
.heroHeading p {
  color: var(--linkColor);
}
.expertiseTalentcard {
  transition: ease all 0.3s;
}
.expertiseTalentcard:hover {
  background-color: var(--themeGreen);
}
.expertiseTalentcard:hover h3,
p {
  color: #fff;
}
.expertiseTalentcard:hover p {
  color: #fff;
}
.expertiseTalentcard:hover img {
  filter: contrast();
}

/* ===============about us page============= */
.ourMissionSection {
  background-color: #fff;
}
.leaderSection {
  background: linear-gradient(186.32deg, #ffffff -55.94%, #fcf7e8 120.49%);
}
.leaderCardsWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.35rem;
}
.leaderCards {
  transition: all ease 0.5s;
}
.leaderCards:hover {
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.leaderCardsWrap img {
  width: 100%;
}
.leaderTypographyBox {
  background-color: #fff;
  padding: 1rem;
}
.leaderTypographyBox h4,
h6 {
  font-family: var(--IBMPlexSans);
}
.leaderTypographyBox h4 {
  font-weight: 600;
  color: var(--smallHeading);
  font-size: var(--subHeading2);
  margin-bottom: 4px;
}
.leaderTypographyBox h6 {
  font-weight: 400;
  color: #666666;
  font-size: var(--caption);
  margin-bottom: 12px;
}
.leaderTypographyBox p {
  font-family: var(--InstrumentSans);
  font-size: var(--caption);
  font-weight: 400;
  color: #333;
}
.leaderCardsWrap {
  width: 82%;
  margin: 0 auto;
}
.expertiseTalentcardBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* background-color: var(--themeGreen); */
  gap: 2rem;
  /* border: 1px solid var(--themeGreen); */
}
.expertiseTalentcard {
  padding: 2.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  gap: 2rem;
}
.expertiseTalentcard h3,
p {
  font-family: var(--IBMPlexSans);
  font-weight: 500;
  color: var(--themeGreen);
  font-size: var(--h6Fonts);
}
.expertiseTalentcard p {
  font-weight: 400;
  color: var(--bodyTextColor);
  font-size: var(--bodyText);
}
/* =================== */

/* =====career====== */
.CareerSection {
  padding: 3.5rem 0rem;
}
.careerForm {
  width: 70%;
  margin: 0 auto;
}

.custom-file-upload {
  padding: 8px 18px;
  cursor: pointer;
  background-color: var(--themeGreen);
  color: white;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
  font-family: var(--IBMPlexSans);
  white-space: nowrap;
  margin-left: auto; /* This pushes the button to the right */
}

.custom-file-upload:hover {
  background-color: var(--themeGreen);
}

input[type="file"] {
  display: none;
}
.fileInput {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.5rem 1rem;
  align-items: center;
}

.fileErrmessage{
    margin-top: -1.5rem;
}
.fileInput h6 {
  font-family: var(--IBMPlexSans);
  font-size: var(--bodyText);
  color: #989898;
  font-weight: 400;
}
.hiringWrapper a {
  text-decoration: none;
}
/* =========== */

/* Responsive adjustments */
@media (max-width: 600px) {
  .accordion-header {
    padding: 12px 15px;
    font-size: 16px;
  }

  .accordion-content p {
    padding: 15px;
  }
}

/* For Tabs screens */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: var(--h5Fonts);
    font-family: var(--IBMPlexSans);
    font-weight: 500;
  }
  .heroHeading {
    width: 100%;
  }
  .hiringWrapper {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    justify-content: space-between;
  }
  .hiringHeading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .devHeading {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
  }
  .devCardsBox {
    flex-direction: column;
  }
  .hiringHeading {
    width: 100%;
  }
  .engineeringWrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
  .stickyHeading {
    position: static;
    width: 100%;
    height: auto;
  }
  .comprehensiveCardWrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .scrollContent {
    width: 100%;
  }
  .leaderCardsWrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .leaderCardsWrap {
    width: 100%;
    margin: 0 auto;
  }
  .expertiseTalentcardBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .careerForm {
    width: 100%;
    padding: 1rem;
  }
  .custom-file-upload {
    width: 65%;
  }
  .accordion {
    width: 100%;
  }
}

/* For Tabs screens */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .heroHeading {
    width: 100%;
  }
  .comprehensiveCardWrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-file-upload {
    width: 50%;
  }
}

/* For Medium screens */
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
}

/* For large screens */
@media only screen and (min-width: 1281px) and (max-width: 1440px) {
}

/* For Extra large screens*/
@media only screen and (min-width: 1441px) {
}

.fileInput {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.file-info-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

.file-instruction {
  color: #989898;
  font-size: var(--bodyText);
  font-family: var(--IBMPlexSans);
}

.file-name {
  color: #333;
  font-size: 1rem;
  font-family: var(--IBMPlexSans);
}

.file-status.success {
  color: green;
}

.file-status.error {
  color: red;
}


/* =====Term & conditions====== */

.heroTermSection {
  padding-bottom:2rem;
}

.termsContainer {
  padding:0 10.938rem;
}

.termsDiv {
  display:flex;
  flex-direction:column;
  gap:1.563rem;
  margin-bottom:3.5rem;
  

  h3 {
    font-size:var(--h5Fonts);
    font-family: var(--IBMPlexSans);
    font-weight:500;
  } 

  p {
    font-size:var(--subHeading2);
    font-family: var(--IBMPlexSans);
    font-weight:400;
    color: var(--bodyTextColor2);
    line-height:160%;
  }

  ul {
    padding-left:2.5rem;
  }

  ul li {
    margin-bottom:0.625rem;
  }

}

.termsDescription {
  font-size:var(--subHeading2);
  font-family: var(--IBMPlexSans);
  font-weight:400;
  color:var(--bodyTextColor2);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}


.termsDescription strong {
  font-weight: 900; 
}

@media only screen and (min-width: 769px) and (max-width: 1024px){
  .termsContainer {
    padding:0 5rem;
  }
}

@media only screen and (max-width: 768px){
  .termsContainer {
    padding:0px;
  }

  .termsDiv {
    gap:2rem;

    h3 {
    font-size: var(--h6Fonts);
    }

    p {
      font-size:var(--bodyText);
    }
  }
}