body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #060606;
  color: #fff;
}

.navbar {
  background-color: #060606;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #ff2c00, #ffe000);
  z-index: 2;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.logo img {
  height: 75px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #939393;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff9100;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff9100;
}

.nav-links a:hover::after {
  width: 100%;
}
.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 20px;
}

.language-switcher img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.language-switcher img:hover {
  transform: scale(1.1);
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 15;
}

.menu-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  top: 18px;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
    margin-top: 15px;
  }

  .nav-links a {
    margin: 12px 0;
  }

  .menu-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url('/src/img/Hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 69%);
    /*backdrop-filter: blur(6px);*/
    z-index: 1;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 600px;
  animation: fadeIn 1s ease;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.1;
}


.hero-content p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #cdcdcd;
}


.contact-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    text-align: center;
}

.contact-icons a {
    color: white;
    font-size: 26px;
    text-decoration: none;
    display: flex
;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    background: #353535;
    padding: 6px;
    border-radius: 10px;
    cursor: pointer;
}

.contact-icons a:hover {
  color: #ff9100;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.services-section {
  background: #060606;
  padding: 60px 20px;
  color: #fff;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff9100;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1f1f1f;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 145, 0, 0.2);
}

.service-card i {
  font-size: 40px;
  color: #ff9100;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: #ccc;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  color: #ccc;
  font-size: 14px;
}

.service-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff9100;
  font-weight: bold;
}
.service-card strong {
  display: block;
  margin: 15px 0 5px;
  color: #ff9100;
  font-weight: 600;
}

.pricing {
  margin-top: 15px;
  font-weight: 500;
  color: #ff9100;
}
.mobile-service-tag {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  background: #ff6c00;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 10px;
}

.mobile-service-sub {
  color: #f0f0f0;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
}

html {
  scroll-behavior: smooth;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-section {
  background: #101010;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container h2 {
  font-size: 36px;
  color: #ff9100;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.contact-section {
  background: #060606;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 36px;
  color: #ff9100;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  padding: 12px;
  background: #ff9100;
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ffaa33;
}

.footer {
  background: #060606;
  padding: 25px 20px;
  color: #888;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #888;
  margin: 0 5px;
  font-size: 20px;
  transition: color 0.3s ease;
   text-decoration: none;
}

.footer-links a:hover {
  color: #ff9100;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-logo {
  width: 220px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}

.popup-form {
  position: relative;
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.popup-close:hover {
  transform: scale(1.2);
  color: #ff6c00;
}

.popup-form h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.ContainerAppointment {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ContainerAppointment input,
.ContainerAppointment textarea,
.ContainerAppointment button {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  background: #2e2e2e;
  color: #fff;
  box-sizing: border-box;
  outline: none;
  transition: background 0.2s;
}

.ContainerAppointment textarea {
  resize: none;
}


.ContainerAppointment input:focus,
.ContainerAppointment textarea:focus {
  background: #3a3a3a;
}

.ContainerAppointment button {
  background: #ff6c00;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.ContainerAppointment button:hover {
  background: #e85e00;
}
