/* Single Project Page Styles */

.ps-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.ps-single-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.ps-single-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 61, 103, 0.7) 0%, rgba(5, 61, 103, 0.85) 100%);
  z-index: 1;
}

.ps-single-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

/* Title in Hero */
.ps-single-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

/* Quote Section */
.ps-quote-section {
  background: white;
  padding: 60px 0;
}

.ps-quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 0 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-left: 4px solid #88D498;
}

.ps-quote-icon {
  display: none;
}

.ps-quote p {
  color: #053D67;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  margin: 0;
  font-style: normal;
}

/* Contact Section */
.ps-contact-section {
  padding: 0px 0;
  background: white;
}

.ps-contact-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
}

.ps-contact-title {
  color: #053D67;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  font-family: 'Roboto', sans-serif;
}

.ps-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.ps-contact-item:last-child {
  margin-bottom: 0;
}

.ps-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ps-contact-item a {
  color: #053D67;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ps-contact-item a:hover {
  color: #88D498;
}

/* Content Sections */
.ps-content-section {
  padding: 60px 0;
  background: white;
}

.ps-section-title {
  color: #053D67;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  font-family: 'Roboto', sans-serif;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ps-section-text {
  max-width: 900px;
  margin: 0 auto;
}

.ps-section-text p {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.ps-section-text p:last-child {
  margin-bottom: 0;
}

.ps-section-text ul,
.ps-section-text ol {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  padding-left: 24px;
}

.ps-section-text ul li,
.ps-section-text ol li {
  color: #333;
  margin-bottom: 8px;
}

.ps-section-text ul li:last-child,
.ps-section-text ol li:last-child {
  margin-bottom: 0;
}

.ps-section-text ul {
  list-style-type: disc;
}

.ps-section-text ol {
  list-style-type: decimal;
}

.ps-section-text ul li::marker {
  color: #053D67;
}

.ps-section-text ol li::marker {
  color: #053D67;
  font-weight: 600;
}

/* Image Section */
.ps-image-section {
  padding: 60px 0;
  background: white;
}

.ps-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ps-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Icon List Section */
.ps-iconlist-section {
  padding: 60px 0;
  background: white;
}

.ps-icon-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.ps-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.ps-icon-list-item:last-child {
  margin-bottom: 0;
}

.ps-list-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Carousel Section */
.ps-carousel-section {
  padding: 80px 0;
  background: white;
}

.ps-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.ps-carousel {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.ps-carousel-item {
  display: none;
  width: 100%;
  height: 100%;
}

.ps-carousel-item.active {
  display: block;
}

.ps-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Navigation Buttons */
.ps-carousel-prev,
.ps-carousel-next {
  position: relative;
  background: white;
  border: 1px solid #D0D5DD;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.ps-carousel-prev:hover,
.ps-carousel-next:hover {
  background: #F9FAFB;
  border-color: #98A2B3;
}

.ps-carousel-prev svg,
.ps-carousel-next svg {
  color: #344054;
  width: 20px;
  height: 20px;
}

/* Carousel Footer - Contains dots and controls */
.ps-carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* Carousel Dots */
.ps-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Carousel Controls Container */
.ps-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #D0D5DD;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ps-carousel-dot.active {
  background: #344054;
  width: 24px;
  border-radius: 4px;
}

.ps-carousel-dot:hover {
  background: #98A2B3;
}

/* PDF Download Section */
.ps-pdf-section {
  padding: 0;
  background: white;
}

.ps-pdf-link {
  color: #053D67;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.ps-pdf-link:hover {
  color: #88D498;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ps-single-title {
    font-size: 2.5rem;
  }

  .ps-quote p {
    font-size: 1.125rem;
  }

  .ps-section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .ps-container {
    padding: 0 20px;
  }

  .ps-single-hero {
    min-height: 350px;
  }

  .ps-single-hero-content {
    padding: 60px 0;
  }

  .ps-single-title {
    font-size: 2rem;
  }

  .ps-quote {
    padding: 30px 40px;
  }

  .ps-quote p {
    font-size: 1rem;
  }

  .ps-contact-box {
    padding: 30px 24px;
  }

  .ps-section-title {
    font-size: 1.5rem;
  }

  .ps-section-text p,
  .ps-icon-list-item {
    font-size: 1rem;
  }

  .ps-quote-section,
  .ps-contact-section,
  .ps-content-section,
  .ps-image-section,
  .ps-iconlist-section {
    padding: 40px 0;
  }

  .ps-carousel-section {
    padding: 60px 0;
  }

  .ps-carousel {
    height: 300px;
  }

  .ps-carousel-prev,
  .ps-carousel-next {
    width: 36px;
    height: 36px;
  }

  .ps-carousel-prev svg,
  .ps-carousel-next svg {
    width: 18px;
    height: 18px;
  }

  .ps-carousel-footer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ps-container {
    padding: 0 16px;
  }

  .ps-single-hero {
    min-height: 300px;
  }

  .ps-single-title {
    font-size: 1.75rem;
  }

  .ps-quote {
    padding: 24px 24px;
  }

  .ps-quote-icon {
    width: 36px;
    height: 36px;
    left: 20px;
  }

  .ps-contact-box {
    padding: 24px 20px;
  }

  .ps-contact-title {
    font-size: 1.25rem;
  }

  .ps-section-title {
    font-size: 1.25rem;
  }

  .ps-carousel {
    height: 250px;
  }

  .ps-carousel-prev,
  .ps-carousel-next {
    width: 32px;
    height: 32px;
  }

  .ps-carousel-prev svg,
  .ps-carousel-next svg {
    width: 16px;
    height: 16px;
  }

  .ps-carousel-dot {
    width: 6px;
    height: 6px;
  }

  .ps-carousel-dot.active {
    width: 20px;
  }
}