* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000;
  color: #fff;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 60px;
  height: auto;
}

/* Gradient text for "Asazan" */
.logo-text {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(90deg, #4d9efc, #a84dfc);
  /* Blue to Purple */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
  z-index: 1100;
}

/* Hero Section */
.hero-video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  flex-direction: column;
}

.hero-overlay .container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-overlay h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-overlay p {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 650px;
  margin: 0 auto 24px;
}

.btn {
  padding: 14px 28px;
  background-color: #6b63ffad;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-align: center;
  color: transparent;
  background: linear-gradient(to right, #6c63ff, #9C27B0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.6s ease-out both;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #ff4d4d, #8a478c);
  border-radius: 2px;
  animation: fadeIn 1s ease-out;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out;
}

/* Services */
.services-section {
  background-color: #fff;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  flex: 1 1 280px;
  background: linear-gradient(to bottom, #e8e7ffc4, #4a45ac88);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: left;
}

.service-box:hover {
  box-shadow: 0 8px 20px rgba(83, 74, 255, 0.2);
}

.service-box h3 {
  color: #6C63FF;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95rem;
  color: #ffffff;
}

/* About */
.about-section {
  background-color: #ffffff;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.about-box {
  flex: 1 1 260px;
  background: linear-gradient(to bottom, #e8e7ffc4, #4a45ac88);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
}

.about-box h3 {
  color: #6C63FF;
  margin-bottom: 10px;
}

/* Contact */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
}

#form-status {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.contact-item h4 {
  color: #6C63FF;
}

.social-links a {
  font-size: 1.5rem;
  color: #6c63ff;
  margin: 0 10px;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 5px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #444;
}

.footer-about,
.footer-contact,
.footer-socials {
  flex: 1 1 1px;
}

footer h3,
footer h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #6C63FF;
}

footer p,
footer a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.soc .social-links a:hover {
  color: #6C63FF;
}

footer .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #999;
  padding-bottom: 20px;
}

/* Back to top button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 12px 16px;
  font-size: 20px;
  background-color: #6C63FF;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}

#backToTop:hover {
  background-color: #574be2;
}

/* ScrollSpy Active Link */
.nav-links a.active {
  border-bottom: 2px solid #6C63FF;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .social-links a {
    margin: 0 8px;
  }

  .hamburger {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    background-color: #000;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-overlay h2 {
    font-size: 28px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  form button {
    width: 100%;
  }
}

:root {
  scroll-padding-top: 80px;
}