/* General */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f5f7fa;
}

/* Navbar */
header {
  width: 100%;
  background-color: #7b1113; /* Dark Maroon */
  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: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-toggle {
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
  user-select: 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: #ffe5e5;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('img3.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 220px 40px 300px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
}

/* About Section */
.about {
  background: #fff5f5;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #7b1113;
}

.about h2 {
  color: #7b1113;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #7b1113;
  margin-bottom: 20px;
}

/* Our Services */
.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 #7b1113;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  background: #ffeaea;
}

.service-item h3 {
  color: #7b1113;
  margin-bottom: 10px;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-item {
  background: #fff;
  border: 2px solid #7b1113;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
  background: #ffeaea;
}

.why-item h3 {
  color: #7b1113;
}

/* Contact */
.contact a {
  color: #7b1113;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #7b1113;
  color: white;
  text-align: center;
  padding: 15px 10px;
}

footer a {
  color: #fff;
  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: #4e080a;
    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;
  }
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  border-top: 3px solid #7b1113;
}

.gallery h2 {
  color: #7b1113;
  font-size: 2rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #7b1113;
  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);
}
