/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
header {
  background-color: #000;
  color: white;
  padding: 10px 20px;
}

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

header .logo a {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  font-size: 18px;
}

/* Hero Section */
#hero {
  background-image: url("https://www.houseofabhinandanlodha.land/wp-content/uploads/2024/09/house-of-abhinandan-lodha-shimla-1-1.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

#hero .hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: #b18708;
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  border-radius: 5px;
}

/* About Section */
#about {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.6;
}

/* Contact Section */

#contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  line-height: 1.6;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  #hero .hero-content h1 {
    font-size: 30px;
  }

  #about,
  #contact {
    padding: 30px 10px;
  }
}

/* Container styles */
.project-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #f1fdf1;
  padding: 20px;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image styles */
.project-image {
  flex: 1 1 45%;
}

.project-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Info section */
.project-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1 1 50%;
  padding: 20px;
}

/* Info item */
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px;
  width: 30%;
  text-align: center;
}

/* Number style */
.number {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}

/* Label style */
.label {
  font-size: 16px;
  color: #777;
  margin-top: 5px;
  font-weight: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-container {
    flex-direction: column;
  }

  .project-image {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .project-info {
    flex: 1 1 100%;
    justify-content: center;
  }

  .info-item {
    width: 45%;
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .info-item {
    width: 100%;
    margin: 5px 0;
  }

  .number {
    font-size: 24px;
  }

  .label {
    font-size: 14px;
  }
}

.map-container {
  width: 100%;
}

iframe {
  width: 100%;

  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container {
  background-color: #fff;
  width: 100%;

  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  height: 150px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.thank-you-message {
  display: none;
  text-align: center;
  padding: 40px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px;
  }

  h2 {
    font-size: 24px;
  }

  input,
  textarea {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }
}
