/* --- Faridabad Specific Styles --- */

.faridabad-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 17, 14, 0.9) 0%, rgba(27, 51, 34, 0.85) 100%), 
              url('../images/hero_background.png') no-repeat center center/cover;
  padding: 140px 0 80px 0;
  text-align: center;
  color: var(--text-white);
  border-bottom: 2px solid var(--accent-color);
}

.faridabad-hero h1 {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.faridabad-hero h1 span {
  color: var(--accent-color);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faridabad-hero p {
  font-size: 1.15rem;
  color: var(--text-white-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Sectors Grid Styling */
.sectors-overview-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.sectors-intro-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.sectors-intro-wrap h2 {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.sectors-intro-wrap h2 span {
  color: var(--accent-color);
}

.sectors-intro-wrap p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.sectors-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sector-timeline-card {
  background: var(--bg-white);
  border: 1px solid var(--border-emerald-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.sector-timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.sector-timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 154, 79, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sector-timeline-card:hover::before {
  opacity: 1;
}

.sector-badge {
  background: rgba(193, 154, 79, 0.1);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
}

.sector-timeline-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.sector-timeline-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Projects Showcase Section */
.faridabad-projects-section {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-emerald-light);
}

.projects-showcase-title {
  text-align: center;
  margin-bottom: 60px;
}

.projects-showcase-title h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.projects-showcase-title h2 span {
  color: var(--accent-color);
}

.projects-showcase-title p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Showcase Grid */
.f-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.f-project-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-emerald-light);
  transition: var(--transition-smooth);
}

.f-project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 154, 79, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.f-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.f-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.f-card-header .status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: #0d1612;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  z-index: 2;
}

.f-card-body {
  padding: 30px;
}

.f-card-body h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.f-card-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.f-card-loc svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.f-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 25px;
  height: 75px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.f-card-specs {
  border-top: 1px solid var(--border-emerald-light);
  border-bottom: 1px solid var(--border-emerald-light);
  padding: 15px 0;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.f-spec-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.f-spec-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-top: 3px;
}

.f-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.f-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-price-wrap .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.f-price-wrap .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
}

.f-card-footer .btn {
  padding: 10px 18px;
  font-size: 0.88rem;
  border-radius: var(--border-radius-sm);
  box-shadow: none;
}

.f-card-footer .btn:hover {
  transform: translateY(-1.5px);
  box-shadow: var(--shadow-sm);
}

/* --- Card Header Image Carousel styles --- */
.f-card-carousel {
  position: relative;
}

.f-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 22, 18, 0.75);
  border: 1px solid rgba(193, 154, 79, 0.3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--accent-color);
  opacity: 0;
  pointer-events: none;
  padding: 0;
}

.f-card-carousel:hover .f-carousel-btn {
  opacity: 1;
  pointer-events: auto;
}

.f-carousel-btn:hover {
  background: var(--accent-color);
  color: #0d1612;
  border-color: var(--accent-color);
}

.f-carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.f-prev-btn {
  left: 10px;
}

.f-next-btn {
  right: 10px;
}

.f-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.f-carousel-dots .f-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.f-carousel-dots .f-dot.active {
  background: var(--accent-color);
  width: 14px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .f-carousel-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

