html {
  scroll-behavior: smooth;
  height: auto;
}

@keyframes slideUp {
  from {
    opacity: 0.8;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.9s ease-out forwards;
}

[data-scroll] {
  opacity: 0.9;
  transform: translateY(30px);
  transition: opacity 0.3s ease-out, transform 0.9s ease-out;
}

[data-scroll].in-view {
  opacity: 1;
  transform: translateY(10px);
}

@media only screen and (max-width: 1000px) {
  .slide-up {
    animation: slideUp 0.5s ease-out forwards;
  }

  [data-scroll] {
    transform: translateY(20px);
  }

  [data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  height: auto;
  font-family: "Montserrat", sans-serif;
}

[data-scroll-container] {
  height: auto !important;
  overflow: hidden;
}





/* section style  */

.section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.banner {
  max-width: 90%;
  padding: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.arrow-icon {
  position: absolute;
  bottom: 20px;

  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.logo {
  width: 50%;
  margin-bottom: 5%;
}

.head1 {
  position: absolute;
  bottom: 60px;
  font-size: 40px;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
}

.slideshow-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.slide1 {
  position: absolute;
  width: 100%;

  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide1.active {
  opacity: 1;
}

.bottom-title {
  position: absolute;
  bottom: 40px;
  font-size: 24px;
  font-weight: 600;
  color: white;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.slideshow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.slideshow-gradient {
  position: relative;
  top: 500px;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1747293198/gradientBG_wvfdwa.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
  pointer-events: none;
}

.desktop-slideshow {
  display: block;
}

.mobile-slideshow {
  display: none;
}

.highlight-container {
  display: flex;
  position: relative;
  height: 74px;
  vertical-align: bottom;
  width: 800px;
  text-align: center;
  justify-content: center;
}

.highlight {
  position: absolute;
  font: 800 50px "Montserrat";
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.highlight.active {
  opacity: 1;
  transform: translateY(0);
  text-align: center;
}

@media (max-width: 1300px) {
  .logo {
    width: 45%;
    margin-bottom: 5%;
  }
}

@media (max-width: 1100px) {
  .logo {
    width: 41%;
    margin-bottom: 5%;
  }
}

@media (max-width: 1000px) {
  .section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
  }
}

@media (max-width: 700px) {
  .arrow-icon {
    width: 16%;
  }

  .desktop-slideshow {
    display: none;
  }

  .mobile-slideshow {
    display: block;
  }
}

@media (max-width: 600px) {
  .head1 {
    font-size: 35px;
    white-space: nowrap;
    opacity: 1;
  }

  .highlight {
    font: 800 40px "Montserrat";
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
  }
}

@media (max-width: 500px) {
  .head1 {
    font-size: 34px;
    white-space: nowrap;
    opacity: 1;
  }

  .highlight {
    font: 800 38px "Montserrat";
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
  }

  .section1 {
    height: 92vh;
  }

  .slideshow-gradient {
    height: 92vh;
  }
}

@media (max-width: 460px) {
  .head1 {
    font-size: 28px;
    white-space: nowrap;
    opacity: 1;
  }

  .highlight {
    font: 800 32px "Montserrat";
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-in-out;
  }

  .logo {
    width: 65%;
    margin-bottom: -7%;
  }
}

@media (max-width: 400px) {
  .head1 {
    font-size: 27px;
    white-space: nowrap;
    opacity: 1;
  }

  .highlight {
    font: 800 30px "Montserrat";
    opacity: 0;
    transform: translateY(30px);
    transition: all 1sease-in-out;
  }
}

@media (max-width: 320px) {
  .head1 {
    font-size: 23px;
    white-space: nowrap;
    opacity: 1;
  }

  .highlight {
    font: 800 25px "Montserrat";
    opacity: 0;
    transform: translateY(30px);
    transition: all 1sease-in-out;
  }
}

.section2 {
  position: relative;
  /* 🔹 Required so ::before is positioned relative to this */
  height: 100vh;
  color: black;
  z-index: 1;
  /* 🔹 Ensure content is above background */
}

.gradient-text {
  background-image: linear-gradient(
    to right bottom,
    #052652,
    #124173,
    #1d5d95,
    #257cb8,
    #2d9cdb
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
}

.brand-logo {
  font-size: 2.5rem;
  font-weight: bold;
}

.brand-description {
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.stat-card {
  width: 75px;
  height: 75px;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 4px #00000040;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.stat-text {
  width: 50vh;
}

.stat-text h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

.stat-text p {
  text-align: justify;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.rightText {
  padding-left: 7%;
}

.container {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.carouselCant {
  height: 500px;
}

.carouHight {
  height: 40%;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  animation: scroll 70s linear infinite;
}

.gallery-item {
  height: 245px;
  overflow: hidden;
}

@media screen and (max-width: 1535px) {
  .gallery-item {
    height: 245px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1300px) {
  .section2 {
    height: 110vh;
    background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
    /* ✅ Update path if needed */
    background-repeat: repeat;
    background-size: auto;
    color: black;
  }
}

@media (max-width: 1000px) {
  .rightText {
    padding-left: 7%;
  }

  .section2 {
    height: 150vh;
    background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
    /* ✅ Update path if needed */
    background-repeat: repeat;
    background-size: auto;
    color: black;
  }

  .carouHight {
    height: 30%;
  }
}

@media (max-width: 991px) {
  .section2 {
    height: 175vh;
  }
}

@media (max-height: 800px) {
  .section2 {
    height: 140vh;
  }
}

@media (max-width: 768px) {
  .container.carouselCant {
    height: auto;
    padding: 20px;
  }

  .gallery-item {
    width: 200px;
    height: 150px;
  }

  .col-lg-6 {
    width: 100%;
    padding: 0 15px;
  }

  .brand-logo {
    text-align: center;
  }

  .brand-logo img {
    max-width: 100%;
    height: auto;
  }

  h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 15px;
  }

  .brand-description {
    text-align: center;
    font-size: 0.9rem;
  }

  .rightText {
    padding-left: 0;
    margin-top: 20px;
  }

  .stat-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .stat-text h5 {
    font-size: 1.1rem;
  }

  .stat-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 460px) {
  .section2 {
    height: 170vh;
  }

  .carouHight {
    height: 21%;
  }
}

@media (max-width: 400px) {
  .section2 {
    height: 175vh;
  }
}

.section3 {
  background-color: #f6f6f6;
}

.single {
  /* width: 1300px; */
  height: 100%;
  margin-top: 81px;
}

.feature-item {
  display: flex;
  margin-top: 10px;

  align-items: center;

  margin-bottom: 40px;
}

.section-titleH1 {
  font-size: 60px;
  margin-bottom: 5%;
  text-align: left;
}

.feature-icon {
  width: 75px;
  height: 75px;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 4px #00000040;
  align-items: center;
}

.feature-text {
  flex: 1;
}

.whyP {
  margin-bottom: 10%;
}

.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

@media (max-width: 1625px) {
  .single {
    height: 84%;
  }
}

@media (max-width: 1300px) {
  .section3 {
    /* height: 108vh; */
    /* background-image: url('https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png'); */
    /* ✅ Update path if needed */
    background-repeat: repeat;
    background-size: auto;
    color: black;
  }
}

@media (max-width: 1200px) {
  .single {
    margin-top: 18%;
  }

  .section-titleH1 {
    font-size: 55px;
  }
}

@media (max-width: 1150px) {
  .single {
    margin-top: 18%;
  }
}

@media (max-width: 1100px) {
  .single {
    margin-top: 21.5%;
  }
}

@media (max-width: 1050px) {
  .single {
    margin-top: 23%;
  }
}

@media (max-width: 1037px) {
  .single {
    margin-top: 20.5%;
  }

  .whyP {
    margin-bottom: 5%;
  }
}

@media (max-width: 1000px) {
  .single {
    margin-top: 2%;
    height: 100%;
    width: 60%;
  }
}

@media (max-width: 821px) {
  .single {
    margin-top: 2.4%;
    height: 100%;
    width: 60%;
  }
}

@media (max-height: 800px) {
}

@media (max-width: 800px) {
  .single {
    margin-top: 2.5%;
    height: 100%;
    width: 60%;
  }
}

@media (max-width: 768px) {
  .single {
    margin-top: 2.2%;
    height: 100%;
    width: 75%;
  }
}

@media (max-width: 700px) {
  .single {
    margin-top: 3%;
    height: 100%;
    width: 75%;
  }
}

@media (max-width: 600px) {
  .single {
    margin-top: 3.5%;
    height: 100%;
    width: 90%;
  }
}

@media (max-width: 555px) {
  .single {
    margin-top: 4%;
    height: 100%;
  }
}

@media (max-width: 500px) {
  .single {
    margin-top: 4.5%;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .single {
    margin-top: 5%;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .single {
    margin-top: 6.5%;
    height: 100%;
    width: 100%;
  }

  .section-titleH1 {
    font-size: 42px !important;
    margin-bottom: 10% !important;
  }
}

@media (max-width: 320px) {
  .single {
    margin-top: 8%;
    height: 100%;
    width: 100%;
  }
}

.section4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 121vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: white;
}

.dual {
  width: 100%;
  padding-bottom: 13.6%;
}

.container {
  padding: 0 40px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 3%;
}

.section-titleH1 {
  font-size: 60px;
  margin-bottom: 5%;
  text-align: left;
}

.content-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.info-card {
  background-color: #d5d5d5;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.info-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-left: -14%;
}

h4 {
  margin-top: 20px;
  font-weight: bold;
  text-align: left;
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 1);
  padding-left: calc(var(--bs-gutter-x) * 1);
}

@media (max-width: 1300px) {
  .section4 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140vh;
    background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
    /* ✅ Update path if needed */
    background-repeat: repeat;
    background-size: auto;
    color: black;
  }
}

@media (max-width: 1200px) {
  .section-titleH1 {
    font-size: 55px;
  }

  .dual {
    margin-top: 0%;
  }
}

@media (max-width: 1100px) {
  .section-titleH1 {
    margin-bottom: 2%;
  }

  .dual {
    margin-top: 0.5%;
  }
}

@media (max-width: 1000px) {
  .section4 {
    height: 160vh;
  }

  .dual {
    width: 60%;
    margin-top: 0%;
  }

  .section-titleH1 {
    margin-bottom: 5%;
    margin-top: 2%;
  }
}

@media (max-height: 900px) {
  .dual {
    padding-bottom: 0%;
  }
}

@media (max-height: 832px) {
  .dual {
    width: 100%;
    padding-bottom: 0%;
  }
}

@media (max-height: 800px) {
  .section4 {
    height: 160vh;
  }
}

@media (max-width: 800px) {
  .section-titleH1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .section4 {
    height: 320vh;
  }

  .info-card {
    width: 70%;
  }

  .dual {
    width: 75%;
    margin-top: 0%;
  }

  .container {
    padding: 0 20px;
    padding-bottom: 50px;
  }
}

@media (max-width: 650px) {
  .section4 {
    height: 286vh;
  }
}

@media (max-width: 600px) {
  .dual {
    width: 90%;
    margin-top: 0%;
  }
}

@media (max-width: 550px) {
  .section4 {
    height: 275vh;
  }
}

@media (max-width: 500px) {
  .dual {
    width: 100%;
    margin-top: 0%;
  }

  .section-titleH1 {
    font-size: 40px;
  }

  .container {
    padding: 0 15px;
    padding-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .section4 {
    height: 265vh;
  }
}

@media (max-width: 411px) {
  .dual {
    width: 100%;
    margin-top: 0%;
  }

  .section-titleH1 {
    font-size: 38px !important;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 3%;
  }
}

@media (max-width: 400px) {
  .section4 {
    height: 255vh;
  }
}

.signage-player-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: black;
  padding: 40px;
  box-sizing: border-box;
}

.image-container {
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  gap: 6%;
  width: 100%;
}

.image-container img {
  width: 100%;
}

.sPlayer {
  gap: 60px;
  width: 100%;
}

.content-wrapper {
  flex: 1;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(to right bottom, #052652, #2d9cdb);
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #00000045;
}

.subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.description {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.italic {
  font-style: italic;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.signage-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  transition: all 0.3s ease;
  align-items: center;
}

.signage-item:hover {
  transform: translateY(-3px);
}

.signage-icon-container {
  padding-top: 4px;
  flex-shrink: 0;
}

.signage-icon {
  min-width: 24px;
}

.signage-text h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: rgb(255, 255, 255);
}

.signage-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .features-grid {
    gap: 20px;
  }

  .signage-item {
    padding: 15px;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-container,
  .sPlayer {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .signage-player-section {
    padding: 30px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .content-wrapper {
    border-radius: 24px;
  }

  .signage-item {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .signage-player-section {
    padding: 20px 15px;
  }

  .subtitle {
    font-size: 16px;
  }

  .description {
    font-size: 14px;
  }

  .signage-text h3 {
    font-size: 16px;
  }

  .signage-text p {
    font-size: 14px;
  }
}

.section5 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: white;
}

.fullscreen {
  width: 100%;
}

.sec5d {
  flex-wrap: nowrap;
}

.ptext5 {
  margin-bottom: 5%;
}

.step-box {
  background: #f4f4f4;
  padding: 15px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 3.2px 27.2px 0.8px #00000059;
}

.arrow {
  font-size: 24px;
  text-align: center;
  background-image: linear-gradient(
    to right bottom,
    #052652,
    #124173,
    #1d5d95,
    #257cb8,
    #2d9cdb
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.sec5img {
  margin-left: -8%;
}

p {
  text-align: justify;
  margin: 0;
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (max-width: 1300px) {
  .sec5img {
    margin-left: -6%;
  }
}

@media (max-width: 1100px) {
  .processHead {
    font-size: 22px;
  }
}

@media (max-width: 1000px) {
  .section5 {
    height: auto;
  }

  .fullscreen {
    width: 60%;
    margin-left: 20%;
    margin-bottom: 20px;
  }

  .sec5d {
    flex-wrap: wrap;
  }

  .arrow {
    display: none;
  }

  .col-md-4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .section5 {
    height: auto;
  }

  .fullscreen {
    width: 70%;
    margin-left: 16%;
    margin-bottom: 20px;
  }

  .sec5img {
    display: none;
  }

  .sec5d {
    flex-wrap: wrap;
  }

  .arrow {
    display: none;
  }

  .col-md-4 {
    display: grid;
    justify-items: center;
  }
}

@media (max-width: 576px) {
  .section5 {
    height: auto;
    padding: 40px 0;
  }

  .fullscreen {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .sec5d {
    flex-wrap: wrap;
  }

  .arrow {
    display: none;
  }

  .col-md-4 {
    margin-bottom: 20px;
  }
}

.section6 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */

  background-size: auto;
  background-color: #FAFAFA;
  padding: 20px 0;
}

.stat-box {
  background: #f4f4f4;
  color: #000;
  padding: 14px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  width: 81px;
  box-shadow: 0 3.2px 27.2px 0.8px #00000059;
}

.feedback-img {
  width: 100%;
  max-width: 412px;
  height: auto;
  margin-top: 20px;
}

.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.brand-box {
  width: 120px;
  height: 60px;
  background: #ccc;
  border-radius: 8px;
}

.textt {
  display: flex;
  flex-direction: column;
  margin: 4% 8%;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 4rem;
}

.statext {
  display: flex;
  align-content: center;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: grid;
}

.e-con-inner {
  padding: 30px;
}

.scroll-content {
  overflow: hidden;
}

.brandsH {
  font-size: 3rem;
  text-align: center;
}

.scroll-wrapper {
  display: inline-flex;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  white-space: nowrap;
  position: relative;
}

.rtl .scroll-wrapper {
  animation: scrollRtl 40s linear infinite;
}

.ltr .scroll-wrapper {
  animation: scrollLtr 40s linear infinite;
}

.scroll-content img {
  height: 80px;
  margin: 0 11px;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #fff;
}

@keyframes scrollRtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLtr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {
  .scroll-content img {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .feedback-img {
    width: 80%;
    max-width: 300px;
  }

  .brandsH {
    font-size: 2rem;
  }

  .scroll-content img {
    height: 60px;
    margin: 0 15px;
  }

  .stat-box {
    height: 70px;
    width: 70px;
  }

  .textt h3 {
    font-size: 1.5rem;
  }

  .textt h5 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
}

@media (max-width: 480px) {
  .scroll-content img {
    height: 50px;
    margin: 0 10px;
  }

  .stat-box {
    height: 60px;
    width: 60px;
  }

  .textt h3 {
    font-size: 1.8rem;
  }

  .textt h5 {
    font-size: 1.2rem;
  }

  .textt {
    display: flex;
    flex-direction: column;
    margin: 0 6%;
  }
}

.section7 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: white;
  overflow-x: hidden;
}

.blog-card {
  padding: 20px;
  border-radius: 10px;
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
}

.blogB {
  margin-left: 56rem;
}

.blog-sidebar {
  overflow-y: auto;
  margin-top: 5%;
}

.blog-sidebar img {
  width: 44%;
  height: 100%;
  border-radius: 8px;
}

.blog-sidebar h6 {
  font-weight: bold;
}

.blog-text {
  margin: 0 20px;
  align-content: center;
}

.carousel-item {
  display: flex;
}

.fs-1 {
  font-size: 3.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 5rem;
}

@media (max-width: 1625px) {
  .blogB {
    margin-left: 61rem;
  }
}

@media (max-width: 1300px) {
  .section7 {
    height: 107vh;
  }
}

@media (max-width: 1200px) {
  .fs-1 {
    font-size: 3.5rem !important;
    width: 14%;
    margin-left: 3%;
  }

  .fs-2 {
    width: 30%;
    margin-left: 3%;
  }
}

@media (max-width: 1100px) {
  .blogB {
    margin-left: 50rem;
  }

  .fs-1 {
    font-size: 3rem !important;
    width: 40%;
    margin-left: 1%;
  }

  .fs-2 {
    width: 35%;
    margin-left: 1%;
  }
}

@media (max-width: 1024px) {
  .blogB {
    margin-left: 46rem;
  }
}

@media (max-width: 1000px) {
  .section7 {
    height: 200vh;
  }

  .blogB {
    margin-left: 43rem;
  }

  .blog-sidebar img {
    width: 35%;
  }
}

@media (max-width: 900px) {
  .blogB {
    margin-left: 36rem;
  }

  .fs-2 {
    width: 50%;
    margin-left: 1%;
  }
}

@media (max-height: 800px) {
  .section7 {
    height: 135vh;
  }
}

@media (max-width: 800px) {
  .blogB {
    margin-left: 31rem;
  }

  .section7 {
    height: 196vh;
  }
}

@media (max-width: 768px) {
  .blogB {
    margin-left: 29rem;
  }
}

@media (max-width: 750px) {
  .blogB {
    margin-left: 28rem;
  }
}

@media (max-width: 721px) {
  .blogB {
    margin-left: 27rem;
  }
}

@media (max-width: 700px) {
  .blogB {
    margin-left: 24rem;
  }

  .section7 {
    height: 196vh;
  }
}

@media (max-width: 600px) {
  .section7 {
    height: 238vh;
  }

  .carousel-item {
    display: flex;
    flex-wrap: wrap;
  }

  .blogB {
    margin-left: 19rem;
  }

  .fs-1 {
    font-size: 2.5rem !important;
    width: 40%;
    margin-left: 1%;
  }

  .fs-2 {
    width: 100%;
    margin-left: 1%;
  }
}

@media (max-width: 550px) {
  .blogB {
    margin-left: 16rem;
  }
}

@media (max-width: 500px) {
  .blogB {
    margin-left: 12rem;
    margin-top: 15%;
  }

  .mt-4 {
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  .blog-sidebar h6 {
    font-weight: bold;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-sidebar img {
    width: 50%;
  }
}

@media (max-width: 430px) {
  .section7 {
    height: 247vh;
  }
}

@media (max-width: 400px) {
  .section7 {
    height: 280vh;
  }

  .blogB {
    margin-left: 5rem;
    margin-top: 15%;
  }
}

@media (max-width: 350px) {
  .section7 {
    height: 270vh;
  }
}

.section8 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: white;
  overflow: hidden;
}

.container-fluid {
  height: 100%;
  padding: 0;
}

.row {
  height: 100%;
  margin: 0;
}

.contact-form {
  align-content: center;
}

.form-control {
  background: transparent;

  color: #000000;
}

.gradient-border {
  position: relative;
  padding: 10px 20px;
  color: #052652;
  background-color: #f0f0f0;
  border: 2px solid;
  /* required */
  border-image-slice: 1;
  /* required to apply the gradient across the border */
  border-image-source: linear-gradient(to right bottom, #052652, #2d9cdb);
  border-radius: 4px;
  z-index: 1;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-submit {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-left: 2%;
}

.btn-submit:hover {
  background-color: #f0f0f0;
  color: #052652;
}

.ad-section {
  height: 100%;
  padding: 0;
}

.ad-card {
  height: 100%;
  width: 100%;
}

.ad-card {
  height: 100%;
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1747293224/sec8image_rpxj9n.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.getin {
  font-size: 60.43px;
  font-weight: 700;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-left: 1%;
}

.contactp {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-left: 2%;
  margin-bottom: 4rem;
}

textarea {
  margin-left: 2%;
  width: 96% !important;
}

.p-5 {
  padding: 5rem !important;
}

@media (max-width: 1200px) {
  .getin {
    font-size: 50.43px;
  }
}

@media (max-width: 1024px) {
  .p-5 {
    padding: 4rem !important;
  }
}

@media (max-width: 1000px) {
  .section8 {
    height: 100vh;
  }

  .getin {
    font-size: 43px;
  }
}

@media (max-width: 900px) {
  .getin {
    font-size: 38px;
  }
}

@media (max-width: 800px) {
  .p-5 {
    padding: 3rem !important;
  }
}

@media (max-width: 767.98px) {
  .section8 {
    height: auto;
    padding: 20px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .ad-section {
    height: 300px;
  }

  .ad-card img {
    border-radius: 0;
  }
}

@media (max-width: 500px) {
  .getin {
    font-size: 35px;
  }
}

@media (max-width: 400px) {
  .getin {
    font-size: 30px;
  }
}

.footer {
  background: var(--black-10, #1c1c1c1a);
  color: #4d4d4d;
  padding: 40px 0;
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

p {
  color: #000000;
}

.footerP {
  text-align: justify;
  margin-bottom: 1rem;
  color: #4d4d4d;
}

.footer a {
  color: #4d4d4d;
  text-decoration: none;
}

.footerP .term {
  text-decoration: none;
  cursor: pointer;
  color: rgba(38, 98, 250, 1);
}

.footerh5 {
  color: #006499;
}

.footer a:hover {
  text-decoration: underline;
}

.footerimg {
  width: 60%;
}

.social-icons a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #4d4d4d;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: all 0.5s ease;
}

.social-icons a:hover {
  opacity: 0.8;
  color: #24262b;
  background-color: #fff;
}

.linkk {
  line-height: 50px;
  text-align: start;
}

.collink {
  line-height: 37px;
}

.linkk a::before {
  content: "• ";
  color: #006499;
  font-weight: bold;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .custom-container {
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }

  .linkk {
    line-height: 30px;
  }

  .footerimg {
    width: 50%;
  }

  .mt-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .footerimg {
    width: 58%;
  }
}

.custom-popup {
  background-image: url("https://res.cloudinary.com/dqfnwh89v/image/upload/v1751365609/BG-Pattern_1_m6kdgo.png");
  /* ✅ Update path if needed */
  background-repeat: repeat;
  background-size: auto;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.custom-title {
  font-size: 20px;
  font-weight: bold;
}

.custom-button {
  background: linear-gradient(
    116.21deg,
    #052652 -3.25%,
    #2d9cdb 107.37%
  ) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
}

.custom-button-error {
  background: #d9534f !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
}
