/* Reset */
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(to right, #FF5722, #FFC107);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  padding-top: 80px;
}

/* Lottie Containers */
.lottie-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Services Section */
.services-section h2 {
  font-weight: bold;
  color: #333;
}
.services-section .col-md-4 {
  transition: transform 0.3s ease;
}
.services-section .col-md-4:hover {
  transform: translateY(-10px);
}
.services-section lottie-player {
  max-width: 100%;
  width: 200px;
  height: 200px;
  margin: auto;
  display: block;
}

/* Download Section */
.download-section {
  background: linear-gradient(to right, #AB47BC, #8E24AA);
}

/* Buttons */
.btn {
  border-radius: 50px;
}

/* Footer */
footer {
  background-color: #121212;
}
