:root {
  /* Frame */
  --home-bg: #f8fafc;
  --max-w: 1440px;

  /* Welcome */
  --welcome-pad-y: 140px;
  --welcome-pad-x: 113px;
  --color-text: #000000;
  --font-title: "Poppins", sans-serif;
  --fs-hero: 52px;
  --fw-hero: 600;
  --font-desc: "Inter", sans-serif;
  --fs-desc: 16px;
  --welcome-actions-gap: 50px;
  --btn-secondary-bg: #f59e0b;
  --btn-secondary-radius: 10px;
  --btn-secondary-pad: 12px;
  --font-btn: "Roboto", sans-serif;
  --fs-btn: 18px;
  --fw-btn: 700;
  --btn-outline-color: rgb(13, 110, 253);
  --btn-outline-weight: 3px;
  --btn-outline-radius: 25px;

  /* Nav */
  --nav-h: 71px;
  --nav-bg: #ffffff;
  --nav-link-active: #0d6efd;
  --nav-contact-bg: #EA580C;
  --logo-blue: #246bb1;

  /* Products block */
  --products-pad-y: 60px;
  --products-pad-x: 130px;
  --products-gap: 60px;
  --products-title-fs: 40px;
  --products-title-fw: 600;

  /* Carousel card */
  --card-radius: 6px;
  --card-stroke: rgba(0, 0, 0, 0.2);
  --card-text-bg: #eaecec;
  --card-text-bg-feature: #f5f5f5;
  --carousel-h: 450px;

  /* Stats */
  --stats-bg: rgb(53, 179, 255);
  --stats-gap: 120px;
  --stats-pad-x: 112.5px;
  --stats-value-fs: 70px;
  --stats-value-fw: 800;
  --stats-label-fs: 24px;

  /* Expertise block */
  --expertise-pad-y: 44px;
  --expertise-pad-x: 112.5px;
  --expertise-block-gap: 40px;
  --expertise-inner-gap: 10px;
  --expertise-dim: rgba(0, 0, 0, 0.9);
  --expertise-overlay: rgba(0, 0, 0, 0.5);
  --font-expertise: "Times New Roman", Times, serif;

  /* Why */
  --why-pad-x: 113px;
  --why-gap-section: 29px;
  --why-title-fs: 48px;
  --why-title-fw: 300;
  --why-cols-gap: 98px;
  --why-col-inner-gap: 20px;
  --why-h-fs: 24px;
  --why-h-fw: 700;
  --why-p-fs: 16px;
  --why-foot-fs: 24px;
  --why-foot-fw: 300;

  /* Footer */
  --footer-bg: rgb(15, 23, 42);
  --footer-heading: #ffffff;
  --footer-link: #cbd5e1;
  --footer-muted: #9ca3af;
  --footer-legal: #64748b;
  --font-footer-h: "Roboto", sans-serif;
  --font-legal: "Roboto Mono", monospace;

  /* Vertical brand */
  --brand-fs: 90px;
  --brand-fw: bolder;


  --page-bg: #f8fafc;
  --page-bg-rgb: 248, 250, 252;
  --nav-active: #0d6efd;
  --nav-contact: #ea580c;
  --hero-scrim: rgba(0, 0, 0, 0.55);
  --btn-amber: #f59e0b;
  --btn-radius: 8px;
  --section-pad-x: 112.5px;
  --section-gap: 74px;
  --card-add-bg: #e1dfec;
  --process-bg: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  background: var(--home-bg);
  color: var(--color-text);
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 2000;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}


/* --------------------Vertical brand-------------------- */
.vertical-brand {
  position: fixed;
  /* right: -360px; */
  right: -20%;
  top: 52%;
  z-index: 900;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: "Roboto", sans-serif;
  font-weight: var(--brand-fw);
  font-size: clamp(2rem, 4.2vw, var(--brand-fs));
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

@media (max-width: 1440px) {
  .vertical-brand {
    display: none;
  }
}


/* --------------------Navbar-------------------- */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: var(--nav-bg);
  min-height: var(--nav-h);
  box-shadow: 0 3px 6px -2px rgba(0,0,0,0.2);
}

.navbar {
  width: 100%;
  max-width: 1280px;
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  background: var(--nav-bg);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.navbar-logo img {
  width: 77px;
  height: 46px;
}

.navbar-logo-text {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(32px, 2.5vw, 2rem);
  color: var(--logo-blue);
  letter-spacing: 0.02em;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navbar-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: #000;
  border-radius: 1px;
}

.navbar-panel {
  display: flex;
  align-items: center;
  gap: 69px;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-link {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 6px;
  color: #000;
  text-decoration: none;
  margin: 0;
}

.navbar-link:hover {
  color: #0d6efd;
}

.navbar-link-active {
  color: var(--nav-link-active);
}

.dropdown {
  position: relative;
  list-style: none;
  padding: 8px 0;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 19px;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 146%;
  left: 50%;
  width: 304px;
  padding: 22px;
  display: flex;
  gap: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0, 0, 0, 0.103);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0px) scale(1);
  transition: opacity 0.1s ease,
              visibility 0.1s,
              transform 0.1s cubic-beizer(0.22, 1, 0.36, 1);
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px) scale(1);
}

.column a {
  padding: 6px 0;
  color: #00000098;
  text-decoration: none;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.column a:hover {
  color: #0d6efd;
}

.btn-wrapper {
  display: inline-block;
  background: #000;
  border-radius: 11px;
  width: 82px;
  height: 34px;
}

.navbar-link-contact {
  color: #fff;
  border-radius: 10px;
  background: var(--nav-contact-bg);
  border: 3px solid black;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 9px;
  text-decoration: none;
  margin: 0;
  position: relative;
  top: 5px;
}

.navbar-link-contact:hover {
  color: #000000;
  filter: brightness(1.05);
}

.navbar-link-contact-active {
  color: #000000;
  filter: brightness(1.05);
}

.nav-accordion-item {
  display: none;
}

/* Small Screen */
@media (max-width: 768px) {

  .navbar-bar {
    position: relative;
    padding: 0 15px;
    /* background-color: pink; */
  }

  .navbar-logo-text {
    margin: 0;
    font-family: "Rockwell Extra Bold", "Rockwell", serif;
    font-weight: bold;
    line-height: 1;
    color: var(--logo-blue);
    letter-spacing: 0.02em;
  }

  .navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
  }

  .navbar-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
    /* background-color: pink; */
  }

  .navbar-panel.active {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    gap: 4px;
    /* background-color: blue; */
  }

  .navbar-link {
    font-size: 14px; 
    padding: 4px 0;
    /* background-color: red; */
  }

  .dropdown {
    display: none;
  }

  .nav-accordion-item {
    /* align-items: stretch; */

    /* width: 330px; */
    display: block;
    margin-top: 8px;
    /* background-color: blue; */
  }

  .nav-accordion-content {
    max-height: 0;
    padding: 8px 4px 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-accordion-item.active .nav-accordion-content {
    max-height: 500px;
    padding: 8px 4px 0;
    /* background-color: red; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

   .nav-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .nav-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    /* background-color: blue; */
  }

  .nav-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: red; */
  }

  .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-list li {
   margin-bottom: 10px;
   /* background-color: red; */
  }

  .nav-list a {
    color: black;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }

  .nav-list a:hover {
    text-decoration: underline;
  }
}


/* --------------------Welcome-------------------- */
.welcome {
  margin: 0 auto;
  padding: var(--welcome-pad-y) var(--welcome-pad-x);
  background: #C7E7FD;
}

.welcome-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.welcome-copy {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  /* background-color: red; */
}

.welcome-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 4.2vw, var(--fs-hero));
  font-weight: var(--fw-hero);
  line-height: 1.15;
  color: var(--color-text);
}

.welcome-desc {
  margin: 0;
  max-width: 492px;
  font-family: var(--font-desc);
  font-size: var(--fs-desc);
  font-weight: 400;
  line-height: 1.5;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--welcome-actions-gap);
}

.welcome-media {
  max-width: 520px;
}

.welcome-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 350;
  object-fit: cover;
  border-radius: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: var(--btn-secondary-pad);
  font-family: var(--font-btn);
  font-size: var(--fs-btn);
  font-weight: var(--fw-btn);
  line-height: 24px;
  text-decoration: none;
  border-radius: var(--btn-secondary-radius);
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--color-text);
  border-radius: var(--btn-secondary-radius);
}

.btn-primary-outline {
  background: transparent;
  color: var(--color-text);
  border: var(--btn-outline-weight) solid var(--btn-outline-color);
  border-radius: var(--btn-outline-radius);
}

/* Small Screen */
@media (max-width: 768px) {

  .welcome {
    padding: 10px 10px;
    /* background-color: pink; */
  }

  .welcome-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    /* background-color: red; */
    padding: 0;
    margin: 0;
  }

  .welcome-copy {
    flex: 0 1 260px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background-color: red; */
    margin: 0;
    padding-bottom: 0;
  }

  .welcome-title {
    margin: 0;
    font-family: var(--font-title);
    font-size: 29px;
    font-weight: var(--fw-hero);
    line-height: 1.15;
    color: var(--color-text);
  }

  .welcome-desc {
    margin: 0;
    max-width: 492px;
    font-family: var(--font-desc);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }

  .welcome-actions {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .welcome-media {
    max-width: 100%;
  }

  .welcome-img {
    aspect-ratio: 520 / 300;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 40px;
    padding: var(--btn-secondary-pad);
    font-family: var(--font-btn);
    font-size: 15px;
    font-weight: var(--fw-btn);
    line-height: 24px;
    text-decoration: none;
    border-radius: var(--btn-secondary-radius);
    border: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--color-text);
    border-radius: var(--btn-secondary-radius);
  }

  .btn-primary-outline {
    background: transparent;
    color: var(--color-text);
    border: var(--btn-outline-weight) solid var(--btn-outline-color);
    border-radius: var(--btn-outline-radius);
  }
}


/* --------------------Products Carousel-------------------- */
.block-products {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--products-pad-y) var(--products-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--products-gap); 
}

.product-title-latest {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, var(--products-title-fs));
  font-weight: var(--products-title-fw);
  line-height: 1.2;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1354px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--card-radius);
  min-height: var(--carousel-h);
}

.carousel-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #ffffff1a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 18l-6-6 6-6' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-arrow-prev {
  left: 8px;
}

.carousel-arrow-next {
  right: 8px;
  transform: scaleX(-1);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 70px;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b2b2b2;
  cursor: pointer;
}

.carousel-dot[aria-selected="true"] {
  background: #000;
}

.product-card {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: var(--carousel-h);
  border-radius: var(--card-radius);
  border: 1px solid var(--card-stroke);
  overflow: hidden;
  background: #fff;
}

.product-card-text {
  position: relative;
  flex: 1 1 52%;
  max-width: 728px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 76px 57px;
  background: var(--card-text-bg);
}

.product-card-text ul {
  padding-left: 16px;
}

.product-card-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  background-color: #ececec;
  padding: 4px 8px;
  border-radius: 4px 0 ;
}

.product-card-name {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-family: "Poppins", sans-serif;
}

.product-card-line {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.product-card-image-wrap {
  position: relative;
  flex: 0 0 48%;
  max-width: 486px;
  display: flex;
  align-items: stretch;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Small Screen */
@media (max-width: 768px) {

  .block-products {
    padding: 30px 8px;
    gap: 30px;
  }
  
  .product-title-latest {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(22px, 3.5vw, var(--products-title-fs));
    font-weight: var(--products-title-fw);
    line-height: 1.2;
  }

  .product-card {
    flex-direction: column-reverse;
  }

  .product-card-text {
    max-width: none;
    padding: 10px 6px;
    gap: 12px;
  }

  .product-card-name {
    font-size: 14px;
  }

  .product-card-line {
    font-size: 20px;
  }

  .product-card-text ul li {
    font-size: 14px;
  }

  .product-card-image-wrap {
    max-width: none;
    flex: 0 0 auto;
    min-height: 240px;
  }

  .carousel-arrow {
    top :40%;
  }

  .carousel-arrow-prev {
    left: 2%;
  }

  .carousel-arrow-next {
    right: 2%;
    transform: scaleX(-1);
  }
}


/* --------------------Stats-------------------- */
.stats-bar {
  margin: 0 auto;
  background: var(--stats-bg);
  color: #fff;
}

.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: var(--stats-gap);
  padding: 36px var(--stats-pad-x) 40px;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 162px;
  /* border:1px solid black; */
}

.stats-bar-value {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(40px, 8vw, var(--stats-value-fs));
  font-weight: var(--stats-value-fw);
  line-height: 1;
}

.stats-bar-label {
  margin: 0;
  font-size: clamp(18px, 2.5vw, var(--stats-label-fs));
  font-weight: 400;
  line-height: 1;
}

/* Small Screen */
@media (max-width: 768px) {

  .stats-bar-inner {
    flex-wrap: wrap;
    gap: 70px;
    padding: 40px;
    /* border:1px solid black; */
  }

  .stats-bar-item {
    gap: 8px;
    min-width: 102px;
    /* border:1px solid black; */
  }
}


/* --------------------Expertise-------------------- */
.block-products-expertise {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--products-pad-y) var(--products-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--products-gap);
  padding: var(--expertise-pad-y) var(--expertise-pad-x);
  gap: var(--expertise-block-gap);
}

.product-title-expertise {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, var(--products-title-fs));
  font-weight: var(--products-title-fw);
  line-height: 1.2;
}

.expertise {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
}

.expertise-bg {
  position: absolute;
  inset: 0;
}

.expertise-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertise-dim {
  position: absolute;
  inset: 0;
  background: var(--expertise-dim);
  opacity: 0.9;
}

.expertise-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  min-height: 560px;
}

.expertise-grid {
  flex: 1 1 calc(50% - 25px);
  max-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  margin: auto;
  padding: 0;
  /* background: red; */
}

.expertise-tile {
  width: 270px;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 12px 20px;
  gap: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-tile1 {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.expertise-tile2 {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.expertise-tile3 {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.expertise-tile4 {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}

.expertise-tile.active {
  background: #fff;
  border: 2px solid #007bff;
}

.expertise-tile-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

.expertise-tile-title {
  margin: 0;
  font-family: var(--font-expertise);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
}

.expertise-panel {
  flex: 1 1 calc(50% - 25px);
  max-width: 560px;
  position: relative;
  min-height: 280px;
}

.expertise-panel-photo {
  position: absolute;
  width: 100%;
  height: 100%;
}

.expertise-panel-copy {
  position: absolute;
  background: var(--expertise-overlay);
  color: #fff;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#expertise-card3 .expertise-panel-copy {
  padding-bottom: 121px;

}

.expertise-panel-head {
  margin: 0;
  font-family: var(--font-expertise);
  font-size: 31px;
  font-weight: 700;
  line-height: 51px;
}

.expertise-panel-lead {
  margin: 0;
  font-family: var(--font-expertise);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  white-space: pre-wrap;
}

.expertise-panel-list {
  margin: 0;
  font-family: var(--font-expertise);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  white-space: pre-line;
  padding: 20px;
}

.block-products-cta {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 2px solid #000;
  border-radius: 8px;
  min-height: auto;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
}

/* Small Screen */
@media (max-width: 768px) {

  .block-products-expertise {
    padding: 40px 20px 20px;
    /* background-color: pink; */
    gap: 20px;
  }

  .product-title-expertise {
    font-size: clamp(22px, 3.5vw, var(--products-title-fs));
  }

  .expertise {
    width: 340px;
    margin: 0;
  }

  .expertise-content {
    flex-direction: column;
  }

  .expertise-tile {
    width: 170px;
    height: 170px;
    padding: 16px 2px;
    gap: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .expertise-tile-img {
    width: 40px;
    height: 40px;
  }

  .expertise-tile-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
  }

  .expertise-panel {
    min-height: 340px;
  }

  .expertise-panel-photo {
    width: 340px;
    height: 340px;
  }

  .expertise-panel-copy {
    color: #fff;
    padding: 8px 8px;
    gap: 14px;
  }

  .expertise-panel-head {
    font-size: 23px;
    font-weight: 700;
    line-height: 26px;
  }

  .expertise-panel-lead {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
  }

  .expertise-panel-list {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    padding: 12px;
  }

  .btn-outline-dark {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
  }
}


/* --------------------Why us-------------------- */
.why {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--why-gap-section);
  /* background-color:pink; */
}

.why-title {
  margin: 0;
  max-width: 244px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(32px, 5vw, var(--why-title-fs));
  font-weight: var(--why-title-fw);
  line-height: 36px;
  text-align: center;
  /* background-color: red; */
}

.why-grid {
  width: 100%;
  max-width: 1214px;
  display: flex;
  gap: var(--why-cols-gap);
  /* background-color: red; */
}

.why-col {
  width: 260px;
  height: 230px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--why-col-inner-gap);
  background-color: #addff13a;
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.25),
    -1px -1px 4px rgba(0, 0, 0, 0.25);
}

.why-h {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: var(--why-h-fs);
  font-weight: var(--why-h-fw);
  line-height: 1.2;
}

.why-p {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: var(--why-p-fs);
  font-weight: 400;
  line-height: 1.45;
  color: #000;
  text-align: center;
  width: 212px;
  height: 86px;
  /* background-color: red; */
}

.why-footnote {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2.5vw, var(--why-foot-fs));
  font-weight: var(--why-foot-fw);
  text-align: center;
}

/* Small Screen */
@media (max-width: 768px) {

  .why {
    padding: 20px 16px 40px;
  }

  .why-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* background-color: red; */
  }

  .why-col {
    width: 200px;
    height: 170px;
    padding: 10px 12px;
    gap: 8px;
  }

  .why-end {
    align-self: flex-end;
  }

  .why-h {
    font-size: 18px;
    text-align: center;
  }

  .why-p {
    font-size: 14px;
    width: 190px;
    height: 60px;
    /* background-color: red; */
  }
}


/* --------------------Footer------------------------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-link);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-row {
  display: flex;
  flex-direction: row;
  padding: 50px 80px 0;
  gap: 200px;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  /* background-color:red; */
}

#footer-services {
  width: 280px;
} 

.footer-col-contact {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap:0;
  max-width: 420px;
}

.footer-nav-links {
  display: flex;
  gap: 50px;
}

.footer-accordion-header {
  display: none;
}

.footer-h {
  margin: 0 0 12px;
  font-family: var(--font-footer-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--footer-heading);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
  /* background-color:red; */
}

.footer-list a {
  color: var(--footer-link);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-list-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
  line-height: 1.45;
  /* background-color:red; */
}

.footer-list-contact p {
  margin:0;
}

.footer-list-contact a {
  color: var(--footer-muted);
}

.sm-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 12px;
}

.footer-rule {
  width: 500px;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin: 0;
}

.footer-legal {
  margin-bottom: 5px;
  font-family: var(--font-legal);
  font-size: 12px;
  font-weight: 400;
  color: var(--footer-legal);
  text-align: center;
}

.footer-brand {
  display: flex;
  gap: 7px;
  text-decoration: none;
}

.footer-brand img {
  width: 67px;
  height: 40px;  
}

.footer-brand-mark {
  margin: 0;
  font-family: "Rockwell Extra Bold", "Rockwell", serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* Small Screen */
@media (max-width: 768px) {

  .footer {
    padding: 8px 8px 0;
  }

  .footer-inner {
    padding: 0;
    gap: 8px;
    /* background-color: pink; */
  }

  .footer-row {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    /* background-color: red; */
  }

  .footer-logo {
    display: none;
  }

  .footer-nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col {
    width: 100%;
  }

  .footer-accordion-item {
    width: 340px;
    /* background-color: blue; */
  }

  .footer-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* background-color: blue; */
  }

  .accordion-icon {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.3s ease;
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 4px 12px 0;
    transition: max-height 0.35s ease;
  }

  .footer-accordion-item.active .footer-accordion-content {
    max-height: 500px;
    padding: 4px 12px 0;
    /* background-color: red; */
  }

  .footer-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }

  .footer-col .footer-h {
    display: none;
  }

  .footer-rule {
    width: 60%;
  }

  .footer-legal {
    text-align: center;
    margin-top: 0;
    font-size: 11px;
  }
}


@media (prefers-reduced-motion: reduce) {
  
  html {
    scroll-behavior: auto;
  }

  .carousel-track {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}