* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: lato, sans-serif;
}
html,body {
  overflow-x: hidden !important;
}
body[data-aos-easing] {
  overflow: hidden;
}
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > * {
  padding: 0 15px;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  display: inline-block;
  color: black;
}
a:hover {
  color: #543ad7;
}
/* ----------header section------------ */
header {
  padding: 16px 9px;
  background: url("../img/aboutus-images/hero-img.png") no-repeat center/cover;
  /* margin: 17px 30px; */
  border-radius: 30px;
  min-height: 462px;
}
.nav-container {
  max-width: 1359px;
  min-height: 67px;
  background-color: white;
  border-radius: 50px;
  margin: 0 auto;
}
header > div > div > div {
  justify-content: space-between;
  align-items: center;
}
/* .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
} */

.nav {
  position: fixed;
  top: 0;
  right: -200%;
  width: 100vw;
  /* height: 100vh; */
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  /* border-radius: 20px; */
}

.nav.active {
  right: 0;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  /* margin-top: 2rem; */
}

.nav ul li {
  /* border-bottom: 1px solid #eee; */
  padding-bottom: 0.5rem;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  /* font-size: 1.1rem; */
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}
.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.active {
  display: flex !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-item > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  font-weight: 700;
}
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block: 30px;
  font-size: 16px;
  font-weight: 700;
}
.nav-logo {
  max-width: 170px;
  min-height: 55px;
  margin-bottom: 20px;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login {
  padding: 7px 22px;
  text-transform: uppercase;
  color: white;
  border-radius: 90px;
  background-color: #543ad7;
}
.logins {
  padding: 7px 22px !important;
  text-transform: uppercase;
  color: white !important;
  border-radius: 90px;
  background-color: #543ad7;
}
.login:hover {
  color: white !important;
  box-shadow: 2px 2px 2px 2px rgb(245, 244, 244);
}

/* -----------------modals---------------------- */

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  /* width: 400px; */
  max-width: 100vw;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal {
  /* transform: scale(1); */
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal p {
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-rowss {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-groupss {
  flex: 1;
  margin-bottom: 1rem;
}

.form-groupss input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #f8f9fa;
  transition: border-color 0.3s;
}

.form-groupss input:focus {
  outline: none;
  border-color: #543ad7;
  background: white;
}

.form-groupss input::placeholder {
  color: #999;
}

.forgot-password {
  text-align: right;
  margin-bottom: 1.5rem;
}

.forgot-password a {
  color: #543ad7;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.modal-btn {
  width: 100%;
  background: #543ad7;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1rem;
}

.modal-btn:hover {
  background: #4a32c7;
}

.switch-modal {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.switch-modal a {
  color: #543ad7;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.switch-modal a:hover {
  text-decoration: underline;
}

.terms-text {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.close-modal:hover {
  background: #f0f0f0;
}

/* ------------------------------------ */
.hero-section {
  text-align: center;
}
.hero-section > h1 {
  color: white;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 600;
  margin-top: 76px;
  font-family: Montserrat, sans-serif;
  line-height: 66px;
}
/* .hero-section span {
  max-width: 657px;
  min-height: 70px;
  background-color: #543ad7;
  border-radius: 10px;
  padding-inline: 10px;
}
.hero-section p {
  color: white;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 185px;
} */
.fa-arrow-right {
  color: white;
  font-size: 1rem;
}
.hero-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
/* hamberger */
.hamberger {
  display: none;
  cursor: pointer;
}
.col12 {
  width: 100%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col8 {
  width: 66.66%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col6 {
  width: 50%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col4 {
  width: 33.33%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col3 {
  width: 25%;
  padding: 0 15px;
  flex-wrap: wrap;
}
.col2 {
  width: 16.66%;
  padding: 0 15px;
  flex-wrap: wrap !important;
}

/* --------------------features-villa---------------------------------------- */

.property-cards {
  margin-top: 75px;
  position: relative;
  border-radius: 20px;
  /* overflow: hidden; */
  /* max-width: 500px; */
  /* width: 100%;
  height: 400px; */
}

.property-images {
  max-width: 1260px;
  min-height: 500px;
  object-fit: contain;
  background: url("../img/property-detail-images/property-big-img.png")
    no-repeat center/cover;
}

.property-info {
  position: absolute;
  bottom: -15%;
  left: 0;
  right: 0;
  background: white;
  /* backdrop-filter: blur(10px); */
  padding: 41px;
  border-radius: 20px;
  margin: 16px;
  margin-bottom: 16px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  max-width: 880px;
  min-height: 155px;
  margin: 0 auto;
}

.info-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.info-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.info-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  display: block;
}

.info-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 500;
}

.info-value {
  font-size: 24px;
  color: #333;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
}

/* Icons using CSS */
.icon-building {
  background: url("../img/property-detail-images/villa.png") no-repeat
    center/cover;
  width: 40px;
  height: 40px;
}

.icon-bed {
  background: url("../img/property-detail-images/beds.png") no-repeat
    center/cover;
  width: 40px;
  height: 40px;
}

.icon-bath {
  background: url("../img/property-detail-images/baths.png") no-repeat
    center/cover;
  width: 40px;
  height: 40px;
}

.icon-area {
  background: url("../img/property-detail-images/area.png") no-repeat
    center/cover;
  width: 40px;
  height: 40px;
}

/* -------------------sobha--------------------------- */

.sobha {
  padding-top: 150px;
}

.property-layout {
  display: flex;
  /* gap: 40px; */
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.property-info1 {
  flex: 1;
  padding-right: 20px;
  /* max-width: 444px; */
}

.images-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.images-section1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #6b7280;
  font-size: 14px;
}

.location-icon {
  width: 24px;
  height: 24px;
  background: url("../img/property-detail-images/icon_location.png") no-repeat
    center/cover;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.property-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
}

.property-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.image-container {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-bedroom,
.image-bathroom {
  max-width: 308px;
}
.image-living {
  max-width: 404px;
}
.images-section1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location > span {
  font-size: 20px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

/* ---------floorplan-amenities----------------------- */

.floorplan-amenities {
  padding-top: 126px;
}
.floorplan-amenities > div > div {
  justify-content: space-between;
  /* align-items: center; */
}
.amenities-container {
  max-width: 600px;
  margin: 0 auto;
  /* padding: 24px; */
}
.amenities-line {
  width: 1px;
  height: 401px;
  background: #d3d3d3;
  padding: 0;
}
.amenities-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 43px;
}
.floor-plan {
  max-width: 499px;
}
.floorplan-content {
  font-size: 24px;
  font-weight: 600;
}
.floor-plan > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.amenities-column {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.amenity-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amenity-checkbox.checked {
  background-color: #8b5cf6;
  border-color: #8b5cf6;
}

.amenity-checkbox.checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.amenity-label {
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.amenity-label.checked {
  color: #8b5cf6;
  font-weight: 500;
}

.amenity-label.unchecked {
  color: #9ca3af;
}

/* ------------------------------request-showing--------------- */

.request-showing {
  padding-top: 125px;
}
.get-in-touch {
  padding-top: 89px;
}
.request-showing > div > div {
  justify-content: space-around;
  align-items: center;
}
.request-showing-right {
  max-width: 430px;
}
.request-showing-right > h2 {
  margin-top: 16px;
  font-size: 32px;
}
.request-showing-right > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.request-showing-right > div > p {
  font-size: 20px;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
}
.request-showing-right > p {
  margin-top: 16px;
}
.dash-about > span,
.faq-about > span {
  height: 3px;
  width: 49px;
  background-color: #543ad7;
}
.get-line {
  height: 1px;
  width: 100%;
  background: #999999;
  margin-top: 30px;
}
.get-address,
.get-email,
.get-ph {
  display: flex;
  gap: 27px;
  margin-top: 35px;
}
.get-in-touch-left > h2 {
  font-size: 48px;
  font-family: Montserrat, sans-serif;
  margin-top: 8px;
}
.get-in-touch-left > p {
  margin-top: 16px;
  font-size: 18px;
}
.get-address-content > div,
.get-ph-content > div,
.get-email-content > div {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.get-in-touch-right {
  background: #f7f8fa;
  border-radius: 40px;
  padding: 33px 21px;
  max-width: 725px;
}
.form-container {
  /* background: #ffffff; */
  padding: 40px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.form-group > input[type="text"],
.form-group > input[type="email"],
.form-group > input[type="tel"],
.form-group > textarea {
  padding: 16px 20px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  /* background-color: #f9fafb; */
  transition: all 0.2s ease;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  min-width: 140px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Success message styles */
.success-message {
  background-color: #10b981;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.error-message {
  background-color: #ef4444;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

/* -----------------------------swiper-list----------------- */

.swiper-listed-properties {
  background-color: #f7f8fa;
  border-radius: 30px;
  margin-inline: 30px;
  margin-top: 75px;
  padding-block: 80px;
}
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  color: #667eea;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #667eea;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.all-listing-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.all-listing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.swiper {
  padding-bottom: 50px;
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.property-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.property-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.property-location {
  color: #718096;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-btn {
  background: transparent;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-btn:hover {
  background: #667eea;
  color: white;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: #cbd5e0;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #667eea;
}

/* Property Images */
.property-1 {
  background: url("../img/home-images/home-xplore1.png") no-repeat center/cover;
}
.property-2 {
  background: url("../img/home-images/home-xplore2.png") no-repeat center/cover;
}
.property-3 {
  background: url("../img/home-images/home-xplore3.png") no-repeat center/cover;
}
.property-4 {
  background: url("../img/home-images/home-xplore4.png") no-repeat center/cover;
}

/* ---------changed swiper------------ */

.property-gallery-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.property-swiper-container {
  padding: 20px 0 60px 0;
  overflow: visible;
}

.real-estate-card {
  width: 280px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.real-estate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.real-estate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.estate-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: white;
}

.estate-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.estate-rating-section {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.rating-star-icon {
  color: #ffd700;
  font-size: 14px;
}

.rating-score {
  font-size: 14px;
  font-weight: 500;
}

.estate-location-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.location-indicator-dot {
  width: 4px;
  height: 4px;
  background: #4ade80;
  border-radius: 50%;
}

.estate-detail-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estate-detail-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Property-specific backgrounds */
.estate-bg-1 {
  background: url("../img/home-images/home-xplore1.png") no-repeat center/cover;
}
.estate-bg-2 {
  background: url("../img/home-images/home-xplore2.png") no-repeat center/cover;
}
.estate-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-5 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-6 {
  background-image: url("https://images.unsplash.com/photo-1600573472592-401b489a3cdc?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-7 {
  background-image: url("https://thumbs.dreamstime.com/b/serene-mountain-retreat-wooden-deck-overlooking-lush-forest-sunset-serene-mountain-retreat-wooden-deck-overlooking-355263650.jpg");
}
.estate-bg-8 {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-9 {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-10 {
  background-image: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-11 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}
.estate-bg-12 {
  background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
}

/* Custom Swiper Pagination */
.property-swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
  text-align: center;
}

.property-swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(170, 168, 168, 0.3) !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
}

.property-swiper-pagination .swiper-pagination-bullet-active {
  background: #6366f1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Custom Swiper Navigation */
.property-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 16px;
  font-weight: bold;
}

.property-swiper-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.property-swiper-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.property-swiper-prev {
  left: -20px;
}

.property-swiper-next {
  right: -20px;
}

/* Autoplay Controls */
.autoplay-controls {
  text-align: center;
  margin-top: 20px;
}

.autoplay-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.autoplay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.autoplay-btn.active {
  background: #6366f1;
  border-color: #6366f1;
}

/* --------------newsletter------------------------ */

.newsletter {
  padding-top: 84px;
  padding-bottom: 75px;
}
.newsletter > div > div {
  justify-content: space-between;
  align-items: center;
}
.news-left {
  font-size: 32px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  /* max-width: 455px; */
}
.subscribe {
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

/* form-email */

.form-container1 {
  width: 100%;
  max-width: 600px;
  /* background: white; */
  /* padding: 40px; */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.email-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.email-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  border: 2px solid rgb(119, 118, 118);
  border-radius: 50px;
  background-color: #ffffff;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  font-family: lato, sans-serif;
}

.email-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.email-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.email-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message1 {
  color: #ef4444;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message1.show {
  opacity: 1;
  transform: translateY(0);
}

/* .subscribe{
  width: 100%;
  padding: 20px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
} */

.subscribe:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  /* box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); */
}

.subscribe:active {
  transform: translateY(0);
}

.success-message1 {
  color: #10b981;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.success-message1.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.form-container1.shake {
  animation: shake 0.5s ease-in-out;
}

/* -------------------------footer------------------ */

.footer {
  padding-block: 33px;
}
.footer > div > div {
  justify-content: space-between;
  align-items: center;
}
.footer-content > p {
  max-width: 435px;
  color: #868686;
  margin-top: 26px;
  font-size: 20px;
}
.footer-social-link {
  margin-top: 27px;
  display: flex;
  gap: 23px;
}
.footer-link > h3,
.footer-property > h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  color: #333333;
  margin-bottom: 21px;
}
.links a {
  color: #868686 !important;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.links a:hover {
  color: #543ad7 !important;
}
/* ----------------------------- */
.row1 > img,
.row2 > img {
  max-width: 95px;
  min-height: 64px;
  object-fit: contain;
}
.footer-property {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
}
.footer-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

/* -------------------------copyright------------ */

.copyright {
  padding-block: 23px;
}
.copyright > div > div {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #666666;
}
.copy-right {
  display: flex;
  gap: 27px;
}

/* ----------------------------------------------------mediaquery */

@media screen and (max-width: 1200px) {
  .footer > div > div {
    justify-content: center;
    gap: 30px;
  }
  .property-layout {
    flex-direction: column;
  }
  .property-info1 {
    width: 100%;
  }
  .amenities-line {
    display: none;
  }
  .floorplan-amenities > div > div {
    justify-content: center;
  }
}

/* ------------------------------------------------------------- */

@media screen and (max-width: 992px) {
  .header-container {
    margin: 0;
    border-radius: 0;
  }
  header{
    border-radius: 0;
  }
  .floating-range-hero > div > div {
    flex-direction: column;
    align-items: stretch;
  }

  /* .form-group {
    width: 100%;
  } */

  /* .floating-range-hero {
    max-width: 580px;
  } */

  /* .nav-btn,
  .nav-item {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
  } */
  .hamberger {
    display: block;
    margin-top: 8px;
  }
  .fa-solid {
    font-size: 19px;
  }
  /* #hamberger:checked ~ .nav-item,
  #hamberger:checked ~ .nav-btn {
    display: flex !important;
  }
  .nav-item > ul,
  .nav-btn {
    flex-direction: column;
  } */

  header {
    position: relative;
  }

  .nav-btn,
  .nav-item {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    flex-basis: 100%;
  }
  .col2 {
    width: 25%;
  }
  .col6,
  .col8 {
    width: 100%;
  }
  .section-title {
    font-size: 32px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
  /* .other-service > div > div {
    flex-direction: column-reverse;
  }
  .other-service-left > .dash-about {
    margin-top: 10px;
  }
  .news-left {
    text-align: center;
    margin-bottom: 10px;
  }
  .news-right {
    justify-content: center;
  }
  .commitement > div > div {
    flex-direction: column-reverse;
  } */
  .dash-about {
    margin-top: 10px;
  }
  /* .get-in-touch-left {
    width: 100%;
  }
  .get-in-touch > div > div {
    gap: 20px;
  }
  .get-in-touch-right {
    border-radius: 0px;
    padding: 10px 5px;
  } */
}

/* ---------------------------------------------- */
@media screen and (max-width: 768px) {
  .col2,
  .col3 {
    width: 33.33%;
  }
  .section-header {
    margin-bottom: 40px;
  }

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

  .section-subtitle {
    font-size: 15px;
  }

  .property-image {
    height: 220px;
  }

  .property-content {
    padding: 20px;
  }

  .property-title {
    font-size: 18px;
  }
  .swiper-listed-properties {
    margin: 0;
    padding-top: 39px;
    margin-top: 20px;
    border-radius: 0;
  }
  .carousel-track {
    animation-duration: 15s;
  }

  .form-container {
    /* padding: 30px 20px; */
    margin: 10px;
    border-radius: 16px;
  }

  .email-input {
    padding: 18px 20px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .profile-card {
    width: 280px;
    height: 350px;
  }

  .profile-image {
    height: 280px;
  }

  /* .professional-card {
    display: none;
  }

  .professional-xperts {
    margin-inline: 0;
    border-radius: 0;
  } */

  .form-container {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  /* label {
    font-size: 16px;
    margin-bottom: 10px;
  } */

  /* input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 14px 16px;
    font-size: 16px;
  } */

  /* .faq-container {
    padding: 30px 20px;
  }

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

  .faq-question-text {
    font-size: 16px;
    margin-right: 15px;
  }

  .faq-answer-text {
    font-size: 15px;
  } */

  /* ---------------------------- */

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

  .left-section {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

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

  .form-row,
  .contact-inputs,
  .detail-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  /* ------------------- */

  .progress-steps {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .progress-line {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
  }

  .step {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0;
    position: relative;
  }

  /* .step:nth-child(even) {
    flex-direction: row-reverse;
  } */

  .step-circle {
    margin: 0 16px;
    z-index: 2;
    position: relative;
  }

  .step-content {
    max-width: 200px;
    height: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    position: absolute;
    left: 7%;
    top: -126%;
  }

  .how-it-work {
    position: relative;
  }

  .connect-section {
    margin: 30px auto;
    position: absolute;
    right: 12%;
    top: 39%;
  }

  /* new list swiper */
  .property-gallery-wrapper {
    padding: 0 15px;
  }

  .real-estate-card {
    width: 250px;
    height: 180px;
  }

  .estate-title {
    font-size: 16px;
  }

  .estate-card-info {
    padding: 15px;
  }

  .property-swiper-nav {
    display: none;
  }

  .modal-overlay {
    padding: 1rem;
    justify-content: center;
    align-items: center;
  }

  .modal {
    width: 100%;
  }
}

/* ------------------------------------------------- */

@media screen and (max-width: 645px) {
  .col2,
  .col3 {
    width: 50%;
  }
  .news-right {
    flex-direction: column;
    gap: 10px;
  }
  .footer {
    text-align: center;
  }
  .footer-social-link {
    justify-content: center;
    align-items: center;
  }
  .copyright > div > div {
    justify-content: center;
    font-size: 10px;
  }
  /* .vission-mission {
    flex-direction: column;
    gap: 17px;
  } */
  /* .professional-xperts {
    margin-inline: 0;
    border-radius: 0;
  } */

  /* -------------------------------- */

  .progress-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .progress-wrapper {
    flex-shrink: 0;
    width: 60px;
    position: relative;
    margin: 0;
  }

  .progress-line {
    position: absolute;
    top: 0;
    left: 18px;
    width: 2px;
    height: 100%;
    background-color: black;
  }

  .progress-steps {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }

  .step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .step-circle {
    margin: 0;
  }

  .step-content {
    height: auto;
    padding: 20px;
    align-items: center;
    text-align: left;
    left: 101%;
  }

  .connect-section {
    margin-left: auto;
    margin-right: 0;
    right: 30%;
    top: 52%;
    align-items: center;
  }
  .image-living {
    max-width: 290px;
    min-height: 175px;
  }
}

/* -------------------------------------------------- */
@media screen and (max-width: 576px) {
  .col2,
  .col3,
  .col4 {
    width: 100%;
  }
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
    padding-left: 25px;
  }

  .section-subtitle::before {
    width: 15px;
  }

  .property-image {
    height: 200px;
  }

  .property-content {
    padding: 18px;
  }

  .property-title {
    font-size: 16px;
  }

  .all-listing-btn {
    padding: 10px 25px;
    font-size: 13px;
    margin: auto;
  }
  .carousel-track {
    animation-duration: 12s;
  }

  /* .form-container {
    margin: 5px;
    border-radius: 12px;
  }

  .email-input {
    padding: 16px 18px;
  }
  .error-message,
  .success-message {
    margin-left: 18px;
    font-size: 13px;
  }

  .form-container {
    padding: 25px 20px;
  } */

  .form-row {
    gap: 20px;
    margin-bottom: 20px;
  }

  /* label {
    font-size: 15px;
    margin-bottom: 8px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  textarea {
    min-height: 100px;
  } */

  /* .submit-btn {
    padding: 14px 35px;
    font-size: 15px;
    margin-top: 25px;
  } */

  /* .faq-container {
    padding: 25px 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question-text {
    font-size: 15px;
    margin-right: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-answer-text {
    font-size: 14px;
  } */

  /* -------------------------- */

  .nav-logo {
    margin-bottom: 0;
    width: 143px;
    margin-top: 4px;
  }

  /* .profile-card {
    width: 260px;
    height: 330px;
  }

  .profile-name {
    font-size: 16px;
  }

  .profile-title {
    font-size: 13px;
  }

  .professional-xperts > div > div > h2 {
    text-align: center;
    margin-bottom: 10px;
  } */

  .hero-section > h1 {
    font-size: 26px;
  }
  .dash-about {
    margin: 10px auto;
  }
  .dash-about > p {
    font-size: 16px;
  }
  .how-it-work > div > h2 {
    font-size: 26px;
    text-align: center;
  }
  .who-we-are-right > h2,
  .comm-left > h2 {
    font-size: 26px;
    text-align: center;
  }
  .who-we-are-right > p,
  .comm-left > p {
    font-size: 15px;
    text-align: center;
  }
  .stats-card {
    justify-content: start;
    padding: 10px 20px;
  }
  .vission > h3,
  .mission > h3 {
    text-align: center;
    font-size: 20px;
  }
  .vission > p,
  .mission > p {
    text-align: center;
  }

  .get-in-touch {
    padding-top: 40px;
  }
  .get-in-touch-left > h2 {
    font-size: 26px;
    text-align: center;
  }
  .get-in-touch-left > p {
    text-align: center;
    font-size: 15px;
  }
  .get-address-content > div,
  .get-ph-content > div,
  .get-email-content > div {
    font-size: 15px;
  }
  .get-address-content > p,
  .get-ph-content > p,
  .get-email-content > p {
    font-size: 12px;
  }
  .dash-about {
    justify-content: center;
  }

  /* ---------------------------------- */

  .left-section,
  .right-section {
    padding: 20px;
  }

  .file-upload {
    padding: 40px 15px;
  }

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

  .form-group {
    margin-bottom: 16px;
  }
  .step-content {
    text-align: center;
    padding: 3px;
  }
  .connect-section {
    right: 8% !important;
    top: 52%;
    /* margin: auto; */
    margin: 0;
    padding: 0;
  }
  .connect-title,
  .step-title {
    font-size: 15px;
  }

  .info-label {
    font-size: 11px;
  }
  .info-value {
    font-size: 16px;
  }
  .property-info {
    padding: 10px;
  }

  /* new list swiper */
  .property-gallery-wrapper {
    padding: 0 10px;
  }

  .real-estate-card {
    width: 220px;
    height: 160px;
  }

  .estate-title {
    font-size: 15px;
  }

  .estate-card-info {
    padding: 12px;
  }

  .estate-detail-btn {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 11px;
  }

  /* ----------common---------------- */
  .newsletter {
    padding-block: 20px;
  }
  .news-left > h3 {
    font-size: 26px;
    margin-top: 16px;
    text-align: center;
  }
  .footer-content > p {
    font-size: 15px;
  }
  .footer-link > h3,
  .footer-property > h3 {
    font-size: 18px;
  }
  .links a {
    font-size: 15px;
  }
  .stats-card {
    justify-content: start;
    padding: 10px 20px;
  }
  .location > span {
    font-size: 12px;
  }
  .property-info1 {
    text-align: center;
  }
  .property-description {
    font-size: 15px;
  }
  .floorplan-amenities {
    padding-top: 55px;
  }
  /* footer */
  .row1,
  .row2 {
    width: 198px;
  }
  .location {
    justify-content: center;
  }
  .request-showing {
    padding-top: 44px;
  }
  label {
    font-size: 16px;
  }
  .form-group > input[type="text"],
  .form-group > input[type="email"],
  .form-group > input[type="tel"],
  .form-group > textarea {
    padding: 16px 15px;
    border: none;
    border-radius: 27px;
    font-size: 13px;
    /* background-color: #f9fafb; */
    transition: all 0.2s ease;
    font-family: inherit;
  }
  .get-in-touch-right {
    border-radius: 5px;
    padding: 4px 0px;
  }
  .submit-btn {
    padding: 11px 40px;
    font-size: 13px;
  }
  .request-showing-right {
    margin-top: 25px;
  }
  .request-showing-right > div > p {
    font-size: 16px;
  }
  .request-showing-right > p {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
  }
  .request-showing-right > h2 {
    text-align: center;
    font-size: 25px;
  }
  .header-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .swiper-listed-properties {
    padding-block: 32px;
  }
}

/* ------------------------------------------ */
@media screen and (max-width: 375px) {
  /* new list swiper */
  .property-gallery-wrapper {
    padding: 0 8px;
  }

  .real-estate-card {
    width: 200px;
    height: 140px;
  }

  .estate-title {
    font-size: 14px;
  }

  .estate-card-info {
    padding: 10px;
  }

  .estate-rating-section,
  .estate-location-info {
    font-size: 12px;
  }

  .estate-detail-btn {
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 10px;
  }
}

/* ------------------------------------------------ */
@media screen and (max-width: 320px) {
  .section-header {
    margin-bottom: 30px;
  }

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

  .property-content {
    padding: 15px;
  }

  .property-title {
    font-size: 18px;
  }

  .property-location {
    font-size: 13px;
  }

  .detail-btn {
    padding: 6px 15px;
    font-size: 11px;
  }

  .all-listing-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  .carousel-track {
    animation-duration: 10s;
  }
  .form-container {
    /* padding: 20px 12px; */
    margin: 0;
    border-radius: 10px;
  }

  .email-input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .error-message,
  .success-message {
    margin-left: 16px;
    font-size: 12px;
  }
  /* .profile-card {
    width: 240px;
    height: 310px;
  }

  .profile-image {
    height: 240px;
  }

  .profile-info {
    padding: 15px;
  } */

  /* .contact-icon {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }

  .contact-icon img {
    width: 18px;
    height: 18px;
  } */

  .form-container {
    padding: 20px 15px;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 18px;
  }

  /* label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  textarea {
    min-height: 90px;
  } */

  /* .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
    margin-top: 20px;
    min-width: 120px;
  } */

  /* .faq-container {
    padding: 20px 12px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    padding: 18px 0;
  }

  .faq-question-text {
    font-size: 14px;
    margin-right: 10px;
  }

  .faq-answer-text {
    font-size: 13px;
  } */

  .left-section,
  .right-section {
    padding: 15px;
  }

  .container {
    border-radius: 8px;
  }

  .input-field,
  .select-field,
  .textarea-field {
    padding: 10px 12px;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

  .file-upload {
    padding: 30px 10px;
  }

  .file-upload-text {
    font-size: 13px;
  }
}
