/* Elegant look */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.logo {
  height: 120px;
  width: auto;
}

h1 {
  font-family: Georgia, serif;
}

h2 {
  font-family: Georgia, serif;
}

p {
  font-family: Verdana, sans-serif;
}

a {
  font-family: Verdana, sans-serif;
}

body {
   font-family: 'Poppins', sans-serif;

  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
header {
  background: #000;
  color: #fff;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: gold;
  color: black;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
}

/* SERVICES */
.services {
  padding: 50px 0;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f4f4f4;
  padding: 20px;
  flex: 1;
}
.card1 {
  width: 300px;
  height: 200px;
  background-image: url('../images/marrige\ image.jpg'); /* your image path */
  background-size: cover;      /* makes image fill the card */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
  color: rgb(253, 248, 248); /* text visible on image */
  padding: 20px;
  border-radius: 10px;
   flex: 1;
}
.card2 {
  width: 300px;
  height: 200px;
  background-image: url('../images/cooperative.jpg'); /* your image path */
  background-size: cover;      /* makes image fill the card */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
  color: rgb(244, 243, 243); /* text visible on image */
  padding: 20px;
  border-radius: 10px;
   flex: 1;
}
.card3 {
  width: 300px;
  height: 200px;
  background-image: url('../images/private.jpg'); /* your image path */
  background-size: cover;      /* makes image fill the card */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
  color: rgb(246, 244, 244); /* text visible on image */
  padding: 20px;
  border-radius: 10px;
   flex: 1;
}
/* ABOUT */
.about {
  background: #111;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 50px 0;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
}

button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}