/* Home page specific styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: #fff;
  color: #333;
}

.hero {
  min-height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

.home-hero {
  background-image: url('../images/banner.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 1 !important;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 175, 80, 0.3);
  z-index: 0;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(34, 34, 34, 0.15);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: none;
  padding: 0;
  border-radius: 0;
}
.hero .highlight {
  color: #FFD600;
  display: inline-block;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  background: none;
  padding: 0;
  border-radius: 0;
}
.hero .location {
  color: #FFD600;
  font-weight: 700;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.primary-btn {
  background: #c3951b;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.3s;
}
.primary-btn:hover {
  background: #a37f17;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
}
.secondary-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.stats-banner {
  background: #0d1b2e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}
.stat-item {
  flex: 1 1 180px;
  max-width: 220px;
}
.stat-item i {
  font-size: 3rem;
  color: #FFD600;
  margin-bottom: 10px;
}
.stat-item h3 {
  font-size: 2.4rem;
  color: #FFD600;
  margin: 0 0 6px 0;
  font-weight: 800;
}
.stat-item p {
  font-size: 1rem;
  margin: 0;
  color: #fff;
  opacity: 0.9;
}

/* Signature Projects Section Styles */
.signature-projects {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #19213a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD600;
  border-radius: 2px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.project-item {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.05);
}

.project-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 128, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-image::after {
  opacity: 1;
}

.project-info {
  padding: 2rem;
  text-align: left;
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.project-info p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.status-available {
  color: #4CAF50;
  font-weight: 700;
}

.status-limited {
  color: #FF9800;
  font-weight: 700;
}

.project-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.badge-fast {
  background: rgba(255, 107, 53, 0.9);
  color: #fff;
}

.badge-approved {
  background: rgba(76, 175, 80, 0.9);
  color: #fff;
}

.badge-premium {
  background: rgba(255, 193, 7, 0.9);
  color: #fff;
}

.location-pill {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  z-index: 2;
}

.project-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.explore-btn {
  color: #2e8b57;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  transform: translateX(5px);
}

.details-btn {
  color: #6c757d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.details-btn:hover {
  color: #333;
}

.view-all-container {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #19213a;
  border: 2px solid #FFD600;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #FFD600;
  color: #19213a;
}

.view-all-btn i {
  margin-left: 8px;
}

/* Animation Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

/* Floating Circles for Signature Projects */
.signature-projects {
  position: relative;
  overflow: hidden;
}

.signature-projects .floating-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.1);
  z-index: 0;
}

.signature-projects .circle-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 10%;
  animation: bounce 8s infinite alternate;
}

.signature-projects .circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 15%;
  animation: pulse 6s infinite;
}

.signature-projects .circle-3 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 20%;
  animation: ping 10s infinite;
}

.signature-projects .circle-4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
  animation: bounce 7s infinite alternate-reverse;
}

@media (max-width: 768px) {
  .projects-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

/* Project Gallery Styles */
.project-gallery {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.project-gallery .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(60, 179, 113, 0.1) 100%);
  z-index: 1;
}

.project-gallery .circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation: pulse 8s infinite alternate;
}

.project-gallery .circle-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 10%;
  animation: ping 6s infinite alternate-reverse;
}

.project-gallery .circle-3 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 8%;
  animation: pulse 9s infinite alternate-reverse;
}

.project-gallery .circle-4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
  animation: bounce 7s infinite alternate-reverse;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  height: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.6) 100%);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 0.9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.view-all-container {
  margin-top: 40px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2e8b57;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

.view-all-btn:hover {
  background: #3cb371;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(46, 139, 87, 0.3);
}

/* Why Choose Us Styles */
.why-choose {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.feature-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: #FFD600;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #19213a;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Latest Insights Styles */
.latest-insights {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #19213a;
  line-height: 1.4;
}

.blog-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: #19213a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.read-more:hover {
  color: #FFD600;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Testimonials Styles */
.testimonials {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
}

.testimonial-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 300px;
  max-width: 380px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: #555;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding: 0 10px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 1.5rem;
  color: #FFD600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #FFD600;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
  color: #19213a;
}

.testimonial-author p {
  color: #888;
  margin: 0;
  font-size: 0.9rem;
}

/* Call to Action Styles */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 50%, #228b22 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.cta-section .circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation: pulse 8s infinite alternate;
}

.cta-section .circle-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 10%;
  animation: ping 6s infinite alternate-reverse;
}

.cta-section .circle-3 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 8%;
  animation: pulse 9s infinite alternate-reverse;
}

.cta-section .circle-4 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
  animation: bounce 7s infinite alternate-reverse;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD600;
  color: #19213a;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-item {
    width: 100%;
  }
  
  .cta-section .floating-circle {
    opacity: 0.5;
  }
}