/* =========================================================
   our_work.css
   Consolidated CSS — only rules used by the "our work" /
   product template (description_section, current_project_list,
   free_learing_resources, program_technology cards, slider,
   why_product_content).
   ========================================================= */

/* --- global --- */
a {
  color: #14a0df;
}
a:hover {
  color: #000;
}

/* every heading on this page (h1 = section titles, h2 = card/item/blog
   titles) shares the same size and weight */
h1,
h2 {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6em;
}
h1 {
  color: #1a1a1a;
  text-transform: uppercase;
}

/* every section on this page uses Nunito, and a 16px/400 baseline for
   everything that isn't a heading (paragraphs, labels, links inherit
   this unless a more specific rule below says otherwise) */
.description_section,
.current_project_list_section,
.free_learing_resources_container,
.technology_list_section,
#trainning_technology,
.trainning_technology,
.why_product_content,
.browse_product,
.browse_product_container,
.blog_index_list {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* --- top description section (page.name / page.description / page.image) --- */
.description_section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  padding-top: 12px;
  margin: 0 auto;
}
.product_desc {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Nunito", sans-serif;
  margin-top: 32px;
}
.desc_column {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.5em;
  width: 50%;
}
.desc_column h1 {
  margin: 2% 0%;
  text-transform: uppercase;
}
.product_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 25vh;
}
.product_img > img {
  width: 100%;
  object-fit: contain;
}

/* --- "what we do" / current project list (also reused for other_section) ---
   Reworked to feel more immersive: full-bleed rounded rows, larger imagery
   with a subtle hover zoom, a big faint numeral behind each title for a
   storytelling feel, and a lift-on-hover for the whole row. */
.current_project_list_section {
  margin: 3% 0%;
  font-family: "Nunito", sans-serif;
  counter-reset: whatwedo;
}
.current_project_list_container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.current_project_list_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 1%;
  margin-bottom: 3%;
}
.current_project_list_heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5%;
  height: 5px;
  width: 13%;
  background: #00a651;
  border-radius: 20px;
  transform: translate(-50%);
}
.current_project_list_item {
  counter-increment: whatwedo;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3% 4%;
  border-radius: 24px;
  flex-direction: row;
  gap: 4%;
  margin-top: 1.5%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.current_project_list_img {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0px 12px 30px 0px #00000017;
}
.current_project_list_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.current_project_list_item:hover .current_project_list_img > img {
  transform: scale(1.06);
}
.current_project_list_desc {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.8em;
  padding: 0% 3%;
  position: relative;
}
.current_project_list_title {
  position: relative;
  z-index: 1;
}
.current_project_list_title::before {
  content: counter(whatwedo, decimal-leading-zero);
  display: block;
  font-size: 3.4em;
  font-weight: 800;
  color: #e2f4ff;
  line-height: 1;
  margin-bottom: -0.28em;
}
.current_project_list_title h2 {
  color: #33bfff;
  padding-bottom: 2%;
  position: relative;
}
.current_project_list_title_desc {
  width: 100%;
}
.current_project_list_title_desc p {
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.8em;
}
.active_color {
  background: linear-gradient(135deg, #f2fbff 0%, #e2f4ff 100%);
  flex-direction: row-reverse;
}

/* --- "other section" band (class="trainning_technology") ---
   Reuses the current_project_list_* markup further down the page. Was
   missing entirely; gives it a light blue band so it visually separates
   from the "What We Do" section above it. */
.trainning_technology {
  width: 100%;
  background-color: #f2fbff;
  padding: 4% 0%;
  margin: 4% 0% 0% 0%;
}
.trainning_technology .current_project_list_heading h1::before {
  background: #33bfff;
}

/* =========================================================
   EXPLORE FREE LEARNING RESOURCES
   ========================================================= */
.free_learing_resources_container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.free_learing_resources_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f9f9f9;
  flex-direction: column;
  padding: 60px 24px;
  box-sizing: border-box;
}
.free_learing_resources_list_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.free_learing_resources_list_heading h1 {
  margin-top: 32px;
  padding-bottom: 16px;
}
.free_learing_resources_list_heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translate(-50%);
}
.free_learing_resources_list_data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  width: 90%;
  max-width: 1440px;
  margin-top: 40px;
}
.free_learing_resources_box {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  background-color: white;
  color: #2584b1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  min-height: 30vh;
  text-align: center;
  line-height: 1.5em;
  padding: 32px 20px;
  box-shadow: 0px 4px 4px 0px #00000017;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.free_learing_resources_box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 26px 0px #00000024;
}
.free_learing_resources_box i {
  font-size: 5vh;
  line-height: 2em;
}
.free_learning_resource_name {
  font-weight: 700;
  font-size: 18px;
  color: #00405e;
  margin-top: 16px;
  margin-bottom: 8px;
}
.free_learing_resources_box > p:not(.free_learning_resource_name) {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 20px;
  flex: 1;
}
.free_learing_resources_btn {
  width: 100%;
  border-top: 1px solid #eaeaea;
  padding-top: 16px;
  margin-top: auto;
  color: #009f9c;
  font-weight: 600;
  text-decoration: underline;
}
.free_learing_resources_btn:hover {
  color: #000;
}
.our_impage_list_image {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.free_learing_resources_box .our_impage_list_image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* --- program / technology section wrapper (id="trainning_technology") ---
   Was missing entirely, so it rendered with no spacing/background. Gives it
   a light band consistent with the rest of the page so it reads as its
   own section rather than running straight into the description block. */
#trainning_technology {
  width: 100%;
  background-color: #f8fdff;
  padding: 4% 0% 5% 0%;
  margin: 3% 0%;
}

/* --- program / technology cards --- */
.technology_list_section {
  position: relative;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 2%;
}
.what-we-do-section_container {
  width: 90%;
}
.who-we-do-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.who-we-do-content h2,
.who-we-do-content h3 {
  width: 100%;
  padding-left: 3%;
}
.container_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.container_heading > h1 {
  position: relative;
  margin-bottom: 3%;
  text-align: center;
}
.container_heading > h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5%;
  height: 5px;
  width: 70%;
  background: #00a651;
  border-radius: 20px;
  transform: translate(-50%);
}
.card_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card_body {
  background: white;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px #00000017;
  min-height: 60vh;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card_body:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 26px 0px #00000024;
}
.card_icon {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 0%;
  color: #2584b1;
}
.card_icon img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.card_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2% 2%;
  text-align: center;
  width: 100%;
}
.card_heading > h2 {
  color: #00405e !important;
}
.card_text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1% 5% 11% 5%;
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  flex-direction: column;
  line-height: 1.5em;
}
.card_text ul li {
  list-style-type: square;
}
.technology_card_heading,
.technology_card_text {
  text-align: left;
  align-items: flex-start;
}

/* --- "Our Process" slider heading + carousel controls ---
   NOTE: this template pulls in {% include 'include/slider.html' %}, whose
   markup (browse_product_* / product_slider-button-*) isn't in the files
   you gave me. I've kept the rules the inline <script> directly references
   (.browse_product_list and the slider button classes) plus the rest of
   the matching "second browse section" block, since it's clearly the same
   component — double check against include/slider.html to be sure nothing
   there is missing. */
.why_product_content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 2%;
}
.why_product_content h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5%;
  height: 5px;
  width: 10%;
  background: #00a651;
  border-radius: 20px;
  transform: translate(-50%);
}
.browse_product {
  position: relative;
  margin: 3% 0%;
}
.browse_product_container {
  background-color: #f2fbff;
  height: 65vh;
  padding: 1% 0%;
}
.browse_product_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 1%;
}
.browse_product_heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5%;
  height: 5px;
  width: calc(100px + 10%);
  background: #00a651;
  border-radius: 20px;
  transform: translate(-50%);
}
.browse_product_list {
  margin-top: 4%;
  position: relative;
  width: 91%;
  left: 50%;
  height: 61%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.browse_product_list > .slick-dots {
  bottom: -5%;
}
.browse_product_item {
  width: 24.33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 0.4%;
}
.browse_product_img {
  width: 100%;
  height: 70%;
  background-color: white;
}
.browse_product_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.browse_product_desc {
  width: 100%;
  height: 30%;
  background: #d9f0fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0% 4%;
  color: #2281ac;
}
.browse_product_desc .product_title {
  width: 60%;
}
.product_link {
  padding: 2% 1%;
  border: 3px solid #33bfff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_link a {
  color: #2281ac;
}
[class^="product_slider-button-"] {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  font-size: 4vh;
  cursor: pointer;
}
[class^="product_slider-button-"] i {
  color: #b5b5b5;
}
.product_slider-button-next {
  right: 1.5%;
}
.product_slider-button-prev {
  left: 2.5%;
}

/* --- related stories (blog) ---
   These classes (blog_index_*) were referenced in the template but never
   defined anywhere I was given, so the section rendered as unstyled
   stacked text. Styled as a card grid to match the rest of the page. */
.blog_index_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2% 0% 5% 0%;
}
.blog_index_list_show {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 90%;
  max-width: 1440px;
}
.blog_index_body {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px #00000017;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog_index_body:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 26px 0px #00000024;
}
.blog_index_body_img {
  width: 100%;
  height: 22vh;
  overflow: hidden;
}
.blog_index_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog_index_body:hover .blog_index_img {
  transform: scale(1.06);
}
.blog_index_date_block {
  padding: 6% 6% 8% 6%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog_index_date_block h2 {
  font-size: 22px;
  line-height: 1.4em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_index_date_block p:nth-of-type(1) {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b6b;
  margin-bottom: 8px;
}
.blog_index_date_block p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.5em;
  flex: 1;
}
.blog_readmor_link {
  margin-top: 12px;
  display: inline-block;
  color: #009f9c;
  font-weight: 600;
  text-decoration: none;
}
.blog_readmor_link:hover {
  color: #009f9c;
  text-decoration: underline;
}

/* --- responsive --- */
@media (max-width: 1200px) {
  .free_learing_resources_list_data {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 1024px) {
  .card_container {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_index_list_show {
    grid-template-columns: repeat(2, 1fr);
  }
  .free_learing_resources_list {
    padding: 48px 32px;
  }
}

@media (max-width: 768px) {
  .card_container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card_body {
    min-height: auto;
    padding: 4% 0%;
  }
  .blog_index_list_show {
    grid-template-columns: 1fr;
    width: 85%;
  }
  .product_desc {
    flex-direction: column-reverse;
  }
  .current_project_list_item {
    flex-direction: column;
    gap: 1em;
    padding: 6% 5%;
    border-radius: 16px;
  }
  .active_color {
    flex-direction: column-reverse;
  }
  .current_project_list_img {
    height: 28vh;
  }
  .current_project_list_desc {
    width: 100%;
    padding: 0%;
  }
  .current_project_list_title::before {
    font-size: 2.4em;
  }
  .description_section .desc_column {
    width: 100%;
    text-align: left;
  }
  .free_learing_resources_list {
    padding: 40px 24px;
  }
  .free_learing_resources_list_data {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    width: 100%;
    margin-top: 28px;
  }
  .free_learing_resources_box {
    min-height: auto;
    padding: 24px 16px;
  }
  #trainning_technology,
  .trainning_technology {
    padding: 8% 0%;
  }
}

@media (max-width: 480px) {
  .free_learing_resources_list {
    padding: 32px 16px;
  }
  .free_learing_resources_list_data {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}