/* programs-section */

.programs-header {
  text-align: center;
  margin-bottom: 64px;
}

.programs-header h2 {
  color: var(--Primary-700, #027948);
  margin-bottom: 12px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 1.92px;
}

.programs-header h1 {
  color: var(--Gray-900, #101828);
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}

.programs-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.program-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f2f4f7;
  max-width: 391px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-header {
  margin-bottom: 20px;
  position: relative;
}

.program-image {
  position: relative;
  /* top: -50px; */
}

.program-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.program-logo span {
  color: #48bf84;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.program-image {
  margin-bottom: 20px;
  text-align: center;
}

.program-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* border-radius: 12px; */
}

.program-tags {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.explore-program-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  a {
    background: #48bf84;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
}

.tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  width: fit-content;
}

.audience-tag {
  background: #f4f3ff;
  color: #5925DC;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.eligibility-tag {
  background: #F0F9FF;
  color: var(--Blue-light-700, #026AA2);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.batch-full-tag {
  background: #fef2f2;
  color: #dc2626;
}

.program-title {
  margin-bottom: 12px;
}

.program-title h3 {
  color: var(--Gray-900, #101828);
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
  letter-spacing: -0.22px;
}

.program-status {
  margin-bottom: 16px;
}

.program-status p {
  color: #027948;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.program-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.program-feature-left h5{
  color: #64748B;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px; /* 125% */
}

.program-feature-left p {
  color: #1E293B;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.program-feature-right {
  display: flex;
  gap: 5px;
  p {
    color: #183B56;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
  }
}

.program-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-primary {
  background: #48bf84;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex: 1;
}

.btn-primary:hover {
  background: #3da876;
}

.btn-secondary {
  background: #fff;
  color: #667085;
  border: 1px solid #d0d5dd;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex: 1;
}

.btn-secondary:hover {
  border-color: #48bf84;
}

.btn-waitlist {
  background: #ecfdf3;
  color: #027948;
  border: 1px solid #48bf84;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-waitlist:hover {
  background: #d1fae5;
}

.waitlist-text {
  text-align: center;
}

.waitlist-text p {
  color: #6b7280;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* Batch full card specific styles */
.program-card.batch-full .program-status p {
  color: #dc2626;
}

.program-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile responsive styles for programs section */
@media screen and (max-width: 768px) {  
  .programs-header {
    margin-bottom: 32px;
  }
  
  .programs-header h2 {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.68px;
  }
  
  .programs-header h1 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.6px;
  }
  
  .programs-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .program-card {
    max-width: 100%;
  }

  .program-card-content {
    padding: 20px;
  }
  
  .program-image img {
    height: 180px;
  }
  
  .program-buttons {
    flex-direction: column;
  }
}

/* hero-section */
.hero-slide {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  width: 100%;
  height: 100%;
}
.hero-slide-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.hero-slide-right {
  justify-self: flex-end;
  width: 100%;
}

.hero-slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-slide-right img {
  border-radius: 20px;
  width: 100%;
}

.hero-desktop-container {
  padding-left: 60px;
  padding-right: 60px;
}

.heroDesktopSwiper {
  width: 100%;
  /* height: 100%; */
  margin: 60px 20px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 80px !important;
  padding-bottom: 100px !important ;
}

.heroDesktopSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroDesktopSwiper .swiper-slide {
  background: #fff !important;
  text-align: left !important;
  padding: 0px 80px 0px 80px !important;
}

.heroDesktopSwiper .swiper-pagination-bullet {
  background-color: rgba(72, 191, 132, 0.3) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.heroDesktopSwiper .swiper-pagination-bullet-active {
  background-color: #48bf84 !important;
  width: 40px !important;
  height: 8px !important;
  border-radius: 4px !important;
  transform: scale(1.1) !important;
}

.hero-slide-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-slide-title h1 {
  font-weight: 700;
  font-family: Inter;
  font-size: 60px;
  line-height: 72px;
  color: #142952;
  span {
    color: #48bf84;
  }
}

.hero-slide-title p {
  font-weight: 500;
  font-family: Inter;
  font-size: 20px;
  color: #344054;
  line-height: 30px;
}

.hero-slide-primary-btn {
  background: #48bf84;
  color: #fff;
  padding: 10px 60px;
  font-weight: 500;
  font-family: Inter;
  font-size: 16px;
  line-height: 28px;
  border: 1px solid #48bf84;
  border-radius: 10px;
  margin-right: 10px;
}
.hero-slide-secondary-btn {
  background: #fff;
  color: #344054;
  padding: 10px 60px;
  font-weight: 500;
  font-family: Inter;
  font-size: 16px;
  line-height: 28px;
  border: 1px solid #344054;
  border-radius: 10px;
}
.hero-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}

.hero-slide-content .content-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.heroDesktopSwiper .swiper-button-next,
.heroDesktopSwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #054f31;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.heroDesktopSwiper .swiper-button-next::after,
.heroDesktopSwiper .swiper-button-prev::after {
  content: "";
  display: none; /* Hide default Swiper arrow */
}

.heroDesktopSwiper .swiper-button-next svg,
.heroDesktopSwiper .swiper-button-prev svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-slide-content-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 20px;
}

.content-item-2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #f2f4f7;
  padding: 15px;
  font-family: Inter;
  border-radius: 10px;
}

@media screen and (max-width: 1023px) {
  .hero-desktop-container {
    display: none;
  }
  .heroMobileSwiper {
    display: flex;
  }
}

/* hero-mobile-section */

.heroMobileSwiper {
  width: 100%;
  height: 100%;
  display: none;
  margin-top: 50px;
}

.heroMobileSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  /* margin-top: 60px; */
}

.hero-mobile-slide {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.hero-mobile-slide-content-2 {
  position: relative;
  width: 100%;
  .hero-mobile-slide-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  img {
    width: 100%;
    height: auto;
    display: block;
    /* overflow: hidden; */
  }
}

.hero-mobile-slide-overlay {
  filter: blur(53.2px);
  background-color: #101828;
  border-radius: 0;
  width: calc(244px + 100%);
  position: absolute;
  top: 200px;
  left: -100px;
  right: -100px;
  height: 400px;
  z-index: 1;
}

.hero-mobile-slide-content-container {
  position: relative;
  /* left: -111%; */
  z-index: 2;
  background-color: #101828;
  padding: 0px 24px 24px 24px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.hero-mobile-slide-1 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage01-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-2 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage02-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-3 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage03-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-4 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage04-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-5 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage05-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-6 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage06-min.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-mobile-slide-7 {
  background: linear-gradient(
      180deg,
      rgba(10, 46, 54, 1) 0%,
      rgba(10, 46, 54, 0) 10%,
      rgba(10, 46, 54, 1) 90%
    ),
    url("images/home/heroImage07-min.png") center/cover no-repeat;
  overflow: hidden;
}

.heroMobileSwiper .swiper-slide h1 {
  color: var(--White, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}

.heroMobileSwiper .swiper-slide p {
  color: var(--White, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 24px; /* 150% */
}

.heroMobileSwiper .swiper-slide .hero-mobile-btn-grp {
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}

.heroMobileSwiper .swiper-slide .hero-mobile-btn-grp .hero-mobile-btn {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.heroMobileSwiper .swiper-slide .hero-mobile-btn-grp .hero-mobile-btn-1 {
  background: #48bf84;
  border-radius: 8px;
  border: 1px solid #48bf84;
  background: #48bf84;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  color: #fff;
}

.heroMobileSwiper .swiper-slide .hero-mobile-btn-grp .hero-mobile-btn-2 {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  color: #344054;
}

.heroMobileSwiper .swiper-pagination-bullet {
  background-color: rgba(72, 191, 132, 0.3) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}

.heroMobileSwiper .swiper-pagination-bullet-active {
  background-color: #48bf84 !important;
  transform: scale(1.2) !important;
}

@media screen and (min-width: 1023px) {
  .heroMobileSwiper {
    display: none !important;
  }
}

/* company-section */

.company-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
  .company-section-title {
    span {
      color: #48bf84;
    }
    color: #1e293b;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.96px;
    text-align: center;
  }
  .company-section-img {
    display: flex;
    flex-direction: column;
    gap: 24px;
    p {
      color: #5a7184;
      text-align: center;
      font-family: Inter;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: 30px;
    }
    img {
      width: 100%;
    }
    .company-section-img-mobile {
      display: none;
    }
  }
  .company-section-btn-group {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    .company-section-btn {
      display: flex;
      padding: 12px 20px;
      justify-content: center;
      align-items: center;
      gap: 8px;
      flex: 1 0 0;
      width: 250px;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 24px;
    }
    .company-section-btn-1 {
      justify-self: flex-end;
      background: #48bf84;
      border-radius: 8px;
      border: 1px solid #48bf84;
      background: #48bf84;
      box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
      color: #fff;
    }
    .company-section-btn-2 {
      justify-self: flex-start;
      border-radius: 8px;
      border: 1px solid #d0d5dd;
      background: #fff;
      box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
      color: #344054;
    }
  }
}

@media screen and (max-width: 768px) {
  .company-section {
    gap: 32px;
  }
  .company-section-img .company-section-img-desktop {
    display: none !important;
  }
  .company-section-img .company-section-img-mobile {
    display: block !important;
  }
  .company-section .company-section-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
  }
  .company-section .company-section-btn-group .company-section-btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  .company-section-btn-group {
    grid-template-columns: 1fr !important;
    .company-section-btn-1 {
      width: 100% !important;
      justify-self: flex-start !important;
    }
    .company-section-btn-2 {
      width: 100% !important;
      justify-self: flex-start !important;
    }
  }
}

/* program-highlights-section */

.program-highlights-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  .program-highlights-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    p {
      color: #027948;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 1.92px;
    }
    h1 {
      color: #101828;
      font-family: Inter;
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 60px;
      letter-spacing: -0.96px;
    }
  }
  .program-highlights-content {
    display: grid;
    width: 100%;
    /* height: 980px; */
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "item1 item1 item1 item2 item2"
      "item3 item3 item4 item4 item4";
    gap: 24px;
    img {
      width: 100%;
      border-radius: 18px;
    }
  }
  .program-highlights-section {
    border-radius: 18px;
  }
  .program-highlights-content-item-1 {
    /* background: url(images/home/h=978.jpg) no-repeat center center;
        background-size: contain; */
    grid-area: item1;
  }
  .program-highlights-content-item-2 {
    /* background: url(images/home/h=978_1.jpg) no-repeat center center;
        background-size: contain; */
    grid-area: item2;
  }
  .program-highlights-content-item-3 {
    /* background: url(images/home/h=978_2.jpg) no-repeat center center;
        background-size: contain; */
    grid-area: item3;
  }
  .program-highlights-content-item-4 {
    /* background: url(images/home/h=978_3.jpg) no-repeat center center;
        background-size: contain; */
    grid-area: item4;
  }
}

@media screen and (max-width: 768px) {
  .program-highlights-section {
    gap: 24px;
  }
  .program-highlights-section .program-highlights-title {
    gap: 8px;
  }
  .program-highlights-section .program-highlights-title p {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 1.68px;
  }
  .program-highlights-section .program-highlights-title h1 {
    color: var(--Gray-900, #101828);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
  }
  .program-highlights-section .program-highlights-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
  }

  .program-highlights-section .program-highlights-content-item-1,
  .program-highlights-section .program-highlights-content-item-2,
  .program-highlights-section .program-highlights-content-item-3,
  .program-highlights-section .program-highlights-content-item-4 {
    width: 100%;
    min-height: 250px;
    grid-area: unset;
    background-size: cover;
    background-position: top;
  }
}

/* educators-section */

.educators-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 60px 50px;
  background: #0a2e36;
  .educators-title {
    h1 {
      color: #fff;
      text-align: center;
      font-family: Inter;
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 60px; /* 125% */
      letter-spacing: -0.96px;
      span {
        color: #12b76a;
      }
    }
  }
  .educators-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .educator-card {
    height: 260px;
    img {
      border-radius: 8px;
      height: 100%;
    }
  }
}

@media screen and (max-width: 768px) {
  .educators-section {
    padding: 64px 16px;
  }
  .educators-section .educators-title h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 122.222% */
    letter-spacing: -0.72px;
  }
  .educators-section .educators-content .educator-card {
    height: 110px;
  }
}

/* placements-section */

.placements-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  .placements-1 {
    img {
      width: 100%;
    }
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    background: #ecfdf3;
    border-radius: 16px;
    padding: 40px 24px;

    .left {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
      .item-1 h1 {
        color: #027a48;
        font-family: Inter;
        font-size: 50px;
        font-style: normal;
        font-weight: 700;
        line-height: 44px; /* 122.222% */
        letter-spacing: -0.72px;
      }
      .item-2 p {
        color: #027948;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
      }
      .item-3 {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        .subitem {
          display: flex;
          gap: 12px;
          div {
            display: flex;
            gap: 12px;
            align-items: center;
          }
        }
        img {
          width: 32px;
          height: 32px;
        }
        h3 {
          color: #054f31;
          font-family: Inter;
          font-size: 20px;
          font-style: normal;
          font-weight: 600;
          line-height: 30px; /* 150% */
        }
        p {
          color: #027a48;
          font-family: Inter;
          font-size: 16px;
          font-style: normal;
          font-weight: 300;
          line-height: 24px; /* 150% */
        }
      }
    }
    .right {
      align-self: center;
    }
  }
  .placements-2 {
    img {
      width: 100%;
    }
    .img-mobile {
      display: none;
    }
  }
}

@media screen and (max-width: 768px) {
  .placements-section {
    gap: 24px;
  }
  .placements-section .placements-1 {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .placements-section .placements-1 .left .item-1 h1 {
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 122.222% */
    letter-spacing: -0.72px;
  }

  .placements-section .placements-1 .left .item-2 p {
    color: var(--Primary-700, #027948);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }

  .placements-section .placements-1 .left .item-3 .subitem div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .placements-section .placements-2 {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  .placements-section .placements-2 .img-mobile {
    display: block;
  }
  .placements-section .placements-2 .img-desktop {
    display: none;
  }
}

/* testimonials-section */

.testimonials-section {
  .testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    img {
      width: 100%;
    }
  }
}

@media screen and (max-width: 768px) {
  .testimonials-section .testimonials-content {
    grid-template-columns: 1fr;
  }
}

.features-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  .features-title {
    h1 {
      color: var(--Gray-900, #101828);
      text-align: center;
      font-family: Inter;
      font-size: 48px;
      font-style: normal;
      font-weight: 700;
      line-height: 60px; /* 125% */
      letter-spacing: -0.96px;
    }
  }
  .video-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .video-player video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
  }

  .play-button,
  .pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .play-button:hover,
  .pause-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-button svg,
  .pause-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }

  .pause-button {
    opacity: 0;
    pointer-events: none;
  }

  .video-player.playing .play-button {
    opacity: 0;
    pointer-events: none;
  }

  .video-player.playing:hover .pause-button {
    opacity: 1;
    pointer-events: auto;
  }

  .video-player:not(.playing) .play-button {
    opacity: 1;
    pointer-events: auto;
  }

  .video-player:not(.playing) .pause-button {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .features-section {
    gap: 24px;
  }
  .features-section .features-title h1 {
    text-align: center;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 126.667% */
  }
  .features-section .features-title h1 .features-title-span {
    display: none;
  }

  /* Mobile video player button sizes */
  .features-section .video-player .play-button svg,
  .features-section .video-player .pause-button svg {
    width: 40px;
    height: 40px;
  }
}

.life-hq-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  .life-hq-title {
    h1 {
      color: var(--Gray-900, #101828);
      font-family: Inter;
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 60px; /* 125% */
      letter-spacing: -0.96px;
    }
    span {
      color: #12b76a;
    }
  }
  .life_hq {
    position: relative;
    width: 100vw;
    height: 600px;
    background: white;
    display: flex;
    align-items: center;
    margin-top: 50px;
  }

  .life_hq__track {
    display: flex;
    gap: 10px;
    align-items: center;
    will-change: transform;
  }

  .life_hq__img {
    height: 600px;
    flex: 0 0 auto;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }
}

@media screen and (max-width: 768px) {
  .life-hq-section {
    gap: 0px;
  }
  .life-hq-section .life-hq-title h1 {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    text-align: center;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
  }
  .life-hq-section .life_hq {
    height: 360px;
  }
  .life-hq-section .life_hq__img {
    height: 360px;
  }
}

/* contact-us-section */

.contact-us-section {
  padding-top: 0px;
  .contact-us-content {
    padding: 68px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    background: #101828;
    border-radius: 17px;

    .contact-us-title {
      display: flex;
      flex-direction: column;
      gap: 21px;
      h1 {
        color: var(--White, #fff);
        text-align: center;
        font-family: Inter;
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.8px;
      }
      p {
        color: var(--Gray-200, #eaecf0);
        text-align: center;
        font-family: Inter;
        font-size: 21.053px;
        font-style: normal;
        font-weight: 300;
        line-height: 31.579px; /* 150% */
      }
    }

    .contact-us-btn-group {
      display: flex;
      gap: 16px;
      .contact-us-btn {
        padding: 12px 20px;
        border-radius: 8px;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        display: flex;
        justify-content: center;
      }
      .contact-us-btn-1 {
        color: #fff;
        border: 1px solid var(--Primary-600, #48bf84);
        background: var(--Primary-600, #48bf84);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
      }
      .contact-us-btn-2 {
        gap: 8px;
        align-items: center;
        color: #344054;
        border: 1px solid var(--Gray-300, #d0d5dd);
        background: var(--White, #fff);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        img {
          width: 20px;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .contact-us-section .contact-us-content {
    padding: 40px 24px;
  }
  .contact-us-section .contact-us-content .contact-us-title h1 {
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    font-style: normal;
  }
  .contact-us-section .contact-us-content .contact-us-title p {
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    font-style: normal;
  }
  .contact-us-section .contact-us-content .contact-us-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .contact-us-section
    .contact-us-content
    .contact-us-btn-group
    .contact-us-btn {
    width: 100%;
  }
}

/* iit-section */

.iit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #f8f9fc;
  .iit-section-1 {
    display: flex;
    flex-direction: column;
    gap: 48px;
    .iit-section-title {
      display: flex;
      flex-direction: column;
      gap: 24px;
      p {
        color: #00672f;
        font-family: Inter;
        font-size: 25.222px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.766px;
      }
      h1 {
        color: var(--Success-500, #101828);
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -0.96px;
        span {
          color: #12b76a;
        }
      }
    }
    .iit-section-content {
      display: flex;
      flex-direction: column;
      gap: 12px;
      .iit-section-content-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
        svg {
          width: 36px;
          height: 36px;
        }
        p {
          color: var(--Gray-600, #475467);
          font-family: Inter;
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 24px;
        }
      }
    }
  }
  .iit-section-2 {
    img {
      border-radius: 8px;
      width: 100%;
    }
    align-self: center;
  }
}

@media screen and (max-width: 768px) {
  .iit-section {
    grid-template-columns: 1fr;
  }
  .iit-section .iit-section-1 {
    gap: 48px;
  }
  .iit-section .iit-section-1 .iit-section-title h1 {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
  }
  .iit-section .iit-section-1 .iit-section-title p {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .iit-section
    .iit-section-1
    .iit-section-content
    .iit-section-content-item
    svg {
    width: 28px;
  }
  .iit-section .iit-section-1 .iit-section-content .iit-section-content-item p {
    font-size: 16px;
  }
}