* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #111;
  background: #f8f8f8;
}

a {
  text-decoration: none;
  color: #333;
}


.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #111;
  color: #fff;
}

.navbar nav a {
  margin-left: 20px;
  color: #fff;
}

.hero {
  display: flex;
  padding: 4rem 2rem;
  background: #111;
  color: white;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-img {
  flex: 1;
}

.hero-img img {
  width: 100%;
  border-radius: 12px;
}

.badge {
  background: #444;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.hero-text button {
  padding: 10px 20px;
  border: none;
  background: white;
  color: #111;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
}

.section {
  padding: 4rem 2rem;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #111;
  color: #fff;
}

.section-label {
  font-size: 14px;
  color: gray;
  text-transform: uppercase;
}

.services-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.services-container img {
  width: 50%;
  border-radius: 12px;
}

.services-container ul {
  list-style: none;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.contact-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  width: 100%;
}

.contact-form button {
  background: #666;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.footer {
  background: #111;
  color: #fff;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.footer-links a {
  margin-left: 20px;
  color: #fff;
}






  /* Fade In Up Animation */
  .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
  }

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Slide Left */
  .slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.5s ease-out;
  }

  .slide-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Slide Right */
  .slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.5s ease-out;
  }

  .slide-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  html {
    scroll-behavior: smooth;
  }






  nav a {
  position: relative;
  text-decoration: none;
  color: white; /* or your navbar text color */
  padding: 8px 12px;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; /* slightly below the text */
  width: 100%;
  height: 4px; /* thickness of the underline */
  background: linear-gradient(90deg, #ff6b6b, #a66cff, #ffe259);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 4px;
}

nav a:hover::after {
  transform: scaleX(1);
}



.slider-container {
  overflow: hidden;
  width: 100vw;
}

.slider {
  display: flex;
  animation: slide 15s infinite ease-in-out;
}

.slider img {
  flex: 0 0 100vw;
  height: 40vh;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0%); }
  5% { transform: translateX(0%); }

  10% { transform: translateX(-100%); }
  35% { transform: translateX(-100%); }

  40% { transform: translateX(-200%); }
  65% { transform: translateX(-200%); }

  70% { transform: translateX(0%); }
  100% { transform: translateX(0%); }
}
.banner-container, body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.scroll-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-buttons.show {
  opacity: 0.7;
  pointer-events: auto;
}

.scroll-buttons button {
  background-color: rgba(255, 255, 255, 0.8); /* Light transparent */
  color: #000;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, background-color 0.3s;
}

.scroll-buttons button:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.95);
}