/* heading font family */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

/* body font family */
@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");

:root {
  --primary-color: #00ffff; /* Cyan */
  --secondary-color: #000000; /* Black */
  --text-color: #e5e5e5;
  --secondary-text-color: #18181b;
  --secondary-bg-color: #161616;
  --text-secondary-color: #999b9f;
}

.bg-cyan {
  background-color: var(--primary-color);
}

.bg-black {
  background-color: var(--secondary-color);
}
.text-cyan {
  color: var(--primary-color);
}
.secondary-text-color {
  color: var(--secondary-text-color);
}
.secondary-bg-color {
  background-color: var(--secondary-bg-color);
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Funnel Display", sans-serif;
  margin: 0px;
}

p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.2em;
}

h1 {
  font-size: clamp(40px, 6vw, 95px);
  line-height: 1em;
}

h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1em;
}

h3 {
  font-size: clamp(28px, 4vw, 55px);
  line-height: 1em;
}

.navbar-dark .navbar-toggler {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}
button.navbar-toggler:active,
button.navbar-toggler:focus {
  outline: 0;
  box-shadow: inherit;
}
.navbar-dark .navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(19%)
    hue-rotate(157deg) brightness(98%) contrast(104%);
}
nav.navbar.navbar-expand-lg.navbar-dark {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 5px;
}
nav.navbar ul.navbar-nav li a {
  font-size: 18px;
  font-family: "Funnel Display", sans-serif;
  font-weight: 600;
  padding: 0px 15px 0px 15px !important;
}
.hero-section {
  position: relative;
  padding: 0px 0 50px 0;
  height: 90vh;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000047;
  position: absolute;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  }
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay for text readability */
  }
.hero-section .container {
  position: relative;
  z-index: 1;
  padding: 150px 0 80px 0;
}
.hero-section p {
  color: var(--text-color);
  font-size: clamp(16px, 3vw, 30px);
}
.get-touch ul {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  gap: 20px;
}
.get-touch ul li {
  list-style: none;
}
.get-touch ul li.get-touch-btn a.button {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  overflow: hidden;
  text-decoration: none;
  padding: 2px;
}
.button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--primary-color);
  padding: 8px 30px;
  overflow: hidden;
}
.button__text {
  position: relative;
  z-index: 2;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}
.get-touch-btn a.button:hover .button__text {
  color: var(--secondary-color);
}
.button__spotlight {
  position: absolute;
  z-index: 1;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), #00ffffa1);
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  opacity: 1;
}
.get-touch ul li.phone-no a {
  color: var(--text-color);
  font-weight: 600;
}
.creative-sect .item img {
  width: 25px;
  height: 25px;
}
.creative-sect {
  position: relative;
}
.creative-sect .marquee-item h4 {
  font-size: clamp(18px, 4vw, 32px);
  text-transform: uppercase;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 1.04px;
}
.creative-sect .marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 30px 0 30px;
}
.creative-sect .marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee 15s linear infinite;
}
.creative-sect .marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.counter-sect {
  display: flex;
  justify-content: start;
  gap: 80px;
  margin: 30px 0 0 10px;
}
.counter-sect .counter-box h3 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
}
.streamlined {
  background: url(../images/09876.png);
  background-repeat: no-repeat;
  background-size: 85%;
  background-position: center;
  padding: 80px 0 80px 0;
}
.streamlined img {
  width: 100%;
}
.bold-ideas p {
  font-size: 25px;
}
.client-review {
  border: 1px solid var(--primary-color);
  display: inline-block;
  border-radius: 100px;
  padding: 13px 40px 13px 40px;
  position: relative;
}
.bold-ideas {
  padding: 70px 0 70px 0;
}
.client-review p {
  font-size: 13px;
  margin: 0px;
  line-height: 1.3em;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.client-review p::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 100px;
  position: absolute;
  left: 20px;
  top: 18px;
}
.client-review p::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 100px;
  position: absolute;
  right: 20px;
  top: 18px;
}
.happy-customer h4 {
  font-size: clamp(25px, 4vw, 45px);
  font-weight: 700;
}
.happy-customer h5 {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 400;
}
.review-on {
  margin: 50px 0 0 0;
}
.happy-customer p.customer-text {
  line-height: 1.8em;
  font-size: 15px;
  padding: 0px 30px 0px 0px;
}
.case-carousel h2 {
  font-size: clamp(2.5rem, 6vw, 160px);
  font-weight: 700;
  line-height: 1em;
}
.case-carousel .item p {
  font-size: clamp(18px, 3vw, 25px);
  padding: 0px 120px 0px 120px;
  margin: 10px 0px 10px 0px;
}
.case-btn ul {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0 0;
}
.case-btn ul li:first-child {
  border: 1px solid var(--primary-color);
  padding: 8px 35px 10px 35px;
  border-radius: 100px;
  transition: 800ms;
  overflow: hidden;
  position: relative;
}
.case-btn ul li:first-child:hover {
  color: var(--secondary-color);
}
.case-btn ul li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: left 0.5s ease;
}
.case-btn ul li:first-child:hover::before {
  left: 0;
}
.case-btn ul li:first-child a,
.case-btn ul li:last-child a {
  font-size: 15px;
  line-height: 1em;
  color: #000;
  font-weight: 600;
  transition: 800ms;
}
.case-btn ul li:last-child {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  padding: 8px 35px 10px 35px;
  border-radius: 100px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
}
.case-btn ul li:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: left 0.5s ease;
}
.case-btn ul li:last-child:hover {
  color: var(--primary-color);
}
.case-btn ul li:last-child:hover::before {
  right: 0;
}
.case-carousel {
  position: relative;
}
.case-carousel .owl-nav {
  position: absolute;
  top: -20px;
  right: 0px;
}
.case-carousel .owl-nav button.owl-next i,
.case-carousel .owl-nav button.owl-prev i {
  font-size: 13px;
  padding-bottom: 7px;
}
.case-carousel .owl-nav button.owl-prev {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  margin-right: 10px;
}
.case-carousel .owl-nav button.owl-next {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  margin-right: 10px;
  color: var(--text-color);
}
.trust-pilot {
  margin: 20px 0 0 0;
  display: flex;
  justify-content: start;
  gap: 20px;
}
.testimonial-carousel .testimonial-figure img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.testimonial-figure {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.happy-customer {
  padding: 80px 0 80px 0;
}
.testimonial-carousel p.text-black {
  font-size: 18px;
  line-height: 1.8em;
  margin: 30px 0px 30px 0px;
  padding: 0px 120px 0px 0px;
}
.testimonial-carousel .item h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}
.testimonial-carousel .item p.field-label {
  font-size: 14px;
  color: var(--primary-color);
}
.testimonial-carousel {
  position: relative;
}
.testimonial-carousel .owl-nav button.owl-prev {
  position: absolute;
  right: 0px;
  bottom: 180px;
  color: #000;
}
.testimonial-carousel .owl-nav button.owl-prev i {
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  padding: 5px;
  color: #000;
  font-size: 13px;
  line-height: 1.3em;
}
.testimonial-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 0px;
  bottom: 100px;
  color: var(--secondary-color);
}
.awards-wrap .text-black {
  font-weight: 600;
}
.testimonial-carousel .owl-nav button.owl-next i {
  border: 1px solid var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  padding: 5px;
  color: var(--secondary-color);
  font-size: 13px;
  line-height: 1.3em;
}
.happy-customer p.accolades-text {
  font-size: 15px;
  margin: 0px;
  line-height: 1.8em;
}
.award-winning-sect {
  padding: 50px 0 0 0;
}
.awards-row {
  border-bottom: 1px solid #9e9e9e;
  padding: 18px 0;
  align-items: center;
}
.awards-head {
  font-weight: 600;
  color: var(--primary-color);
  padding-bottom: 20px;
  border-bottom: 1px solid #9e9e9e;
  font-size: 18px;
  letter-spacing: 1px;
}
.company-cell {
  position: relative;
  min-height: 28px;
  cursor: pointer;
  overflow: visible;
}
.company-name {
  transition: opacity 0.18s ease;
  display: inline-block;
  vertical-align: middle;
}
.company-logo {
  position: absolute;
  left: -250px;
  top: 50%;
  transform: translateY(-50%) translateX(8px) scale(0.98);
  max-height: 80px;
  max-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
  background: rgba(0, 0, 0, 0.45);
  padding: 6px;
  border-radius: 6px;
}
.company-cell.hovered .company-logo {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}
.company-cell.hovered .company-name {
  opacity: 0.25;
}
.tabs-section {
  display: flex;
  align-items: stretch;
}
.tab-buttons .nav-link {
  color: var(--secondary-color);
  border: 0;
  padding: 25px 20px;
  border-radius: 0;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 25px;
  font-family: "Funnel Display";
}
.tab-buttons .nav-link.active {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 13px;
}
.tab-buttons {
  position: relative;
}
.tab-buttons::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #1a1919;
}
.progress-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 78px;
  background: var(--primary-color);
  transition: top 0.3s ease-out;
}
.tab-content-box {
  background: #111;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}
.tab-content-box h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 26px;
}
.tab-content-box p,
.tab-content-box li {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  list-style: inherit;
}
.cta-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  background: #282828;
  color: var(--text-color);
  border: 1px solid #282828;
  padding: 5px 30px 5px 5px;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 15px;
  line-height: 1.2em;
  font-family: "Funnel Display", sans-serif;
}
.cta-btn i {
  background: var(--primary-color);
  color: #000;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  text-align: center;
  padding-top: 10px;
  font-size: 15px;
  margin-right: 10px;
}
.image-box img {
  width: 100%;
  border-radius: 10px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
/***

====================================================================
16.		Gallery Section
====================================================================

***/

/* .gallery-item .inner-box figure:hover {
  filter: brightness(0) saturate(100%) invert(91%) sepia(100%) saturate(7498%)
    hue-rotate(104deg) brightness(101%) contrast(102%);
} */
/* .gallery-item .inner-box:hover span.icon-text {
  color: var(--primary-color);
} */

.gallery-section {
  position: relative;
  padding: 80px 0 80px;
}

.gallery-section .upper-row {
  position: relative;
}

.gallery-section .upper-row .sec-title {
  position: relative;
  float: left;
}

.gallery-section .upper-row .filters {
  position: relative;
  float: right;
  padding-top: 10px;
}

.gallery-section .more-box {
  position: relative;
  display: block;
  padding-top: 20px;
  text-align: center;
  padding-bottom: 10px;
}

/*=== Mixitup Gallery ===*/
.mixitup-gallery .filters {
  position: relative;
  margin-bottom: 25px;
  margin-top: 50px;
}

.mixitup-gallery .filters .filter-tabs {
  position: relative;
  display: block;
  text-align: center;
}

.mixitup-gallery .filters li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 40px;
  padding: 0px 0px;
  cursor: pointer;
  color: var(--thm-text);
  font-weight: 300;
  margin: 0 0px 10px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: var(--thm-font);
}

.mixitup-gallery .filters li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--primary-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mixitup-gallery .filters.centered li {
  margin: 0px 15px 10px;
}

.mixitup-gallery .filters li sup {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mixitup-gallery .filters .filter.active {
  color: var(--secondary-color);
  font-weight: 400;
  padding-right: 20px;
}

.mixitup-gallery .filters .filter.active sup {
  opacity: 1;
  visibility: visible;
}

.mixitup-gallery .filters li.active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.mixitup-gallery .gallery-item-two {
  display: none;
}

.mix {
  display: none;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
}

.gallery-item .inner-box {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.gallery-item .inner-box .image {
  position: relative;
  border-radius: 7px;
}

.gallery-item .inner-box .image img {
  display: block;
  width: 100%;
  height: auto;
  /*-webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);*/
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 7px;
}

/*.gallery-item .inner-box:hover .image img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}*/

.gallery-item .cap-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--text-color);
  opacity: 0;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gallery-item .inner-box:hover .cap-box {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.gallery-item .cap-box .cap-inner {
  position: relative;
  display: block;
  padding: 25px 35px;
  background: var(--secondary-color);
  border-radius: 7px;
}

.gallery-item a.overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gallery-item .cap-box .cat {
  position: relative;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: var(--thm-font);
}

.gallery-item .cap-box .cat span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 48px;
}

.gallery-item .cap-box .cat span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 38px;
  border-bottom: 2px solid var(--primary-color);
}

.gallery-item .cap-box .title {
  position: relative;
  display: block;
}

.gallery-item .cap-box h5 {
  font-size: 22px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.gallery-item .cap-box h5 a {
  color: var(--text-color);
}

.gallery-item .cap-box h5 a:hover {
  text-decoration: underline;
}

.gallery-block-three {
  background-color: #eff1f4;
  padding-top: 120px;
  padding-bottom: 90px;
}

.gallery-item-three {
  margin-bottom: 30px;
}

.gallery-item-three > img {
  width: 100%;
}

.gallery-item-three {
  position: relative;
  overflow: hidden;
}

.gallery-item-three__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-perspective: 370px;
  perspective: 370px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.gallery-item-three:hover .gallery-item-three__content {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.gallery-item-three__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0.9;
}

.gallery-item-three__content p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

.gallery-item-three__content h3 {
  margin: 0;
  color: var(--text-color);
  font-size: 34px;
  line-height: 36px;
  font-weight: 800;
  position: relative;
}
.tech img {
  width: 40% !important;
  margin: 0 auto;
}
span.icon-text {
  text-align: center;
  margin: 0 auto;
  color: var(--secondary-text-color) !important;
  font-weight: 700;
  font-size: 18px;
  display: block;
}
.gallery-item-three__content h3 a {
  color: inherit;
}
.gallery-section .sec-title h2 {
  font-size: clamp(24px, 5vw, 44px);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.copy-right {
  padding: 20px 0 20px 0;
}
.copy-right p {
  color: var(--text-secondary-color);
  font-size: 15px;
  margin: 0px;
}
.copy-right p span {
  font-size: 15px;
}
.get-quote {
  position: relative;
  z-index: 1;
}
.quote-btn a {
  background: #0b0c0d;
  color: #fff;
  padding: 12px 30px;
  font-family: "Funnel Display", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2em;
  letter-spacing: 0.5px;
  border: 1px solid #0b0c0d;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}
.quote-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: left 0.5s ease;
}
.quote-btn a:hover {
  color: #0b0c0d;
}
.quote-btn a:hover::before {
  left: 0;
}
.get-quote .container {
  background: var(--primary-color);
  padding: 30px 50px 30px 50px;
  border-radius: 100px;
}
.get-quote h4 {
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2em;
}
.footer {
  background-color: var(--secondary-color);
  padding: 80px 0 40px 0;
  margin: -30px 0 0 0;
}
.footer-nine__widget__title {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 18px;
}
.footer-nine__links__list li a,
.footer-nine__subscribe__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #999b9f;
  transition: all 0.3s ease;
}
.footer-nine__contact__list li a {
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.footer-nine__links__list li a:hover {
  color: #00ffff;
  transition: auto;
}
.footer ul {
  padding: 0px;
}
.footer-nine__links {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  margin-left: -10px;
  padding-left: 52px;
  padding-right: 52px;
  margin-right: -10px;
  padding-top: 140px;
  padding-bottom: 110px;
}
.footer-nine__widget__title {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
}
.footer-nine__contact__list li {
  position: relative;
  color: #fff;
  font-size: 15px;
  padding: 5px 0px 0px 10px;
}
.footer-nine__contact__list li i {
  padding-right: 5px;
}
.footer p.footer-nine__subscribe__text {
  color: #999b9f;
}
.footer-nine__subscribe,
.footer-nine__contact {
  padding-top: 140px;
}
ul.footer-social-links li {
  font-size: 32px;
  margin-right: 12px;
  margin-top: 12px;
}

ul.footer-social-links {
  display: flex;
  justify-content: start;
  align-items: center;
}

ul.footer-social-links li a:hover {
  color: #ffffff !important;
}

/* our product section css */

.our-product .row {
  overflow: visible;
}

/* PROGRESS BAR */
.progress-sidebar {
  width: 30px;
}

.progress-container {
  width: 3px;
  background-color: #2b2b2b;
  height: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0%;
  background: #00ffff;
}

/* CONTENT SECTIONS (SNAP SCROLL) */
.content-section {
  min-height: 50vh;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: center;
}

/* ENABLE SCROLL SNAPPING */
.snap-container {
  scroll-snap-type: y mandatory;
  scroll-padding: 20vh;
}

/* STICKY IMAGE */
.sticky-image {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-image img {
  width: 384px;
  height: 544px;
  object-fit: cover;
  border-radius: 9999px;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

@media (max-width: 768px) {
  .progress-sidebar {
    display: none;
  }

  .sticky-image img {
    width: 260px;
    height: 360px;
  }
}
