/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Global Styles */
body {
  color: #333;
  line-height: 1.6;
}

.section {
  text-align: center;
  padding: 60px 20px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.bg-light {
  background-color: #f4f4f4;
}

/* Hero Section */
.hero {
  background: url('https://source.unsplash.com/1600x900/?mosque') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #e6b800;
}

/* Gallery */
.gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery img {
  width: 40%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background: white;
  padding: 20px;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  text-align: center;
  background: black;
  color: white;
  padding: 20px 0;
}
