 h2{
    font-weight: 600;
    margin-bottom: 25px;
    font-size:28px;
 }

.footer

 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
     padding-top: 50px; 
    padding-bottom: 30px;
    background: #26282b;
} 
 
  .iconic-btn{
  padding: 10px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  background: #ff6700;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  display: inline-block;
}

  .iconic-btn:hover {
  background: #e45c00;
  color:white;
  transform: translateY(-3px);
}

.sales-offices h2 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size:32px;
}

.photo-gallery h2{
    font-size:32px;
    letter-spacing:2px;
}

.intro .content-box p {
   margin-bottom:10px;
}

.facilities h3{
    font-size:16px;
    font-weight:600;
}


.property-calculator .content-box p {
    margin-bottom:10px; 
}


.property-plans table tr td:first-child {
    color: #ff6700;
  
}

input[type=number] {
    width: 100%;
    height: 54px;
    border: 2px solid #b7774c;
    padding: 0 20px;
}


button[type=submit] {

   padding: 10px 32px;
  font-size: 0.9rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  background: #ff6700;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  display: inline-block;
 
  
  
}

button[type=submit]:hover{
     background: #e45c00;
  color:white;
  transform: translateY(-3px);
}


textarea {
 
    border: 2px solid #b7774c;
   
}

input[type=text] {
    border: 2px solid #b7774c;
}


input[type=email] {
    border: 2px solid #b7774c;
}

input[type=phone] {
    border: 2px solid #b7774c;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

/* Background Slider */
.hero-section .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%; /* 3 slides */
  height: 100%;
  display: flex;
  animation: heroSlideShow 18s infinite;
}

.hero-section .hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  
}



/* Dark overlay */
.hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Button */
.hero-section .hero-btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  text-decoration: none;
  background: #ff6700;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  display: inline-block;
}

.hero-section .hero-btn:hover {
  background: #e45c00;
  transform: translateY(-3px);
}

/* Slider Animation */
@keyframes heroSlideShow {
  0% { transform: translateX(0); }
  30% { transform: translateX(0); }
  35% { transform: translateX(-100%); }
  65% { transform: translateX(-100%); }
  70% { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section p { font-size: 1rem; }
}


@media (max-width: 468px) {
 
  .hero-slide img{
 
  height: 100%;
  width:100%;

}
}




/*projects highlights section*/

.project-highlights {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.highlight-box {
  padding: 20px;
  border-right: 1px solid #ddd;
}

.highlight-box:last-child {
  border-right: none;
}

.highlight-icon {
     background: #ff6700;
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 55px;
    line-height: 52px;
    margin: 0 auto 10px;
    border-radius: 60%
}

.highlight-box h5 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 20px;
}

.highlight-box p {
  margin-top: 5px;
  font-size: 17px;
  font-weight:400;
}

/* Testimonials Slider Section */


#testimonials {
  background-color:#ebcfa7;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

#testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

#testimonials .section-title {
  font-size: 35px;
  color: #262828;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author {
  text-align: left;
}

.author strong {
  color: #222;
  font-size: 1em;
}

.author span {
  color: #777;
  font-size: 0.9em;
}


/* FAQ Section */
#iconic-faq {
  background: #fffdfb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

#iconic-faq .container {
  max-width: 900px;
  margin: 0 auto;
}

#iconic-faq .section-title {
  font-size: 35px;
  color: #262828;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: #f5f5f5;
  color: #333;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1em;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9e9e9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 1em;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px 20px;
}

/*why choose*/

 .reasons ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 700px;
  text-align: left;
}

 .reasons li {
  font-size: 1.05em;
  color: #444;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

 .reasons i {
  color: #ff6700; 
  font-size: 1.3em;
}

/*location*/

.location-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-left li {
  font-size: 1em;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.location-left i {
  color: #ff6700; 
  font-size: 1.1em;
  margin-top: 4px;
  flex-shrink: 0; /* icon shrink na ho */
}

.location-left span {
  flex: 1;
}

/*Responsive*/

@media (max-width: 468px) {
 
.property-plans{
    padding-bottom:0;
}

.property-calculator{
    
    padding-bottom:0;
}

.top-margin{
    
    margin-top:0px;
}

#iconic-features{
    margin-top:110px;
    
}


}



