/* Header */

@font-face {
    font-family: "brother-xl";
    src: url(../assets/fonts/fonnts.com-Brother_XL_Regular.otf) format("opentype");
    font-display: auto;
    font-style: normal;
    font-stretch: normal;
  } 
  *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
body {
    font-family: "brother-xl", sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
}
:root {
  --primary-color: #293734;
  --white: #ffffff;
  --red: #e61d2f;
  --purple: #332049;
  --light-gray: #707070;
  --theme-footer-background: #1e2124;
  --theme-dark-color: #181a1d;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    padding: 0px 0 16px;
    transition: all 300ms linear;
    color: var(--white);
    z-index: 12;
}

.header svg {
  fill: var(--white);
}

.section-container {
    max-width: 1140px;
    width: calc(100% - 48px);
    margin-inline: auto;
    padding-inline: 15px;
}

.header .top-bar {
  padding-block: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}
.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}
.top-bar span {
  color: var(--white);
}
.top-bar a:hover {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.header .navbar {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.header .getintouch-button {
    display: block;
    width: 168px;
}

.header-sticky {
  padding: 0px 0 16px;
  color: var(--primary-color);
  background-color: var(--primary-color);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
}

.getintouch-button .getintouch-link {
  display: inline-block;
  text-decoration: none;
  padding: 8px 24px;
  background-color: var(--red);
  color: var(--white);
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.getintouch-button .getintouch-link::before {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}
.getintouch-button .getintouch-link:hover::before {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar .btn-call-now {
  display: none;
  text-decoration: none;
}
.navbar .header-logo {
  text-decoration: none;
  display: inline-block;
  width: 150px;
  position: relative;
  left: -70px;
}
.navbar .header-logo img {
  width: 100%;
}
.nav-button {
  background-color: transparent;
  border: none;
  position: relative;
  padding: 0;
  cursor: pointer;
  display: flex;
}
.nav-button .line {
  fill: none;
  stroke: var(--white);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-button .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.nav-button .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.nav-button .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.text-center {
  text-align: center !important;
}
.hidden {
  display: none;
}
.disabled-opacity {
	opacity: 0;
	transition: opacity 0.3s ease;
}
.no-shadow {
	box-shadow: none !important;
}
.navbar-section {
  background-color: var(--primary-color);
  color: var(--white);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: height 0.3s ease;
  z-index: 10;
}

.fade-in {
  animation: fade-in-animation 0.3s ease-out forwards;
}

.fade-out {
  animation: fade-out-animation 0.3s ease-in forwards;
}

@keyframes fade-in-animation {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes fade-out-animation {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}

.navbar-section .navbar-header {
  display: flex;
  padding: 25px 0 16px;
  position: relative;
  justify-content: center;
  align-items: center;
  display: none;
}
.navbar-header .logo-link {
  display: inline-block;
  width: 150px;
}
.navbar-header .logo-link img {
  width: 100%;
}
.navbar-section .navbar-header svg {
  fill: var(--white);
}
.navbar-section .close-nav-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  right: 0;
  position: absolute;
  z-index: 10;
}
.close-nav-btn .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.close-nav-btn .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
  stroke: #ffffff !important;
}
.close-nav-btn .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
  stroke: #ffffff !important;
}
.close-nav-btn .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
  stroke: #ffffff !important;
}
.overlay-navbar {
  position: absolute;
  left: 0;
  top: 125px;
  width: 100%;
  height: 100%;
  transform: translateX(150%);
  transition: all 0.5s ease-in-out;
}
.overlay-navbar.active {
  transform: translateX(0);
  transition: all 0.5s ease-in-out;
}
.overlay-navbar.inner-active {
  transform: translateX(-150%) !important;
  transition: all 0.5s ease-in-out;
}
.navbar-section .nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  height: calc(100% - 104px);
  overflow-y: auto;
  padding-inline: 12px;
  padding-bottom: 20px;
}
.navbar-section .nav-menu::-webkit-scrollbar {
  display: none;
}
.nav-menu .nav-menu-item {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
.nav-menu .nav-menu-item a {
  text-decoration: none;
  transition: all 0.3s;
  color: var(--white);
}
.nav-menu .nav-menu-item a:hover {
  color: var(--light-gray);
}
.nav-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.nav-menu .dropdown-item .dropdown-arrow {
  width: 13px;
  height: 22px;
  transform: rotate(90deg);
}
.nav-menu .dropdown-item .dropdown-arrow img {
  width: 100%;
  transform: rotate(-90deg);
}


/* main banner */
.main-wrapper {
  position: relative;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
}
.main-wrapper .main-banner {
    background-image: url(/assets/images/png/B-3.png);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .main-banner .main-banner-title {
    min-width: 230px;
    position: absolute;
    top: 45%;
    /* top: 170px; */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 2;
  }
  .main-banner .main-banner-title h1 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 5.1px;
  }
  .main-banner .btn-scroll {
    padding-top: 60px;
    text-decoration: none;
  }
  .main-banner .btn-scroll span {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    box-sizing: border-box;
    transform: rotate(-45deg);
    animation: scroll-down-animation 2s infinite;
    z-index: 2;
  }
  
  @keyframes scroll-down-animation {
    0% {
      transform: rotate(-45deg) translate(0, 0);
    }
    20% {
      transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
      transform: rotate(-45deg) translate(0, 0);
    }
  }
  

/* Footer */

.footer .footer-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-block: 32px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.footer-brands .brand-item {
    width: 180px;
    text-align: center;
  
}
.footer-brands .brand-item p {
  margin-top: 12px;
  font-size: 12px !important;
  line-height: 1.5;
  text-align: center;
}
.footer .brands-statement {
  text-align: center;
  padding-bottom: 32px;
}
/* ========================================= */
.footer-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none; /* Firefox */
}

.footer-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

.footer-brands {
  display: flex;
  gap: 25px;
  /* padding: 20px 10px; */

  /* Smooth scrolling + optional snap effect */
  scroll-snap-type: x mandatory;
}

.brand-item {
  scroll-snap-align: start;
  flex: 0 0 auto; /* important (makes it horizontal) */
}

.brand-item img {
  /* height: 70px; */
  object-fit: contain;
  user-select: none;
}

/* ======================================== */

.footer-brands .footer-brands-image {
    display: inline-block;
}
.footer-brands .footer-brands-image img {
    max-width: 120px;
    width: 100%;
}
.our-clients {
  padding-top: 24px;
  padding-bottom: 50px;
  text-align: center;
}
.our-clients h2 {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5.1px;
  padding-bottom: 32px;
}
.our-clients .client-logos-slider {
  --logos-gap: 40px;
  --logos-per-view: 4;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
}
.client-logos-track {
  display: flex;
  align-items: center;
  gap: var(--logos-gap);
  will-change: transform;
}
.client-logos-track.is-animating {
  transition: transform 0.6s ease;
}
.client-logos-track .client-logo-item {
  flex: 0 0 calc((100% - (var(--logos-gap) * (var(--logos-per-view) - 1))) / var(--logos-per-view));
  max-width: calc((100% - (var(--logos-gap) * (var(--logos-per-view) - 1))) / var(--logos-per-view));
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logos-track .client-logo-item img {
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.3s ease;
}
.client-logos-track .client-logo-item img:hover {
  filter: grayscale(0);
}
.footer .footer-main {
    background-color: var(--theme-footer-background);
    padding: 70px 65px;
}
.footer-main .footer-content {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.footer-main .footer-content span {
    display: inline-block;
    margin-right: 20px;
}
.footer-main .footer-content a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    white-space: nowrap;
}
.footer-main .footer-content a:hover {
    color: #ccc;
}

.fade-in-up {
    position: relative;
    animation: fade-in-up 1.25s ease;
}

@keyframes fade-in-up {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bottom-animation{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1.05s all ease;
}
.bottom-animation.active{
    transform: translateY(0);
    opacity: 1;
}

.submit-button {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    background-color: var(--red);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s linear;
    overflow: hidden;
    position: relative;
  }
  .submit-button::before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    /* z-index: -10; */
  }
  .submit-button:hover::before {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  }

@media (max-width: 1023px) {
    .footer-main .footer-content span {
        margin: 0;
        display: block;
    }
    .our-clients .client-logos-slider {
        --logos-gap: 32px;
        --logos-per-view: 4;
    }
}

@media (max-width: 767px) {
    .header .getintouch-button {
        display: none;
    }
    .navbar .btn-call-now {
        display: block;
    }
    .navbar .header-logo {
     position: unset;
    }
  .footer .footer-brands { 
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .our-clients .client-logos-slider {
    --logos-gap: 28px;
    --logos-per-view: 3;
  }
  /* .footer-brands .brand-item {
    width: 31%;
  } */
  .footer-brands .footer-brands-image {
    text-align: center;
  }
  .footer-main .footer-content {
    font-size: 14px;
  }
  .footer .footer-main {
    padding-inline: 32px;
  }
}

@media (max-width: 576px) {
    .section-container {
        width: 100%;
      }
      .header .top-bar {
        font-size: 12px;
      }
      .header .top-bar .top-bar-item {
        gap: 4px;
      }
      .main-wrapper .main-banner {
        height: 60vh;
        min-height: 440px;
      }
      .main-banner .main-banner-title h1 {
        font-size: 16px;
      }
      /* .footer-brands .brand-item {
        width: 45%;
      } */
      .our-clients .client-logos-slider {
        --logos-gap: 32px;
        --logos-per-view: 2;
      }
}

@media (max-width: 480px) {
  .our-clients .client-logos-slider {
    --logos-per-view: 1;
  }
}
