@import url('https://fonts.googleapis.com/css2?family=Anton&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Vinyl&family=Space+Grotesk:wght@300..700&display=swap');

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}


body {
  margin: 0;
  color: #fff;
  background: #12141c;
  font-family: "Anton";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #6d6d6d;
}

::-webkit-scrollbar-thumb {
  height: 70px;
  background-color: #eb8628de;
  border-radius: 10px;
}

/* preloader css  */
.preloader-main {
  font-family: 'Anton';
  width: 100%;
}

.pre-loader {
  z-index: 9999;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #111;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.pre-loader .pre-top_heading {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
}

.pre-top_heading h5 {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.pre-reveal .parent {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.pre-load-content {
  font-size: 2rem !important;
}

.pre-reveal .parent .child {
  display: flex;
}

.pre-loader h1 {
  word-spacing: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 500;
}

.pre-loader h1 span {
  margin-right: 30px;
}

.parent .child span {
  display: inline-block;
}


.orange {
  z-index: 999;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 0;
  background-color: rgb(232, 140, 48);
}



@media (max-width: 1024px) {
  .pre-loader h1 {
    font-size: 9vw;
    word-spacing: 60px;
  }
}

@media (max-width: 768px) {
  .pre-loader h1 {
    font-size: 10vw;
    word-spacing: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pre-load-content {
    font-size: 1.45rem !important;
  }

  .pre-loader h1 span {
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .pre-top_heading h5 {
    font-size: 10px;
  }

  .pre-load-content {
    width: 100%;
    font-size: 0.60rem !important;
  }

  .pre-loader h1 {
    font-size: 12vw;
    word-spacing: normal;
    flex-direction: column;
    text-align: center;
  }

  .pre-loader h1 span {
    position: relative;
    bottom: 25%;
    margin: 5px 0;
  }
}


/* -------------new css--------------  */

.hero_container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(-25deg, #051f2e 40%, #6c6d6e 50%, #03152a 60%);
  background-size: cover;
  background-position: center;
}

/* Gradient overlay */
.hero_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(36, 36, 36, 0.4) 0%, rgba(32, 32, 32, 0.8) 70%);
  z-index: 0;
}

/* Star/particle effect */

#star-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


header {
  width: 100%;
  height: 80px;
  background-color: rgba(43, 43, 43, 0.291);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: fixed;
  z-index: 1000;
}


.logo img {
  margin-top: 20px;
  width: 150px;
  height: 150px;
  font-size: 1.5rem;
  align-items: center;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.hero_nav {
  width: 60%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
}

.hero_nav a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
  padding-bottom: 4px;
}


.hero_nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #ff8a1cde;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.hero_nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero_nav a:not(:hover)::after {
  transform-origin: right;
}

@media (min-width: 800px) and (max-width: 1024px) {
  .hero_nav a {
    font-size: 0.90rem;
  }
}


.sign-up-btn {
  background-color: rgb(233, 147, 27);
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.sign-up-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.sign-up-btn::after {
  font-size: 1rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 15;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
}

.welcome-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.welcome-badge::after {
  content: "↗";
  margin-left: 0.5rem;
}


.hero_heading {
  font-size: 4.50rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.marketing-text {
  color: #ed9316;
  font-weight: bold;
  display: inline-block;
  position: relative;
  min-width: 100px;
  animation: fadeInOut 5s ease-in-out;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.strategy-text {
  font-style: italic;
  font-weight: normal;
}

.subheading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-weight: normal;
}

.hero_description {
  font-family: "Anton";
  max-width: 600px;
  margin: 0 auto 1.50rem;
  line-height: 1.6;
}

.get-started-btn {
  background-color: #ed9316;
  color: #383939;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(89, 90, 90, 0.4);
}

.get-started-btn::after {
  content: "↗";
  font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  .subheading {
    font-size: 2rem;
  }
}



@media (max-width: 768px) {
  header {
    padding: 1.5rem 2rem;
  }

  .hero_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #12141c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.5s ease;
    z-index: 12;
  }

  .hero_nav.active {
    right: 0;
  }

  .sign-up-btn {
    order: 1;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero_heading {
    font-size: 3.50rem;
  }

  header {
    padding: 1rem 1.5rem;
  }

  .logo img {
    margin-top: 18px;
    position: relative;
    right: 23px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .subheading {
    font-size: 1.4rem;
  }

  .welcome-badge {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero_description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .get-started-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }

  .sign-up-btn {
    padding: 0.80rem 0.12rem;
    font-size: 0.7rem;
  }
}

/* Overlay when mobile menu is open */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  display: none;
}

.overlay.active {
  display: block;
}



.title {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}


/* about section css */



html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  max-height: 1000000px;
}


.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.popup-holder {
  display: none;
  position: absolute;
  right: 20%;
  bottom: 30px;
  left: 20%;
  z-index: 10;
  padding: 5px;
  font-family: "Anton";
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-holder.active {
  display: block;
}

.showcase-block {
  position: relative;
}

.popup-holder.active {
  display: block;
}

.showcase-lightbox {
  width: 100%;
  height: 80%;
  padding: 0;
  border-radius: 55px;
  background: rgba(253, 211, 0, 0.961);
  cursor: default !important;
  overflow: hidden;
}


@media (min-width: 1500px) {
  .popup-holder {
    width: 60%;
    bottom: 10%;
  }

}

@media (min-width: 2000px) {
  .popup-holder {
    width: 60%;
    height: 80%;
    bottom: -6%;
  }

}

@media (max-width: 1023px) {
  .showcase-lightbox {
    border-radius: 35px;
  }

}

@media (max-width: 1200px) {
  .showcase-lightbox {
    border-radius: 35px;
  }

  .popup-holder {
    top: 30%;
  }

}

@media (max-width: 1500px) {
  .showcase-lightbox {
    border-radius: 35px;
  }

}

@media (max-width: 767px) {
  .showcase-lightbox {
    border-radius: 25px;
  }
}

.showcase-content {
  position: relative;
}

.showcase-content {
  position: relative;
  padding: 36px 65px;
}

@media (max-width: 1023px) {
  .showcase-content {
    padding: 30px 25px;
  }

  .popup-holder {
    top: 40%;
  }
}

@media (max-width: 767px) {

  .showcase-content {
    padding: 24px 20px;
  }
}

@media (max-width: 419px) {
  .showcase-content {
    padding: 24px 15px;
  }
}

.showcase-content .heading-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px;
}

@media (max-width: 767px) {
  .showcase-content .heading-wrap {
    margin: 0;
  }
}

.showcase-content .heading-block {
  position: relative;
  padding: 0 30px 0 0;
}

@media (max-width: 1023px) {
  .showcase-content .heading-block {
    padding: 0 15px 0 0;
  }
}

@media (max-width: 767px) {
  .showcase-content .heading-block {
    padding: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .showcase-content .heading-block {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    min-width: 0;
  }
}

.showcase-content .heading {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  right: 20px;
  background: #ff6839;
  border-radius: 23px;
  color: #fff;
  display: block;
  padding: 25px 16px 30px 20px;
}

@media (max-width: 1199px) {
  .showcase-content .heading {
    font-size: 34px;
  }
}

@media (max-width: 1023px) {
  .showcase-content .heading {
    font-size: 26px;
    padding: 20px 20px 25px;
    border-radius: 18px;
  }
}

@media (max-width: 767px) {
  .showcase-content .heading {
    font-size: 24px;
    padding: 12px 10px;
    border-radius: 14px;
  }
}

@media (max-width: 419px) {
  .showcase-content .heading {
    font-size: 20px;
  }
}

.showcase-content .spotify-image-col,
.showcase-content .right-col {
  position: relative;
  width: 170px;

}


@media (max-width: 767px) {

  .showcase-content .spotify-image-col,
  .showcase-content .right-col {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
}

.showcase-content .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.showcase-content .text-block {
  font-size: 1.2vw;
  line-height: 20px;
  position: relative;
  padding: 30px 30px 0 0;
}

@media (max-width: 1200px) {
  .popup-holder {
    width: 70%;
    height: 90%;
    bottom: -14%;
    left: 15%;
  }

  .showcase-info-list .num {
    font-size: 5px;
  }
}

@media (max-width: 1100px) {
  .popup-holder {
    width: 70%;
    height: 88%;
    bottom: -20%;
    left: 15%;
  }

  .showcase-info-list .num {
    font-size: 5px;
  }

  .showcase-content .text-block {
    padding: 13px 20px 0 0;
  }

  .showcase-content .heading {
    font-size: 25px;
    padding: 14px 34px 11px 36px;
  }
}

@media (max-width: 1023px) {
  .popup-holder {
    width: 70%;
    height: 70%;
    bottom: -5%;
    left: 15%;
  }
}

@media (max-width: 800px) {
  .popup-holder {
    width: 70%;
    height: 70%;
    bottom: 55%;
    left: 15%;
  }
}

@media (max-width: 768px) {
  .popup-holder {
    width: 70%;
    height: 70%;
    bottom: 5%;
    left: 15%;
  }
}

@media (max-width: 850px) {
  .popup-holder {
    width: 70%;
    height: 73%;
    bottom: -10%;
    left: 15%;
  }

  .showcase-info-list .num {
    font-size: 5px;
  }

  .showcase-content .text-block {
    padding: 3px 10px 0 0;
  }

  .showcase-content .heading {
    font-size: 20px;
    width: 110%;
    padding: 14px 23px 10px 21px;
  }
}

@media (max-width: 810px) {
  .popup-holder {
    width: 70%;
    height: 85%;
    bottom: -15%;
    left: 15%;
  }

  /* .showcase-info-list .num {
    font-size: 5px;
  } */

  .showcase-content .text-block {
    padding: 3px 10px 0 0;
  }

  .showcase-content .heading {
    font-size: 20px;
    padding: 14px 34px 11px 36px;
  }
}

@media (max-width: 500px) {
  .popup-holder {
    position: absolute;
    width: 94%;
    height: 45%;
    top: 60%;
    left: 1%;
  }

  .showcase-content {
    padding: 15px 22px;
  }

  .showcase-content .heading {
    width: 111%;
    font-size: 15px;
    padding: 1px 0px 0px 10px;
  }
}

@media (max-width: 1023px) {
  .showcase-content .text-block {
    padding: 25px 15px 0 0;
  }
}

@media (max-width: 767px) {
  .showcase-content .text-block {
    font-size: 12px;
    line-height: 16px;
    padding: 25px 0 0;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (max-width: 419px) {
  .showcase-content .text-block {
    padding: 20px 0 0;
  }
}

@media (min-width: 768px) {
  .showcase-content .text-block {
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    min-width: 0;
  }
}

.showcase-content .text-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  position: relative;
  color: #000;
  max-width: 485px;
  padding: 0 0 12px;
}

@media (max-width: 767px) {
  .showcase-content .text-list {
    max-width: 100%;
    padding: 0;
  }
}

.showcase-content .text-list li {
  position: relative;
  margin: 0 0 26px;
}

@media (max-width: 767px) {
  .showcase-content .text-list li {
    margin: 0 0 18px;
  }
}

.showcase-content .text-list li strong {
  font-weight: 800;
}

.outcome-list-holder {
  position: relative;
  max-width: 425px;
  color: #000;
}

@media (max-width: 767px) {
  .outcome-list-holder {
    max-width: 100%;
    padding: 0 0 15px;
  }
}

.outcome-list-holder .title {
  position: relative;
  display: block;
  font-weight: 800;
  margin: 0 0 3px;
}

.outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  font-weight: 500;
}

.outcome-list li {
  position: relative;
  padding: 0 0 0 23px;
}

@media (max-width: 767px) {
  .outcome-list li {
    padding: 0 0 0 20px;
  }
}

.outcome-list li:before {
  width: 4px;
  height: 4px;
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  background: #000;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .outcome-list li:before {
    left: 8px;
    top: 5px;
  }
}


.showcase-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

@media (max-width: 767px) {
  .showcase-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.showcase-info-list li {
  position: relative;
  background: #f39c12;
  padding: 14px 10px;
  border-radius: 20px;
  text-align: center;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  .showcase-info-list li {
    margin: 15px 0 0;
    width: 47%;
    border-radius: 15px;
  }
}

@media (max-width: 767px) {
  .showcase-info-list li:nth-child(1) {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .showcase-info-list li:nth-child(1) .num {
    margin: 0;
  }

  .showcase-info-list li:nth-child(1) .text {
    text-align: left;
    max-width: 100px;
    margin: 0 0 0 10px;
  }
}

.showcase-info-list li:nth-child(2) {
  background: #ed247e;
}

.showcase-info-list li:nth-child(3) {
  background: #ed6224;
}

.showcase-info-list li:last-child {
  margin-bottom: 0;
}

.showcase-info-list .num {
  font-size: 3.45vw;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  display: block;
  margin: 0 0 1px;
}

@media (max-width: 1023px) {
  .showcase-info-list .num {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .showcase-info-list .num {
    font-size: 35px;
  }
}

@media (max-width: 419px) {
  .showcase-info-list .num {
    font-size: 28px;
  }
}

.showcase-info-list .text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  color: #000;
  display: block;
}

@media (max-width: 767px) {
  .showcase-info-list .text {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 419px) {
  .showcase-info-list .text {
    font-size: 10px;
    line-height: 14px;
  }
}


@font-face {
  font-family: "Anton";
  src: url('../assets/fonts/random-grotesque.standard.woff') format('woff');
  font-style: normal;
  font-weight: 400;
}

.icon-close:before {
  content: "\e901";
}

.icon-menu:before {
  content: "\e902";
}


#wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: filter 0.3s ease;
}

#wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: rgba(18, 20, 28, 0.8);
  display: none;
}

.menu-active #wrapper:before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  #wrapper:before {
    display: block;
  }
}

.main {
  position: relative;
}

.container {
  position: relative;
  padding: 0 10.2%;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .container {
    padding: 0 8%;
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 6%;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 25px;
  }
}

@media (max-width: 419px) {
  .container {
    padding: 0 15px;
  }
}


.btn-wrap {
  position: relative;
  display: block;
}

.btn-wrap a {
  font-size: 1.3rem;
  color: white;
}

/* 
.btn {
  font-size: 35px;
  line-height: 38px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 20px 16px;
  height: 78px;
  font-weight: 400;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
} */
/* 
@media (max-width: 1199px) {
  .btn {
    font-size: 26px;
    line-height: 32px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .btn {
    padding: 4px 15px 6px;
    font-size: 24px;
    height: 46px;
  }
}

@media (max-width: 419px) {
  .btn {
    font-size: 20px;
  }
} */

/* 
.btn-primary:hover,
.btn-primary:focus {
  background: #ff1c47;
  border-color: #ff1c47;
  color: #fff;
} */

/* .text-right {
  text-align: right;
} */

/* @media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
} */

/* .logo {
  position: relative;
  left: 2%;
  display: block;
  width: 73px;
}

@media (max-width: 767px) {
  .logo {
    display: none;
  }
} */



/*----------- end ----------*/

.yellow-text {
  color: #FF6839;
}

.green-text {
  color: #fdd300;
}

/*----------- connect-info-section css ------------ */

.connect-info-section {
  position: relative;
  padding: 95px 0;
}

.About_para {
  font-family: 'Anton';
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  margin-top: 2rem;
}

.about-title {
  font-size: 1.5rem;
  color: #dfdfdf;
}

@media (max-width: 1199px) {
  .connect-info-section {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .connect-info-section {
    padding: 60px 0;
  }
}

.connect-info-section .description {
  position: relative;
  max-width: 1030px;
  text-align: center;
  margin: 0 auto;
}

.connect-info-section .description-text {
  font-size: 60px;
  line-height: 45px;
  font-weight: 800;
  color: #fff;
  display: block;
}

@media (max-width: 1499px) {
  .connect-info-section .description-text {
    font-size: 46px;
    line-height: 50px;
  }
}

@media (max-width: 1199px) {
  .connect-info-section .description-text {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 1023px) {
  .connect-info-section .description-text {
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 767px) {
  .connect-info-section .description-text br {
    display: none;
  }

  .About_para {
    text-align: left;
    padding-left: 20px;
  }

  .description-text,
  .yellow-text {
    text-align: left;
    padding-left: 20px;
  }

  .description-text .ri-sparkling-2-fill {
    font-size: 2rem;
  }
}

.connect-info-section .text-star {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.connect-info-section .text-star:before {
  width: 36px;
  height: 54px;
  background-size: cover;
  content: "";
  position: absolute;
  right: -70px;
  top: -1px;
}

@media (max-width: 767px) {
  .connect-info-section .text-star:before {
    display: none;
  }
}

/*----- info-section css----  */

.info-section {
  background-color: #12141C;
  position: relative;
  padding: 1px 0 0 0;
}

.info-about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.info-about-list li {
  position: relative;
  width: 25%;
  padding: 75px 15px 60px;
  text-align: center;
  background: #ff9c00;
  width: 50%;
  border: 1px solid rgb(216, 212, 212);
  font-family: "Anton";
}

@media (max-width: 1499px) {
  .info-about-list li {
    padding: 60px 15px 45px;
  }
}

@media (max-width: 1199px) {
  .info-about-list li {
    padding: 50px 15px 40px;
  }
}

@media (max-width: 1023px) {
  .info-about-list li {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .info-about-list li {
    padding: 40px 15px 35px;
  }
}

.info-about-list li:nth-child(2) {
  background: #ed247e;
}

.info-about-list li:nth-child(3) {
  background: #ed6224;
}

.info-about-list li:nth-child(4) {
  background: #ed2424;
}

.info-about-list .num {
  font-size: 100px;
  line-height: 1;
  font-weight: 800;
  display: block;
  margin: 0;
}

@media (max-width: 1599px) {
  .info-about-list .num {
    font-size: 92px;
  }
}

@media (max-width: 1499px) {
  .info-about-list .num {
    font-size: 76px;
  }
}

@media (max-width: 1199px) {
  .info-about-list .num {
    font-size: 62px;
  }
}

@media (max-width: 767px) {
  .info-about-list .num {
    font-size: 50px;
  }
}

@media (max-width: 419px) {
  .info-about-list .num {
    font-size: 40px;
  }
}

.info-about-list .text {
  font-size: 35px;
  line-height: 1;
  font-weight: 300;
  display: block;
}

@media (max-width: 1599px) {
  .info-about-list .text {
    font-size: 32px;
  }
}

@media (max-width: 1499px) {
  .info-about-list .text {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .info-about-list .text {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .info-about-list .text {
    font-size: 20px;
  }
}

@media (max-width: 419px) {
  .info-about-list .text {
    font-size: 18px;
  }
}

/*----- end --------- */

.heading-area {
  position: relative;
  text-align: center;
  margin: 0 0 70px;
}

@media (max-width: 1023px) {
  .heading-area {
    margin: 0 0 45px;
  }
}

@media (max-width: 767px) {
  .heading-area {
    margin: 0 0 25px;
  }
}

.heading-area h2 {
  font-size: 75px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin: 0 0 25px;
}

@media (max-width: 1499px) {
  .heading-area h2 {
    font-size: 58px;
  }
}

@media (max-width: 1199px) {
  .heading-area h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .heading-area h2 {
    font-size: 35px;
    margin: 0 0 18px;
  }
}

@media (max-width: 419px) {
  .heading-area h2 {
    font-size: 26px;
  }
}

.heading-area .btn {
  min-width: 376px;
}

@media (max-width: 1199px) {
  .heading-area .btn {
    min-width: 325px;
  }
}

@media (max-width: 767px) {
  .heading-area .btn {
    min-width: 260px;
  }
}

@media (max-width: 419px) {
  .heading-area .btn {
    min-width: 225px;
  }
}

/* swiper ------------------ */

.caseStudy-container {
  width: 85vw;
  display: flex;
}

.caseStudy-container .text {
  padding: 0px 10px 0px 0px;
  font-size: 1.1rem;
  line-height: 30px;
  text-align: start;
}

.caseStudy-container {
  display: flex;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding: 10px;
}

.showcase-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-studies-head h2 {
  display: flex;
  gap: 20px;
  padding-right: 100px;
  font-size: 3rem;
}


.heading-area .text {
  width: 38vmax;
  font-size: 1.50vw;
}

@media (min-width: 1025px) {
  .heading-area .text {
    width: 55vmax;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .caseStudy-container {
    gap: 1%;
    padding: 29px 0px;
    align-items: flex-start;
  }

  .case-studies-head h2 {
    font-size: 3.8rem;
  }
}


@media (max-width: 1872px) {
  .heading-area h2 {
    /* padding-right: 200px; */
    font-size: 3.5rem;
  }
}

@media (max-width: 1440px) {
  .heading-area h2 {
    font-size: 4rem;
  }

  .heading-area .text {
    font-size: 1.34rem;
  }
}


@media (max-width: 1024px) {

  .caseStudy-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    margin-top: 30px;
  }

  .heading-area h2 {
    font-size: 4rem;
  }

  .heading-area .text {
    width: 100%;
    font-size: 1.50rem;
  }
}

/* For small devices (mobile phones) */
@media (max-width: 768px) {
  .caseStudy-container {
    /* background-color: #e44a17; */
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
    ;
  }

  .heading-area h2 {
    font-size: 3rem;
  }

  .heading-area .text {
    margin-bottom: 30px;
    font-size: 1.50rem;
  }
}

@media (max-width: 430px) {
  .heading-area .text {
    width: 98%;
    margin-bottom: 30px;
    font-size: 1.50rem;
  }
}

@media (max-width: 320px) {
  .heading-area .text {
    width: 80%;
    margin-bottom: 30px;
    font-size: 1.50rem;
    position: relative;
    right: 5px;
  }
}

/* slider css  */

.showcase-slider {
  width: 100%;
}

.showcase-slider .slide {
  padding: 0 20px;
}

@media (max-width: 1499px) {
  .showcase-slider .slide {
    padding: 0 15px;
  }
}

.showcase-block {
  position: relative;
}

@media (max-width: 767px) {
  .showcase-block {
    max-width: 285px;
    margin: 0 auto;
  }
}

.showcase-block a {
  position: relative;
  display: block;
  outline: none;
}

.showcase-block img {
  display: block;
  width: 100%;
  height: auto;
}

/* slider css previous end  */

.showcase-section {
  width: 100vw;
}

.showcase-container {
  position: relative;
  width: 100%;
  padding: 50px 10%;
  z-index: 40;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.caseStudy-container {
  position: relative;
  top: 30px;
}



.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.showcase-slider {
  width: 100%;
  position: relative;
  /* background-color: gray; */
}

.showcase-block {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #ececec);
  overflow: hidden;
}

.showcase-block img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  border: 2px solid rgb(175, 167, 167);
  cursor: pointer;
}


.swiper-pagination {
  display: none;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(0%);
}

.swiper-button-next,
.swiper-button-prev {
  color: #e07b1c;
  z-index: 1;
  position: absolute;
}



@media (max-width: 1024px) {
  .showcase-block {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .showcase-block {
    flex: 0 0 100%;
  }
}


/* Video Section */
.dbmc-gif {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: #000;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  /* filter: sepia(10%) hue-rotate(200deg) brightness(1); */

}


/* 🔹 Responsive Adjustments */
@media (max-width: 1024px) {
  .video-container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .video-container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .video-container {
    width: 100%;
    padding: 0 10px;
    /* Add padding for small screens */
  }
}


/*------------ our expert css ------------- */

.service_container {
  height: 100%;
  width: 100%;
}

@media (max-width: 1499px) {
  .expert-section {
    padding: 100px 0 0;
  }
}

@media (max-width: 1023px) {
  .expert-section {
    padding: 70px 0 0;
  }
}

.our-expert-head {
  width: 100%;
  font-size: 3rem;
  padding-left: 100px;
}


.expert-section .heading-area h2 {
  width: 100%;
  text-align: left;
  margin: 0 30px 0 0;
  font-size: 75px;
  line-height: 0.9;
}

.expert-section .heading-area .img-hear {
  width: 89px;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1199px) {
  .expert-section .heading-area .img-hear {
    width: 60px;
    margin: 4px 0 0;
  }
}

.expert-section .heading-area .img-hear img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.expert-section .img-star {
  width: 80px;
  display: block;
}

.expert-section .img-star img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.expert-section .text-color {
  color: #FF6839;
}

.scroll-wrapper {
  width: auto;
  height: auto;
  overflow-x: hidden;
  position: relative;
}

.scroll-wrapper {
  scroll-snap-type: x mandatory;
}

.two-cols {
  display: flex;
  flex-direction: row;
  gap: 55px;
  width: fit-content;
  will-change: transform;
}

@media (max-width: 1199px) {
  .two-cols {
    margin: 0 -25px;
  }
}

.two-cols .col {
  position: relative;
  left: 20%;
  flex: 0 0 55%;
  scroll-snap-align: center;
  width: 65%;
  padding: 0 33px;
  margin: 0 0 55px;
}


@media (max-width: 1199px) {
  .two-cols .col {
    padding: 0 25px;
  }
}

@media (max-width: 1023px) {
  .two-cols .col {
    width: 100%;
    margin: 0 0 20px;
  }
}

.article-services p {
  padding: 0px 20px;
  font-size: 1.30rem;
  line-height: 25px;
  color: white;
}

.article-services {
  background: #ff6839;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 27px;
  padding: 12px 20px 19px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 20px;
  height: 85%;
}

.article-services.bg-green {
  background: #ff9c00;
}

.article-services.bg-orange {
  background: #ed247e;
}

.article-services.bg-mehroon {
  background: #ed6224;
}

.article-services.bg-pink {
  background: #97a3f3;
}

.article-services.bg-vilot {
  background: #7054b8;
}

.article-services.bg-yellow {
  background: #ed2424;
}


.article-services .image-holder {
  width: 32.5%;
}

.article-services .image-holder img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  vertical-align: top;
  object-fit: cover;
}

.article-services h3 {
  color: white;
  line-height: 30px;
  font-size: 4rem;
  padding: 20px;
  line-height: 0.88;
  margin: 0 0 19px;
}

.article-services .btn-black {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #000000;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  padding: 15px 15px;
  min-width: 200px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.text-holder .sub_head_para {
  text-align: left;
}

.article-services .btn-black:hover {
  background: #f2cc2e;
  color: #000;
}

.article-services .btn-black:hover:after {
  background: #000;
}

.article-services .btn-black:after {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  right: -2px;
  bottom: -2px;
  left: 2px;
  top: 2px;
  content: "";
  background: #f2cc2e;
  z-index: -1;
}

@media (min-width: 1024px) {
  .two-cols .col {
    height: 480px;
  }

  .article-services {
    height: 100%;
  }

  .article-services .text-holder {
    overflow-y: auto;
  }
}


@media (max-width: 1499px) {
  .article-services h3 {
    font-size: 36px;
  }
}

@media (max-width: 1199px) {
  .article-services h3 {
    font-size: 30px;
  }
}

.article-services .text-holder {
  width: calc(67.5% - 38px);
  position: relative;
  padding: 29px 0 70px;
  z-index: 2;
}

@media (max-width: 1499px) {
  .article-services .text-holder {
    width: calc(67.5% - 20px);
  }
}

/* Mobile View: For screens up to 767px */
@media (max-width: 767px) {
  .scroll-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .expert-section .heading-area h2 {
    width: 169%;
    font-size: 38px;
    position: relative;
    right: 73px;
  }

  .expert-section .heading-area .img-hear {
    width: 36px;
    margin: -1px 0 0;
  }

  .two-cols {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    position: static;
  }

  .article-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .article-services .text-holder {
    display: contents;
  }

  .article-services h3 {
    order: 1;
    text-align: left;
    width: 100%;
  }

  .article-services .sub_head_para {
    text-align: left;
    width: 100%;
    display: block;
    order: 2;
  }

  .article-services .image-holder {
    position: relative;
    bottom: 30px;
    order: 3;
    width: 100%;
    height: 46vh;
    margin: 5px 0;
  }

  .article-services p {
    position: relative;
    bottom: 40px;
    order: 4;
    text-align: left;
    padding: 0 0px;
  }

  .article-services a.btn-black {
    order: 5;
    margin-top: 10px;
  }

  .text-holder .btn-black {
    margin-left: 20px;
  }

  .article-services h3 {
    font-size: 19px;
  }

  .article-services p {
    font-size: 0.88rem;
  }
}


@media (max-width: 430px) {

  .article-services h3{
    padding: 20px 0px;
  }

  .article-services .image-holder {
    order: 3;
    width: 100%;
    height: 30vh;
    margin: 5px 0;
  }

  .article-services .sub_head_para {
    text-align: left;
    order: 2;
  }

  .expert-section .heading-area .img-hear {
    width: 20px;
    margin: 6px 0 0;
  }
}

@media (max-width: 375px) {
  .expert-section .heading-area .img-hear {
    display: none;
  }

  .article-services .sub_head_para {
    text-align: left;
    order: 2;
  }

  .expert-section .heading-area h2 {
    width: 195%;
    font-size: 38px;
    position: relative;
    right: 73px;
  }
}

/*---------- why dbmc css -------------- */

.pioneers-sections {
  width: 100vw;
  height: auto;
  padding-top: 100px;
  padding: 0px 5%;
}

.article-pioneers {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Anton";
  text-align: left;
}

.article-pioneers h2 {
  font-size: 90px;
  margin-bottom: -20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.why_dbmc_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.sub-head-why-dbmc {
  font-size: 1.5rem;
  color: #e2e2e2;
}

.why_dbmc_para {
  flex: 3;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  bottom: 54px;
}

.why_dbmc_img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 61px;
}

.bunny_img {
  width: 100%;
  max-width: 300px;
  height: auto;
  position: relative;
  bottom: 56px;
}

@media (max-width: 1024px) {
  .article-pioneers h2 {
    font-size: 50px;
  }

  .why_dbmc_para {
    font-size: 1.3rem;
    bottom: 0;
  }

  .bunny_img {
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .why_dbmc_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    position: relative;
  }

  .article-pioneers h2 {
    font-size: 46px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .sub-head-why-dbmc {
    font-size: 1.2rem;
    color: #e2e2e2;
    margin: 18px 0 0 0;
  }

  .why_dbmc_para {
    order: 2;
    font-size: 1.1rem;
    margin-top: 20px;
    position: static;
  }

  .why_dbmc_img {
    order: 1;
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .bunny_img {
    max-width: 200px;
    width: 100%;
    height: auto;
    position: static;
  }
}

@media (max-width: 480px) {
  .article-pioneers h2 {
    font-size: 36px;
  }

  .sub-head-why-dbmc {
    font-size: 1.1rem;
  }

  .why_dbmc_para {
    font-size: 1rem;
  }

  .bunny_img {
    max-width: 140px;
  }
}

@media (max-width: 340px) {
  .article-pioneers h2 {
    font-size: 30px;
  }

  .bunny_img {
    max-width: 100px;
  }

  .why_dbmc_para {
    font-size: 0.95rem;
  }
}


/*------------- tag section --------  */

.tags-section {
  /* background: #2b2b2be7; */
  padding: 19px 0 37px;
}

@media (max-width: 767px) {
  .tags-section {
    padding: 15px 0;
  }
}

.tags-section img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.tags-section .container {
  padding: 0 2.6%;
}

/*---------- Footer Styling----------- */


.footer {
  font-family: 'Anton';
  color: #6c7279;
  padding: 60px 40px 20px;
  width: 100%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 120px 120px 1fr;
  /* gap: 40px; */
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.5;
  color: #6c7279;
  max-width: 350px;
}

.footer_txt {
  font-size: 20px;
}

.footer-heading {
  color: white;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  position: relative;
  right: 41px;

}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
}

.footer-links a {
  color: #6c7279;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #9a9ea6;
  transition: width 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #9a9ea6;
}

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

.divider {
  height: 1px;
  background-color: #333;
  margin: 30px 0;
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  max-height: 62px;
  position: relative;
  right: 20px;
  bottom: 38px;
}

.footer-logo img {
  height: 174px;
  width: 174px;
}

.footer-btn-wrap a {
  color: #6c7279;
}

.copyright {
  font-size: 13px;
  color: #6c7279;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: white;
  font-size: 16px;
}

.lorem-column {
  position: relative;
  left: 100px;
}

.footer-column {
  width: 100%;
}

.courses-column {
  width: 150%;
}

.legals-column {
  position: relative;
  left: 60px;
}

.social-icons a {
  text-decoration: none;
}

.ri-twitter-fill:hover {
  color: #1DA1F2;
}

.ri-linkedin-fill:hover {
  color: #0077B5;
}

.ri-instagram-fill::before {
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  transition: opacity 0.3s ease-in-out;
  -webkit-background-clip: text;
}

.ri-instagram-fill:hover {
  color: transparent;
}

.ri-facebook-fill:hover {
  color: #1877F2;
  transition: opacity 0.5s ease-in-out;

}
.ri-linkedin-box-fill:hover{
  color: #1877F2;
}


/* Responsive adjustments */
@media (max-width: 800px) {
  .footer-container {
    display: flex;
    flex-wrap: wrap;
  }

  .logo-section {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .lorem-column {
    flex: 0 0 100%;
    margin-top: 0px;
    position: relative;
    left: 0px;
  }

  .legals-column {
    position: relative;
    left: 0px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    /* width: auto; */
    width: 100%;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ----------Our Buddies ---------- */

.buddies_container {
  position: relative;
  bottom: 80px;
}

@media (max-width: 500px) {
  .buddies_container {
    bottom: 0px;
  }
}


.head_buddies {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  top: 20px;
}

.our_buddies {
  flex: 1;
  /* Takes available space */
  text-align: left;
}

.slide-title {
  font-size: 2rem;
}



.circle-main {
  margin-top: 50px;
  font-family: 'Anton';
}

.our_buddies h1 {
  padding-left: 80px;
  font-size: clamp(4rem, 0vw, 0rem);
  line-height: 1.2;
}


.subtitle {
  font-size: 1.20rem;
  position: relative;
  padding-left: 40px;
  text-align: start;
  max-width: 600px;
}

@media (max-width: 900px) {


  .our_buddies h1 {
    font-size: 3rem;
    padding-left: 30px;
  }

  .subtitle {
    font-size: 1rem;
    position: relative;
    bottom: 35px;
  }

}

@media (max-width: 1024px) {

  .our_buddies,
  .subtitle {
    text-align: left;
  }

}


.card_section {
  width: 100%;
  min-height: 74vh;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 14px;
}

/* Slider Section */
.slider-container {
  width: 100%;
  max-width: 600px;
  /* background-color: #333;   */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 40px;
  padding: 20px;
  border-radius: 10px;
}

.testimonial-stack {
  width: 100%;
  max-width: 500px;
  height: 400px;
  position: relative;
}

.testimonial-card {
  position: absolute;
  width: 80%;
  height: 110%;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background-size: contain;
  background-position: center;
  object-fit: contain;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 3;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(57, 55, 55, 0.5);
  z-index: 0;
  border-radius: 12px;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
  z-index: 3;
}

.testimonial-card.prev {
  opacity: 0.7;
  visibility: visible;
  transform: translateX(-30px) translateY(-20px) scale(0.95) rotate(-5deg);
  z-index: 2;
}

.testimonial-card.next {
  opacity: 0.4;
  visibility: visible;
  transform: translateX(-30px) translateY(-10px) scale(0.9) rotate(5deg);
  z-index: 1;
}

.testimonial-card.slide-next-out {
  opacity: 0.6;
  visibility: visible;
  transform: translateX(-100%) translateY(50%) scale(0.8) rotate(-5deg);
}

.testimonial-card.slide-next-in {
  transform: translateX(100%) translateY(-50%) scale(0.8) rotate(15deg);
}

.testimonial-card.slide-prev-out {
  transform: translateX(100%) translateY(-50%) scale(0.8) rotate(15deg);
}

.testimonial-card.slide-prev-in {
  transform: translateX(-100%) translateY(50%) scale(0.8) rotate(-15deg);
}

@media (max-width: 480px) {
  .testimonial-card.prev {
    opacity: 0.7;
    visibility: visible;
    transform: translateX(-12px) translateY(-20px) scale(0.95) rotate(-5deg);
    z-index: 2;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
  background: none;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 550px) {
  .card-content {
    padding: 6px;
    gap: 0px;
  }
}

.testimonial-card h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 20px;
  color: #eee4e4;
}

.testimonial-card p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.6;
  color: #e9dfdf;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 25px;
  border: none;
  cursor: pointer;
  z-index: 4;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: -16px;
}

.next {
  right: 80px;
}

@media (max-width: 768px) {
  .testimonial-stack {
    height: 300px;
    /* max-width: 100%; */
  }

  .testimonial-card {
    width: 90%;
    height: 90%;
    padding: 15px;
  }

  .testimonial-card h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .prev {
    left: -5px;
  }

  .next {
    right: 40px;
  }
}

@media (max-width: 480px) {
  .testimonial-stack {
    height: 300px;
    max-width: 75%;
  }

  .testimonial-card {
    width: 95%;
    height: 85%;
    padding: 10px;
  }

  .testimonial-card h2 {
    font-size: 1.2rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  .nav-button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .prev {
    left: -5px;
  }

  .next {
    right: 30px;
  }
}

/* profile css  */

.profile-container {
  width: 100%;
  max-width: 600px;
  /* Adjust as needed */
  margin: 20px auto;
  position: relative;
}

/* Profile Cards Grid Layout */
.profile-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  /* Space between cards */
  justify-content: center;
  padding: 20px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #ffffff;
  border: 1px solid #585555e1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  height: 110px;
  position: relative;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.fifth_card {
  position: relative;
  left: 120px;
}

@media (max-width: 500px) {
  .fifth_card {
    position: relative;
    left: 0px;
  }
}

.profile-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #383737e1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: 2px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-image {
  flex: 1;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 0 12px 12px 0;
}

.profile-card.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.profile-card.exit {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
}

.profile-card.enter {
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}

/* client css  */

.clients-section {
  position: relative;
  overflow: hidden;
  padding: 10px 0 0;
}

@media (max-width: 1199px) {
  .clients-section {
    padding: 90px 0 0;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 50px 0 0;
  }
}

.clients-section .clients-wrap {
  position: relative;
}

.heading-area .our_consumer {
  font-size: 4rem;
  width: 137%;
}

/* @media (max-width: 1424px) {
  .clients-wrap .slider {
    height: 19vh;
  }
} */
@media (max-width: 1024px) {
  .clients-wrap .slider {
    height: 12vh;
  }
}

@media (max-width: 1023px) {
  .clients-section .clients-wrap {
    padding: 0 0 40px;
  }
}

.clients-section .heading-area {
  text-align: left;
  position: relative;
  margin: 0 0 43px;
}

@media (max-width: 767px) {
  .clients-section .heading-area {
    margin: 0 0 22px;
  }

  .clients-section .heading-area h2 {
    font-size: 35px;
  }
}

@media (max-width: 820px) {
  .clients-wrap .slider {
    height: 16vh;
  }
}

@media (max-width: 430px) {
  .clients-wrap .slider {
    height: 16vh;
  }
}

@media (max-width: 375px) {
  .clients-wrap .slider {
    height: 24vh;
  }

  .clients-section .heading-area h2 {
    font-size: 30px;
  }
}

@media (max-width: 350px) {
  .clients-wrap .slider {
    height: 27vh;
  }

  .clients-section .heading-area h2 {
    font-size: 27px;
  }

  .clients-section .stars img {
    display: none;
  }
}


.clients-section .stars {
  display: inline-block;
  vertical-align: top;
  width: 80px;
  margin: -11px 0 0 -9px;
}

@media (max-width: 1023px) {
  .clients-section .stars {
    width: 27px;
    margin: 0 0 0 20px;
  }
}

@media (max-width: 767px) {
  .clients-section .stars {
    margin: 0 0 0 15px;
  }
}

.clients-section .stars img {
  width: 100%;
  height: auto;
  vertical-align: top;

}

.slider {
  width: 100%;
  height: 28vh;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      transparent,
      #000 10% 90%,
      transparent);
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 12s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc((12s / var(--quantity)) * (var(--position) - 1) - 10s) !important;
}

.slider .list .item img {
  width: 100%;
}

@keyframes autoRun {
  from {
    left: 100%;
  }

  to {
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}

.slider .item:hover {
  filter: grayscale(0);
}

.slider[reverse="true"] .item {
  animation: reversePlay 12s linear infinite;
}

@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }

  to {
    left: 100%;
  }
}

/* form data  */

.form-section {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 40px;
}

.title-section {
  flex: 1;
  padding-left: 30px;
}


.form-title {
  font-size: 64px;
  line-height: 1.20;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

#web_form {
  padding-top: 60px;
}

.input-group {
  position: relative;
  margin: 10px 0;
  width: 100%;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #aaa;
  padding: 0 5px;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  background: transparent;
}



@media (max-width: 520px) {
  .input-group label {
    font-size: 15px;
  }
}

/* 
.input-group input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  color: white;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
} */

.input-group input:focus {
  border-color: #ff7300;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
  top: -1px;
  font-size: 14px;
  color: #ff7300;
  background: #12141c;
  padding: 0 5px;
}



.form-row {
  display: flex;
  flex-direction: column;
}


.purple-line {
  width: 350px;
  height: 3px;
  background-color: #ff7300;
  position: relative;
  bottom: 40px;
}

.form-row {
  width: 95%;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input:focus,
textarea:focus {
  border-bottom-color: #ff7300;
}

.form-submit-btn {
  background-color: #ff7300;
  color: white;
  border: none;
  padding: 22px 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px yellow;
}

.form-submit-btn:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 5px 5px #ed6224;
}

.form-social-icons {
  position: relative;
  bottom: 20px;
  z-index: 100;
}


.form-social-icons a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 30px;
  transition: color 0.3s ease;
}

.form-social-icons a:hover {
  color: #ff7300;
}


.select-container {
  font-family: "Anaton";
  padding: 10px 0px;
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.select-container h2 {
  width: 95%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(110, 108, 108);
  color: #aaa7a7;
  margin-bottom: 20px;
}

.options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.option-button {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #ccc7c7;
}

.option-button.selected {
  background: #e44a17;
  color: white;
  border-color: #e44a17;
}

.option-button:hover {
  background: #d45429;
}

.option-button.selected:hover {
  background: #e44a17;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .form-section {
    gap: 20px;
  }

  .form-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .form-section {
    flex-direction: column;
    padding: 45px;
  }

  .title-section {
    padding-top: 20px;
  }

  .title-section .form-title {
    font-size: 30px;
  }

  .title-section {
    padding-left: 10px;
  }

  .form-row {
    width: 98%;
    display: flex;
    gap: 20px;
    margin-bottom: 6px;
  }

  #web_form {
    padding: 0;
  }

  .form-social-icons {
    position: relative;
    top: -8px;
    right: 22px;
    display: flex;
    justify-content: start;
    margin-top: -13px;
  }

  .form-social-icons a {
    padding: 10px 15px;
  }

  .select-container {
    margin: -10px auto;
  }

  .form-submit-btn {
    padding: 13px 22px;
    font-size: 12px;
  }

  .purple-line {
    bottom: 33px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 36px;
  }

  .form-section {
    padding: 20px;
  }

  .options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .option-button {
    width: 30%;
    font-size: 11px;
    padding: 5px 5px;
    text-align: center;
  }

  .select-container h2 {
    font-size: 20px;
  }

  .submit-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}



/* input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"] {
  border-radius: 5px;
  font-size: 25px;
  line-height: 40px;
  width: 100%;
  font-weight: 400;
  color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 1px solid #6c6868;
  background: none;
} */

@media (max-width: 1499px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="search"],
  input[type="password"],
  textarea .field {
    font-size: 15px;
    line-height: 32px;
    padding: 10px 10px 14px;
    height: 60px;
  }
}

@media (max-width: 767px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="search"],
  input[type="password"],
  textarea .field {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 28px 12px;
    height: 48px;
  }
}


body.no-scroll {
  overflow: hidden;
  /* Disable scrolling */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  backdrop-filter: blur(5px);
}


/* popup form css  */

.popup-form-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  background-color: #12141c;
  font-family: 'Anton';
  color: white;
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  overflow-y: auto;
}


.popup-title-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.ri-close-fill {
  font-size: 2rem;
  cursor: pointer;
  padding-top: 15px;
}

.ri-close-fill:hover {
  color: #ff7300;
  transform: translate(2px, -3px);
}

.popup-form-heading {
  font-size: 24px;
  text-align: center;
}

.popup-form-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 3px;
}

.input-group input {
  height: 1%;
  padding: 0px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  color: white;
  font-size: 2px;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-group input:focus {
  border-bottom-color: #ff7300;
}

.popup-select-container {
  font-family: "Anaton";
  max-width: 800px;
  margin: 10px auto;
}

.popup-select-container h2 {
  font-family: 'Anton';
  width: 95%;
  padding-bottom: 3px;
  border-bottom: 1px solid rgb(110, 108, 108);
  color: #aaa7a7;
  margin-bottom: 10px;
}

.popup-options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.popup-option-button {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 5px;
  cursor: pointer;
  font-size: 15px;
  color: #ccc7c7;
}



.popup-option-button.selected {
  background: #e44a17;
  color: white;
  border-color: #e44a17;
}

.popup-option-button:hover {
  background: #d45429;
}

.popup-option-button.selected:hover {
  background: #e44a17;
}

.popup-submit-btn {
  background-color: #ff7300;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 2px 2px yellow;
}

.popup-submit-btn:hover {
  background-color: #ff7300;
}

@media (max-width: 1800px) {
  .popup-form-section {
    padding: 27px 20px;
  }
}

@media (max-width: 1024px) {
  .popup-form-section {
    gap: 20px;
  }

  .popup-form-heading {
    font-size: 22px;
  }
}


@media (max-width: 768px) {
  .popup-form-section {
    width: 90%;
    max-width: 500px;
    padding: 15px;
    /* top: 25%; */
  }

  .popup-form-heading {
    font-size: 26px;
  }

  .popup-options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 8px;
  }

  .popup-option-button {
    width: 20%;
    font-size: 14px;
    padding: 8px 5px;
    text-align: center;
  }

  .popup-submit-btn {
    padding: 18px 18px;
    font-size: 13px;
  }

  .popup-select-container h2 {
    font-size: 22px;
  }
}

/* @media (max-width: 912px){
  .popup-form-section{
    top: 19%;
  }
} */

@media (max-width: 480px) {
  .popup-form-section {
    width: 95%;
    max-width: 400px;
    padding: 10px;
    /* top: 32%; */
  }

  .popup-form-heading {
    font-size: 22px;
  }

  .popup-options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .popup-option-button {
    width: 30%;
    font-size: 12px;
    padding: 5px 5px;
    text-align: center;
  }

  .popup-select-container h2 {
    font-size: 20px;
  }

  .popup-submit-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}


input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"] {
  border-radius: 5px;
  font-size: 20px;
  width: 100%;
  height: 50px;
  font-weight: 400;
  color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 1px solid #6c6868;
  background: none;
  font-family: "Anton";
}

@media (min-width:1024px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="search"],
  input[type="password"] {
    font-size: 20px;
    line-height: 32px;
    padding: 10px 10px 14px;
    height: 45px;
  }
}

@media (max-width: 767px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="search"],
  input[type="password"] {
    font-size: 15px;
    line-height: 10px;
    padding: 10px 28px 12px;
    height: 38px;
  }
}

@media (max-width: 490px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="search"],
  input[type="password"] {
    font-size: 16px;
  }
}

input::placeholder {
  color: rgb(222, 220, 220);
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}