
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #ffffff;
  font-size: clamp(14px, 2vw, 16px);
  max-width: 100%;
  overflow-x: hidden;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#preload-img {
  width: 200px;
  animation: shrink 2s ease-in-out 2;
}

@keyframes shrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}


header {
  padding: 20px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}


.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  max-height: 70px;
  width: auto;
  height: auto;
  max-width: 90%;
  filter: brightness(-1) invert(1);
  transition: transform 0.3s ease;
}


.nav-container {
  background-color: transparent;
  border: 2px solid #CAB08D;
  border-radius: 10px;
  padding: 10px 20px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}

.nav-container::-webkit-scrollbar {
  display: none;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}

nav a {
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  color: #CAB08D;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

nav a.active {
  font-weight: bold;
  color: #CAB08D;
  text-shadow: 0 0 8px #CAB08D;
}

nav a:hover {
  color: #CAB08D;
  text-shadow: 0 0 8px #CAB08D;
}

/* Content */
.content {
  padding: 40px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.service-card {
  background-color: #000000;
  border: 1px solid #CAB08D;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #CAB08D88;
}

.service-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background-color: #000000;
  padding: 0px;
  border-radius: 0px;
  margin: 0 auto 0px auto;
}

.service-card p {
  color: #CAB08D;
  font-weight: 700;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
}


.contact-info {
  padding: 20px;
  text-align: center;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #CAB08D;
}

.icon {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  header {
    padding: 10px 20px;
  }

  .content {
    padding: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  nav a {
    font-size: 0.9rem;
    padding: 6px 8px;
  }
}

@media (min-width: 901px) {
  .nav-container {
    max-width: 60%;
    margin: 0 auto;
  }
}
.skip-preloader #preloader {
  display: none !important;
}
.skip-preloader #content {
  display: block !important;
}
