/* Projects & Case Studies Specific Styles */

.projects-hero-section {
  position: relative;
  margin: 0 24px 24px 24px;
  border-radius: 24px;
  overflow: hidden;
  padding: 120px 0;
  background-image: linear-gradient(to right, rgba(20, 30, 48, 0.95) 0%, rgba(20, 30, 48, 0.8) 40%, rgba(20, 30, 48, 0.4) 100%),
    url('../assets/Images/project-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.projects-hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}



.projects-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.projects-title span {
  color: var(--primary-orange);
}

.projects-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
}

.projects-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-orange);
  color: white;
  padding: 16px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
}

.projects-btn:hover {
  background-color: #cc511f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 93, 36, 0.3);
}

@media (max-width: 992px) {
  .projects-hero-section {
    padding: 100px 40px;
  }
  .projects-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .projects-hero-section {
    padding: 80px 24px;
    margin: 0 16px 16px 16px;
  }
  .projects-title {
    font-size: 40px;
  }
}

/* Filter Bar */
.projects-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 24px;
}

.filter-pill {
  padding: 8px 24px;
  border: 1px solid #d1d5db;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-pill:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.filter-pill.active {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

/* Featured Deployment */
.featured-deployment-section {
  background-color: #fafbfc;
  padding: 80px 0;
  margin: 0 24px 24px 24px;
  border-radius: 24px;
}







.featured-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 40px;
}

.featured-card {
  display: flex;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

.featured-image-col {
  flex: 1;
  min-height: 400px;
}

.featured-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content-col {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background-color: rgba(232, 93, 36, 0.15);
  color: var(--primary-orange);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 32px;
  align-self: flex-start;
}

.featured-block {
  margin-bottom: 24px;
}

.featured-block h4 {
  font-size: 11px;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-block p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.featured-block p.highlight {
  color: var(--primary-orange);
  font-weight: 700;
}

.featured-divider {
  height: 1px;
  background-color: #f3f4f6;
  margin: 16px 0;
}

.featured-read-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-orange);
  color: white;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 16px;
}

.featured-read-btn:hover {
  background-color: #cc511f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 93, 36, 0.2);
}

@media (max-width: 992px) {
  .featured-deployment-section {
    padding: 60px 24px;
  }
  .featured-card {
    flex-direction: column;
  }
  .featured-image-col {
    min-height: 300px;
  }
  .featured-content-col {
    padding: 32px;
  }
}

/* Select Deployments Section */
.deployments-section {
  background-color: #0b1328; /* Deep dark blue */
  margin: 0 24px 24px 24px;
  border-radius: 24px;
  padding: 80px 0;
}



.deployments-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 48px;
}

.deployments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.deployment-card {
  background-color: #121a30;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deployment-img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.deployment-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deployment-card:hover .deployment-img-wrapper img {
  transform: scale(1.05);
}

.deployment-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deployment-badge {
  display: inline-block;
  background-color: rgba(232, 93, 36, 0.15);
  color: var(--primary-orange);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deployment-card-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.deployment-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.deployment-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.deployment-link:hover {
  color: #cc511f;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  padding-right: 24px;
  padding-left: 24px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.stat-number span {
  color: var(--primary-orange);
  margin-left: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .deployments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-section {
    flex-wrap: wrap;
    gap: 40px;
  }
  .stat-item {
    border-right: none;
    flex: 1 1 40%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .deployments-section {
    padding: 60px 24px;
  }
  .deployments-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    flex: 1 1 100%;
  }
}

/* Deep Dive Section */
.deep-dive-section {
  padding: 80px 0;
  margin: 0 24px 24px 24px;
  background-color: white;
}

.deep-dive-header {
  margin-bottom: 60px;
}

.deep-dive-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.deep-dive-title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  letter-spacing: -0.5px;
}

.deep-dive-grid {
  display: flex;
  gap: 60px;
}

.deep-dive-content {
  flex: 1;
}

.deep-dive-image-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deep-dive-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.deep-dive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deep-dive-notice {
  background-color: #fafbfc;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.notice-text {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Timeline */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  background-color: #fafbfc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(232, 93, 36, 0.3);
}

.timeline-step {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .deep-dive-grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .deep-dive-section {
    padding: 60px 24px;
  }
  .deep-dive-title {
    font-size: 32px;
  }
}

/* Projects CTA Section */
.projects-cta-section {
  background: linear-gradient(135deg, #101828 0%, #1a202c 100%);
  margin: 0 24px 24px 24px;
  border-radius: 24px;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}





.projects-cta-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.projects-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 48px auto;
}

.projects-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.projects-btn-primary {
  background-color: var(--primary-orange);
  color: white;
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(232, 93, 36, 0.3);
}

.projects-btn-primary:hover {
  background-color: #cc511f;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(232, 93, 36, 0.5);
}

.projects-btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.projects-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

@media (max-width: 768px) {
  .projects-cta-title {
    font-size: 36px;
  }
  .projects-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .projects-btn-primary,
  .projects-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
