* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f8;
  color: #1b2340;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* Header */
.header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu ul li a {
  text-decoration: none;
  color: #1d2544;
  font-weight: 500;
  font-size: 18px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  color: #1d2544;
  font-size: 14px;
}

.call-btn {
  background: #f5821f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 700px;
  background: url('images/first.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 520px;
  padding: 40px 0;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #162042;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-text h1 span {
  color: #f5821f;
}

.hero-text p {
  font-size: 28px;
  line-height: 1.5;
  color: #212541;
  margin-bottom: 30px;
}

.primary-btn {
  display: inline-block;
  background: #f5821f;
  color: #fff;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 22px;
}

/* Properties */
.properties-section {
  background: linear-gradient(to bottom, #e9e8f7, #f1eef8);
  padding: 70px 0 80px;
}

.properties-section h2 {
  text-align: center;
  font-size: 52px;
  color: #1c2444;
  margin-bottom: 10px;
}

.sub-text {
  text-align: center;
  font-size: 24px;
  margin-bottom: 35px;
  color: #40465f;
}

.search-box {
  width: 65%;
  margin: 0 auto 45px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 16px 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  position: relative;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 22px;
  padding: 0 45px;
  color: #666;
}

.search-left,
.search-right {
  position: absolute;
  color: #9aa0a9;
  font-size: 22px;
}

.search-left {
  left: 20px;
}

.search-right {
  right: 20px;
  color: #5e8d7d;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.property-card {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #f0a15f;
  border-radius: 18px;
  text-align: center;
  padding: 30px 20px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-circle {
  width: 82px;
  height: 82px;
  background: #f8eee8;
  color: #d97a33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 18px;
}

.property-card h3 {
  font-size: 34px;
  color: #1a2342;
  margin-bottom: 8px;
}

.property-card p {
  font-size: 24px;
  color: #40465f;
}

.featured-card {
  grid-row: span 2;
  background: #fff;
  border: 2px solid #f0a15f;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.featured-content {
  padding: 22px 20px;
}

.featured-content h3 {
  font-size: 28px;
  color: #1b2340;
  margin-bottom: 8px;
}

.featured-content p {
  font-size: 15px;
  color: #666;
}

/* About */
.about-section {
  background: #f7f7fb;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-content h2 {
  font-size: 48px;
  color: #1a2342;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 25px;
  line-height: 1.8;
  color: #39415d;
}

.enquiry-box {
  background: linear-gradient(180deg, #f5821f, #ea7416);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(245, 130, 31, 0.25);
}

.enquiry-box h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 22px;
}

.enquiry-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enquiry-box input,
.enquiry-box textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

.enquiry-box textarea {
  min-height: 120px;
  resize: none;
}

.enquiry-box button {
  width: 100%;
  background: #ff9c27;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12);
}

/* Footer */
.footer {
  background: #103152;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}

.footer-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  width: 100%;
  height: 100%;
}

.footer-top-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 0;
}

.footer-col h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col i {
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #173b7a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-left: 10px;
}

.mini-form input {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 18px;
}

.copyright {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px 15px 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 56px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    grid-row: span 1;
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    width: 90%;
  }
}
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
    position: relative;
}

.logo img {
    max-height: 62px;
    width: auto;
    display: block;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #ff7a00;
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ff7a00;
    transition: 0.3s ease;
}

.menu ul li a:hover::after,
.menu ul li a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff4eb;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-2px);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff7a00, #ff9f1a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.22);
    transition: 0.3s ease;
}

.call-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    outline: none;
    background: #fff4eb;
    border-radius: 12px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ff7a00;
    border-radius: 10px;
    transition: 0.3s ease;
}

.mobile-extra {
    display: none;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .header-right {
        display: none;
    }

    .menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .menu ul li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .menu ul li:last-child {
        border-bottom: none;
    }

    .menu ul li a {
        display: block;
        width: 100%;
        padding: 14px 0;
    }

    .menu ul li a::after {
        display: none;
    }

    .mobile-extra {
        display: block;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid #f1f5f9;
    }

    .mobile-extra .social-icons {
        margin-bottom: 15px;
    }

    .mobile-extra .call-btn {
        width: 100%;
        justify-content: center;
    }

    .logo img {
        max-height: 54px;
    }

    .nav-wrap {
        min-height: 76px;
    }
}

@media (max-width: 575px) {
    .logo img {
        max-height: 46px;
    }

    .menu {
        padding: 16px;
        border-radius: 16px;
    }

    .call-btn {
        font-size: 14px;
        padding: 11px 14px;
    }
}
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 20px;
  }

  .menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .header-right {
    flex-direction: column;
  }

  .hero {
    min-height: 550px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 22px;
  }

  .properties-section h2,
  .about-content h2 {
    font-size: 34px;
  }

  .sub-text,
  .about-content p,
  .property-card p,
  .footer-col p {
    font-size: 18px;
  }

  .property-card h3 {
    font-size: 24px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }
}