html {
  scroll-behavior: smooth;
}

:root {
  --bg-dark: #050a18;
  --nav-blue: #0b252e;
  --gold: #d4a017;
  --white: #ffffff;
}

body,
html {
  margin: 0;
  background-color: var(--bg-dark);
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw; /* Ekran kengligidan oshib ketmaslik */
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
}

section {
  scroll-margin-top: 80px;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #050a18;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circle-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(212, 160, 23, 0.1);
  border-radius: 50%;
  border-top: 4px solid #d4a017;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.loading-text {
  color: #d4a017;
  font-size: 1.2rem;
  font-family: sans-serif;
  letter-spacing: 1px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Elementlarning boshlang'ich holati */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Navbar --- */
header {
  padding: 15px 10%;
  background: var(--nav-blue) !important;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  left: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -1px;
}

.logo span {
  color: var(--gold) !important;
}

.navbar .logo {
  color: #ffffff;
}
.navbar a {
  color: #ffffff;
  text-decoration: none;
}
.navbar .logo span.art {
  color: #52b4cd !important;
}
.navbar .logo span.logix {
  color: #3ae06c !important;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* --- Til almashtirgich --- */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  z-index: 9999;
}

.lang-current {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: white;
  min-width: 60px;
  justify-content: center;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
}

.lang-list {
  position: absolute;
  top: 110%;
  right: 0;
  background: #050a18;
  border: 1px solid var(--gold);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: none;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.lang-list.show {
  display: block;
}

.lang-list li {
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

.lang-list li:hover {
  background: var(--gold);
  color: #050a18;
}

.lang-list li span {
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Burger (Desktopda yashirin) --- */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10% 0 15%;
  background-color: var(--bg-dark);
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  background-image: url("images/man.jpg");
  background-size: 55%;
  background-position: right center;
  background-repeat: no-repeat;
  filter: invert(1) opacity(0.12);
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  max-width: 650px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  background: linear-gradient(to right, #ffffff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.hero p {
  font-size: 1.2rem;
  max-width: 450px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 5;
  margin: 0;
}

/* --- Services --- */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 10px 5%;
  padding-bottom: 10px;
  position: relative;
  z-index: 10;
}

.service-card {
  padding: 50px 30px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.services h2 {
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 20;
}

.service-card h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.service-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.custom-services-btn {
  display: inline-block;
  text-decoration: none !important;
  padding: 16px 45px;
  background: linear-gradient(135deg, #f5edcf 0%, #e1d6a6 100%);
  color: var(--bg-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 160, 23, 0.2);
}

.custom-services-btn:hover {
  background: linear-gradient(135deg, #e2d5a1 0%, #d2c593 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5);
}

.custom-services-btn:active {
  transform: translateY(0);
}

/* --- Partners & Logos --- */
.partners-title-container {
  display: flex;
  justify-content: center;
  padding-top: 20px !important;
  padding-bottom: 10px !important;
  margin-top: 10px !important;
  margin-bottom: 10px;
}

.partners-header {
  width: 100% !important;
  max-width: 600px;
  padding: 20px 30px !important;
  text-align: center;
  margin: 0 auto !important;
}

.partners-header h2 {
  font-size: 1.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.logos-slider {
  width: 100%;
  max-width: 100vw; /* MUHIM: Ekrandan oshib ketmasin */
  height: 200px;
  margin: 50px 0;

  overflow: hidden;
  position: relative;
  background: rgba(10, 19, 41, 0.2);
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.logos-track {
  display: flex;
  width: calc(340px * 28);
  animation: scroll 40s linear infinite;
  align-items: center;
  will-change: transform;
}

.logos-track img {
  width: 220px;
  height: 120px;
  object-fit: contain;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 10px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  filter: blur(5px);
  transform: scale(0.9);
  animation: scrollFadeIn 2s ease-out forwards;
  animation-delay: 2s;
}

.logos-track img:hover {
  opacity: 1;
  filter: grayscale(0);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-3500px));
  }
}

@keyframes scrollFadeIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.9) translateY(20px);
  }
  60% {
    opacity: 0.7;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
}

/* --- About Us --- */
.about-title-container {
  display: flex;
  justify-content: center;
  padding-top: 20px !important;
  padding-bottom: 10px !important;
  margin-top: 10px !important;
  margin-bottom: 10px;
}

.about-section {
  padding: 0 10% 40px 10% !important;
}

.about-container {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.video-container {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: black;
  display: flex;
  align-items: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.about-text strong {
  color: #ededce;
  font-size: 1.4rem;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--white);
}

.gold-dot {
  width: 10px;
  height: 10px;
  background-color: #ededce;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold);
}

/* --- Contact Section --- */
.contact-section {
  padding: 0 10% 80px 10%;
}

.contact-container {
  display: flex;
  align-items: stretch;
  gap: 30px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

.contact-form-side {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.contact-image-side {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form .btn-more {
  width: 100%;
  border: none;
  margin-top: 15px;
  padding: 14px 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5edcf 0%, #e1d6a6 100%);
  color: #1a1a1a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form .btn-more:hover {
  background: linear-gradient(135deg, #e2d5a1 0%, #d2c593 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5);
}

.contact-form .btn-more:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
}

.contact-form .btn-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.contact-form .btn-more:hover::after {
  left: 100%;
}

/* --- Footer Styling --- */
.site-footer {
  background-color: #e1e1e1;
  padding: 40px 0 15px 0;
  margin-top: 50px;
  color: #1a1a1a;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
  color: #050a18;
  font-weight: 800;
}
.footer-logo span {
  color: #d4a017;
}
.footer-container .logo {
  color: #ffffff;
}
.footer-container a {
  color: #ffffff;
  text-decoration: none;
}
.footer-container .logo span.art {
  color: #52b4cd !important;
}
.footer-container .logo span.logix {
  color: #3ae06c !important;
}

.footer-info {
  flex: 1;
  text-align: left;
}
.footer-info p,
.footer-info a {
  color: #333;
  text-decoration: none;
  margin: 3px 0;
  font-size: 0.9rem;
}
.footer-info h2 a {
  font-size: 1.5rem;
}
.footer-address {
  margin-top: 15px;
}
.footer-info a:hover {
  color: #000;
  font-weight: bold;
}

.requisites-card {
  background: rgba(0, 0, 0, 0.04);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #050a18;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

.requisites-card p {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: #1a1a1a;
  margin: 4px 0;
  line-height: 1.4;
}

.requisites-card strong {
  color: #050a18;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  color: #777;
}

/* --- Modal Oyna --- */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--nav-blue);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  width: 90%;
  max-width: 450px;
  position: relative;
  transform: scale(0.8) translateY(30px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: var(--gold);
}

#successTitle {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 800;
}

#successMessage {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

#successBtn {
  margin-top: 25px;
  padding: 12px 35px;
  background-color: var(--gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(212, 160, 23, 0.2);
}

#successBtn:hover {
  background-color: #b58812;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 160, 23, 0.4);
}

#successBtn:active {
  transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (MOBIL MOSLASHUVLAR)
   ========================================= */

@media (max-width: 992px) {
  /* Contact qismi */
  .contact-section {
    padding: 0 5% 50px 5%;
  }

  .contact-container {
    flex-direction: column-reverse; /* Rasmni tepaga chiqaradi */
    padding: 25px 20px;
    gap: 25px;
  }

  .contact-image-side {
    width: 100%;
    height: 220px; /* Rasm yo'qolmasligi uchun aniq balandlik */
  }

  .contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .contact-form-side {
    width: 100%;
  }

  /* About qismi */
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0px;
  }
  .about-text {
    font-size: 1rem;
  }
  .about-features li {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .services-container {
    padding: 10px 5%;
  }

  .service-card {
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 30px 20px; /* Ichki bo'shliqni biroz kamaytiramiz */
  }

  /* --- 'Barcha xizmatlar' tugmasi moslashuvi --- */
  .custom-services-btn {
    width: 90%; /* Tugma ekran kengligining 90% ni egallaydi */
    max-width: 350px; /* Lekin juda cho'zilib ham ketmaydi */
    padding: 14px 20px; /* Yonbosh paddinglarni kamaytiramiz */
    box-sizing: border-box;
    font-size: 1rem; /* Matn o'lchamini biroz kichraytiramiz */
    white-space: normal; /* Matn sig'masa, keyingi qatorga tushadi */
    line-height: 1.4;
  }
}

@media (max-width: 900px) {
  /* Hero qismi */
  .navbar a {
    font-size: 1.1rem;
  }
  .hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-dark);
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: 1.9rem;
    max-width: 650px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    background: linear-gradient(to right, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/man.jpg");
    background-size: 320%;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1) opacity(0.12);
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  /* Lang switcher va Burger */
  .lang-switcher {
    margin-left: 0;
    margin-right: 15px;
  }
  .lang-current {
    padding: 5px 10px;
    font-size: 13px;
  }

  .burger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background-color: var(--nav-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 2px solid var(--gold);
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
  }

  .nav-links.nav-active {
    transform: translateY(0);
  }
  .nav-links li {
    margin: 15px 0;
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .burger.toggle .line2 {
    opacity: 0;
  }
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Footer qismi */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-info {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-requisites {
    flex: 1;
    width: 100%;
  }
  .requisites-card {
    margin: 0 auto;
  }

  /* Modal qismi */
  .modal-content {
    padding: 35px 25px;
  }
  #successTitle {
    font-size: 1.5rem;
  }
  #successMessage {
    font-size: 1rem;
  }
}



/* --- Floating Action Buttons --- */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0px 10px 20px rgba(250, 134, 0, 0.4);
  cursor: pointer;
  z-index: 9999;
  border: none;
  transition: all 0.3s ease;
}

/* Back to Top (Desktop version) */
.back-to-top {
  background-color: var(--gold);
  color: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
}

/* Class added by JS when scrolling down */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #f6b000;
  transform: translateY(-5px);
}

/* Mobile Call Button (Hidden on Desktop by default) */
.mobile-call {
  display: none;
  background-color: #25D366; /* WhatsApp/Phone green color */
  color: white;
  /* Stronger outer shadow */
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
  /* Pulsing animation */
  animation: pulse-shadow 2s infinite; 
}

/* --- Pulse Animation for Mobile Call Button --- */
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* --- Media Query for Mobile (max-width: 768px) --- */
@media screen and (max-width: 768px) {
  .back-to-top {
      display: none !important; /* Hide Back to Top button on mobile */
  }
  
  .mobile-call {
      display: flex !important; /* Show Call button on mobile */
  }
}