body {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
    overflow-x: hidden;
}
/*========================
==========Menu============
=========================*/
.navbar-brand img {
    width: 185px !important;
    margin-top: -8px;
}
.navbar {
height: 72px;
background: #fff;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
box-shadow:1px 1px 7px 1px #d7d7d7;
padding:0 30px !important;
}

.nav-inner {
height: 100%;
display: flex;
align-items: center;
gap: 35px;
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
    padding: 5px;
}
.logo {
font-size: 25px;
font-weight: 800;
letter-spacing: -1px;
}

.logo span {
color: var(--primary);
}

.main-nav {
display: flex;
align-items: center;
gap: 28px;
margin-left: auto;
}

.main-nav a {
color: #222;
font-size: 14px;
font-weight: 500;
}

.main-nav a:hover {
color: #7e20df;
}

.add-listing {
    background: #fb0272;
    color: #fff;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.add-listing:hover {
background: #7e20df;
color:#fff;
}
/*========================
==========Text Paragraph=========
=========================*/
.text-panel h1, .text-panel h2 {
    font-size: 23px !important;
    margin-top: 25px;
}
.text-panel p {
    font-weight: 400;
    font-family: open sans, sans-serif;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
    text-align: justify;
    line-height: 24px;
}
.heading-center{
    padding:20px 200px;
    text-align:center;
}
/*========================
==========Banner=========
=========================*/
#slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: -4px;
}
.slides-container {
display: flex;
transition: transform 0.5s ease-in-out;
}

.slide {
flex: 0 0 50%;
max-width: 50%;
height: auto;
object-fit: cover;
padding: 4px 0px;
}
.slide img{
    width:100%;
    height:auto;
}
.search-button{
    margin-top:-5px;
}
.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 25px;
color: white;
background: rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 50%;
cursor: pointer;
z-index: 10;
user-select: none;
height: 33px;
line-height: 15px;
}

.arrow.left {
left: 20px;
}

.arrow.right {
right: 20px;
}

.dots {
position: absolute;
bottom: 15px;
width: 100%;
text-align: center;
}

.dot {
display: inline-block;
width: 8px;
height: 8px;
margin: 0 5px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
cursor: pointer;
}

.dot.active {
background-color: white;
}
/*========================
==========City=========
=========================*/
.city-grid {
      width: 100%;
      padding: 10px 9px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }

    .city-card {
      position: relative;
      height: 168px;
      overflow: hidden;
      border-radius: 2px;
      background: #222;
    }

    .city-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    /* Dark overlay */
    .city-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.38);
    }

    .city-name {
      position: absolute;
      z-index: 2;
      left: 13px;
      bottom: 18px;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    }

    .city-card:hover img {
      transform: scale(1.05);
    }
/*========================
==========Footer=========
=========================*/
.footer {
    width: 100%;
    background: #101018;
    padding: 30px 0;
}

.footer-container {
max-width: 1500px;
margin: 0 auto;
padding: 0 30px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

/* footer-logo + Description */
.footer-brand {
display: flex;
flex-direction: column;
align-items: flex-start;
gap:10px;
}

.ft-logo img {
    width: 150px;
}

.footer-description {
color: #8c8b9b;
font-size: 15px;
line-height: 1.5;
}

/* Navigation */
.footer-nav {
display: flex;
align-items: center;
gap: 32px;
}

.footer-nav a {
color: #b5b3c1;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

.footer-nav a:hover {
color: #ffffff;
}