/* General */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #faf7ff;
}

/* Navbar */
header {
  width: 100%;
  background-color: #6a0dad; /* Royal Purple */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: auto;
}

.logo {
  color: #ffd700;
  font-size: 1.6rem;
  font-weight: 700;
}

.menu-toggle {
  font-size: 1.8rem;
  color: #ffd700;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img4.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 220px 40px 300px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.hero p {
  font-size: 1.1rem;
}

/* About */
.about {
  background: #f7f1ff;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #6a0dad;
}

.about h2 {
  color: #6a0dad;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #6a0dad;
  margin-bottom: 20px;
}

/* Classes */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  background: #fff;
  border: 2px solid #6a0dad;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  background: #f3e5ff;
}

.service-item h3 {
  color: #6a0dad;
  margin-bottom: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #f5f8ff;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #6a0dad;
}

.why-choose-us h2 {
  color: #6a0dad;
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-box {
  background: #ffffff;
  border: 2px solid  #6a0dad;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-box h3 {
  color: #6a0dad;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.why-box p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Gallery */
.gallery {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  border-top: 3px solid #6a0dad;
}

.gallery h2 {
  color: #6a0dad;
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #6a0dad;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact */
.contact a {
  color: #6a0dad;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #6a0dad;
  color: white;
  text-align: center;
  padding: 15px 10px;
}

footer a {
  color: #ffd700;
  text-decoration: underline;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    background-color: #520c8b;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    display: none;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    width: 100%;
    padding: 8px 0;
  }
}
