  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      background: #f8fafc;
      color: #000;
  }

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

  img {
      width: 100%;
      display: block;
  }

  /* HEADER */

  header {
      width: 100%;
      background: white;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar {
      max-width: 1300px;
      margin: auto;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 30px;
      font-weight: 800;
      color: #0f172a;
  }

.tagline{
    font-size:14px;
    color:#888;
    margin-top:-10px;
    letter-spacing:2px;
    font-weight:400;
}
  .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
  }

  .nav-links a {
      font-size: 15px;
      font-weight: 500;
      transition: 0.3s;
  }

  .nav-links a:hover {
      color: #0ea5e9;
  }

  .lang-btn {
      padding: 8px 16px;
      border-radius: 30px;
      border: 1px solid #ddd;
      font-size: 14px;
  }

  .start-btn {
      background: #0ea5e9;
      color: white;
      padding: 12px 22px;
      border-radius: 30px;
      font-weight: 600;
  }

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

  /* HERO */

  .hero {
      min-height: 100vh;
      background:
          linear-gradient(rgba(0, 0, 0, 0.55),
              rgba(0, 0, 0, 0.55)),
          url('./versailes/amelielivingarea4.jpg') center/cover;
      /* url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2070&auto=format&fit=crop') center/cover; */
      display: flex;
      align-items: center;
  }e

/* url('https://images.unsplash.com/...') center/cover; */
  .hero-content {
    width: 100%;
    max-width: 1300px;
    margin: 0;
    padding: 20px;
    color: white;
}

  .featured {
      background: rgba(255, 255, 255, 0.12);
      width: fit-content;
      padding: 10px 18px;
      border-radius: 30px;
      margin-bottom: 25px;
      backdrop-filter: blur(10px);
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

  .hero p {
      max-width: 760px;
      line-height: 1.8;
      font-size: 17px;
      margin-bottom: 35px;
  }

/* HERO TEXT */
.hero h1,
.hero p,
.hero .featured {
    color: #fff;
}

  .search-box {
      background: white;
      padding: 25px;
      border-radius: 25px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
      max-width: 1000px;
  }

  .search-item {
      flex: 1;
      min-width: 160px;
  }

  .search-item label {
      font-size: 13px;
      color: #666;
      display: block;
      margin-bottom: 8px;
  }

  .search-item select,
  .search-item input {
      width: 100%;
      padding: 12px;
      border-radius: 12px;
      border: 1px solid #ddd;
      outline: none;
      font-size: 15px;
  }

  .search-btn {
      background: #0ea5e9;
      color: white;
      padding: 14px 25px;
      border: none;
      border-radius: 14px;
      font-size: 16px;
      cursor: pointer;
      font-weight: 600;
  }

  /* PROPERTY */

  section {
      padding: 90px 20px;
  }

  .container {
      max-width: 1300px;
      margin: auto;
  }

  .section-title {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-title h2 {
      font-size: 25px;
      margin-bottom: 15px;
  }

  .section-title p {
      color: #666;
  }

  .property-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
  }

  .property-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      transition: 0.4s;
  }

  .property-card:hover {
      transform: translateY(-10px);
  }

  .property-card img {
      height: 350px;
      object-fit: cover;
  }

  .property-content {
      padding: 25px;
  }

  .tag {
      background: #e0f2fe;
      color: #0284c7;
      padding: 8px 14px;
      border-radius: 30px;
      font-size: 13px;
      display: inline-block;
      margin-bottom: 15px;
  }

  .property-content h3 {
      font-size: 28px;
      margin-bottom: 10px;
  }

  .price {
      color: #0ea5e9;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .details-btn {
      background: #0f172a;
      color: white;
      padding: 12px 20px;
      border-radius: 12px;
      display: inline-block;
  }

  /* SERVICES */

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
  }

  .service-card {
      background: white;
      padding: 40px 30px;
      border-radius: 25px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: 0.4s;
  }

  .service-card:hover {
      transform: translateY(-8px);
  }

  .service-number {
      font-size: 45px;
      color: #0ea5e9;
      font-weight: 800;
      margin-bottom: 20px;
  }

  .service-card h3 {
      margin-bottom: 15px;
      font-size: 24px;
  }

  .service-card p {
      line-height: 1.8;
      color: #666;
  }

  /* AGENTS */

  .agents-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 35px;
  }

  .agent-card {
      background: white;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .agent-card img {
      height: 680px;
      object-fit: cover;
  }

  .agent-content {
      padding: 25px;
  }

  .agent-content h3 {
      font-size: 28px;
      margin-bottom: 10px;
  }

  .agent-role {
      color: #0ea5e9;
      margin-bottom: 15px;
      font-weight: 600;
  }

  .agent-content p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
  }

  .contact-btn {
      background: #0ea5e9;
      color: white;
      padding: 12px 18px;
      border-radius: 12px;
      display: inline-block;
  }

  /* CTA */

  .cta {
      background: linear-gradient(to right, #0ea5e9, #0284c7);
      color: white;
      text-align: center;
      border-radius: 35px;
      padding: 70px 30px;
  }

  .cta h2 {
      font-size: 48px;
      margin-bottom: 20px;
  }

  .cta p {
      max-width: 700px;
      margin: auto;
      line-height: 1.8;
      margin-bottom: 35px;
  }

  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .cta-buttons a {
      background: white;
      color: #0284c7;
      padding: 15px 28px;
      border-radius: 14px;
      font-weight: 600;
  }

  /* Hover effect */
  .subscribe a:hover {
      background: #019875;
      transform: translateY(-2px);
  }

  /* FOOTER */

  footer {
      background: #0f172a;
      color: white;
      margin-top: 100px;
  }

  .footer-container {
      max-width: 1300px;
      margin: auto;
      padding: 70px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
  }

  footer h3 {
      margin-bottom: 25px;
      font-size: 22px;
  }

  footer p,
  footer li {
      color: #cbd5e1;
      line-height: 2;
      list-style: none;
  }

  < !--===================-->ul {
      list-style: none;
      padding: 0;
  }

  ul li {
      margin: 8px 0;
  }

  ul li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
  }

  ul li a:hover {
      color: #25D366;
  }

  < !--===================-->.subscribe {
      display: flex;
      margin-top: 20px;
  }

  .subscribe input {
      flex: 1;
      padding: 14px;
      border: none;
      outline: none;
      border-radius: 10px 0 0 10px;
  }

  .subscribe button {
      border: none;
      background: #0ea5e9;
      color: white;
      padding: 14px 18px;
      border-radius: 0 10px 10px 0;
      cursor: pointer;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      padding: 20px;
      color: #cbd5e1;
  }

  /* CHAT BUTTON */

  .chat-btn {
      position: fixed;
      right: 10px;
      bottom: 10px;
      background: #25D366;
      color: white;
      padding: 16px 22px;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      z-index: 999;
  }

  /* MOBILE */
/* =========================
   TABLET & MOBILE
========================= */
@media (max-width: 900px) {

    /* Navigation */
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        transition: left 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: 25px;
        line-height: 1.3;
    
 .hero-content {
    padding: 15px 5px;
}

    .search-box {
        flex-direction: column;
    }

    /* CTA */
    .cta h2 {
        font-size: 36px;
    }

    /* Properties */
    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-card img {
        height: auto;
    }
}

/* =========================
   MOBILE PHONES
========================= */
@media (max-width: 768px) {

    .logo {
        font-size: 24px;
        line-height: 1.2;
        max-width: 180px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }
}


