body {
  font-family: "roboto", sans-serif;
  background: #ffffff;
  margin: 0;
}

a {
  text-decoration: none !important;
}

li.page-item a {
  margin: 0px !important;
}

li.page-item {
  margin: 0px 5px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #ffffff;
}

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

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
}

nav .active {
  color: #f4b400;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4b400;
  font-size: 22px;
}

.btn-download {
  background: #f4d03f;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 800;
  text-decoration: none;
  color: black;
}

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

.hero {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 50px 8% !important;
  overflow: hidden;
  background: #fff;
}

/* LEFT SIDE */

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.hero-left h1 span {
  color: #f4c430;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-btn {
  border: none;
  outline: none;
  background: #ff7a00;
  color: #fff;
  padding: 16px 28px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-btn:hover {
  background: #e86f00;
}

.hero-users {
  display: flex;
  align-items: center;
  gap: -5px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-users img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
}

.hero-users img:first-child {
  margin-left: 0;
}

.hero-users span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RIGHT SIDE */

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  width: 520px;
  height: 520px;
  background: #fff2e8;
  border-radius: 50%;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  max-width: 790px;
  position: relative;
  z-index: 2;
  top: 30px;
}

@media(max-width:1200px) {

  .hero-left h1 {
    font-size: 52px;
  }

  .hero {
    gap: 40px;
  }
}

/* Tablet */

@media(max-width:992px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    min-height: auto;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left p {
    margin: auto;
    margin-bottom: 30px;
  }

  .hero-btn {
    margin: auto;
  }

  .hero-users {
    justify-content: center;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-bg-shape {
    width: 420px;
    height: 420px;
  }
}

/* Mobile */

@media(max-width:768px) {

  .hero {
    padding: 50px 20px;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bg-shape {
    width: 320px;
    height: 320px;
  }

  .hero-main-img {
    max-width: 320px;
  }

  .hero-users {
    flex-direction: column;
  }

  .hero-users span {
    text-align: center;
  }
}

/* Small Mobile */

@media(max-width:480px) {

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-bg-shape {
    width: 260px;
    height: 260px;
  }

  .hero-main-img {
    max-width: 260px;
  }

  .hero-users img {
    width: 45px;
    height: 45px;
  }
}


.card {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  width: 160px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card p {
  font-size: 12px;
}

.card button {
  background: #f4d03f;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
}

.card1 {
  top: 0;
  left: 50px;
  transform: rotate(-10deg);
}

.card2 {
  top: 50px;
  right: 50px;
  transform: rotate(10deg);
}

.search-box {
  background: #fff;
  margin: -20px 80px auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-width: 90%;
  position: relative;
  z-index: 100;
  border: 1px solid;
  border-color: #ededed;
}

.search-fields {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.search-fields input,
.search-fields select {
  flex: 1;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ddd;

}

.search-fields button {
  background: #f4d03f;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
}

.features {
  text-align: center;
}

.features h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

.features h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.icon {
  width: 60px;
  height: 60px;
  background: #f5e7b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card:hover .icon {
  background: #fff;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: #f4c430;
}

.feature-card:hover p {
  color: rgb(0, 0, 0);
}

.roomie {
  padding: 10px 60px;
  text-align: center;
}

.roomie h2 {
  font-size: 34px;
  margin: 50px;
  position: relative;
}

.roomie h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}

.roomie-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.roomie-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 600px;

  border-radius: 12px;
  text-align: left;

}

.girl-img {
  margin-bottom: -7px;
}

.boy-img img {
  width: 250px !important;
}

.others-img img {
  width: 440px !important;
  height: 350px !important;
  margin-bottom: -28px;
}

#other-card {
  width: 700px !important;
  gap: 0 !important;
}

.girls {
  background: #e9dfc5;
}

.boys {
  background: #e1e4ea;
}

.others {
  background: #ead6e8;
  padding: 0px !important;
}

.roomie-card img {
  width: 250px;
}

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

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.content ul li i {
  margin-right: 8px;
  color: #333;
}


.how-it-works {
  padding: 80px 60px;
  text-align: center;
}


.how-it-works h2 {
  font-size: 34px;
  margin-bottom: 60px;
  position: relative;
}

.how-it-works h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}

.steps {
  max-width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  border-top: 2px dashed #bbb;
  z-index: 0;
}

.step {
  width: 220px;
  position: relative;
  z-index: 2;
}

.how-it-works .icon {
  width: 80px;
  height: 80px;
  background: #FEF4CE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

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

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

.banner-content .download-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 70px;
  gap: 20px;

}

.banner-content {
  max-width: 900px;
  margin-top: -29%;
  padding-left: 12%;
}

.banner-content h1 {
  font-size: 58px;
  text-align: left;
  font-weight: 500;
}

.banner-content p {
  font-size: 20px;
}

.mobile-banner {
  margin: 100px 0 170px 0;
}

.testimonal-content {

  width: 500px;
}

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

.testimonal {
  background-image: url(../../landingPage/testimonal_bg.png);
  width: 90%;
  margin: 0 auto;
}

.testimonal img {
  object-fit: cover;
  object-position: top;

}

#profile-img {
  max-width: 280px;
  background-color: white;
  border: 1px solid rgb(164, 164, 164);
  margin: 40px;
  padding-top: 13px;
}

#profile-img p {
  padding: 10px 0;

}

.testimonal .row .col {
  margin: auto 50px;
  max-width: 600px;
}

.testimonal .row {
  padding: 90px 40px 40px 40px;
}

.testimonal .row {
  display: flex;
  justify-content: center;
}

.testimonal h4 {
  margin-bottom: 20px;
}

.connect {
  padding: 40px 0;
}

.connect span {
  margin-left: 20px;
}


.faq-section h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

.faq-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}

.faq-section {
  max-width: 70%;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border: 1px solid #d5d5d5;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #FFFCED;
  color: black;
}

.faq-icon {
  background: black;
  color: #f5c542;
  padding: 5px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 0 !important;
  padding: 10px 15px;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  text-align: left;
  border-top: 1px solid #ddd;
  color: #555;
}

.footer-section {
  background: url('/landingPage/footer-bg.png') center/cover no-repeat;
  width: 100%;
  margin-top: 80px;
}


.footer {
  color: #000000;
  padding: 120px 0px 0px 0px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-bottom p {
  margin-bottom: 0 !important;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  color: #2e2e2e;
  font-size: 14px;
  padding: 20px 0px 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #252525;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f5c542;
}

.logo {
  color: #f5c542;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons img {
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px auto;
  font-size: 15px;
  color: #ffffff;
  background-color: #000000;
}

.footer-bottom p {
  padding: 12px;
  margin: 0 !important;
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  background: url('/landingPage/feature-banner-img.png') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#support {
  position: relative;
  height: 600px;
  background: url('/landingPage/privacy.jpg') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#help-support {
  position: relative;
  height: 600px;
  background: url('/landingPage/help.jpg') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#room-banner {
  position: relative;
  height: 800px;
  background: url('/landingPage/room2.jpg') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  /* adjust opacity here */
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center !important;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e5e5e5;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #facc15;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #eab308;
}

.hero-content h1 span {
  color: #facc15;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  margin: 50px auto;
}

.stat h3 {
  font-size: 36px;
  color: #facc15;
}

.stat p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}

/* CTA */
.cta {
  background: #000000;
  padding: 40px 0;
  color: white;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.app-section {
  background: #fff3cd;
  padding: 50px 0;
  margin-top: 50px;
}

.app-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-text h2 {
  max-width: 550px;
  font-size: 36px;
}

.app-text h2 span {
  color: #facc15;
}

.app-text ul {
  list-style: none;
  padding: 12px 0;
  line-height: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #facc15;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.room-hero-section {
  position: relative;
  height: 800px;
  background: url('/landingPage/feature-banner-img.png') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}










/* HERO */
.room-hero {
  position: relative;
  height: 40vh;
  background: url('https://images.unsplash.com/photo-1507089947368-19c1da9775ae') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-content span {
  color: #facc15;
}

/* FILTER */
.filter-bar {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  width: 90%;
  margin: -40px auto 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.filter-bar input,
.filter-bar select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;

}

.filter-group,
input,
optgroup,
select,
textarea {
  margin-right: 12px !important;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.filter-bar button {
  background: #facc15;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
}

.filters input[type="checkbox"] {
  accent-color: #f4c430;
}

.filters input[type="range"] {
  accent-color: #f4c430;
  width: 300px;
}

hr {
  margin: 25px 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: .25;
}

/* ROOMS */
.rooms-container {
  width: 90%;
  margin: auto;
}

.rooms-header {
  display: flex;
  justify-content: space-between;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tag {
  position: absolute;
  background: black;
  color: white;
  padding: 5px;
}

.room-info {
  padding: 15px;
}

.price {
  color: #facc15;
  font-weight: bold;
}

/* FEATURED */
.featured,
.locations,
.roommate,
.map-section,
.testimonials {
  width: 90%;
  margin: 40px auto;
}

.featured-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

/* LOCATIONS */
.location-grid {
  display: flex;
  gap: 15px;
}

.location-card {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* ROOMMATE */
.roommate-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

/* MAP */
.map-box {
  height: 300px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TESTIMONIAL */
.testimonial-grid {
  display: flex;
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* CTA */
.cta {
  background: #000000;
  text-align: center;
  padding: 40px;
}

.cta button {
  padding: 12px 25px;
  background: #f9d339;
  color: #000000;
  border: none;
  border-radius: 50px;
}





/* 🏠 Grid */
.rooms-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 40px;
}

.room-heading {
  margin-top: 100px;
}

.room-heading h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.room-heading h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}


/* 🧱 Card */
.room-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

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

/* Image */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ❤️ Wishlist */
.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

/* Hover Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.card-img:hover .overlay {
  opacity: 1;
}

.overlay button {
  padding: 10px 20px;
  border: none;
  background: #f9d339;
  color: white;
  border-radius: 8px;
}

/* Content */
.card-content {
  padding: 15px;
}

.price {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
}

/* Pagination */
.pagination {
  text-align: center;
  padding: 20px;
}

.pagination button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  background: #ddd;
  border-radius: 5px;
}

.pagination .active {
  background: #f9d339;
  color: white;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-row h3 {
  font-size: 28px;
}

/* ❤️ Wishlist icon */
.wishlist-icon {
  font-size: 22px;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
}

.wishlist-icon:hover {
  color: red;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
  justify-content: center;
}


/* 📱 Responsive */
@media(max-width: 992px) {
  .rooms-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .rooms-container {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}




.location-container {
  width: 90%;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.sub-text {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}


/* ================= ROOMMATE ================= */
.roommate-section {
  background: #f9f9f9;
  padding: 60px 0;
  margin-top: 40px;
}

.roommate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.roommate-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.roommate-card img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.roommate-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.roommate-card button {
  background: #ffc107;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.create-profile-card {
  background: #fff;
  border: 2px dashed #ffc107;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.create-profile-card button {
  background: #ffc107;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
}


/* ================= LOCATION ================= */
.location-section {
  padding: 60px 0;
  margin-top: 40px;
}

.location-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.location-list {
  flex: 1;
  min-width: 250px;
}

.location-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.view-btn {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: #ffc107;
  border: none;
  border-radius: 20px;
}

.map-container {
  flex: 2;
  position: relative;
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

.map-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-card button {
  background: #ffc107;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
}


/* ================= WHY SECTION ================= */
.why-section {
  background: #f9f9f9;
  padding: 60px 0;
  margin-top: 40px;
}

.choose-container {
  width: 90%;
  margin: auto;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgb(255, 244, 119);
  margin: 40px auto;
}

.why-card i {
  font-size: 20px;
}

.why-section h3 {
  font-size: 24px !important;
}

.why-card:hover {
  transform: translateY(-5px);
  background-color: #f4c430;
}

/* CATEGORIES */
.cat-grid {
  display: flex;
  gap: 15px;

  justify-content: center;
}

.cat {
  background: white;
  padding: 15px;
  border-radius: 10px;
}

section.categories.container {
  margin-top: 80px;
}






.category-section {
  padding: 40px 5%;
  background: #f5f5f5;
  margin-top: 80px;
}

.category-section h3 {
  text-align: center;
  font-size: 14px;
  color: #7a8aa0;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* WRAPPER */
.category-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
}

/* SLIDER */
.category-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.category-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.category-card {
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.category-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.category-card p {
  padding: 12px;
  font-weight: 500;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* BADGE */
.badge {

  top: 10px;
  left: 10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
}

/* HIGHLIGHT CARD */
.highlight {
  background: linear-gradient(135deg, #cfe8d5, #a6d1c1);
}

/* SCROLL BUTTON */
.scroll-btn {
  position: absolute;
  background: #fff;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.scroll-btn.left {
  left: -10px;
}

.scroll-btn.right {
  right: -10px;
}

#roommate-banner {
  position: relative;
  height: 800px;
  background: url('/landingPage/roommate-banner-img.png') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}





.app-heading {
  text-align: left;
}

/* find room. */

/* SECTION */
.discover-rooms {
  padding: 60px 80px;
}

.discover-rooms .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

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

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4c430;
  display: block;
  margin: 10px auto 0;
}

/* LAYOUT */
.rooms-container {
  display: flex;
  gap: 30px;
}

/* FILTERS */
.filters {
  width: 400px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid rgb(226 226 226);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.filter-header .clear {
  color: #f4c430;
  cursor: pointer;
  font-size: 14px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.filter-group input[type="text"] {
  width: 300px;
  border-radius: 50px;
  padding: 8px;
  border-color: #e5e5e5;
}

.apply-btn {
  width: 100%;
  padding: 10px;
  background: #f4c430;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 40px;
  cursor: pointer;
}

/* ROOM LIST */
.rooms-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.room-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.room-card img {
  width: 350px;
  object-fit: cover;

}

.room-info {
  padding: 20px;
  flex: 1;
}

/* TOP */
.top {
  display: flex;
  justify-content: space-between;
}

.top h3 {
  font-size: 24px;
  margin: 0;
}

.rating {
  font-size: 18px;
}

/* PRICE */
.price {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
}

.price span {
  font-size: 14px;
  color: gray;
}

/* TAGS */
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0px;
  font-size: 20px;
}

.tags span {
  background: #f1f1f1;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
}

/* DESCRIPTION */
.room-info p {
  font-size: 14px;
  color: #666;
}

/* BOTTOM */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

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

.owner img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* BUTTON */
.connect-btn {
  background: #f4c430;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}





/*********************************
GOOGLE FONT
**********************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
}

/*********************************
DISCOVER ROOMMATES SECTION
**********************************/
.discover-roommates {
  width: 100%;
  padding: 60px 80px;
  background: #ffffff;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 36px;

  color: #111;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.section-heading span {
  width: 95px;
  height: 3px;
  background: #f4c430;
  display: inline-block;
  border-radius: 20px;
}

/*********************************
MAIN LAYOUT
**********************************/
.discover-wrapper {
  display: flex;
  width: 90%;
  gap: 30px;
  margin: auto;
  padding: 20px 40px;
  /* align-items: flex-start; */
}


/*********************************
FILTER SIDEBAR
**********************************/
.filter-sidebar {
  width: 400px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid rgb(226 226 226);
}


.filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.filter-top h3 {
  font-size: 28px;
  color: #111;
}

.filter-top a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #f4b400;
}

/*********************************
FILTER BOX
**********************************/
.filter-box {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ececec;
}

.filter-box:last-child {
  border-bottom: none;
}

.filter-box h4 {
  font-size: 16px;
  color: #111;
  margin-bottom: 18px;
}

.filter-box label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
}

.filter-box input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #f4c430;
  cursor: pointer;
}

.filter-box input[type="text"] {
  width: 100%;
  height: 42px;
  border: 1px solid #dddddd;
  border-radius: 50px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 400;
  outline: none;
  color: #666;
}

.filter-box input[type="range"] {
  width: 100%;
  accent-color: #f4c430;
  cursor: pointer;
}

.filter-box p {
  font-size: 14px;
  font-weight: 500;
  color: #f4b400;
  margin-bottom: 14px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}

/*********************************
APPLY BUTTON
**********************************/
.apply-btn {
  width: 175px;
  height: 38px;
  border: none;
  border-radius: 50px;
  background: #f4d74d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: auto;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn span {
  width: 26px;
  height: 26px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-btn:hover {
  transform: translateY(-2px);
}

/*********************************
ROOMMATE LIST
**********************************/
.roommate-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/*********************************
ROOMMATE CARD
**********************************/
.roommate-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 90%;
  height: 380px;
}

/*********************************
ROOMMATE IMAGE
**********************************/
.roommate-image {
  width: 350px;
  overflow: hidden;
  flex-shrink: 0;
}

.roommate-image img {
  width: 350px;
  object-fit: cover;
  border-radius: 20px !important;
}

/*********************************
ROOMMATE CONTENT
**********************************/
.roommate-content {
  flex: 1;
  padding: 20px;
  /* padding-top: 8px; */
}

.roommate-content p {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.7;
  max-width: 95%;
  margin-bottom: 42px;
  text-align: left;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.top-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  text-align: left !important;
}

.sub-info {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sub-info span {
  font-size: 13px;
  font-weight: 500;
  color: #7a7a7a;
}

.rating {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

/*********************************
PRICE INFO
**********************************/
.price-info {
  display: flex;
  gap: 35px;
  margin-bottom: 18px;
}

.price-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #8b8b8b;
}

/*********************************
TAGS
**********************************/
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tags span {
  padding: 7px 16px;
  background: #f1f1f1;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

/*********************************
DESCRIPTION
**********************************/
.roommate-content p {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.7;
  max-width: 95%;
  margin-bottom: 42px;
}

/*********************************
BOTTOM SECTION
**********************************/
.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-content span {
  font-size: 13px;
  font-weight: 500;
  color: #8b8b8b;
}

/*********************************
CONNECT BUTTON
**********************************/
.bottom-content button {
  width: 125px;
  height: 42px;
  border: none;
  border-radius: 50px;
  background: #f4d74d;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
}

.bottom-content button:hover {
  background: #111;
  color: #fff;
}

/*********************************
RESPONSIVE
**********************************/
@media(max-width:1200px) {

  .discover-wrapper {
    flex-direction: column;
  }

  .filter-sidebar {
    width: 100%;
  }

  .roommate-card {
    flex-direction: column;
  }

  .roommate-image {
    width: 100%;
    height: 420px;
  }
}

@media(max-width:768px) {

  .discover-roommates {
    padding: 40px 5%;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .roommate-card {
    gap: 20px;
  }

  .top-content {
    flex-direction: column;
    gap: 10px;
  }

  .price-info {
    flex-direction: column;
    gap: 12px;
  }

  .bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .roommate-image {
    height: 350px;
  }
}









/*********************************
SIGNUP SECTION
**********************************/
.signup-section {
  width: 80%;
  margin: 10px auto;
  min-height: 900px;
  background: #f7db57;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/*********************************
BACKGROUND SHAPES
**********************************/
.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

/* TOP LEFT */
.shape1 {
  width: 250px;
  height: 250px;
  top: -100px;
  left: -80px;
}

/* TOP CENTER */
.shape2 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: 25%;
}

/* TOP RIGHT */
.shape3 {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -90px;
}

/* BOTTOM LEFT */
.shape4 {
  width: 250px;
  height: 250px;
  bottom: -120px;
  left: -70px;
}

/* BOTTOM RIGHT */
.shape5 {
  width: 320px;
  height: 320px;
  bottom: -150px;
  right: -100px;
}

/*********************************
MAIN CONTAINER
**********************************/
.signup-container {
  width: 100%;
  min-height: 860px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/*********************************
LEFT PANEL
**********************************/
.left-panel {
  width: 65%;
  background: #f7db57;
  padding: 90px 70px;
  position: relative;
  overflow: hidden;
}

.content {
  margin-top: 250px;
}

.content h1 {
  font-size: 72px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/*********************************
SWITCH BUTTON
**********************************/
.switch-btn {
  width: 400px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 60px;
  padding: 5px;
  display: flex;
  align-items: center;
}

.switch-btn button,
.switch-btn a {
  width: 50%;
  height: 100%;
  border: none;
  background: transparent;
  border-radius: 60px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.switch-btn .active {
  background: #f7db57;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/*********************************
DOT PATTERN
**********************************/
.dot-pattern {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 95px;
  left: 80px;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 12px 12px;
}

/*********************************
BOTTOM CIRCLE DESIGN
**********************************/
.circle-design {
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 220px;
  height: 220px;
}

.circle-design span {
  position: absolute;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.8);
}

.circle-design span:nth-child(1) {
  width: 220px;
  height: 220px;
  right: 0;
  bottom: 0;
}

.circle-design span:nth-child(2) {
  width: 150px;
  height: 150px;
  right: 35px;
  bottom: 0;
}

.circle-design span:nth-child(3) {
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, #fff, #f4b400);
  border: none;
  top: 10px;
  left: 10px;
}

/*********************************
RIGHT PANEL
**********************************/
.right-panel {
  width: 80%;
  background: #f8f8f8;
  padding: 40px 50px;
}

/*********************************
FORM HEADER
**********************************/
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 18px;
  color: #949494;

}

/*********************************
INPUT GROUP
**********************************/
.input-group {
  margin-bottom: 28px;
}

.input-group label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

/*********************************
INPUT FIELD
**********************************/
.input-field {
  width: 100%;
  height: 50px;
  border: 1px solid #d7d7d7;
  border-radius: 12px !important;
  background: transparent;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.input-field i {
  color: #8f8f8f;
  font-size: 18px;
}

.input-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #333;
}

.input-field input::placeholder {
  color: #9d9d9d;
}

.eye {
  cursor: pointer;
}

/*********************************
SUBMIT BUTTON
**********************************/
.submit-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 50px;
  background: #f7db57;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

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

/*********************************
DIVIDER
**********************************/
.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}

.divider span {
  flex: 1;
  height: 1px;
  background: #d8d8d8;
}

.divider p {
  font-size: 18px;
  color: #888;
}

/*********************************
GOOGLE BUTTON
**********************************/
.google-btn {
  width: 100%;
  height: 60px;
  border: 1px solid #dddddd;
  background: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.google-btn img {
  width: 24px;
}

/*********************************
RESPONSIVE
**********************************/
@media(max-width:1200px) {

  .signup-container {
    flex-direction: column;
    width: 100%;
  }

  .left-panel,
  .right-panel {
    width: 100%;
  }

  .content {
    margin-top: 80px;
  }
}

@media(max-width:768px) {

  .signup-section {
    padding: 20px;
  }

  .left-panel,
  .right-panel {
    padding: 50px 30px;
  }

  .content h1 {
    font-size: 42px;
  }

  .switch-btn {
    width: 100%;
  }

  .form-header h2 {
    font-size: 40px;
  }

  .input-field {
    height: 58px;
  }

  .submit-btn {
    height: 60px;
    font-size: 18px;
  }
}


.no-alcohol-icon {
  width: 68px;
  height: 68px;
  border: 6px solid #000;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}

.no-alcohol-icon .slash {
  position: absolute;
  width: 4px;
  height: 68px;
  background: #000;
  transform: rotate(45deg);
}

.no-alcohol-icon .fa-wine-glass {
  font-size: 35px;
}

.no-alcohol-icon .fa-wine-bottle {
  font-size: 35px;
}

#wine i {
  font-size: 30px;
  color: #000;
  margin-bottom: 3px;
}








/*********************************
SECTION
**********************************/
.profile-step-section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 0;
}

.lifestyle-wrapper {
  max-width: 420px;
  margin: 110px auto !important;
}

/*********************************
CARD
**********************************/
.step-card {
  width: 100%;
  max-width: 820px;
  height: 900px;

  background: #efefef;
  padding: 40px 50px;
}

/*********************************
TITLE
**********************************/
.section-title {
  text-align: center;
  font-size: 25px !important;
  font-weight: 600;
  margin-bottom: 40px !important;
}

/*********************************
GENDER BOX
**********************************/
.gender-box {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  background: #ececdf;
}

/*********************************
GENDER ITEM
**********************************/
.gender-item {
  height: 120px;
  border-right: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
}

.gender-item.active {
  background: #f4dd57;
}

.gender-item i {
  font-size: 35px;
  color: #000;
  margin-bottom: 18px;
}

.gender-item h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/*********************************
DOB WRAPPER
**********************************/
.dob-wrapper {
  margin-top: 50px;
}

/*********************************
DOB COLUMN
**********************************/
.dob-column {
  text-align: center;
  height: 250px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.dob-column::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.dob-column span,
.dob-column .date-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 18px;
  color: #b3b3b3;
  font-weight: 500;
  scroll-snap-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.dob-column .date-item.active {
  color: #000;
  font-weight: 700;
  font-size: 22px;
  background: #ececdf;
  border-radius: 10px;
}

.dob-wrapper .row {
  position: relative;
}

/* Selector Highlight */
.dob-wrapper .picker-highlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50px;
  background: #ececdf;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  z-index: -1;
  pointer-events: none;
}

/*********************************
BUTTON
**********************************/
.next-btn {
  width: 420px;
  height: 55px;
  border: none;
  border-radius: 12px;
  background: #f4dd57;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  transition: 0.3s;
}

#yourself {
  margin-top: 320px !important;
}

#next-step-btn {
  margin-top: 40px;
}

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

.lifestyle-wrapper {
  max-width: 420px;
  margin: 90px auto;
}

/*********************************
RESPONSIVE
**********************************/
@media(max-width:991px) {

  .step-card {
    padding: 60px 40px;
  }

  .next-btn {
    width: 100%;
  }

}

@media(max-width:767px) {

  .gender-item {
    border-right: none;
    border-bottom: 1px solid #cfcfcf;
  }

  .dob-column {
    margin-bottom: 40px;
  }

  .dob-wrapper {
    margin-top: 60px;
  }

  .step-card {
    padding: 40px 25px;
  }

  .next-btn {
    margin-top: 80px;
  }

}




/*=========================================
STEP 2 PROFILE UPLOAD
=========================================*/

.upload-profile-wrapper {
  padding: 20px 10px;
}

.big-heading {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.upload-text {
  font-size: 22px;
  color: #000;
  font-weight: 500;
}

.photo-upload-area {
  padding-left: 30px;
}

.main-upload-box {
  width: 100%;
  height: 390px;
  border: 2px dashed #666;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}

.upload-label {
  width: 100%;
  height: 80%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: #fffef9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-icon i {
  font-size: 55px;
  color: #000;
}

.small-upload-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.small-upload-box {
  width: 140px;
  height: 140px;
  border: 2px dashed #666;
  border-radius: 15px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #fffef9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-upload-icon i {
  font-size: 24px;
  color: #000;
}

.prev-btn {
  width: 70px;
  height: 55px;
  border: none;
  border-radius: 12px;
  background: #efeee4;
  color: #000;
  font-size: 20px;
  transition: 0.3s;
}

.prev-btn:hover {
  background: #f5dc58;
}

.d-flex.align-items-center.gap-3.mt-5 {
  margin-bottom: 80px !important;
}

.d-flex {
  display: flex !important;
  justify-content: center;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

  .big-heading {
    font-size: 42px;
  }

  .photo-upload-area {
    padding-left: 0;
    margin-top: 40px;
  }

}

@media(max-width:767px) {

  .main-upload-box {
    height: 280px;
  }

  .small-upload-wrapper {
    gap: 10px;
  }

  .small-upload-box {
    width: 100%;
    height: 100px;
  }

  .big-heading {
    font-size: 34px;
  }

}




/*=========================================
STEP 2 LIFESTYLE
=========================================*/

.lifestyle-wrapper {
  max-width: 500px;
  margin: auto;
}

.lifestyle-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}

.lifestyle-box {
  height: 160px;
  border-radius: 18px;
  background: #efeee4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #e5e5e5;
}

.lifestyle-box.active {
  background: #f5dc58;
}

.lifestyle-box i {
  font-size: 50px;
  color: #000;
  margin-bottom: 18px;
}

.lifestyle-box h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

.lifestyle-box:hover {
  transform: translateY(-5px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

  .lifestyle-wrapper {
    margin-top: 50px;
  }

}

@media(max-width:767px) {

  .lifestyle-box {
    height: 130px;
  }

  .lifestyle-box i {
    font-size: 38px;
  }

  .lifestyle-box h4 {
    font-size: 18px;
  }

}

/*=========================================
PROFESSIONAL FIELD
=========================================*/

.professional-wrapper {
  width: 100%;
  padding: 60px 40px;
}

.professional-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 80px;
}

.professional-options {
  width: 100%;
}

/*========================= ROWS=====================*/

.professional-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

.second-row {
  padding-left: 2px;
}

.third-row {
  padding-left: 0px;
}

.fourth-row {
  padding-left: 0px;
}

/*============================ITEMS=================*/

.professional-item {
  background: #efeee4;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  padding: 14px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.2;
  text-align: center;
}

.professional-item.active {
  background: #f5dc58;
  border: 3px solid #000000;
}

/* EXACT WIDTHS LIKE IMAGE */

.professional-row:nth-child(1) .professional-item:first-child {
  width: 385px;
}

.professional-row:nth-child(1) .professional-item:last-child {
  width: 460px;
}

.professional-row:nth-child(2) .professional-item:first-child {
  width: 340px;
}

.professional-row:nth-child(2) .professional-item:last-child {
  width: 370px;
}

.professional-row:nth-child(3) .professional-item:first-child {
  width: 345px;
}

.professional-row:nth-child(3) .professional-item:last-child {
  width: 390px;
}

.long-item {
  width: 700px;
}



/*==========================RESPONSIVE=====================*/

@media(max-width:991px) {

  .professional-wrapper {
    padding: 40px 20px;
  }

  .professional-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .professional-row {
    flex-direction: column;
    gap: 18px;
  }

  .professional-item,
  .professional-row:nth-child(1) .professional-item:first-child,
  .professional-row:nth-child(1) .professional-item:last-child,
  .professional-row:nth-child(2) .professional-item:first-child,
  .professional-row:nth-child(2) .professional-item:last-child,
  .professional-row:nth-child(3) .professional-item:first-child,
  .professional-row:nth-child(3) .professional-item:last-child,
  .long-item {
    width: 100%;
  }

  .professional-btns {
    margin-top: 80px;
  }

}

@media(max-width:767px) {

  .professional-title {
    font-size: 26px;
  }

  .professional-item {
    font-size: 16px;
    padding: 18px;
    text-align: center;
  }

}

/*======================= MESSAGE FIELD=====================*/

.message-field {
  width: 100%;
  height: 220px;
  background: #efeee4;
  border: 1px solid #d7d7d7;
  border-radius: 18px;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  resize: none;
  outline: none;
  transition: 0.3s;
  line-height: 1.6;
}

.message-field::placeholder {
  color: #777;
  font-size: 20px;
}

.message-field:focus {
  border-color: #f5dc58;
  box-shadow: 0 0 0 4px rgba(245, 220, 88, 0.2);
}

/*================== RESPONSIVE===========================*/

@media(max-width:767px) {

  .message-field {
    height: 180px;
    font-size: 16px;
    padding: 18px;
  }

  .message-field::placeholder {
    font-size: 16px;
  }

}



span.option-text {
  font-size: 20px;
}




#signin-heading {
  margin-top: 150px;
}



/*=====================REMEMBER & FORGOT=================*/

.remember-forgot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 28px;
}

.remember-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.remember-box input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #f5dc58;
}

.remember-box label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  margin-bottom: 0;
}

.forgot-password {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.forgot-password:hover {
  color: #f5dc58;
}

/*====================RESPONSIVE=============*/

@media(max-width:576px) {

  .remember-forgot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

}


#testimonal-banner {
  position: relative;
  height: 800px;
  background: url('/landingPage/testimonal-banner.jpg') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cstm-next-btn {
  margin-top: 350px !important;
}

#faq-banner {
  position: relative;
  height: 800px;
  background: url('/landingPage/faq-banner.jpg') center/cover no-repeat;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   BROWSE TOPICS
========================= */

.browse-topics {
  padding: 70px 0 50px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.topic-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 24px;
  padding: 18px 20px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.topic-card i {
  font-size: 28px;
  color: #f5b800;
  margin-bottom: 20px;
}

.topic-card:hover {
  border: 2px solid #f5b800;
  background: #fffdf7;
}

.topic-card:hover {
  border: 2px solid #f5b800;
  background: #fffdf7;
}

.topic-card img {
  width: 48px;
  margin-bottom: 18px;
}

.topic-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.topic-card p {
  font-size: 14px;
  color: #888;
}

/* =========================
   HELP SECTION
========================= */

.help-section {
  padding: 70px 0;
}

.help-wrapper {
  background: #f7f4ef;
  border-radius: 32px;
  padding: 50px;
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 40px;
}

.help-content {
  flex: 1;
}

.help-content h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.help-content p {
  color: #666;
  text-align: center;
  margin-bottom: 35px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.help-card i {
  font-size: 30px !important;
  color: #f5b800;
}

.help-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.help-card img {
  width: 42px;
}

.help-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.help-card span {
  font-size: 14px;
  color: #777;
}

.help-image {
  flex: 1;
  text-align: right;
}

.help-image img {
  max-width: 100%;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1320px;
  padding: 40px 50px !important;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

  .help-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .help-image {
    text-align: center;
  }

  .help-cards {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {

  .section-title {
    font-size: 28px;
  }

  .help-content h2 {
    font-size: 30px;
  }

  .help-wrapper {
    padding: 30px 20px;
  }
}










/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
  padding: 100px 0;
}

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

.section-heading h2 {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.section-heading span {
  width: 120px;
  height: 4px;
  background: #f5dc58;
  display: inline-block;
  border-radius: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 30px;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.stars i {
  color: #f5c518;
  font-size: 18px;
  margin-right: 2px;
}

.quote-icon i {
  font-size: 42px;
  color: #000;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.9;
  color: #777;
  margin-bottom: 35px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 22px;
  margin: 0;
  color: #000;
}

.client-info span {
  font-size: 16px;
  color: #777;
}

/*=========================================
LOVE FLATO SECTION
=========================================*/

.love-flato-section {
  background: #fffdee;
  padding: 0;
}

.love-flato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.love-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: top;
}

.love-content {
  padding: 70px;
}

.love-content h2 {
  font-size: 38px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
  text-align: left !important;
}

.love-content p {
  font-size: 18px;
  line-height: 2;
  color: #666;
  margin-bottom: 35px;
}

.love-content ul {
  padding-left: 20px;
  margin-bottom: 45px;
}

.love-content ul li {
  font-size: 22px;
  color: #000;
  margin-bottom: 18px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  background: #f5dc58;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

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

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .love-flato-wrapper {
    grid-template-columns: 1fr;
  }

  .love-content {
    padding: 50px 30px;
  }

}

@media(max-width:767px) {

  .section-heading h2 {
    font-size: 36px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .love-content h2 {
    font-size: 38px;
  }

  .love-content p {
    font-size: 16px;
  }

  .love-content ul li {
    font-size: 18px;
  }

}



.detail-container {
  width: 100%;
  max-width: 620px;
  margin: auto;
  overflow: scroll;
  height: 750px;
  padding-bottom: 10px;
}

.detail-container::-webkit-scrollbar {
  display: none;
}

h1 {
  text-align: left;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 55px;
}

.section {
  margin-bottom: 45px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ================= IMAGE UPLOAD ================= */

.upload-wrapper {
  display: flex;
  gap: 14px;
}

.big-upload {
  width: 260px;
  height: 235px;
  border: 1.5px dashed #999;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
}

.small-upload {
  width: 100%;
  height: 110px;
  border: 1.5px dashed #999;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f4dc5a;
  border: none;
  font-size: 38px;
  cursor: pointer;
}

.small-upload .plus-btn {
  width: 48px;
  height: 48px;
  font-size: 28px;
}

/* ================= BUTTON GROUP ================= */

.button-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.button-group button {
  flex: 1;
  height: 50px;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.button-group button.active {
  background: #f4dc5a;
  color: #000;
}

/* ================= ROOMMATES ================= */

.roommates {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.roommates button {
  width: 52px;
  height: 46px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.roommates button.active {
  background: #f4dc5a;
  color: #000;
  border: 1px solid #000;
}

/* ================= INPUT ================= */

.rent-input {
  width: 100%;
  height: 52px;
  border: 1.5px solid #333;
  border-radius: 12px;
  background: transparent;
  padding: 0 18px;
  font-size: 18px;
  outline: none;
}

/* ================= AMENITIES ================= */

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.amenity {
  border: 1px solid #888;
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
}

.amenity.active {
  background: #f4dc5a;
  border-color: #d5be42;
}

.amenity i {
  font-size: 18px;
}

/* ================= LOCATION ================= */

.map-box {
  width: 100%;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
}

.map-box iframe {
  width: 100%;
  height: 100%;
}

.map-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  background: #f4dc5a;
  font-size: 16px;
  cursor: pointer;
}

#detail {
  max-width: 500px;
  margin: 0 auto !important;

}

.right-side-content {
  height: 100vh !important;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.right-side-content::-webkit-scrollbar {
  display: none;
}

.lifestyle-wrapper label {
  margin-bottom: 16px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 650px) {
  h1 {
    font-size: 32px;
  }

  .upload-wrapper {
    flex-direction: column;
  }

  .big-upload {
    width: 100%;
  }

  .small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .button-group {
    flex-wrap: wrap;
  }

  .button-group button {
    min-width: 50%;
  }

  .content {
    margin-top: 30% !important;
    width: 100% !important;
  }




  form {
    width: 100%;
  }

  /* FORM GROUP */

  .form-group {
    margin-bottom: 28px;
  }

  /* LABEL */

  .form-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
  }

  /* INPUT + TEXTAREA */

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #828282;
    border-radius: 18px;
    padding: 18px 22px;
    font-size: 16px;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 400;
  }

  /* TEXTAREA */

  .form-group textarea {
    min-height: 180px;
    resize: none;
    padding-top: 20px;
  }

  /* PLACEHOLDER */

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #8b93a7;
    font-size: 15px;
  }


  /* ERROR MESSAGE */

  .error-message {
    display: block;
    margin-top: 8px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
  }



  /* BUTTON CLICK */

  .submit-btn:active {
    transform: scale(0.98);
  }
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* LARGE TABLETS */

@media (max-width: 992px) {

  .form-group {
    margin-bottom: 24px;
  }

  .form-group label {
    font-size: 17px;
  }

  .form-group input,
  .form-group textarea {
    padding: 16px 20px;
    font-size: 15px;
  }

  .submit-btn {
    height: 56px;
    font-size: 17px;
  }
}

/* TABLETS */

@media (max-width: 768px) {

  form {
    width: 100%;
  }

  .form-group {
    margin-bottom: 22px;
  }

  .form-group label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .form-group input,
  .form-group textarea {
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 15px;
  }

  .form-group textarea {
    min-height: 150px;
  }

  .submit-btn {
    height: 54px;
    border-radius: 14px;
    font-size: 16px;
  }
}

/* MOBILE */

@media (max-width: 576px) {

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .submit-btn {
    height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }

  .error-message {
    font-size: 13px;
  }
}

/* SMALL MOBILE */

@media (max-width: 400px) {

  .form-group input,
  .form-group textarea {
    padding: 13px 14px;
  }

  .submit-btn {
    font-size: 14px;

    .roommates {
      gap: 12px;
    }
  }
}

#privacy {
  margin-top: 0 !important;
}



#profession {
  height: 530px;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-right: 5px;
}

/* THIN SCROLLBAR */

/* Chrome, Safari, Edge */
.professional-options .row::-webkit-scrollbar {
  width: 4px;
}

.professional-options .row::-webkit-scrollbar-track {
  background: transparent;
}

.professional-options .row::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 20px;
}

.professional-options .row::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Firefox */
.professional-options .row {
  scrollbar-width: 3px;
  scrollbar-color: #cfcfcf transparent;
}

#looking {
  margin-top: 140px !important;
}

#mainImagePreview,
#image1Preview,
#image2Preview,
#image3Preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-upload-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 15px;
}

.small-upload-box {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}

.upload-icon,
.small-upload-icon {
  width: 100%;
  height: 100%;
}




/* ============= ROOMIE HIGHLIGHT SECTION======== */

.roomie-highlight-section {
  width: 100%;
  padding: 80px 0;
  background: #f3f3f3;
}

.roomie-highlight-container {
  width: 92%;
  max-width: 1500px;
  margin: auto;
}

.roomie-highlight-heading {
  text-align: center;
  margin-bottom: 60px;
}

.roomie-highlight-heading h2 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.roomie-highlight-heading span {
  width: 120px;
  height: 4px;
  background: #f4b400;
  display: inline-block;
  border-radius: 20px;
}

.roomie-highlight-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
}

.roomie-highlight-large {
  grid-row: span 2;
  min-height: 760px;
}

.roomie-highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 365px;
}

.roomie-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.roomie-highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.roomie-highlight-card:hover img {
  transform: scale(1.05);
}

.roomie-highlight-content {
  position: absolute;
  left: 35px;
  top: 115px;
  z-index: 2;
  color: #fff;
  max-width: 85%;
}

#big-card {
  position: absolute;
  left: 35px;
  top: 510px;
  z-index: 2;
  color: #fff;
  max-width: 85%;

}

.roomie-highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.roomie-highlight-icon i {
  font-size: 42px;
  color: #f4b400;
}

.roomie-highlight-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.roomie-highlight-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ============= RESPONSIVE=========== */

@media(max-width: 1200px) {

  .roomie-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roomie-highlight-large {
    grid-column: span 2;
    min-height: 550px;
  }
}

@media(max-width: 768px) {

  .roomie-highlight-heading h2 {
    font-size: 40px;
  }

  .roomie-highlight-grid {
    grid-template-columns: 1fr;
  }

  .roomie-highlight-large {
    grid-column: span 1;
  }

  .roomie-highlight-card,
  .roomie-highlight-large {
    min-height: 400px;
  }

  .roomie-highlight-content {
    left: 25px;
    bottom: 25px;
  }

  .roomie-highlight-icon {
    width: 85px;
    height: 85px;
  }

  .roomie-highlight-icon i {
    font-size: 32px;
  }

  .roomie-highlight-content h3 {
    font-size: 20px;
  }

  .roomie-highlight-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}



#room-pic {
  height: 360px !important;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #f4c430 !important;
  border-color: #000000 !important;
  gap: 10px;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: #000000 !important;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);

}

.pagination .active {
  background: none !important;
  color: white;
}



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #eee;
}

body {
  padding-top: 120px;
}



/* =========================
   CONTACT FORM STYLING
========================= */

#contactSupport {
  width: 100%;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f1f1;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* Inputs + textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

/* Focus effect */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #f5c518;
  background: #fff;

}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-size: 14px;
}

/* Textarea */
.form-group textarea {
  resize: none;
  min-height: 140px;
}

/* Error message */
.error-message {
  display: block;
  margin-top: 8px;
  color: #e53935;
  font-size: 13px;
  font-weight: 500;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: #f5c518;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.submit-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* Active click */
.submit-btn:active {
  transform: scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
  form {
    padding: 25px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
  }

  .submit-btn {
    padding: 14px;
  }
}

#live-with {
  margin-top: 84% !important;
}





/* =========================
   IMAGE UPLOAD SECTION
========================= */

.upload-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.small-upload-box1 {
  width: 100%;
  height: 190px;
}

.upload-label {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.small-upload-icon {
  width: 100%;
  height: 100%;
  border: 2px dashed #d8d8d8;
  border-radius: 5px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}



.small-upload-icon i {
  font-size: 34px;
  color: #9a9a9a;
  z-index: 2;
}

/* Uploaded image */
.small-upload-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* image full box cover karegi */
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 576px) {
  .upload-wrapper {
    grid-template-columns: 1fr;
  }

  .small-upload-box1 {
    height: 170px;
  }
}


.gender-options-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}