/********** Template CSS **********/
:root {
  --primary: #14476e;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 600 !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;
}

.text-primary {
  color: #091e3e;
}

/*** Topbar ***/
.topbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-left: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.topbar-social:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.topbar a {
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--secondary) !important;
}

/*** Navbar ***/
.modern-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 71, 110, 0.06);
  transition: all 0.4s ease;
}

.modern-navbar.sticky-top {
  box-shadow: 0 4px 30px rgba(20, 71, 110, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-tagline {
  font-size: 10px;
  font-style: italic;
  color: var(--primary);
  margin: 2px 0 0 0;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.logo {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.imgText {
  width: 200px;
  max-width: 100%;
  height: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  padding: 16px 18px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(20, 71, 110, 0.04);
}

.navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(20, 71, 110, 0.06);
}

/* Hover underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Dropdown caret rotation */
.navbar-nav .dropdown-toggle::after {
  transition: transform 0.3s ease;
  margin-left: 6px;
  vertical-align: middle;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Modern Dropdown */
.modern-dropdown {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(20, 71, 110, 0.12);
  padding: 10px 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 220px;
  border: 1px solid rgba(20, 71, 110, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.dropdown-menu.modern-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 25px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(20, 71, 110, 0.06);
  border-top: 1px solid rgba(20, 71, 110, 0.06);
  transform: rotate(45deg);
  z-index: 1;
}

.dropdown.show > .modern-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modern-dropdown .dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s ease;
  margin: 2px 0;
}

.modern-dropdown .dropdown-item:hover {
  background: rgba(20, 71, 110, 0.06);
  color: var(--primary);
  padding-left: 22px;
}

.modern-dropdown .dropdown-item i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.modern-dropdown .dropdown-item:hover i {
  transform: scale(1.15);
}

/* Wide dropdown for services */
.dropdown-wide {
  min-width: 460px;
}

.dropdown-wide .dropdown-item {
  padding: 9px 14px;
  font-size: 13.5px;
  white-space: nowrap;
}

/* CTA Button */
.nav-cta {
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(20, 71, 110, 0.25);
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(20, 71, 110, 0.35);
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Modern Toggler */
.modern-toggler {
  border: none !important;
  padding: 8px !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent !important;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modern-toggler:hover .toggler-bar {
  background: var(--secondary);
}

/* Responsive */
@media (max-width: 991.98px) {
  .modern-navbar {
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar-nav .nav-link {
    padding: 14px 0;
    margin: 0;
    font-size: 16px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .modern-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0;
    margin-top: 0;
    background: transparent;
    backdrop-filter: none;
    min-width: auto;
  }

  .modern-dropdown::before {
    display: none;
  }

  .modern-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 8px;
    margin: 2px 8px;
    background: rgba(20, 71, 110, 0.03);
    border-left: 3px solid transparent;
  }

  .modern-dropdown .dropdown-item:hover {
    background: rgba(20, 71, 110, 0.08);
    padding-left: 26px;
    border-left-color: var(--primary);
  }

  .dropdown-wide {
    min-width: auto;
  }

  .dropdown-wide .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
  }

  .dropdown-wide .row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nav-cta {
    display: inline-block;
    margin-top: 8px;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-wrap {
    position: absolute;
    width: 100%;
    top: 42px;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar-wrap {
    position: fixed;
    top: 0;
    z-index: 1000;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 32px;
    height: 32px;
  }
  .imgText {
    width: 120px;
  }
  .brand-tagline {
    display: none !important;
  }
  .topbar .col-lg-7,
  .topbar .col-lg-5 {
    text-align: center !important;
    flex-basis: 100%;
  }
}

/*** Carousel ***/
.hero-carousel {
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero-carousel .carousel-item {
  height: 600px;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 991.98px) {
  .hero-carousel,
  .hero-carousel .carousel-item {
    max-height: 450px;
    height: 450px;
  }
}

@media (max-width: 576px) {
  .hero-carousel,
  .hero-carousel .carousel-item {
    max-height: 350px;
    height: 350px;
  }

  .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 / Product Cards ***/
.service-item {
  position: relative;
  padding: 35px 30px;
  transition: all 0.4s ease;
  background-color: #fff;
  border: 1px solid #e8eff5;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  height: 100%;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20, 71, 110, 0.12);
  border-color: transparent;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item .service-icon {
  margin-bottom: 20px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #1a5a8a);
  border-radius: 12px;
  transform: none;
  transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.08);
}

.service-item .service-icon i {
  transform: none;
  color: #ffffff;
  font-size: 26px;
}

.service-item h4,
.service-item h5 {
  color: var(--dark);
  font-weight: 700;
}

.service-item p {
  color: #666;
  line-height: 1.7;
}

.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;
}

@media (max-width: 767.98px) {
  .service-item {
    padding: 30px 25px;
  }
}

/*** Product Card (icon + name only) ***/
.product-card {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #e8eff5;
  border-radius: 14px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20, 71, 110, 0.14);
  border-color: transparent;
  text-decoration: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .product-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #1a5a8a);
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.08);
}

.product-card .product-icon i {
  color: #fff;
  font-size: 26px;
}

.product-card h4 {
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.product-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

.product-card:hover h4 {
  color: var(--primary);
}

.product-card .product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 14px;
  border-radius: 50%;
  background: rgba(20, 71, 110, 0.06);
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-card:hover .product-arrow {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 767.98px) {
  .product-card {
    padding: 24px 18px;
  }

  .product-card h4 {
    font-size: 15px;
  }
}

/*** Single Product Page ***/
.product-detail {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8eff5;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  padding: 40px;
}

.product-detail h2 {
  color: var(--dark);
  font-weight: 700;
}

.product-detail .feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-detail .feature-list li:last-child {
  border-bottom: none;
}

.product-detail .feature-list li i {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.product-detail .product-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #1a5a8a);
  border-radius: 18px;
}

.product-detail .product-hero-icon i {
  color: #fff;
  font-size: 34px;
}

.product-detail .product-cta {
  background: linear-gradient(135deg, var(--primary), #1a5a8a);
  border-radius: 14px;
  padding: 30px;
  color: #fff;
}

.product-detail .product-cta a {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.product-detail .product-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/*** Testimonial ***/
.testimonial-item {
  background: #ffffff;
  border: 1px solid #e8eff5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
}

.testimonial-item:hover {
  box-shadow: 0 12px 40px rgba(20, 71, 110, 0.1);
  transform: translateY(-4px);
}

.testimonial-item .img-fluid.rounded {
  border: 3px solid var(--primary);
  object-fit: cover;
}

.testimonial-item h4 {
  font-weight: 700;
  color: var(--dark);
}

.testimonial-item small {
  color: #888;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonial-item .pt-4 {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-dots {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background: #cccccc;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
}

.testimonial-carousel .owl-dot.active {
  width: 35px;
  background: var(--primary);
  border-radius: 6px;
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.4s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(20, 71, 110, 0.12);
  border-color: var(--primary);
}

@media (max-width: 767.98px) {
  .testimonial-item .d-flex {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-item .ps-4 {
    padding-left: 0 !important;
    padding-top: 15px;
  }
}

/*** 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);
}

/* whatsapp start */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px #25d366;
  }
  50% {
    box-shadow: 0 0 20px #25d366, 0 0 40px #25d366;
  }
  100% {
    box-shadow: 0 0 5px #25d366;
  }
}

/* WhatsApp button styling */
#whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366; /* WhatsApp green */
  border-radius: 50%; /* Makes the button circular */
  width: 60px;
  height: 60px;
  animation: glow 2s infinite ease-in-out; /* Smoother glowing effect */
  box-shadow: 0 0 5px #25d366; /* Initial glow */
  text-decoration: none; /* Remove underline for links */
  transition: transform 0.3s ease; /* Add hover animation */
}

/* WhatsApp button hover effect */
#whatsapp-button:hover {
  transform: scale(1.1); /* Slightly increase size on hover */
}

/* WhatsApp icon inside the button */
#whatsapp-button img {
  width: 30px; /* Adjust icon size */
  height: 30px;
}
/* whatsapp end */

/*** Vendor / Partner Carousel ***/
.vendor-carousel .owl-item img {
  width: 120px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.7;
  transition: all 0.4s ease;
  margin: 0 auto;
  display: block;
}

.vendor-carousel .owl-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.vendor-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.vendor-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .vendor-carousel .owl-item img {
    width: 90px;
    height: 55px;
  }
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.scroll-container {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #ccc;
}

.scroll-content {
  display: inline-block;
  animation: scroll 10s linear infinite; /* Adjust the duration as needed */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) 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;
  }
}
