/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/*** Spinner ***/
.spinner {
  width: 100px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spinner-img {
  width: 120px;
  height: auto;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.progress-bar-container {
  width: 120px;
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #007bff;
  transition: width 1s linear;
}

#spinner {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 9999;
}

#spinner.hide {
  opacity: 0;
  visibility: hidden;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.offcanvas {
  z-index: 2300 !important;
}
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navbar-dark .navbar-brand img {
  color: #ffffff;
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
  margin-top: 40px;
}
.navbar-dark .navbar-brand h1 img {
  margin-right: 0.5rem;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.521);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
  position: relative;
  background: linear-gradient(rgba(9, 30, 62, 0.39), rgba(9, 30, 62, 0.404)),
    url(../img/b2.jpg) center center no-repeat;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 80px 0;
  min-height: 400px;
}

/* Dark overlay */
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Ensure content is above the overlay */
.testimonial .container {
  position: relative;
  z-index: 2;
}

/* Testimonial box */
.testimonial-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

/* Fix background-attachment for mobile */
@media (max-width: 768px) {
  .testimonial {
    background-attachment: scroll;
  }
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 23px;
  z-index: 99;
  border-radius: 100% !important;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.158), rgba(9, 30, 62, 0.178)),
    url(../img/hero-gif.gif) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

/*contact option start*/
.contact-section {
  position: fixed;
  bottom: 200px;
  left: 80px;
  z-index: 2000;
  box-shadow: 3px 5px 8px 2px rgba(133, 133, 133, 0.774);
  border-radius: 100%;
}

@media (max-width: 576px) {
  .contact-section {
    position: fixed;
    bottom: 170px;
    left: 65px;
    z-index: 2000;
  }
}
.contact-toggle {
  background: #f88707;
  color: white;
  border: none;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-toggle i {
  transition: transform 0.5s ease, color 0.3s ease; /* Smooth rotation & color transition */
}

.contact-toggle.active i {
  transform: rotate(180deg); /* Rotate effect */
  color: red; /* Change icon color */
}

.contact-toggle:hover {
  background: #5fb101;
}

.contact-options {
  position: absolute;
  bottom: 60px;
  left: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.contact-btn {
  display: block;
  text-decoration: none;
  color: white;
  padding: 10px;
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  border-radius: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-btn i {
  font-size: 22px;
}

.call {
  background: #0099ff;
}
.whatsapp {
  background: #25d366;
}
.email {
  background: #ffc107;
  color: black;
}
.sms {
  background: #17a2b8;
}

.contact-btn:hover {
  opacity: 0.8;
}

.contact-options.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*CONTACT OPTION END*/

/*gif indicator start*/

.gif-indicator {
  position: fixed;
  left: -17px;
  bottom: -20px;
  transition: transform 1s ease-in-out;
  height: 300px;
  width: 180px;
  z-index: 1000;
}

@media (max-width: 576px) {
  .gif-indicator {
    position: fixed;
    left: -13px;
    bottom: -20px;
    transition: transform 1s ease-in-out;
    height: 250px;
    width: 150px;
  }
}
.move-up {
  transform: translateY(-100px);
}

/*gif indicator end*/

/*get a quote model start*/

/* Animated Gradient Background */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.modal-content {
  background: linear-gradient(45deg, #ff6b6b, #ffcc5c, #1e90ff);
  background-size: 300% 300%;
  animation: gradientAnimation 5s infinite alternate;
  color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Scratchy Effect */
.modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/diagmonds.png");
  opacity: 0.2;
}

/* Smooth Open Animation */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

/* Form Styling */
.form-control {
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
}

/* SVG Image */
.modal-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/*get a quote model end*/

.computer {
  width: 100%; /* Width of the computer */
  height: auto; /* Height of the computer */
  border: 18px solid #333; /* Border for the computer frame */
  border-bottom: 37px solid #333; /* Bottom border for the stand */
  border-radius: 10px; /* Rounded corners */
  background-color: #fff; /* Background color of the computer */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
  position: relative; /* Positioning context for the video */
  margin-top: 50px;
}

.screen {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Hide overflow */
  border-radius: 10px; /* Match the computer frame */
}

video {
  width: 100%; /* Make video responsive */
  height: 100%; /* Make video responsive */
  object-fit: cover; /* Cover the entire screen area */
}

.stand {
  width: 60px; /* Width of the stand */
  height: 55px; /* Height of the stand */
  background-color: #333; /* Color of the stand */
  position: absolute; /* Positioning context for the stand */
  bottom: -60px; /* Position the stand below the computer */
  left: 50%; /* Center the stand */
  transform: translateX(-50%); /* Center the stand */
}

.stand1 {
  width: 180px; /* Width of the stand */
  height: 40px; /* Height of the stand */
  background-color: #333; /* Color of the stand */
  position: absolute; /* Positioning context for the stand */
  bottom: -30px; /* Position the stand below the computer */
  left: 50%; /* Center the stand */
  transform: translateX(-50%); /* Center the stand */
  border-radius: 15px;
}

.video-play-button {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;

  width: 32px;
  height: 44px;
  /* background: #eb2055; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;

  cursor: pointer;
  display: inline-block;
  padding: 10px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #eb2055;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #eb2055;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  margin-left: 4px !important;
  border-left: 19px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  top: 10px;
  left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* Card Styling with Box Shadow */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Scratchy Animation */
.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  width: 150%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: top 0.5s ease-in-out;
}

.service-card:hover::before {
  top: 100%;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image Hover Effect */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Card Body */
.service-card .card-body {
  text-align: center;
  padding: 20px;
}

/* Button Styling */
.service-card .btn {
  background: #007bff;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  transition: background 0.3s, transform 0.2s;
}

.service-card .btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/*portfolio start*/
.tab-content {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid #ddd;
}
.nav-tabs .nav-item {
  flex: 0 0 auto;
}
.nav-tabs .nav-link {
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-tabs .nav-link.active {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.service-card img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.service-card img:hover {
  transform: scale(1.05);
}
.modal-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Pricing Container */
.pricing-container {
  background: #ffffff;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #007bff;
  color: white;
}

th,
td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

td input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60px;
  text-align: center;
}

th {
  font-size: 16px;
}

tr:hover {
  background: #f1f1f1;
}

/* Total Price Section */
.total-section {
  text-align: center;
  margin-top: 20px;
}

.total-section h3 {
  font-size: 20px;
  color: #444;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: block;
  text-align: center;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Mobile Responsiveness */
@media (max-width: 700px) {
  .pricing-container {
    padding: 15px;
  }

  table {
    font-size: 14px;
  }

  td input {
    width: 50px;
  }
}

/* Offer & Total Price Section */
.offer-total-section {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* Offer Price */
.offer-price {
  /* font-size: 16px; */
  font-weight: bold;
  color: #333;
}

.offer-price input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 120px;
  margin-left: 10px;
}

/* Total Price */
.total-price {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  border: 1px solid #cccccc8c;
  border-radius: 10px;
}

/* WhatsApp Button Section */
.whatsapp-section {
  text-align: center;
  margin-top: 15px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .offer-total-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .total-price {
    text-align: right;
    width: 100%;
  }
}

/*pricing plan end*/

/*gratitude and appreciation start*/

.thank-you-section {
  background: linear-gradient(rgba(9, 30, 62, 0.8), rgba(9, 30, 62, 0.8)),
    url("thank-you-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.thank-you-section p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.btn-custom {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
}
.btn-custom:hover {
  background-color: #ffca2c;
  color: #000;
}

/*gratitude and appreciation end*/

/*our technology start*/
.scroller {
  width: 100%;
  max-width: 100vw;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 60s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 80s;
}

.scroller img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .scroller img {
    height: 40px;
    margin: 0 5px;
  }
  
  .scroller[data-speed="fast"] {
    --_animation-duration: 50s;
  }

  .scroller[data-speed="slow"] {
    --_animation-duration: 90s;
  }
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.technology {
  display: grid;
  min-block-size: auto;
  place-content: center;
  font-family: system-ui;
  font-size: 1.125rem;
  background-color: rgb(0, 25, 49);
  padding: 2rem 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .technology {
    padding: 1rem 0;
  }
  
  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}


/*our technology end*/
