* {
  -webkit-tap-highlight-color: transparent;
}
/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  .header-container .logo img {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
  }

  /* Prevent iOS from zooming on focus */
  .header-container {
    -webkit-text-size-adjust: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  text-decoration: none;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
h1 {
  font-size: 2rem;
}
section h1,
article h1,
aside h1,
nav h1 {
  font-size: 1.8rem;
}
section section h1 {
  font-size: 1.6rem;
}
body {
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  width: 100%;
  color: #666;
  padding-bottom: 80px;
  font-display: swap;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #ff8f1f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.loading-text {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.hamburger {
  display: none;
}
img[loading="lazy"] {
  content-visibility: auto;
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: grey;
  z-index: 1001;
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 65px;
  padding: 10px 20px;
}
.topbar-contact {
  display: flex;
  gap: 20px;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}
.topbar-contact a span {
  color: #fff;
}
.topbar-contact a i {
  font-size: 20px;
  color: #ff9831;
}
.topbar-social {
  display: flex;
  gap: 8px;
  font-size: 20px;
}
.topbar-social a i {
  color: #ff9831;
  transition: all 0.3s ease;
}
.topbar-social a:hover {
  transform: translateY(-2px);
}
.topbar-social i:hover {
  color: #fff;
}
header {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0 65px;
  padding: 0 20px;
}
.header-container .logo {
  display: flex;
  align-items: center;
}
.header-container .logo img {
  width: auto;
  max-width: 180px;
  height: 70px;
  object-fit: contain;
  padding-top: 5px;
}
.company-name-mobile {
  display: none;
  font-weight: 700;
  color: #000;
  text-shadow: 1px 1px 3px rgb(122 89 66 / 0.3);
  font-size: 1.2rem;
  z-index: 1; /* Lower than interactive elements */
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}
.nav-item {
  position: relative;
}
.nav-item a {
  font-size: 18px;
}
.nav-item:hover .nav-link.active,
.nav-item .nav-link.active {
  color: #ff9831 !important;
}
.nav-link {
  display: block;
  padding: 29px 0 29px 20px;
  color: #242424;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link.active {
  color: #ff9831 !important;
  font-weight: 700;
}
.nav-link:hover {
  color: #ff9831;
}
.dropdown {
  position: absolute;
  top: 100%;
  width: 250px;
  padding: 5px;
  margin: -5px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e6ebf0 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}
.dropdown-item {
  padding: 0;
  margin-bottom: 5px;
}
.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #5370fe;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgb(0 0 0 / 0.05);
}
.dropdown-link:hover {
  background: #f0f7ff;
  color: #ff9831;
  padding-left: 25px;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.nav-item .dropdown-link.active ~ .nav-link {
  color: #ff9831 !important;
}
.dropdown-link i {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  background: rgb(255 255 255 / 0.1);
  border-radius: 5px;
  padding: 10px 12px;
  transition: all 0.3s ease;
}
.hamburger:hover {
  background: rgb(255 255 255 / 0.2);
}
.hamburger div {
  width: 28px;
  height: 3px;
  background: #ff9831;
  margin: 7px 0;
  transition: all 0.3s ease;
}
.co-theme {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}
.co-theme-image {
  position: relative;
  z-index: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease-out, transform 1.5s ease-out;
  will-change: transform, opacity;
}
.co-theme-image.animated {
  opacity: 1;
  transform: scale(1);
}
.co-theme-image img {
  width: 100%;
  max-height: 600px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.co-about {
  position: absolute;
  top: 240px;
  left: 50px;
  right: 50px;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: transform, opacity;
}
.co-about.animated {
  opacity: 1;
  transform: translateY(0);
}
.co-about p {
  text-align: justify;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  margin: 0;
}
.co-about p span {
  color: #fff;
  font-weight: 700;
  font-size: 6.25rem;
  transition: color 0.5s;
}
.co-about p:hover span {
  cursor: pointer;
  color: #ff9831;
}
.about-section {
  margin-top: 80px;
  padding: 40px 0;
}
.about-wrapper {
  padding: 30px 0;
}
.about-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin: 0 65px;
  margin-top: 30px;
  min-height: 400px;
  will-change: transform, opacity;
  contain: content;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.about-container.animated {
  opacity: 1;
  transform: translateY(0);
}
.ba-image {
  flex: 1; /* Take up equal space */
  display: flex;
  align-items: center; /* Center the image vertically */
  justify-content: center;
}
.ba-image img {
  width: 100%;
  height: 450px; /* Fixed height */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.ba-despscripion {
  flex: 1; /* Take up equal space */
  background: linear-gradient(160deg, #f8f9fa 0%, #e6ebf0 100%);
  padding: 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ba-despscripion h1 {
  font-size: clamp(1.8rem, calc(1vw + 1rem), 5rem);
  color: #ff9831;
  margin-bottom: 16px;
}
.ba-despscripion p {
  text-align: justify;
  margin-bottom: 16px;
  color: #333;
}
.button-style {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  padding: 8px 16px;
  background: #06c;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: ease 0.2s;
}
.button-style:hover {
  background: #ff8f1f;
  margin-left: 20px;
}
.serv-wrapper {
  padding: 50px 0;
  background: #fff;
}
.serv-container {
  margin: 0 65px;
  padding: 0 20px;
  opacity: 0;
  will-change: transform, opacity;
  contain: content;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.serv-container.animated {
  opacity: 1;
  transform: translateY(0) !important;
}
.serv-container h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #5370fe;
}
.serv-container p {
  margin-bottom: 16px;
}
.serv-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.serv-card {
  background: linear-gradient(160deg, #f8f9fa 0%, #e6ebf0 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.serv-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.serv-card:hover {
  transform: translateY(-5px);
}
.serv-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.serv-card-content {
  padding: 20px;
}
.serv-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff9831;
}
.serv-card p {
  line-height: 1.5;
}

.carousel-wrapper {
  padding: 30px 0;
}
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 65px;
  text-align: center;
}
.container h1 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #5370fe;
}
.portfolio-p {
  text-align: justify;
}
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.carousel-container.animated {
  opacity: 1;
  transform: translateY(0);
}
.carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  transition: transform 0.5s ease;
  width: 100%;
  padding: 20px 0;
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.carousel.animated {
  opacity: 1;
  transform: translateY(0);
}
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  overflow: hidden;
  object-position: top;
}
.card-title {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  margin-bottom: 8px;
  color: #ff9831;
}
.card-desc {
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  color: #333;
  margin-bottom: 12px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
}
.nav-btn {
  border: none;
  background: none;
  position: absolute;
  top: 44.5%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease-out;
}
.nav-btn i {
  -webkit-text-stroke: 1.5px currentColor;
  font-size: 40px;
  color: #6e86fc;
}
.nav-btn:hover i {
  color: #5370fe;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  background: #333;
}
.testimonial-wrapper {
  padding: 40px 0;
  background: #f5f5f5;
}
.container h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #5370fe;
}
.testimonial-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
}
.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 30px;
  padding: 0;
  box-sizing: border-box;
}
.testimonial-card {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
  position: relative;
}
.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: rgb(138 43 226 / 0.2);
  position: absolute;
}
.testimonial-quote::before {
  top: -15px;
  left: -10px;
}
.testimonial-quote::after {
  bottom: -25px;
  right: -10px;
}
.testimonial-author {
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
  font-size: 1.1rem;
}
.testimonial-role {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.testimonial-rating .star {
  color: gold;
  font-size: 1.2rem;
}
.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fd9d3e;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-nav-btn i {
  -webkit-text-stroke: 1px currentColor;
  color: #fff;
}
.testimonial-nav-btn:hover {
  background: #ff9021;
  transform: translateY(-50%) scale(1.1);
}
.prev-testimonial {
  left: 10px;
}
.next-testimonial {
  right: 10px;
}
.testimonial-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}
.testimonial-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.testimonial-indicator::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fd9d3e;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.testimonial-indicator.active::after {
  transform: scale(1);
}
.testimonial-indicator.active {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(253 157 62 / 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0;
  }
}
.delay-1 {
  transition-delay: 0.1s;
}
.scroll-animate {
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.footer-wrapper {
  background-color: grey;
  padding: 50px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  margin: 0 65px;
  padding: 0 20px 20px 20px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #ff8f1f;
}
.footer-left-sect {
  display: flex;
}
.footer-left-sect img {
  width: 200px;
  height: 100%;
  object-fit: contain;
  margin-right: 20px;
}
.footer-left-sect p {
  font-weight: 700;
  position: relative;
  color: #ff8f1f;
  font-size: 24px;
  margin: 0;
}
.footer-social-icons {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 45px;
  margin-left: -85px;
}
.footer-social-icons a {
  font-size: 21px;
  margin-bottom: 7px;
}
.footer-social-icons a i {
  color: #fff;
}
.footer-social-icons a:hover i {
  color: #ff8f1f;
}
.footer-middle-sect p {
  font-weight: 700;
  color: #ff8f1f;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 2px;
}
.footer-middle-sect a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}
.footer-middle-sect a:hover {
  color: #ff8f1f;
}
.footer-middle-sect a:hover i {
  color: #ff8f1f;
}
.explore-item {
  margin-top: 12px;
}
.explore-item a i {
  color: #fff;
}
.footer-right-sect p {
  color: #ff8f1f;
  font-size: 24px;
  font-weight: 700;
}
.footer-right-sect a {
  margin-top: 14px;
  display: flex;
  align-items: center;
}
.explore-item i {
  margin-right: 6px;
}
.footer-right-sect a i {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}
.footer-right-sect span {
  color: #333;
  font-size: 18px;
}
.footer-right-sect span:hover {
  color: #ff8f1f;
}
.design-author {
  color: #333;
  font-size: 18px;
  padding: 20px 15px;
  display: flex;
  justify-content: center;
  margin: 0 65px;
}
.design-author a {
  color: #333 !important;
  text-decoration: underline;
  padding: 0 4px;
}
.design-author a:hover {
  text-decoration: underline;
  color: #e67e22;
}
.whatsapp-float {
  cursor: pointer;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 25px;
  right: 20px;
  width: 140px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  gap: 8px;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.3);
}
.whatsapp-float img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.whatsapp-text {
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.whatsapp-link {
  transition: transform 0.3s ease;
}
.whatsapp-link:hover {
  transform: scale(1.1);
}
.whatsapp-chat {
  display: inline-flex;
  align-items: center;
}
.phone-call-float {
  position: fixed;
  bottom: 25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
  z-index: 999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.phone-call-float.visible {
  opacity: 1;
  visibility: visible;
}
.phone-call-float:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}
.phone-call-float i {
  color: #fff;
  font-size: 20px;
  -webkit-text-stroke: 0.1px currentColor;
}
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: rgb(83 112 254 / 0.7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 0.7;
  visibility: visible;
}
.back-to-top:hover {
  background-color: rgb(83 112 254 / 0.9);
  opacity: 1;
  transform: translateY(-3px);
}
.back-to-top i {
  color: #333;
  font-size: 20px;
  -webkit-text-stroke: 0.5px currentColor;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #556b8d;
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #ff8f1f;
  color: #fff;
}

.cookie-btn.decline {
  background: transparent;
  color: #ff8f1f;
  border: 1px solid #ff8f1f;
}
@media (min-width: 1280px) {
  .topbar-container,
  .header-container,
  .about-container,
  .serv-container,
  .container,
  .footer-container,
  .co-about {
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .co-about {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 100%;
    text-align: center;
    right: auto;
    margin: 0 auto;
  }

  .co-about.animated {
    transform: translateX(-50%) translateY(0);
  }

  .serv-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .ba-despscripion p {
    max-width: 100%;
    line-height: 1.8;
  }
  .carousel {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
  }
  .nav-btn {
    width: 60px;
    height: 60px;
  }

  .nav-btn i {
    font-size: 48px;
  }
}

@media (min-width: 991px) and (max-width: 1279px) {
  .topbar-container {
    height: 40px;
  }
  .topbar-contact span {
    font-size: 0.83rem;
  }
  .topbar-contact a i {
    font-size: 17px;
  }
  .topbar-social a {
    font-size: 18px;
  }
  header {
    top: 40px;
  }
  .co-about {
    left: 85px;
    right: 85px;
  }
  .co-about p span {
    font-size: 4rem;
  }
  .about-container {
    padding: 0 20px;
  }
  .ba-image img {
    height: 300px;
  }
  .card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
  }
  .footer-container {
    flex-wrap: nowrap;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-ba-icon {
    margin-top: 12px;
  }
  .footer-social-icons {
    margin-top: 10px !important;
  }
  .footer-left-sect {
    display: flex;
    flex-direction: column;
    flex: 0 0 0;
    margin-top: 0;
  }
  .footer-left-sect p {
    display: none;
  }
  .footer-left-sect img {
    width: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-left-sect p {
    margin-bottom: 15px;
  }

  .footer-social-icons {
    margin-top: 26px;
    margin-left: 12px;
    flex-direction: row;
    gap: 15px;
  }

  .footer-social-icons a {
    font-size: 20px;
    margin-bottom: 0;
  }

  .footer-middle-sect {
    flex: 0 0 30%;
    margin-top: 0;
  }

  .footer-middle-sect p {
    margin: 0;
  }

  .footer-right-sect {
    flex: 0 0 30%;
    margin-top: 0;
  }

  .footer-right-sect p {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .topbar-container {
    height: 40px;
    margin: 0 30px;
    padding: 0 20px;
  }
  .topbar-contact {
    gap: 8px;
    margin: 0;
  }
  .topbar-contact a {
    font-size: 0;
  }
  .topbar-contact a i {
    color: white;
  }
  .topbar-social a i {
    color: white;
  }
  header {
    top: 40px;
  }
  .header-container {
    margin: 0 30px;
  }
  .header-container .logo img {
    position: relative;
    padding: 0;
    height: 65px;
    z-index: 10;
  }
  .company-name-mobile {
    color: #333;
    margin: auto !important;
    font-size: 1.9rem;
    display: block;
    z-index: 1;
  }
  .hamburger {
    display: block;
    padding: 10px 0;
    z-index: 10;
  }
  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: lightsteelblue;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateX(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    z-index: 999;
    display: flex !important;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding: 15px 25px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }
  .nav-link:hover::after {
    display: none;
  }
  .dropdown {
    position: static;
    width: 100%;
    background: #fff0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    transform: none;
  }
  .dropdown.active {
    max-height: 500px;
  }
  .dropdown-link {
    color: #0047ab;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    padding: 12px 25px 12px 45px;
  }
  .dropdown-link:hover {
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    padding-left: 45px;
  }
  .dropdown-link i {
    color: #ffffff !important; /* Added !important to ensure it overrides */
    margin-right: 8px;
    font-size: 14px;
    transition: transform 0.2s ease;
    display: inline-block !important; /* Ensure it's visible */
  }

  .dropdown-link:hover i {
    transform: translateX(3px);
    color: #ffffff !important;
  }
  .nav-item.has-dropdown > .nav-link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
  }
  .nav-item.has-dropdown > .nav-link.active::after {
    transform: rotate(180deg);
  }
  .co-theme {
    padding-top: 0;
    padding-bottom: 0;
  }
  .co-theme img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  }
  .co-about {
    top: 170px;
    left: 60px;
    right: 60px;
    text-align: center;
  }
  .co-about p {
    text-align: justify;
    font-size: 1rem;
  }
  .co-about p span {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .about-section {
    padding: 10px 0;
  }
  .about-wrapper {
    background: none;
    padding: 20px 0;
  }
  .about-container {
    margin: 50px 30px 40px 30px;
    display: block;
    padding: 0 20px;
    border-radius: 0;
  }
  .ba-image {
    display: none;
  }
  .ba-despscripion {
    background: none;
    text-align: justify;
    padding: 0;
  }
  .ba-despscripion h1 {
    text-align: center;
    font-size: 24px;
  }
  .ba-despscripion p {
    margin: auto;
    font-size: 16px;
    margin: 12px 0;
  }
  .about-more {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  .about-more button {
    font-size: 20px;
    margin: 0;
  }
  .serv-wrapper {
    padding: 30px 0;
  }
  .serv-container {
    margin: 0 30px;
    padding: 0 20px;
  }
  .serv-container h2 {
    margin-bottom: 0;
  }
  .serv-container p {
    margin: 12px 0;
    text-align: justify;
  }
  .serv-carousel {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .serv-card-img {
    width: 100%;
    height: 250px;
  }
  .serv-card-content {
    padding: 7px;
  }
  .container {
    max-width: 100%;
    padding: 0px;
    margin: 0 30px;
  }
  .container h1 {
    margin-bottom: 12px;
  }
  .container p {
    margin-bottom: 5px;
  }
  .carousel-wrapper {
    padding: 20px;
  }
  .carousel {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
    height: auto;
    gap: 15px;
    padding: 15px 0;
  }
  .card {
    overflow: hidden;
    height: 100%;
  }
  .carousel .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
  }
  .card-content {
    padding: 7px;
    font-size: 0.8rem;
  }
  .carousel-container {
    margin: 0;
    padding: 0;
  }
  .nav-btn i {
    display: none;
  }
  .prev-btn {
    left: 0;
  }
  .next-btn {
    right: 0;
  }
  .testimonial-wrapper {
    padding: 20px 0;
  }
  .testimonial-section {
    padding: 0 20px;
  }
  .testimonial-section h2 {
    margin-bottom: 12px;
  }
  .testimonial-slide {
    padding: 0;
  }
  .testimonial-card {
    min-height: auto;
    padding: 15px;
  }

  .testimonial-quote {
    margin-bottom: 10px;
  }

  .testimonial-author {
    margin-top: 10px;
  }
  .testimonial-quote::after {
    bottom: -25px;
    right: 10px;
  }
  .testimonial-nav-btn {
    display: none;
  }
  .testimonial-nav-btn i {
    font-size: 1rem;
  }
  .testimonial-indicators {
    margin-top: 20px;
  }
  .testimonial-indicator {
    width: 12px;
    height: 12px;
  }
  .testimonial-indicator::after {
    width: 8px;
    height: 8px;
  }
  .footer-wrapper {
    margin-top: 0;
    padding: 40px 0;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 20px;
    padding: 0 15px 20px 20px;
  }
  .footer-left-sect {
    flex: 0 0 40%;
    border-bottom: none;
    padding-bottom: 12px;
  }
  .footer-ba-icon {
    margin: 0;
  }
  .footer-left-sect p {
    display: none;
  }
  .footer-social-icons {
    margin-top: 20px;
    margin-left: 65px;
  }
  .footer-social-icons a {
    font-size: 22px;
    padding-bottom: 18px;
    margin: 0;
  }
  .footer-middle-sect {
    flex: 0 0 40%;
  }
  .footer-middle-sect p {
    margin: 0;
    margin-top: 15px;
  }
  .explore-item a {
    font-size: 1.125rem;
  }
  .footer-right-sect {
    flex: 0 0 100%;
  }
  .footer-right-sect div {
    display: flex;
  }
  .contact-sect {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
  }
  .contact-sub-sect span,
  .phone-options span,
  .footer-email span {
    font-size: 1.125rem;
  }
  .footer-right-sect a {
    display: flex;
  }
  .footer-right-sect .email-link img {
    width: 24px;
  }
  .design-author {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: 12px;
  }
  .design-author a {
    padding: 0 4px;
    color: #778dfa;
  }
  .whatsapp-float {
    padding: 7px 12px;
    bottom: 20px;
    right: 15px;
    height: 40px;
    gap: 6px;
  }
  .whatsapp-float img {
    width: 20px;
    height: 20px;
  }
  .whatsapp-text {
    font-size: 14px;
  }
  .phone-call-float {
    display: flex;
    visibility: visible;
    bottom: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .phone-call-float i {
    font-size: 16px;
  }
  .back-to-top {
    position: fixed;
    bottom: 20px;
    left: 42%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    z-index: 999;
    opacity: 0.7;
    visibility: visible;
  }

  .back-to-top i {
    font-size: 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .topbar-container {
    height: 40px;
    margin: 0 30px;
  }
  .topbar-contact {
    display: flex;
    gap: 8px;
    margin: 0;
  }
  .topbar-contact a {
    font-size: 0;
  }
  .topbar-contact a i {
    color: white;
    font-size: 20px;
    margin: 0;
  }
  .topbar-social a i {
    color: white;
  }
  header {
    top: 40px;
  }
  .header-container {
    margin: 0 30px;
  }
  .header-container .logo img {
    position: relative;
    width: 100%;
    padding: 0;
    height: 65px;
    z-index: 10;
  }

  .company-name-mobile {
    color: #333;
    font-size: 1.5rem;
    display: block;
    z-index: 1;
  }
  .hamburger {
    display: block;
    padding: 10px 0;
    z-index: 10;
  }
  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: lightsteelblue;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateX(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    z-index: 999;
    display: flex !important;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding: 15px 25px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }
  .nav-link:hover::after {
    display: none;
  }
  .dropdown {
    position: static;
    width: 100%;
    background: #fff0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    transform: none;
  }
  .dropdown.active {
    max-height: 500px;
  }
  .dropdown-link {
    color: #0047ab;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    padding: 12px 25px 12px 45px;
  }
  .dropdown-link:hover {
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    padding-left: 45px;
  }
  .dropdown-link i {
    color: #ffffff !important; /* Added !important to ensure it overrides */
    margin-right: 8px;
    font-size: 14px;
    transition: transform 0.2s ease;
    display: inline-block !important; /* Ensure it's visible */
  }

  .dropdown-link:hover i {
    transform: translateX(3px);
    color: #ffffff !important;
  }
  .nav-item.has-dropdown > .nav-link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
  }
  .nav-item.has-dropdown > .nav-link.active::after {
    transform: rotate(180deg);
  }
  .co-theme {
    padding-top: 0;
    padding-bottom: 0;
  }
  .co-theme img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  }
  .co-about {
    top: 170px;
    left: 50px;
    right: 50px;
  }
  .co-about p {
    font-size: 1rem;
  }
  .co-about p span {
    font-size: 1.5rem;
  }
  .about-section {
    padding: 10px 0;
  }
  .about-wrapper {
    background: none;
    padding: 20px 0;
  }
  .about-container {
    margin: 50px 0 30px 0;
    padding: 0 20px;
  }
  .ba-image {
    display: none;
  }
  .ba-despscripion {
    background: none;
    text-align: justify;
    padding: 0;
  }
  .ba-despscripion h1 {
    background: rgb(83 112 254 / 0.2);
    text-align: center;
    font-size: 24px;
  }
  .ba-despscripion p {
    font-size: 17px;
  }
  .about-more {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  .about-more button {
    font-size: 20px;
    margin: 0;
  }
  .serv-wrapper {
    padding: 30px 0;
  }
  .serv-container {
    margin: 0 30px;
  }
  .serv-container h2 {
    margin-bottom: 0;
  }
  .serv-container p {
    margin: 12px 0;
    text-align: justify;
  }
  .serv-carousel {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }
  .serv-card-img {
    width: 100%;
    height: 300px;
  }
  .serv-card-content {
    padding: 7px;
  }
  .container {
    margin: 0 30px;
  }
  .container h1 {
    margin-bottom: 12px;
  }
  .container p {
    margin-bottom: 5px;
  }
  .carousel {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
    height: auto;
    gap: 15px;
    padding: 15px 0;
  }
  .card {
    overflow: hidden;
    height: 100%;
  }
  .card-img {
    height: 145px;
  }
  .card-content {
    padding: 7px;
    font-size: 0.8rem;
  }
  .carousel-container {
    margin: 0;
    padding: 0;
  }
  .nav-btn i {
    display: none;
  }
  .prev-btn {
    left: 0;
  }
  .next-btn {
    right: 0;
  }
  .testimonial-wrapper {
    padding: 20px 0;
  }
  .testimonial-section {
    padding: 0 20px;
  }
  .testimonial-section h2 {
    margin-bottom: 12px;
  }
  .testimonial-slide {
    padding: 0;
  }
  .testimonial-card {
    min-height: auto;
    padding: 15px;
  }

  .testimonial-quote {
    margin-bottom: 10px;
  }

  .testimonial-author {
    margin-top: 10px;
  }
  .testimonial-quote::after {
    bottom: -25px;
    right: 10px;
  }
  .testimonial-nav-btn {
    display: none;
  }
  .testimonial-nav-btn i {
    font-size: 1rem;
  }
  .testimonial-indicators {
    margin-top: 20px;
  }
  .testimonial-indicator {
    width: 12px;
    height: 12px;
  }
  .testimonial-indicator::after {
    width: 8px;
    height: 8px;
  }
  .footer-wrapper {
    margin-top: 0;
    padding: 60px 0;
  }
  .footer-container {
    display: block;
    justify-content: space-between;
    margin: 0 30px;
    padding-bottom: 20px;
    padding: 0 20px 20px 20px;
  }
  .footer-left-sect {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 12px;
  }
  .footer-ba-icon {
    margin: 0;
  }
  .footer-left-sect p {
    display: none;
  }
  .footer-social-icons {
    margin-top: 8px;
    margin-left: 65px;
  }
  .footer-social-icons a {
    font-size: 22px;
    padding-bottom: 8px;
    margin-top: 0;
  }
  .footer-middle-sect p {
    margin: 0;
    margin-top: 15px;
  }
  .explore-item a {
    font-size: 1.125rem;
  }
  .footer-right-sect div {
    display: flex;
  }
  .contact-sect {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
  }
  .contact-sub-sect span,
  .phone-options span,
  .footer-email span {
    font-size: 1.125rem;
  }
  .footer-right-sect a {
    display: flex;
  }
  .footer-right-sect .email-link img {
    width: 24px;
  }
  .design-author {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: 14px;
  }
  .design-author a {
    padding: 0 4px;
    color: #778dfa;
  }
  .whatsapp-float {
    padding: 7px 12px;
    bottom: 20px;
    right: 15px;
    height: 40px;
    gap: 6px;
  }
  .whatsapp-float img {
    width: 20px;
    height: 20px;
  }
  .whatsapp-text {
    font-size: 14px;
  }
  .phone-call-float {
    display: flex;
    visibility: visible;
    bottom: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .phone-call-float i {
    font-size: 16px;
  }
  .back-to-top {
    left: 40%;
    width: 40px;
    height: 40px;
  }

  .back-to-top i {
    font-size: 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .topbar-container {
    height: 40px;
    margin: 0;
  }
  .topbar-contact {
    gap: 8px;
    margin: 0;
  }
  .topbar-contact a span {
    font-size: 0;
  }
  .topbar-contact a i {
    color: white;
    font-size: 20px;
    margin: 0;
  }
  .topbar-social a i {
    color: white;
  }
  header {
    top: 40px;
  }
  .header-container {
    margin: 0;
    height: 80px;
    padding: 0 20px;
  }
  .header-container .logo {
    z-index: 10;
  }
  .header-container .logo img {
    position: relative;
    padding-top: 5px;
    height: 65px;
    max-width: 130px;
    z-index: 10;
  }
  .company-name-mobile {
    color: #333;
    margin: auto;
    display: block;
    z-index: 1;
  }
  .hamburger {
    display: block;
    padding: 10px 0;
    z-index: 10;
  }
  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: lightsteelblue;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateX(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    z-index: 999;
    display: flex !important;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding: 15px 25px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }
  .nav-link:hover::after {
    display: none;
  }
  .dropdown {
    position: static;
    width: 100%;
    background: #fff0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    transform: none;
  }
  .dropdown.active {
    max-height: 500px;
  }
  .dropdown-link {
    color: #0047ab;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    padding: 12px 25px 12px 45px;
  }
  .dropdown-link:hover {
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    padding-left: 45px;
  }
  .nav-item.has-dropdown > .nav-link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
  }
  .nav-item.has-dropdown > .nav-link.active::after {
    transform: rotate(180deg);
  }
  .dropdown-link i {
    color: #ffffff !important; /* Added !important to ensure it overrides */
    margin-right: 8px;
    font-size: 14px;
    transition: transform 0.2s ease;
    display: inline-block !important; /* Ensure it's visible */
  }

  .dropdown-link:hover i {
    transform: translateX(3px);
    color: #ffffff !important;
  }
  .co-theme {
    padding-top: 0;
    padding-bottom: 0;
  }
  .co-theme img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  }
  .co-about {
    top: 170px;
    left: 20px;
    right: 20px;
    text-align: center;
  }
  .co-about p {
    text-align: justify;
    font-size: 0.8rem;
  }
  .co-about p span {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .about-section {
    padding: 10px 0;
  }
  .about-wrapper {
    background: none;
    padding: 20px 0;
  }
  .about-container {
    margin: 50px 0 20px 0;
    display: block;
    padding: 0 20px;
    border-radius: 0;
  }
  .ba-image {
    display: none;
  }
  .ba-despscripion {
    background: none;
    text-align: justify;
    padding: 0;
  }
  .ba-despscripion h1 {
    background: rgb(83 112 254 / 0.15);
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
  }
  .ba-despscripion p {
    margin: auto;
    font-size: 16px;
    margin: 12px 0;
  }
  .about-more {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  .about-more button {
    font-size: 20px;
    margin: 0;
  }
  .serv-wrapper {
    padding: 30px 0;
  }
  .serv-container {
    margin: 0;
    padding: 0 20px;
  }
  .serv-container h2 {
    margin-bottom: 0;
  }
  .serv-container p {
    margin: 12px 0;
    text-align: justify;
  }
  .serv-carousel {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .serv-card-img {
    width: 100%;
    height: 250px;
  }
  .serv-card-content {
    padding: 7px;
  }
  .container {
    max-width: 100%;
    padding: 0px;
    margin: 0;
  }
  .container h1 {
    margin-bottom: 12px;
  }
  .container p {
    margin-bottom: 5px;
  }
  .carousel-wrapper {
    padding: 20px;
  }
  .carousel {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
    height: auto;
    gap: 15px;
    padding: 15px 0;
  }
  .card {
    overflow: hidden;
    height: 100%;
  }
  .card-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    overflow: hidden;
  }
  .card-content {
    padding: 7px;
    font-size: 0.8rem;
  }
  .carousel-container {
    margin: 0;
    padding: 0;
  }
  .nav-btn i {
    display: none;
  }
  .prev-btn {
    left: 0;
  }
  .next-btn {
    right: 0;
  }
  .testimonial-wrapper {
    padding: 20px 0;
  }
  .testimonial-section {
    padding: 0 20px;
  }
  .testimonial-section h2 {
    margin-bottom: 12px;
  }
  .testimonial-slide {
    padding: 0;
  }
  .testimonial-card {
    min-height: auto;
    padding: 15px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 0.875rem;
    margin-top: 10px;
  }
  .testimonial-role {
    font-size: 0.875rem;
  }
  .testimonial-quote::after {
    bottom: -25px;
    right: 10px;
  }
  .testimonial-nav-btn {
    display: none;
  }

  .testimonial-indicators {
    margin-top: 20px;
  }
  .testimonial-indicator {
    width: 12px;
    height: 12px;
  }
  .testimonial-indicator::after {
    width: 8px;
    height: 8px;
  }
  .footer-wrapper {
    margin-top: 0;
  }
  .footer-container {
    display: block;
    justify-content: space-between;
    margin: 0;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 20px;
    padding: 0 20px 20px 20px;
  }
  .footer-left-sect {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 12px;
  }
  .footer-ba-icon {
    margin: 0;
  }
  .footer-left-sect p {
    display: none;
  }
  .footer-social-icons {
    margin-top: 8px;
    margin-left: 78px;
    margin-right: 0;
  }
  .footer-social-icons a {
    font-size: 22px;
    padding-bottom: 8px;
    margin: 0;
  }
  .footer-middle-sect p {
    margin: 0;
    margin-top: 15px;
  }
  .explore-item a {
    font-size: 1rem;
  }
  .footer-right-sect div {
    display: flex;
  }
  .contact-sect {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 12px;
  }
  .contact-sub-sect span,
  .phone-options span,
  .footer-email span {
    font-size: 1rem;
  }
  .footer-right-sect a {
    display: flex;
  }
  .footer-right-sect .email-link img {
    width: 24px;
  }
  .design-author {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    margin: 0;
    font-size: 13px;
  }
  .design-author a {
    padding: 0 4px;
    color: #778dfa;
  }
  .whatsapp-float {
    padding: 7px 12px;
    bottom: 20px;
    right: 15px;
    height: 40px;
    gap: 6px;
  }
  .whatsapp-float img {
    width: 20px;
    height: 20px;
  }
  .whatsapp-text {
    font-size: 14px;
  }
  .phone-call-float {
    display: flex;
    visibility: visible;
    bottom: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .phone-call-float i {
    font-size: 16px;
  }
  .back-to-top {
    position: fixed;
    bottom: 20px;
    left: 30%;
    right: 70%;
    width: 40px;
    height: 40px;
    z-index: 999;
    opacity: 0.7;
    visibility: visible;
  }

  .back-to-top i {
    font-size: 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.carousel {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.card {
  scroll-snap-align: start;
}
.carousel {
  user-select: none;
  -webkit-user-select: none;
}
.nav-btn {
  padding: 0;
  touch-action: manipulation;
}
@media (hover: none) and (pointer: coarse) {
  .nav-btn,
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .carousel,
  .testimonial-carousel {
    padding: 10px 0;
  }
}

