:root {
  --primary: #2a5f8a;
  --primary-light: rgba(42, 95, 138, 0.1);
  --secondary: #f8b739;
  --dark: #1a2a3a;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #f1f1f1;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}
.hero-slider {
  height: 80vh;
  min-height: 600px;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide-content {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.slide-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slide-text {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
}

.slide-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.slide-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary);
}

/* Dream Home Section */
.dream-home-section {
  padding: 80px 0;
  background: var(--light);
}

.dream-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.experience-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.dream-content p.lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark);
}

.dream-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Welcome Section */
.welcome-section {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.welcome-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--dark);
}

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

.feature-item {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1.2rem;
  color: var(--dark);
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background: var(--light);
}
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.project-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content .btn {
  margin-top: auto;
}

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

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.project-meta {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}

.project-meta i {
  margin-right: 5px;
  color: var(--primary);
}

.project-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.project-features i {
  margin-right: 5px;
  color: var(--primary);
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--white);
}

.feature-card {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
}

/* Testimonials */
.testimonial-section {
  padding: 80px 0;
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.rating {
  color: var(--secondary);
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.client-info span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(42, 95, 138, 0.9), rgba(42, 95, 138, 0.9)),
    url("assets/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .slide-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  .slide-text h2 {
    font-size: 2rem;
  }

  .dream-content h2 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 60vh;
    min-height: 400px;
  }

  .slide-text h2 {
    font-size: 1.8rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }

  .dream-image {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-slider {
    height: 50vh;
    min-height: 350px;
  }

  .slide-text h2 {
    font-size: 1.5rem;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .action-buttons .btn {
    width: 100%;
  }
}