* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Regular.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Black.woff2") format("woff2"),
    url("../fonts/HelveticaNeue-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Helvetica Neue", sans-serif;
}

/* Lato fonts */
.font-1 {
  font-family: "Helvetica Neue", sans-serif;
}
.font-2 {
  font-family: "Helvetica Neue", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", sans-serif;
}

/* Colors */
.bg-grey {
  background-color: #f4f4f4;
}
.bg-main {
  background-color: #ffb535;
}
.text-clr-main {
  color: #ffb535;
}
.text-grey {
  color: #999;
}
.text-grey-2 {
  color: #666666;
}
/* spacing */
.mx-80 {
  margin: 0px 80px 0px 80px;
}
.mt-80 {
  margin-top: 80px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-32 {
  margin-bottom: 32px;
}
.me-40 {
  margin-right: 40px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-100{
  margin-top: 80px;
}
.py-96 {
  padding: 96px 0px 96px 0px;
}
.p-64 {
  padding: 64px;
}
.p-56 {
  padding: 56px;
}
.p-32 {
  padding: 32px;
}
.pr-8 {
  padding-right: 8.33333%;
}
.pl-8 {
  padding-left: 8.33333%;
}
.gap-40 {
  gap: 40px;
}
.gap-32 {
  gap: 32px;
}

/* Example CSS for avatar class */
.avatar {
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Ensure it's a square */
  border-radius: 50%; /* Makes it fully rounded */
  object-fit: cover; /* Ensures the image fits within the bounds */
}

/* buttons */
.btn-1 {
  background-color: #ffb535 !important;
  color: #000 !important;
  border: 0px !important;
}
.btn-1:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.btn-2 {
  background-color: #000 !important;
  color: #fff !important;
}
.btn-2:hover {
  background-color: #ffb535 !important;
  color: #000 !important;
}
.btn-3 {
  background-color: white !important;
  color: black !important;
}

/* headings */
.text-xs {
  font-size: 0.625rem;
}
.text-xl {
  font-size: 1.375rem;
}
.text-3xl {
  font-size: 2.188rem;
}
.text-4xl {
  font-size: 2.813rem;
}
.text-5xl {
  font-size: 3.438rem;
}
.text-6xl {
  font-size: 4.063rem;
}
.text-7xl {
  font-size: 4.688rem;
}

/* header Slide transitions */
.header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 50;
}
.slideUp {
  -webkit-transform: translateY(-135px);
  transform: translateY(-135px);
  transition: transform 0.5s ease-out;
}

.slideDown {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.header-toggle-style {
  height: 100vh;
  background-color: #ffb535;
  font-size: 1.875rem;
  font-weight: 700;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.collapse-toggle-style {
  padding-top: 70px;
}

.nav-icon-close {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .nav-icon-close {
  display: block;
}
.navbar-toggler[aria-expanded="true"] .nav-icon-toggler {
  display: none;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
}

.phone-mockup-container {
  position: relative;
  max-width: 80%;
}


.background-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #f3f4f8, #e8eaf0);
  padding: 30px 0 50px 0;
  background-repeat: repeat-x;
  background-size: 100%;
}

/* Adding the shadow effect at the bottom */
.phone-mockup-container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 100%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
  transform: translateX(-50%);
  filter: blur(8px);
}

.phone-mockup {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  /* z-index: 20; */
}

.phone-video {
  position: absolute;
  top: 2.5%;
  left: 1.5%;
  width: 97%;
  height: 71%;
  object-fit: cover;
  border-radius: 0px;
  background-color: #fff;
  border-radius: 8px;
}

.cta-div {
  margin-bottom: -9rem;
  position: relative;
  z-index: 10;
}
.cta-div-p--left {
  padding: 106px 64px 56px 64px;
}
.cta-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cta-div-img--right {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-input {
  background-color: #333333;
  color: #969696 !important;
  border: 0px;
  width: 300px;
}
.footer-input::placeholder {
  color: #969696 !important;
}
.footer-bg{
  background-image: url(../images/background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header-bg{
  background-image: url(../images/header-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact-arrow-icon {
  position: absolute;
  right: -20px;
  top: -25px;
}
.form-check-input:checked {
  background-color: #ffb535 !important;
  border: 0;
}
.form-check-input:focus,
.label::after,
label.form-check-label:focus,
.form-check-input::after,
.form-check-input:not(:disabled):not(.disabled):active:focus {
  color: black;
  outline: 0;
  border: 0;
  box-shadow: 0 0 0 0.1rem #ffb535 !important;
}

.contact-form-icon {
  position: absolute;
  top: 34%;
  left: 23px;
}
.contact-textarea-icon {
  position: absolute;
  top: 19%;
  left: 23px;
}
.hero-overlap {
  margin-bottom: -7rem;
  position: relative;
  z-index: 10;
}
.pt-overlap {
  padding-top: 130px;
}
/* Hover effects */

.hover-prev-btn,
.hover-next-btn {
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
  width: 44px;
}

.hover-main-btn {
  transition: margin-left 0.4s ease, margin-right 0.4s ease;
}

/* Initial state */
.hover-prev-btn {
  transform: scale(0);
  opacity: 0;
  width: 0;
}

.hover-next-btn {
  transform: scale(0);
  opacity: 0;
  width: 0px;
}

.hover-main-btn button {
  height: 44px;
}

.slider-next-btn-black {
  background-color: #000 !important;
  fill: white;
  height: 56px;
  width: 56px;
}
.footer-next-btn-white {
  background-color: #fff !important;
  fill: black;
  height: 44px;
  width: 44px;
}
.social-icon {
  transform: scale(1);
  transition: transform 0.4s ease;
}
.about-slider-btn {
  background-color: transparent;
  fill: black;
  height: 54px;
  width: 54px;
}
.w-auto {
  width: auto !important;
}
/* On hover */
.hover-btn:hover .hover-prev-btn {
  /* transform: scale(1); 
  opacity: 1; 
  width: 44px; */
}

.hover-btn:hover .hover-next-btn {
  /* transform: translateX(10px); 
  opacity: 1; 
  width: auto;  */
}

.footer-next-btn-white:hover {
  background-color: #ffb535 !important;
  fill: black;
  height: 44px;
  width: 44px;
}
.social-icon:hover {
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.about-slider-btn:hover {
  background-color: #000;
  fill: white;
  height: 54px;
  width: 54px;
}

.scale-img-container {
  overflow: hidden;
  cursor: pointer;
}
.scale-img {
  transition: transform 0.4s ease;
}
.scale-img-container:hover .scale-img {
  transform: scale(1.05);
}

.header-hover-line {
  position: relative;
  text-decoration: none;
  color: black;
  display: inline-block;
  width: max-content;
  padding-bottom: 2px;
}
.header-hover-line::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: white;
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;
}

.header-hover-line:hover::after, 
.header-hover-line.active::after {
  width: 100%;
}

.footer-hover-line {
  position: relative;
  text-decoration: none;
  color: white;
  display: inline-block;
  width: max-content;
  padding-bottom: 2px;
}
.footer-hover-line::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: white;
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;
}

.footer-hover-line:hover::after {
  width: 100%;
}

/* marquee effect */
.marquee-wrapper {
  display: flex;
  white-space: nowrap;
  overflow-x: hidden;
}

.marquee {
  display: flex;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 77s;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* pricing toggle */
.hide {
  display: none !important;
}
.pricing-toggle {
  background-color: #fff;
  border-radius: 1.875rem;
  display: flex;
  padding: 4px;
  gap: 4px;
}
.pricing-toggle-link {
  color: grey;
  background-color: white;
  border-radius: 1.875rem;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}
.pricing-toggle-link.active {
  background-color: black;
  color: white;
}

/* Slider  */
.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}
.about-slider-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}
.slider-card {
  min-width: calc(25% - 22.5px);
  box-sizing: border-box;
  border-radius: 24px;
}

.dots-container {
  display: flex;
  justify-content: center;
}
.about-dots-container {
  display: flex;
  justify-content: center;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.about-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.dot.active {
  background-color: #ffb535;
  width: 20px;
  border-radius: 12px;
}
.about-dot.active {
  background-color: #ffb535;
  width: 20px;
  border-radius: 12px;
}

#servicesSlider .carousel-controls {
  position: absolute;
  right: -1.5rem;
  bottom: 50%;
}

.scrolling-words-container {
  display: flex;
}

.scrolling-words-box {
  height: 20rem;
  overflow: hidden;
}
.scrolling-words-box ul {
  margin: 0;
  padding: 0;
  animation: scrollUp 8s infinite;
}
#scrolling-list li{
  font-size: 2vw;
}
.scrolling-words-box ul li {
  display: flex;
  align-items: center;
  height: 20rem;
  list-style: none;
  line-height: 1;
  font-size: 2vw; /* Responsive font size based on viewport width */
  /* padding: 1rem 0; */
  /* white-space: nowrap; */
}

@keyframes scrollUp {
  15%,
  25% {
    transform: translateY(-20%);
  }
  40%,
  50% {
    transform: translateY(-40%);
  }
  65%,
  75% {
    transform: translateY(-60%);
  }
  90%,
  100% {
    transform: translateY(-80%);
  }
}

/* Tablet Responsive */
@media (min-width: 600px) and (max-width: 1024px) {
  .gap-40 {
    gap: 30px;
  }
  .text-lg-2xl {
    font-size: 1.875rem;
  }
  .text-lg-3xl {
    font-size: 2.188rem;
  }
  .text-lg-4xl {
    font-size: 2.813rem;
  }
  .text-lg-5xl {
    font-size: 3.438rem;
  }
  .text-lg-6xl {
    font-size: 4.063rem;
  }
  .py-lg-64 {
    padding: 64px 0px 64px 0px;
  }
  .p-lg-32 {
    padding: 32px;
  }
  .pr-8 {
    padding-right: 2.5rem;
  }
  .pl-8 {
    padding-left: 2.5rem;
  }
  .mx-lg-40 {
    margin: 0px 40px 0px 40px;
  }
  .mb-lg-24 {
    margin-bottom: 24px;
  }
  .mb-lg-40 {
    margin-bottom: 40px;
  }
  .cta-div {
    margin-bottom: -7rem;
    position: relative;
    z-index: 10;
  }
  .cta-div-p--left {
    padding: 78px 64px 56px 64px;
  }
  .hero-overlap {
    margin-bottom: -7rem;
    position: relative;
    z-index: 10;
  }
  .pt-overlap {
    padding-top: 130px;
  }
  .slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
  }

  .slider-card {
    min-width: calc(50% - 15px);
    box-sizing: border-box;
    border-radius: 24px;
  }
}

/* Mobile Responsive */
@media (max-width: 599.98px) {
  .gap-40 {
    gap: 30px;
  }
  .p-sm-24 {
    padding: 24px;
  }
  .pr-8 {
    padding-right: 12px;
  }
  .pl-8 {
    padding-left: 12px;
  }
  .py-sm-48 {
    padding: 48px 0px 48px 0px;
  }
  .p-sm-32 {
    padding: 32px;
  }
  .mx-sm-24 {
    margin: 0px 24px 0px 24px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .text-sm-xl {
    font-size: 1.375rem;
  }
  .text-sm-2xl {
    font-size: 1.875rem;
  }
  .text-sm-3xl {
    font-size: 2.188rem;
  }
  .mb-sm-24 {
    margin-bottom: 24px;
  }
  .slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
  }

  .slider-card {
    min-width: calc(100%);
    box-sizing: border-box;
    border-radius: 24px;
  }
  .cta-div {
    margin-bottom: -6rem;
    position: relative;
    z-index: 10;
  }
  .cta-div-p--left {
    padding: 32px 32px 32px 32px;
  }
  .cta-div-img--right {
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-overlap {
    margin-bottom: -7rem;
    position: relative;
    z-index: 10;
  }
  .pt-overlap {
    padding-top: 130px;
  }
  .w-auto {
    width: 100% !important;
  }

  .scrolling-words-box,
  .scrolling-words-box ul li {
    height: 5rem;
  }
}
