* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.about {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.left {
  flex: 1;
}

.left .welcome {
  color: #6b2d6f;
  font-weight: 600;
  margin-bottom: 10px;
}

.left h1 {
  color: #6b2d6f;;
  font-size: 30px;
  line-height: 1.2;
  margin-left:20px;
}

.right {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
}

.stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 200px;
}

.stat h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 8px;
}

.stat p {
  color: #777;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .left h1 {
    font-size: 34px;
  }

  .stats {
    gap: 30px;
    flex-direction: row;
    overflow-x: auto;
  }

  .stat {
    min-width: 150px;
    flex-shrink: 0;
  }
}



/*about section*/

/* About section */
.about-section {
  position: relative;
  padding: 80px 20px;
  background: url("img/real.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Overlay color ON TOP of image */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 236, 236, 0.92); /* adjust opacity */
  z-index: 1;
}

/* Content */
.about-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  z-index: 2; /* above overlay */
}


.about-text,
.about-tabs {
  flex: 1;
}

.about-text h2 {
  color: #6b2d6f;
  font-size: 30px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 22px;
  background:#6b2d6f;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  transition:all 0.3s ease;   /* smooth hover */
}

/* Hover Effect */
.contact-btn:hover{
  background:#1f4a8a;        /* slightly lighter */
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* Tabs */
.tabs {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.tabs li {
  padding: 10px 15px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}

.tabs li.active {
  color: #c30000;
  border-color: #c30000;
}

.tab-content {
  display: none;
  line-height: 1.7;
}

.tab-content.active {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .tabs {
    flex-wrap: wrap;
  }
}


/* Tabs */
.tabs {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.tabs li {
  cursor: pointer;
  padding: 8px 12px;
  font-weight: 600;
  color: #666;
}

.tabs li.active {
  color: #5b2b82;
  border-bottom: 3px solid #5b2b82;
}

/* Tab content */
.tab-content {
  display: none;   /* hide all by default */
  color: #333;
  line-height: 1.6;
}

.tab-content.active {
  display: block; /* show active */
}



/* Our Services Section */
.services-section {
  padding: 80px 20px;
  background: #efdcb7;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 32px;
  color: #15315c;
  margin-bottom: 50px;
}

/* Grid – PERFECT for 4 cards */
.services-container {
  max-width: 1400px;              /* controls overall width */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;        /* equal height */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image */
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Text */
.service-card h3 {
  font-size: 18px;
  color: #5b2b82;
  margin-bottom: 10px;
  text-align: center;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;                 /* pushes content evenly */
}

/* Tablet */
@media (max-width: 992px) {
  .services-container {
    max-width: 900px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 210px;
  }

  .section-title {
    font-size: 26px;
  }
}



/*view more button*/
.view-more-wrap{
  margin-top:50px;
  text-align:center;
}

.view-btn{
  display:inline-block;
  padding:12px 40px;
  border-radius:35px;
  background:linear-gradient(135deg, #FFD700, #d4af37);
  color:#15315c;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 8px 22px rgba(0,0,0,0.2);
}

.view-btn:hover{
  background:linear-gradient(135deg, #d4af37, #FFD700);
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,0.3);
}



/*Featured properties section*/
.featured-section{
  padding:70px 20px;
  background:#f7f7f7;
}

.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
  color:#15315c;
}

.featured-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:25px;
}

/* Card */
.property-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.property-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 40px rgba(0,0,0,0.15);
}

/* Image */
.property-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* Content */
.property-body{
  padding:15px;
}

.property-body h3{
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}

.location{
  font-size:13px;
  color:#777;
  margin-bottom:8px;
}

.price{
  font-size:14px;
  color:#6a1b9a;
  font-weight:600;
  margin-bottom:10px;
}

.price span{
  font-size:12px;
  font-weight:400;
}

.info{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#555;
  border-top:1px solid #eee;
  padding-top:10px;
}

/* Mobile */
@media(max-width:600px){
  .section-title{
    font-size:26px;
  }

  .property-card img{
    height:200px;
  }
}

.location{
  font-size:13px;
  color:#777;
  margin-bottom:8px;
}

.location i{
  color:#6a1b9a;
  margin-right:6px;
}



/*enquiry button*/
.enquiry-btn{
  display:block;
  margin-top:15px;
  padding:10px 0;
  text-align:center;
  border-radius:25px;
  background:linear-gradient(135deg, #FFD700, #d4af37);
  color:#15315c;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

.enquiry-btn:hover{
  background:linear-gradient(135deg, #d4af37, #FFD700);
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(0,0,0,0.3);
}


.enquiry-btn{
  display:block;
  width:120px;              /* reduced width */
  margin:15px auto 0;       /* center align */
  padding:10px 0;
  text-align:center;
  border-radius:25px;
  background:linear-gradient(135deg, #FFD700, #d4af37);
  color:#15315c;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.2);
}

.enquiry-btn:hover{
  background:linear-gradient(135deg, #d4af37, #FFD700);
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(0,0,0,0.3);
}



/*contact section*/

*{
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

.contact-section{
  padding:60px 20px;
  background:#fff;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
}

/* MAP */
.map-box{
  flex:1;
  min-height:500px;
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

/* FORM */
.form-box{
  flex:1;
}

.form-box h2{
  margin-bottom:20px;
  font-size:32px;
}

.form-row{
  display:flex;
  gap:20px;
}

.form-group{
  margin-bottom:18px;
  flex:1;
}

.form-group label{
  display:block;
  font-weight:bold;
  margin-bottom:6px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  outline:none;
}

.form-group textarea{
  resize:none;
  height:120px;
}

.submit-btn{
  background:#5a2a5e;
  color:#fff;
  padding:12px 30px;
  border:none;
  cursor:pointer;
  margin-top:10px;
  transition:0.3s;
}

.submit-btn:hover{
  background:#75307a;
}

.checkbox{
  margin-top:15px;
  display:flex;
  gap:10px;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-container{
    flex-direction:column;
  }

  .map-box{
    min-height:350px;
  }

  .form-row{
    flex-direction:column;
  }
}


/*footer*/
.footer{
  background:#333;
  color:#ddd;
  padding:40px 20px 0;
  position:relative;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:30px;
}

.footer-box h3{
  margin-bottom:15px;
  color:#fff;
}

.footer-box p,
.footer-box a{
  font-size:14px;
  color:#ccc;
  text-decoration:none;
}

.footer-box a:hover{
  color:#00c0ff;
}

.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:8px;
}

.newsletter{
  display:flex;
}

.newsletter input{
  flex:1;
  padding:8px;
  border:none;
  outline:none;
}

.newsletter button{
  background:#00b7ff;
  border:none;
  color:#fff;
  padding:8px 14px;
  cursor:pointer;
}

.visitor span{
  background:#000;
  padding:5px 7px;
  margin:0 2px;
  display:inline-block;
}

.lang{
  width:100%;
  margin-top:10px;
  padding:6px;
}

.footer-bottom{
  margin-top:30px;
  background:#222;
  text-align:center;
  padding:15px;
  font-size:14px;
}





/* WhatsApp */
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#1c6b25;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .whatsapp{
    right:10px;
    bottom:10px;
  }
}



.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#1c6b25;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp i{
  font-size:20px;
}

.whatsapp:hover{
  background:#25d366;
}


/* FOOTER */
.footer{
  background:#1f1f1f;
  color:#ddd;
  padding:50px 20px 20px;
  position:relative;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
}


.footer-box strong{
  color:#fff;
}

.footer-box p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.footer-box a{
  color:#ddd;
  text-decoration:none;
  transition:0.3s;
}



/* LISTS */
.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  font-size:14px;
}

/* FOOTER BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:30px;
  padding-top:15px;
  border-top:1px solid #444;
  font-size:14px;
  color:#bbb;
}


/* WHATSAPP BUTTON */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  width:55px;
  height:55px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
  z-index:999;
  transition:0.3s;
}

.whatsapp:hover{
  background:#1ebe5d;
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:600px){
  .footer{
    padding:40px 15px 20px;
  }

  .footer-box h3{
    font-size:16px;
  }

  .footer-box p,
  .footer-box ul li a{
    font-size:13px;
  }
}



.footer-bottom{
  background:#1b1b1b;
  padding:15px 20px;
  text-align:center;
  font-size:14px;
  color:#ccc;
  margin-bottom:-40px;
  margin-top:-10px;
}

.footer-bottom p{
  margin:0;
  line-height:1.6;
}

.footer-bottom b{
  color:#25d366;
}

.footer-bottom a{
  color:#25d366;
  text-decoration:none;
  font-weight:500;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

/* MOBILE */
@media(max-width:600px){
  .footer-bottom{
    font-size:13px;
    padding:12px 10px;
  }
}

/* Brochure Form Styles */
.brochure-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.brochure-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.brochure-form input:focus {
  border-color: #6b2d6f;
}

.brochure-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #FFD700, #d4af37);
  color: #15315c;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brochure-form button:hover {
  background: linear-gradient(135deg, #d4af37, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.brochure-form button i {
  font-size: 18px;
}


/*about-img*/
@media (max-width: 768px) {
  .about-img {
    width: 100% !important;
    height: auto !important;
  }
}



.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.floating-buttons a:hover {
  transform: scale(1.08);
}

.floating-buttons a img {
  width: 30px;
  height: 30px;
}

.floating-buttons button {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #15315c;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.floating-buttons button:hover {
  transform: translateY(-4px);
}



/* Basic Navbar */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.nav a{
  text-decoration:none;
  color:#000;
  font-weight:500;
}

/* Social icons inside navbar */
.social-icons a{
  margin-left:10px;
  color:#000;
  font-size:18px;
}



/* Fade Up Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-up effect */
.fade-up {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

/* Optional: add a small delay */
.section-title.fade-up {
  animation-delay: 0.2s;
}


/* Buttons inside property card */
.property-body .enquiry-btn,
.property-body .download-btn {
  display: inline-block;
  padding: 10px 18px;        /* Same size for both */
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  background:linear-gradient(135deg, #FFD700, #d4af37);
}


/* Reduce size of Download Brochure button */
.property-body .download-btn {
  padding: 8px 14px;        /* Smaller than enquiry */
  font-size: 13px;
  text-align:center;
}
/* Mobile responsive */
@media (max-width:600px){
  .property-body .enquiry-btn,
  .property-body .download-btn {
    margin-top: 0;
    margin-right: 0;      /* remove horizontal gap */
    padding: 7px 10px;
    font-size: 12px;
    display: inline-block;
    width: auto;
    min-width: unset;
  }

  .button-group {
    flex-direction: row !important;
    gap: 0;               /* remove space between buttons */
  }
}



/* Mobile responsive MAP */
@media (max-width:600px){
  .map-box iframe{
    width: 100%;
    height: 290px;   /* mobile height */
    border: 0;
  }
}


/* TERMS & CONDITIONS */
.terms-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  margin-top:-35px;
  margin-bottom:-20px;
}

.terms-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.terms-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.terms-container h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #333;
}

.terms-container p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.terms-container strong {
  color: #000;
}

.last-updated {
  margin-top: 30px;
  font-size: 14px;
  color: #888;
  text-align: right;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .terms-section {
    padding: 40px 15px;
  }

  .terms-container {
    padding: 25px;
    margin-top:10px;
  }

  .terms-container h2 {
    font-size: 25px;
    margin-top:10px;
    margin-bottom:-30px;
  }

  .terms-container h3 {
    font-size: 16px;
  }

  .terms-container p {
    font-size: 14px;
  }


}

/* Contact Form Styles */
.form-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus {
  border-color: #6b2d6f;
  outline: none;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #6b2d6f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #5a2a5e;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
