/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  color: #333;
  text-align: center;
  padding: 0;
  margin: 0;
  background-position: center;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #7c5f9a;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #ddd;
}

.logo {
  height: 70px
  ;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 90vh;
  background: url('images/hero.jpg') no-repeat center/cover;
  padding: 100px;
  color: #fff;
}
.hero-box {
  background: rgba(255, 255, 255, 0.78); /* light transparent box */
  padding: 40px 50px;
  border-radius: 12px;
  max-width: 600px;
  backdrop-filter: blur(4px); /* makes it more premium */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: #7c5f9a;
  text-align: left;
}

.hero p {
  font-size: 26px;
  margin-bottom: 30px;
  color: #7c5f9a;
  text-align: left;
}

.cta-btn {
  padding: 14px 28px;
  background: #7c5f9a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #7c5f9a;
}


/* SECTIONS */
section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* SERVICES */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #fafafa;
  color: #333;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: #7c5f9a;
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
  }
  .nav-links li {
    padding: 8px 0;
  }
  .hero {
    height: 65vh;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .services-list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  footer {
    font-size: 0.8rem;
  }
}
