@font-face { font-family: Poppins-Regular; src: url('fonts/Poppins-Regular.ttf'); }
@font-face { font-family: Poppins-Medium; src: url('fonts/Poppins-Medium.ttf'); }
@font-face { font-family: Poppins-SemiBold; src: url('fonts/Poppins-SemiBold.ttf'); }
@font-face { font-family: Roboto-Medium; src: url('fonts/Roboto-Medium.ttf'); }
@font-face { font-family: Rubik-Medium; src: url('fonts/Rubik-Medium.ttf'); }
@font-face { font-family: Rubik-Regular; src: url('fonts/Rubik-Regular.ttf'); }
@font-face { font-family: EmojiOneColor; src: url('fonts/EmojiOneColor.ttf'); }


.poppins-medium{ font-family: Poppins-Regular !important; }
.poppins-medium{ font-family: Poppins-Medium !important; }
.poppins-semibold{ font-family: Poppins-SemiBold !important; }
.robot0-medium{ font-family: Roboto-Medium !important; }
.rubik-medium{ font-family: Rubik-Medium !important; }
.rubik-regular{ font-family: Rubik-Regular !important; }



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

body, html {
  width: 100%;
  font-family: Rubik-Regular;

  scroll-behavior: smooth;
}

html, body {
  /*scroll-behavior: smooth; /* smooth scrolling */*/
  /*scroll-snap-type: y mandatory; /* vertical snapping */*/
  /*height: 100%;*/
  /*overflow-y: scroll;*/
}

section {
  /*scroll-snap-align: start; /* snap to start of each section */*/
  /*scroll-snap-stop: always; /* ensure snapping stops at this section */*/
}


@media (max-width: 768px) {
  html, body {
    /*scroll-snap-type: y mandatory;*/
  }
  section {
    /*scroll-snap-align: start;*/
  }
}






/* Overlay dark fade */
  .modal-backdrop.show {
    opacity: 0.85 !important;
    background-color: rgba(0,0,0,0.85);
  }

  /* Popup box */
  .download-modal .modal-content {
    background: #111;
    border: 1px solid #c9a485;
    border-radius: 20px;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 0 20px rgba(255, 203, 0, 0.2);
  }

  .download-modal h4 {
    font-family: 'Poppins-Medium';
    color: #ffcb00;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .download-modal p {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Download button */
  .gold-btn {
    background: #ffcb00;
    color: #000;
    border: 1px solid #ffcb00;
    border-radius: 30px;
    padding: 10px 35px;
    font-size: 1rem;
    font-family: 'Poppins-Medium';
    transition: all 0.3s ease;
  }
  .gold-btn:hover {
    background: #000;
    color: #ffcb00;
    border: 1px solid #ffcb00;
  }

  /* Cancel button */
  .cancel-btn {
    background: transparent;
    color: #aaa;
    border: none;
    font-size: 0.9rem;
    margin-top: 15px;
  }
  .cancel-btn:hover {
    color: #ffcb00;
  }

  /* Trigger button (demo) */
  .trigger-btn {
    margin-top: 150px;
    background: #ffcb00;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    transition: 0.3s;
  }
  .trigger-btn:hover {
    background: #000;
    color: #ffcb00;
    border: 1px solid #ffcb00;
  }



  


/* Intro overlay */
.intro {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Intro logo (center) */
.logo {
  width: 20vw;
  max-width: 150px;
  height: auto;
}

/* Permanent logo container (top-left) */
.logo-container {
  position: fixed;
  top: 0px;
  left: 50px;
  z-index: 1100;
  opacity: 0; /* initially hidden */
}

.logo-container img {
  width: 20vw;
  max-width: 150px;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: black;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.1);
  z-index: 0;
}

/* Hero H2 text */

.heroBox {
  position: absolute;
  z-index: 1;
  left: 10%;
  bottom: 210px;
  background: rgba(0, 0, 0, .3);
  padding: 20px;
  text-align: center;
  width: 80%;
}
.hero h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.hero p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.hero h2 span.highlight {
  color: #e09b13;
}

.heroButtonBox {
  display: flex;
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  gap: 20px;
}

.knowMore {
  padding: 10px 30px;
  font-size: 16px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  transition: background 0.3s;
  width: auto;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
}

.knowMore:hover{
  color: #ffcb00;
  background: #000;
  border: 1px solid #ffcb00;
}

.chatMore {
  padding: 10px 30px;
  font-size: 16px;
  color: #ffcb00;
  background: #000;
  font-weight: 400;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  transition: background 0.3s;
  width: auto;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
}

.chatMore:hover{
  color: #222;
  background: #ffcb00;
  border: 1px solid #222;
}

.reraRealter {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(255, 255, 255, .7);
  border-radius: 15px;
  padding: 3px 20px;
}

.reraRealter p{
  font-size: 14px;
  color: #222;  
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-container { left: 20px; top: 0px; }
  .logo, .logo-container img { width: 30vw; max-width: 120px; }
  .hero h2 { font-size: 28px; line-height: 1.4; }
}


@media (max-width: 480px) {
	.logo-container img,
	.logo {
		width: 30vw;   /* slightly bigger relative size */
		max-width: 120px;
	}

	.about-section h2 {
		font-size: 34px;
		line-height: 46px;
	}

	/* Hero H2 text */
	.hero {
	    position: relative; /* required for absolute children */
	}

  .heroBox {
    left: 5%;
    bottom: 260px;
    background: rgba(0, 0, 0, .3);
    padding: 20px;
    text-align: center;
    width: 90%;
  }

	.hero h2 {
	    font-size: 26px;
	    line-height: 1.3;
	    padding: 0px;
      margin-bottom: 20px;
	}

  .heroButtonBox {
    bottom: 130px;
    flex-direction: column;
    align-items: center;
  }

  .heroButtonBox .knowMore , .heroButtonBox .chatMore{
    width: max-content;
  }

  .reraRealter {
    width: max-content;
    bottom: 80px;
  }


}











/* Section Layout */
.about-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  border-top: 1px solid #caa586;
  border-bottom: 1px solid #caa586;
}

.about-section .left,
.about-section .right {
  flex: 1 1 50%;
  min-height: 100vh;
}

.about-section .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-section .left {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero background image */
.about-section .left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  z-index: 0;
}



.about-section .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  background: #fff;
}

/* Typography */
.about-section h4 {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 30px;
  line-height: 40px;
  color: #c9a485;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  text-align: justify;
  margin: 10px 0;
}


.testimonial {
  background: #fff;
  padding: 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonial .block {
  background: #f8f8f8;
  border-left: 5px solid #c9a485;
  width: 100%;
  max-width: 600px;
  padding: 0px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial .block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.testimonial .block p:first-child {
  font-size: 1rem;
  color: #222;
  font-style: italic;
  margin-bottom: 5px;
  text-align: left;
}

.testimonial .block p:last-child {
  font-size: .9rem;
  color: #c9a485;
  font-weight: 600;
  margin-top: 0px;
}


/*.about-section a {
  display: inline;
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  background: #c9a485;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s;
  width: 160px;
  margin-top: 30px;
}

.about-section a:hover {
  background: #a57e5f;
}*/

.about-section a {
  padding: 10px 30px;
  font-size: 16px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
  margin-top: 30px;
}

.about-section a:hover{
  color: #ffcb00;
  background: #000;
  border: 1px solid #ffcb00;
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
  }
  .about-section .left,
  .about-section .right {
    flex: 1 1 100%;
    min-height: auto;
    padding-bottom: 90px;
  }
  .about-section h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .about-section p {
    font-size: 20px;
    line-height: 32px;
  }
  .about-section h4 {
    font-size: 22px;
    line-height: 40px;
  }
}


/* Flip left & right */
.about-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .about-section .left {
    min-height: 300px;
  }

  .about-section .left img {
    position: relative;
    height: auto;
    object-fit: cover;
  }

  .about-section.reverse {
    flex-direction: column;
  }
}


@media (max-width: 480px) {
  .about-section .right {
  	padding: 40px 20px 130px 20px
  }

  	.about-section h2 {
	  font-size: 36px;
	  line-height: 46px;
	}
}




/*.about-section a.projectBtn {
	display: block;
	width: 100%;
}
*/



.projectFeatures {
    display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 columns */
	gap: 40px; /* space between items */
}

.featureBox {
	display: flex;
    gap: 20px;
    align-items: center;
}

.featureBox img{
	width: 40px;
	height: 40px;
}

.featureBox p{
	font-size: 18px;
	padding: 0;
	margin: 0;
	text-align: left;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
  .projectFeatures {
    grid-template-columns: 1fr; /* 1 column */
    margin: 30px 0 20px 0;
    gap: 30px;
  }
  .featureBox img{
		width: 30px;
		height: 30px;
	}
}






/* Section Layout */
.trusted-section {
  background: linear-gradient(to bottom, #dcdcf3, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7);
  width: 100%;
  height: auto;
  padding: 60px 0 80px 0;
  box-sizing: border-box;
}

.trusted-section .trusted-section-div {
  max-width: 1200px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.trusted-section h2 {
  font-size: 40px;
  line-height: 50px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.trusted-section h2 span {
  color: #e09b13;
}

.trusted-section p {
  font-size: 20px;
  line-height: 36px;
  color: #333;
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
}

.trusted-section .trustedFeatures {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}


.trusted-section .trustedFeatureBox {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

.trusted-section .trustedFeatureBox img{
  width: 150px;
}

.trusted-section .trustedFeatureBox p{
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

.trusted-invest-section .trustedFeatures {
  margin-top: 70px;
}


.trusted-developer-section a.trustedBtn {
  margin-top: 60px;
}

a.trustedBtn {
  padding: 10px 30px;
  font-size: 16px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
  margin: 40px auto 0 auto;
}

.trusted-developer-section a.trustedBtn:hover{
  color: #ffcb00;
  background: #000;
  border: 1px solid #ffcb00;
}


/* Responsive: single column on mobile */
@media (max-width: 768px) {

  .trusted-section {
    padding: 100px 20px 140px 20px;
    height: auto;
  }

  .trusted-section .trustedFeatures {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
      margin-top: 50px;
  }
  .trustedFeatures {
    grid-template-columns: 1fr; /* 1 column */
    margin-top: 40px;
    padding: ;
  }


  .trustedFeatureBox img{
    width: 30px;
    height: 30px;
  }
}




.trusted-section .slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 50px;
}

.trusted-section .slider-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 30s linear infinite;
}

.trusted-section .slider-container:hover .slider-track {
  animation-play-state: paused;
}

.trusted-section .developer-card {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  background-color: #FFF;
  border: 1px solid #caa586;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.trusted-section .developer-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.trusted-section .developer-card:hover img {
  filter: grayscale(0%);
}

/* Animation for smooth continuous scroll */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


















.container {
    margin: 0 auto;
    padding: 56px 0;
    max-width: 1200px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.section-title {
    font-size: 40px;
    line-height: 50px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.card {
  background: white;
  border-radius:8px;
  overflow: hidden;
  border: 1px solid #caa586;
}

.swiper-img{
  height: 250px;
  background-size: cover;
}

.card-content {
    padding: 0 16px 16px 16px;
    position: relative;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 16px 0 10px 0;
    line-height: 1.3;
}

.card-title a {
  text-decoration: none;
  font-weight: 500 !important;
  color: #caa586;
}

.developer {
    font-size: 12px;
    margin: 0 0 12px 0;
}

.developer span {
    font-weight: 600 !important;
    color: #666;
    font-size: 13px;
}

.developer-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    border-radius: 4px;
}

.developer-logo img {
    max-width: 80px;
    /* height: 35px; */
    width: 100%;
}

.card-tags {
    display: flex;
    gap: 8px;
    margin: 20px 0 12px 0;
    flex-wrap: wrap;
}

.card-tags p {
    color: gray;
    font-size: 13px;
    margin-bottom: 0;
}

.card-tags span {
    font-weight: 600 !important;
    color: #666;
    font-size: 15px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8eaed;
}

.location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #222;
}

.location i {
    font-size: 14px;
    color: #caa586;
}

.location p, .bedrooms p {
    font-size: 12px;
    margin-bottom: 0;
}

.bedrooms {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #28282bff;
}

.bedrooms i{
    color: #caa586;
}

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

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-whatsapp, .btn-email, .card-actions .btn-enquire {
    background: #caa586;
    color: #fff;
}

a.btn-whatsapp {
    color: #fff;
}

.btn {
    flex: 1;
    padding: 8px 4px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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


/* Responsive: single column on mobile */
@media (max-width: 768px) {

  .trusted-section {
    padding: 56px 20px 56px 20px !important;
    height: auto;
  }

  .trusted-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .trusted-section .slider-container {
    margin-top: 30px;
  }

  .services-section {
    padding: 56px 20px 56px 20px !important;
    height: auto;
  }

  .section-title {
    font-size: 30px;
    line-height: 40px;
  }
  .container {
    padding: 56px 20px;
  }

}


















/* Section Layout */
.services-section {
  background: #222;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
}

.services-section .services-section-div {
    max-width: 1200px;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: nowrap;
    gap: 30px;
}

.services-section h2 {
  font-size: 24px;
  color: #222222;
  font-weight: 600;
  text-align: center;
}

.services-section p {
  font-size: 18px;
  line-height: 26px;
  color: #333;
  font-weight: 400;
  text-align: center;
}

.services-section .servicesFeatures {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}


.services-section .servicesFeatureBox {
  background: linear-gradient(to bottom, #dcdcf3, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  padding: 40px 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  flex: 1;
  flex-wrap: nowrap;
  justify-content: center;
}

.services-section .servicesFeatureBox img{
  width: 150px;
}

.services-section .servicesFeatureBox p{
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.exclusive-services-section .servicesFeatures {
  margin-top: 70px;
}


.exclusive-services-section a.servicesBtn {
  margin-top: 60px;
}

a.servicesBtn {
  padding: 10px 30px;
  font-size: 16px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
  margin: 40px auto 0 auto;
}

.services-developer-section a.servicesBtn:hover{
  color: #ffcb00;
  background: #000;
  border: 1px solid #ffcb00;
}


/* Responsive: single column on mobile */
@media (max-width: 768px) {

  .services-section .services-section-div {
    max-width: 1200px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: nowrap;
    gap: 30px;
  }

  .services-section {
    padding: 100px 20px 140px 20px;
    height: auto;
  }

  .services-section .servicesFeatures {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
      margin-top: 50px;
  }
  .servicesFeatures {
    grid-template-columns: 1fr; /* 1 column */
    margin-top: 40px;
    padding: ;
  }


  .servicesFeatureBox img{
    width: 150px;
  }
}


/* Section Layout */
.why-section {
  background: linear-gradient(to bottom, #dcdcf3, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7);
  width: 100%;
  height: auto;
  padding: 50px;
  box-sizing: border-box;
}

.why-section .why-section-div {
  max-width: 1200px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 70px;
}

.why-section h2 {
  font-size: 40px;
  line-height: 50px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.why-section h2 span {
  color: #e09b13;
}

.why-section p {
  font-size: 20px;
  line-height: 36px;
  color: #333;
  font-weight: 400;
  margin: 10px 0;
  text-align: center;
}

.why-section .whyFeatures {
    display: grid;
	grid-template-columns: repeat(3, 1fr); /* 2 columns */
	gap: 40px; /* space between items */
	margin-top: 50px;
}


.why-section .whyFeatureBox {
	display: flex;
    align-items: center;
	gap: 20px;
}

.why-section .whyFeatureBox img{
	width: 40px;
	height: 40px;
}

.why-section .whyFeatureBox p{
	text-align: left;
	font-size: 18px;
	line-height: 26px;
}


.why-invest-section .whyFeatures {
  margin-top: 70px;
}


.why-invest-section a.whyBtn {
	margin-top: 60px;
}

a.whyBtn {
  padding: 10px 30px;
  font-size: 16px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #ffcb00;
  border-radius: 25px;
  margin: 40px auto 0 auto;
}

.why-invest-section a.whyBtn:hover{
  color: #ffcb00;
  background: #000;
  border: 1px solid #ffcb00;
}


/* Responsive: single column on mobile */
@media (max-width: 768px) {

	.why-section {
		padding: 56px 20px 56px 20px;
		height: auto;
	}

  .why-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .why-section .why-section-div {
    padding-bottom: 0px;
  }

	.why-section .whyFeatures {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 20px;
	    margin-top: 50px;
	}
  .whyFeatures {
    grid-template-columns: 1fr; /* 1 column */
    margin-top: 40px;
    padding: ;
  }


  .whyFeatureBox img{
		width: 30px;
		height: 30px;
	}


  .about-section .left, .about-section .right {
      padding-bottom: 50px;
  }

}



.contact-section {
  display: flex;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 -2px 10px 0px #888;
  position: fixed;
  bottom: 0;
  z-index: 10;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.contact-section .contact-section-div {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.contact-section .contact-section-div a {
  width: 100%;
  margin: 15px 0;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #ccc;
  color: #444;
}

.contact-section .contact-section-div a:last-child {
  border-right: none;
}

.contact-section .contact-section-div a:hover {
  color: #c9a485;
}








.broker-section {
  background: linear-gradient(to bottom, #dcdcf3, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7);
  width: 100%;
  height: 190px;
  padding: 20px;
  box-sizing: border-box;
}

.broker-section .broker-section-div {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto 10px auto;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 32px;
}

.broker-section-div div{
  text-align: center;
  flex:1;
}


/* First div */
.broker-section-div div:first-of-type {
  text-align: left;
  width: 300px;
}

/* Last div */
.broker-section-div div:last-of-type {
  text-align: right;
  width: 300px;
}


.broker-section-div i{
  font-size: 30px;
}

.broker-section-div a{
  color: #222;
  text-decoration: none;
}


.broker-section-div a:hover{
  color: #c9a485;
  text-decoration: underline;
}


@media (max-width: 768px) {

  .broker-section .broker-section-div {
    flex-direction: column;
  }

  .broker-section-div div{
    width: 100%;
  }

  /* First div */
  .broker-section-div div:first-of-type {
    text-align: center;
    width: 100%;
  }

  /* Last div */
  .broker-section-div div:last-of-type {
    text-align: center;
    width: 100%;
  }

}





/* Section Layout */
.form-section {
  background: linear-gradient(to bottom, #dcdcf3, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7, #f2f6f7);
  width: 100%;
  height: 100vh;
  padding: 50px;
  box-sizing: border-box;
}

.form-section .form-section-div {
  max-width: 1200px;
  min-height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  gap: 50px;
}

.form-section h2 {
  font-size:70px;
  line-height: 80px;
  color: #c9a485;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}


.form-section p {
  font-size: 20px;
  line-height: 30px;
  color: #222;
  margin-bottom: 20px;
}


.form-section input.submit {
  line-height: 30px;
  margin-bottom: 30px;

  padding: 10px 30px;
  font-size: 20px;
  color: #000;
  background: #ffcb00;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  border: 1px solid #ffcb00;
}

.form-section input.submit:hover {
  background: #000;
  color: #ffcb00;
}

.formBox {
  width: 100%;
  max-width: 500px;
}

.formBox div{
  margin-bottom: 20px;
}

.formBox div div{
  display: flex;
  gap: 10px;
}

.formBox input{
  padding: 15px 10px;
  border-radius: 5px;
  border: 1px solid #aaa;
  width: 100%;
  font-size: 16px;
}

.formBox select{
  padding: 15px 10px;
  border-radius: 5px;
  border: 1px solid #aaa;
  font-size: 16px;
}


/* Popup message styling */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup.hidden {
  display: none;
}
.popup-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.popup-box.success {
  border-left: 5px solid #28a745;
}
.popup-box.error {
  border-left: 5px solid #dc3545;
}
.popup-box button {
  display: block;
  width: 100px;
  margin: 15px auto 0 auto;
  padding: 8px 20px;
  font-size: 16px;
  border: none;
  background: #ffcb00;
  cursor: pointer;
  border-radius: 5px;
}
.popup-box button:hover {
  background: #000;
  color: #ffcb00;
}
.error {
  color: red;
  font-size: 13px;
}


.popup {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup:not(.hidden) {
  opacity: 1;
  visibility: visible;
}


.submit.loading {
  position: relative;
  pointer-events: none;
}

.submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}



@media (max-width: 768px) {
  .form-section {
    padding: 56px 20px 36px 20px;
    height: auto;
  }

  .form-section .form-section-div {
    flex-direction: column;
    gap: 0px;
  }

  .form-section h2 {
    width: 100%;
    font-size:40px;
    line-height: 50px;
    text-align: center;
  }
  .form-section p {
    text-align: center;
  }

  .form-section input.submit {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .broker-section {
    padding: 50px 20px 80px 20px;
    height: auto;
  }
}












