/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.navbar {
  position: fixed;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.navbar a {
  color: white;
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #ffbb00;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}


.header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding-top: 4rem;
}

.header h1 {
  font-size: 2.5em;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
}

.service-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}


.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffbb00;
  animation: iconAnimation 4s infinite ease-in-out;
}

@keyframes iconAnimation {
  0%, 100% {
      transform: rotate(0deg);
  }
  50% {
      transform: rotate(360deg);
  }
}

.service-title {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 10px;
}

.service-description {
  font-size: 1.1em;
  color: #666;
}


.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}


.footer-links{
  background: #8a7c7c;
  padding-bottom: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links ul li{
  text-decoration: none;
}

.footer-links a{
    color: blue;
}

.footer-links a:hover {
    color: #ffbb00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.alpha{
    text-decoration: none;
    background: aqua;
    padding: 5px 12px;
    border-radius: 10px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 15px 30px;
  background-color: #ffbb00;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e0a700;
}

@media screen and (max-width: 768px) {
  .service-cards-container {
      grid-template-columns: 1fr 1fr;
  }
  .cta-buttons {
      flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  header h1 {
      font-size: 2em;
  }
  .service-card {
      padding: 20px;
  }
  .cta-btn {
      width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  #nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  #nav-links.show {
    display: flex;
  }
}