* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

/* .logo img {
  width: 24px;
  height: 24px;
} */

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #fefeff;
}

.nav-links a {
  text-decoration: none;
  font: Poppins;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.search-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.right-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fafafa;
}

.right-buttons a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.contact-btn {
  border: 1px solid #ccc;
  background-color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #f0f0f0;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  gap: 15px;
}

.mobile-menu.open {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .right-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* 
.logo {
    font-size: 24px;
    font-weight: bold;
} */

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cta-buttons .contact-btn {
  padding: 10px 20px;
  background-color: #f2f2f2;
  color: #111;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #ccc;
}

.hero {
  width: 1380;
  height: 617;
  top: 156px;
  left: 63px;
  border-radius: 25px;
  opacity: 1;

  display: flex;
  flex-wrap: wrap;
  padding: 60px 10%;
  align-items: center;
  background: linear-gradient(to right, #c1dee8, #fbd9b9);
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.hero-text .welcome {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text .description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.quote-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-form input {
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  flex: 1;
  min-width: 200px;
}

.quote-form button {
  padding: 12px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

/* Responsive */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    flex-direction: column-reverse;
    padding: 40px 5%;
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .quote-form {
    justify-content: center;
  }
}

.steps-section {
  padding: 60px 10%;
  text-align: center;
  background-color: #fff;
}

.steps-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.steps-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  margin: 0 auto;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}

.container {
  display: flex;
  justify-content: flex-end;
}

.arrow {
  width: 100px;
}

/* Project sections */
.projects-section {
  padding: 60px 10%;
  background-color: #f9f9f9;
  text-align: center;
}

.projects-subtitle {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
}

.projects-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
}

.projects-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.project-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.stars {
  color: orange;
}

.rating-value {
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-container {
    flex-direction: column;
    align-items: center;
  }
}

/* brokerage-section */
.brokerage-section {
  padding: 60px 10%;
  background-color: #fff;
}

.brokerage-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.brokerage-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.brokerage-text {
  flex: 1;
  min-width: 280px;
}

.brokerage-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.brokerage-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.brokerage-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-dark,
.btn-light {
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-dark {
  background-color: #000;
  color: #fff;
}

.btn-light {
  background-color: #f2f2f2;
  color: #000;
}

.brokerage-stats {
  display: flex;
  gap: 40px;
  font-size: 16px;
  color: #333;
}

.brokerage-stats div strong {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.brokerage-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.brokerage-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .brokerage-inner {
    flex-direction: column;
    text-align: center;
  }

  .brokerage-stats {
    justify-content: center;
  }
}

/* newsletter-section */

.newsletter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background: linear-gradient(to right, #d4e1f4, #fbdacb);
  border-radius: 20px;
  max-width: 1200px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
  flex: 1;
  padding-right: 40px;
}

.newsletter-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}

.newsletter-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  flex: 1;
  max-width: 300px;
  font-size: 14px;
  background-color: #f0f0f0;
}

.newsletter-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  background-color: #111;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #333;
}

.newsletter-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 10px;
}
