
    /* ================= BODY ================= */
    body {
      font-family: "Roboto", Arial, sans-serif;
      background: #f4f6f8;
      color: #222;
      padding-bottom: 90px;
    }

    /* ================= NAVBAR ================= */
    header {
      background: #1f2937;
    }

    .main-nav {
      max-width: 1300px;
      margin: auto;
      padding: 14px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .instagram-icon {
    margin-left: 12px;
}
.navbar a {
    margin-right: 12px; /* gap adjust kar sakte ho */
}

    .nav-links a {
      font-weight: 500;
      font-size: 15px;
    }

    .main-nav a {
      color: white;
    }

/* ===== DESKTOP NAV MENU FIX ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;              /* spacing between items */
  list-style: none;       /* bullet hatane ke liye */
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.site-logo img{
  height: 48px;        /* desktop size */
  width: auto;         /* aspect ratio safe */
  object-fit: contain;
}

header{
  background: #1f2937;
  display: flex;              /* 🔥 MAIN FIX */
  align-items: center;        /* vertical center */
}

    .hero {
      background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
      padding: 40px 16px 50px;
      min-height: unset;
      border-radius: 22px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
  content: "";
  position: absolute;

  background: radial-gradient(
    circle at top center,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0) 60%
  );

  pointer-events: none;
  z-index: 1;
}

    .hero-search {
      max-width: 720px;
      margin: 40px auto 0;
      display: flex;
      background: rgba(255,255,255,0.95);
      border-radius: 999px;
      padding: 6px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .hero-search input {
      flex: 1;
      border: none;
      padding: 15px 22px;
      font-size: 15px;
      border-radius: 999px;
    }

    .hero-search button {
      background: linear-gradient(135deg,#16a34a,#22c55e);
      padding: 15px 30px;
      border-radius: 999px;
      font-weight: 600;
    }

    .hero h1 {
        margin-top: 0;   
      font-size: 34px;
      font-weight: 600;
      margin-bottom: 12px;
      letter-spacing: -0.2px;
    }

    .hero p {
      font-size: 16px;
      opacity: 0.9;
    }
    /* ================= SEARCH ================= */
    .search {
      max-width: 650px;
      margin: 30px auto 0;
      background: white;
      padding: 8px;
      border-radius: 40px;
      display: flex;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .search input {
      border: none;
      padding: 14px 20px;
      flex: 1;
      font-size: 15px;
    }
    .search button {
      background: #16a34a;
      padding: 14px 28px;
      border-radius: 30px;
    }


    /* ================= PROPERTIES SECTION ================= */



    #properties h2 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 30px;
      position: relative;
    }

    #properties h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: #0f766e;
      display: block;
      margin: 10px auto 0;
      border-radius: 10px;
    }

    /* ================= ABOUT & CONTACT ================= */
    #about, #contact {
      max-width: 1100px;
      margin: 50px auto;
      background: white;
      padding: 40px 30px;
      border-radius: 14px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }

    #about h2,
    #contact h2 {
      margin-bottom: 10px;
    }

    /* ================= CONTACT FORM ================= */
    #contact form {
      display: grid;
      gap: 12px;
      margin-top: 15px;
    }

    #contact input,
    #contact textarea {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    #contact button {
      background: #0f766e;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
    }

    /* ================= FOOTER ================= */
    footer {
      background: #1f2937;
      color: white;
      text-align: center;
      padding: 18px;
      margin-top: 60px;
    }
.bottom-fixed-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100%;
  background: #1f2937;
  color: white;

  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;

  box-shadow: 0 -4px 14px rgba(0,0,0,0.25);
  z-index: 9999;   /* 🔥 very important */
}



    .bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;          /* ✅ full width fix */
  width: 100%;       /* ✅ extra safety */

  background: #1f2937;
  z-index: 999;
}
.bottom-bar .container {
  max-width: 100%;
  padding: 0 12px;   /* mobile side padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
}


    /* ================= MOBILE ================= */
      .hero h1 {
        font-size: 22px;
      }


    /* ================= PROPERTY CARD ================= */

    .property-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: white;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      width: 100%;
    }


    .property-card:hover .card-actions {
      opacity: 1;
    }

    .property-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .property-card h3 {margin:0; font-size:18px; color:#4a148c;}


    .property-card h3 a {
      color: #1d4ed8;
      text-decoration: underline;
    }


    .property-card .price {
      font-weight: bold;
      color: #000;
    }

    .property-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

    .property-img img {
      transition: 0.4s ease;
    }
    .property-card:hover img {
      transform: scale(1.05);
    }

    .card-actions {
      position: absolute;
      opacity: 0;
      transition: 0.3s;
      bottom: 10px;
      right: 10px;
      display: flex;
      gap: 8px;
    }

    .card-actions span {
      background: white;
      padding: 6px;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .property-body {
        padding: 10px 12px;
        text-align: center;
    }

    .property-title {
      margin-top: 6px;
      display: block;
    }

    .property-title:hover {
        text-decoration: underline;
    }


    .property-price {
      color: #16a34a;
      font-size: 18px;
    }

    .property-meta {
        font-size: 14px;
        color: #555;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .property-card.featured {
      border: 2px solid #facc15;
      box-shadow: 0 0 0 4px rgba(250,204,21,0.15);
      
    }

    .property-card.featured::before {
      content: "Featured Property";
      position: absolute;
      top: 12px;
      left: 10px;
      background: #facc15;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
    }

    .left-sidebar {
      background: #ffffff;
      padding: 18px;
      border-radius: 14px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      position: sticky;
      top: 90px;
      margin-left: 0;
    }

    section {
      margin-bottom: 60px;
    }


    .property-center {
      width: 100%;
    }
       
      .mobile-menu {
        background: #1f2937;
        display: none;
        flex-direction: column;
        padding: 10px 20px;
      }

      .agent {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
    }
    .categories {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 16px;
    }
    .cat {
      background: white;
      padding: 30px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }
    .agent img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
    }

      .mobile-menu a {
        color: white;
        padding: 10px 0;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      .mobile-menu a:last-child {
        border-bottom: none;
      }

      .hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }



    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      display: block;
      border-radius: 2px;
    }

.view-details-btn{
  position: absolute;
  bottom: 12px;
  right: 12px;          /* ✅ RIGHT SIDE */
  left: auto;           /* ❌ center hataya */
  transform: none;      /* ❌ center transform hataya */

  background: linear-gradient(135deg, #00b894, #16a34a);
  color: #ffffff;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  opacity: 1;           /* ✅ Always visible */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  transition: all 0.25s ease;
}

/* Hover effect */
.view-details-btn:hover{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: scale(1.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

    .hero-wrapper{
      max-width: 100%;
      margin: 30px auto 110px;
      position: relative;
      z-index: 1;
    }
    
.mobile-filter-btn{
  display:none;
}

/* Contact + Instagram icon spacing fix */
.nav-links li {
  display: flex;
  align-items: center;
  gap: 10px;   /* yahan gap control karo */
}

    /* ============================================================================================================ MOBILE NAV FIX =============================================================================================== */

    @media (max-width: 768px) {

     /* ❌ Hide desktop menu */
  .nav-links {
    display: none;
  }
  .bottom-fixed-bar{
    display:flex;
  }
  .mobile-filter-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#16a34a;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:0 16px;
    font-size:18px;
    cursor:pointer;
  }
   .view-details-btn{
    bottom: 8px;
    right: 8px;
    padding: 6px 14px;
    font-size: 12px;
  }
  
  .advanced-filter{
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.45);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: 0.3s ease;
   padding: 6px 10px !important;   /* 👈 upar-niche kam */
    border-radius: 12px;
    overflow: hidden;
    max-height: 52px;          /* sirf search bar height */
    transition: max-height 0.35s ease;
    display: flex !important;
    gap: 10px;   /* 👈 Yahin se distance control hoga */
  }


  .advanced-filter button {
    width: auto;
    padding: 12px 18px;
  }
  
.site-logo{
    display: none !important;
  }
  
.advanced-filter:focus-within{
  box-shadow:
    0 35px 70px rgba(0,0,0,0.28),
    0 0 0 3px rgba(34,197,94,0.35);
}

.advanced-filter input:focus,
.advanced-filter select:focus{
  outline:none;
  border-color:#22c55e;
  background:#ffffff;
}

.mobile-filter-btn{
  background: linear-gradient(135deg,#0f766e,#22c55e);
  border-radius:999px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  transition:0.25s ease;
}

.mobile-filter-btn:hover{
  transform:scale(1.08);
}

.advanced-filter .search-btn{
  background: linear-gradient(135deg,#16a34a,#22c55e);
  font-weight:700;
  letter-spacing:0.3px;
  transition:0.25s ease;
}

.advanced-filter .search-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(34,197,94,0.45);
}

.advanced-filter .clear-btn{
  background:#f3f4f6;
  color:#374151;
  border-radius:10px;
  font-weight:600;
  transition:0.2s;
}

.advanced-filter .clear-btn:hover{
  background:#e5e7eb;
}


  /* mobile me by default sirf input + search + filter button */
  .advanced-filter select,
  .advanced-filter .clear-btn{
    display:none;
  }

  /* jab filter open ho */
  .advanced-filter.show select,
  .advanced-filter.show .clear-btn{
    display:block;
  }

  .property-card.featured::before{
    font-size: 10px;        /* chhota text */
    padding: 3px 8px;       /* kam height + width */
    border-radius: 10px;    /* compact shape */
    top: 6px;
    left: 6px;
  }

 .property-card img {
  width: 100%;
  height: 130px;   /* ⬅️ image bada */
  object-fit: cover;
}
    .property-body{
    padding: 8px 10px;   
  }
  
   .property-title{
    font-size: 14px;
    line-height: 1.2;
  }

.property-title {
  margin-top: 4px;   /* pehle zyada lag rahi */
}

.property-meta {
  gap: 2px;          /* lines paas aayengi */
}
  .property-price{
    font-size: 14px;
    margin: 2px 0;
  }

  .property-meta{
    font-size: 12px;
    gap: 2px;
  }
  
  /* ✅ Show hamburger */
  .hamburger {
    display: flex;
  }

  /* ✅ Right side buttons visible */
  .main-nav > div:last-child {
    display: flex;
    gap: 8px;
  }

  /* Navbar padding */
  .main-nav {
    padding: 12px 16px;
    position: relative;
  }

  /* Smaller buttons for mobile */
  .main-nav a {
    padding: 6px 10px;
    font-size: 13px;
  }

      /* Mobile menu default hidden */
      .mobile-menu {
        display: flex;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1f2937;
        flex-direction: column;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 0.3s ease;
        z-index: 999;
      }

      /* When menu open */
      .mobile-menu.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
        .advanced-filter {

    position: static;          /* ❗ absolute remove */
    transform: none;

    margin: 15px auto 0;
    bottom: auto;
    left: auto;

    grid-template-columns: 1fr; /* One column */

    width: 100%;
    max-width: 100%;

    padding: 12px;
    border-radius: 14px;
  }

        .hero {
    padding: 40px 16px 10px;  /* ⬅️ reduced */
    border-radius: 18px;
    padding-top: 18px;
  }

  .hero h1 {
    font-size: 19px;   /* pehle 22px */
    line-height: 1.3;
    margin-top: -6px;
  }
    
      .search input {
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      }

      .search button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
      }

        .property-title{
        font-size:16px;
      }

      .property-price{
        font-size:15px;
      }
       /* Hide all dropdowns */
  .advanced-filter select {
    display: none;
  }

  /* Hide clear button */
  .advanced-filter .clear-btn {
    display: none;
  }

  /* Keep input + button only */
  .advanced-filter {
    grid-template-columns: 1fr auto; /* input + button */
    gap: 8px;
  }

  .advanced-filter input {
    width: 100%;
  }
    /* Outer white box */
 
  /* Input height kam */
  .advanced-filter input{
    padding: 2px 12px !important;
    font-size: 14px;
    height: 38px;
  }

  /* Button height kam */
  .advanced-filter button{
    padding: 8px 14px !important;
    height: 38px;
    font-size: 14px;
  }

  /* Filter button height */
  .mobile-filter-btn{
    height: 38px;
    padding: 0 12px;
    font-size: 16px;
  }
  /* 🔥 HERO SEARCH HEIGHT FIX */
.hero-search {
  align-items: center; /* sab vertically center */
}

/* SAME HEIGHT FOR ALL */
.hero-search input,
.hero-search button,
.hero-search .mobile-filter-btn {
  height: 40px;              /* 👈 same height */
  line-height: 40px;
  padding: 0 16px;           /* 👈 vertical padding hata diya */
  font-size: 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INPUT thoda slim */
.hero-search input {
  padding-left: 18px;
}

/* SEARCH BUTTON slim */
.hero-search button {
  padding: 0 22px;
}

/* FILTER ICON perfect circle */
.hero-search .mobile-filter-btn {
  width: 40px;
  padding: 0;
  font-size: 16px;
}


  /* jab open ho */
  .advanced-filter.show{
    max-height: 500px;         /* enough to show all filters */
  }

  /* default hidden */
  .advanced-filter select,
  .advanced-filter .clear-btn{
    display: none;
  }

  /* jab open ho */
  .advanced-filter.show select,
  .advanced-filter.show .clear-btn{
    display: block;
  }

  /* layout when open */
  .advanced-filter.show{
    flex-direction: column;
  }
  .contact-container{
    grid-template-columns:1fr;
  }

#property-list{
  grid-template-columns: repeat(2, 1fr);
}

.about-section{
  background:#ffffff;
  padding:80px 20px;
}

.about-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}
  /* Sirf meta info left align */
  .property-card .property-meta{
    align-items: flex-start;   /* flex column left */
    text-align: left;
  }

  .property-card .prop-type,
  .property-card .prop-location{
    text-align: left;
    width: 100%;
    display: block;
    white-space: normal;       /* text cut na ho */
    word-break: break-word;    /* long location handle */
  }

}
  /* ============================================================================================================ MOBILE NAV FIX =============================================================================================== */

     
    h1,h2,h3 {
      letter-spacing: -0.3px;
    }

    .property-title {
      font-weight: 600;
    }
    .sidebar-filter {
      background: #ffffff;
      padding: 15px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .sidebar-filter h3 {
      margin-bottom: 12px;
      font-size: 18px;
    }

    .sidebar-filter .cat {
      background: #f3f4f6;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 500;
      transition: 0.3s;
    }

    .sidebar-filter .cat:hover {
      background: #00b894;
      color: #fff;
    }
    
    .advanced-filter {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    #ffffff
  );
  

  padding: 18px;
  border-radius: 18px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;

  width: calc(100% - 32px);
  max-width: 1100px;

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  z-index: 20;
}



    .agent {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }

    .agent img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }
    .property-card.featured {
      border: 2px solid #f1c40f;
      box-shadow: 0 0 10px rgba(241,196,15,0.4);
    }
    .categories {
      margin-top: 30px;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
    }

    .cat {
      background: #fff;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
    }

    .cat:hover {
      background: #00b894;
      color: white;
    }
    .advanced-filter input,
    .advanced-filter select {
      padding: 13px 14px;
      font-size: 14px;
      border-radius: 10px;
      border: 1px solid #e5e7eb;
      background: #f9fafb;
    }
    .advanced-filter button {
      background: linear-gradient(135deg,#16a34a,#22c55e);
      color: white;
      font-weight: 700;
      border-radius: 10px;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: 0.3s;
    }
    .advanced-filter input:focus,
    .advanced-filter select:focus {
      outline: none;
      border-color: #16a34a;
      background: #fff;
    }

    .rank-badge {
      background: #f59e0b;
      color: #fff;
      font-size: 12px;
      font-weight: bold;

      padding: 4px 8px;
      border-radius: 8px;

      margin-right: 8px;
    }
    .agent {
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px;
      border-radius:10px;
      transition:0.2s;
    }

    .agent:hover {
      background:#f1f5f9;
      transform: translateX(2px);
    }
    /* PAGINATION STYLE */

    .pagination-container{
        margin:30px 0;
        text-align:center;
        display:flex;
        justify-content:center;
        gap:8px;
        flex-wrap:wrap;
    }

    .page-btn{
        min-width:40px;
        height:40px;
        line-height:40px;
        text-align:center;
        background:#00b894;
        color:white;
        text-decoration:none;
        border-radius:4px;
        font-weight:500;
        transition:0.2s;
    }

    .page-btn:hover{
        background:#019270;
    }

    .page-btn.active{
        background:#1f2937;
        color:#fff;
        font-weight:bold;
    }

    .page-btn.prev,
    .page-btn.next{
        background:#0984e3;
    }

    /* ================= TOP USERS ROW ================= */

  .top-users-row {
    margin: 40px auto;
  }

  .top-users-row h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .top-users-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;     /* 👉 scroll if more users */
    padding-bottom: 10px;
  }

  .top-user-card {
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    flex-shrink: 0;
    transition: 0.2s;
  }

  .top-user-card:hover {
    transform: translateY(-3px);
  }

  .top-user-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }

#property-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    /* ✅ Center fix */
    max-width: 1500px;
    margin: 40px auto;   /* auto = center */
    padding: 0 20px;     /* side spacing */
}


.top-users-row{
    max-width: 1500px;   /* Same as property-list */
    margin: 40px auto;   /* Center */
    padding: 0 20px;     /* Side spacing */
}

.top-users-list{
    justify-content: flex-start; /* Left se start but inside center container */
}
.contact-section{
  background:#f4f6f8;
  padding:80px 20px;
}

.contact-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-info h2{
  font-size:30px;
  margin-bottom:15px;
}

.contact-info p{
  color:#555;
  margin-bottom:25px;
}

.contact-info ul{
  list-style:none;
  padding:0;
}

.contact-info li{
  margin-bottom:12px;
  font-size:16px;
}

.contact-info i{
  color:#00b894;
  margin-right:10px;
}

.contact-form{
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:6px;
}

.contact-form button{
  width:100%;
  padding:14px;
  background:#00b894;
  color:white;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

.contact-form button:hover{
  background:#009e7a;
}
#property-list{
  grid-template-columns: repeat(4, 1fr);
}

 @media (max-width: 900px) {
      .main-layout {
        grid-template-columns: 1fr;
      }
    }
  /* ============================================================================================================ MOBILE NAV FIX =============================================================================================== */

/* Mobile */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }

#property-list{
  grid-template-columns: repeat(2, 1fr);
}

.about-section{
  background:#ffffff;
  padding:80px 20px;
}

.about-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.about-container h2{
  font-size:32px;
  margin-bottom:10px;
}

.about-container h2 span{
  color:#00b894;
}

.about-sub{
  color:#555;
  max-width:700px;
  margin:0 auto 50px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.about-card{
  background:#f8f9fa;
  padding:30px;
  border-radius:10px;
  transition:0.3s;
}

.about-card i{
  font-size:40px;
  color:#00b894;
  margin-bottom:15px;
}

.about-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
.insta-icon{
  color:white;
  font-size:30px;
  text-decoration:none;
  transition:0.3s;
}
.insta-icon:hover{
  color:#E1306C;
}
}