
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



/* === Hero Section === */
.post-section .hero {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  margin-bottom: 40px;
}
.post-section .hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
.post-section .hero-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.post-section .hero-overlay p {
  font-size: 1.1rem;
  margin: 0;
}

/* === Section Container === */
.post-section {
  background-color: #f9f9f9;
  overflow: hidden;
}
.post-section .container {
  padding: 0 15px;
}

/* === Grid & Cards === */
.post-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.post-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.post-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.post-card .card-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.9rem;
}

/* Featured vs Normal */
.post-card.featured {
  grid-column: span 12;
}
@media (min-width: 768px) {
  .post-card.normal {
    grid-column: span 6;
  }
}
@media (min-width: 992px) {
  .post-card.normal {
    grid-column: span 4;
  }
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 30px 0;
}




#features-28 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-28']['bg_color'] ?? '#f8f9fa' }};
}
#features-28 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-28 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 25px);
}
#features-28 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-28 .feature-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 250px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#features-28 .feature-image-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
#features-28 .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
/* Hover effect defined via JS might be smoother if needed,
   but CSS transition is simpler */
#features-28 .feature-image-card:hover .card-overlay {
}
#features-28 .card-content {
   position: relative;
   z-index: 2;
}
#features-28 .card-icon i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}
#features-28 .card-title {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  #features-28 .section-title h2 {
    font-size: 28px;
  }
  #features-28 .feature-image-card {
     min-height: 200px;
  }
   #features-28 .card-icon i {
      font-size: 36px;
   }
    #features-28 .card-title {
      font-size: 18px;
   }
}



#testimonials-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#testimonials-4 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#testimonials-4 .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#testimonials-4 .section-header p {
  font-size: 1.1rem;
  color: #777;
}
#testimonials-4 .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-4 .testimonial-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#testimonials-4 .testimonial-card:hover {
  transform: translateY(-5px);
}
#testimonials-4 .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-4 .testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-4 .testimonial-card .client-info {
  font-size: 0.95rem;
  color: #777;
}
@media (max-width: 576px) {
  #testimonials-4 .testimonial-card {
    flex: 1 1 100%;
  }
}



#faq-19 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-19 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-19 .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#faq-19 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
}
#faq-19 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-19 .faq-item-icon {
  font-size: 1.2em;
  min-width: 30px;
  text-align: center;
  margin-right: 1rem;
  color: #0d6efd;
  opacity: 0.8;
}
#faq-19 .accordion-button:not(.collapsed) .faq-item-icon {
  opacity: 1;
}
#faq-19 .accordion-button::after {
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}
#faq-19 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
#faq-19 .accordion-body {
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border-top: 1px solid #eee;
}
#faq-19 .accordion-body p:last-child {
  margin-bottom: 0;
}



#team-12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-12 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-12 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-12 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-12 .profile-link-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team-12 .profile-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#team-12 .member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}
#team-12 .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#team-12 .member-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-12 .member-role {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
#team-12 .profile-link-button {
  margin-top: auto;
}
#team-12 .profile-link-button .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#team-12 .profile-link-button .btn i {
  margin-left: 0.4rem;
}
@media (max-width: 767.98px) {
  #team-12 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-12 .section-title {
    font-size: 2.1rem;
  }
  #team-12 .member-photo {
    width: 100px;
    height: 100px;
  }
  #team-12 .member-name {
    font-size: 1.05rem;
  }
}



#our-services-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#our-services-4 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#our-services-4 .carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
#our-services-4 .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#our-services-4 .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 4px;
}
#our-services-4 .btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #our-services-4 .carousel-item img {
    height: 250px;
  }
}



#call-to-action-22 {
  padding: 4rem 0;
  overflow: hidden;
  color: #ffffff;
}
.cta-urgent {
}
.cta-urgent-icon i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.cta-urgent-headline {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-urgent-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-urgent-button .btn {
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.cta-urgent-button .btn:hover {
  transform: scale(1.05);
}
.cta-urgent-button .btn i {
  margin-right: 8px;
}
@media (max-width: 767.98px) {
  #call-to-action-22 {
    padding: 3rem 0;
  }
  .cta-urgent-icon i {
    font-size: 3rem;
  }
  .cta-urgent-headline {
    font-size: 1.9rem;
  }
  .cta-urgent-subtext {
    font-size: 1rem;
  }
}



#press-mentions-4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-4 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-4 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-4 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-4 .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#press-mentions-4 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--bs-primary);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#press-mentions-4 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 3rem;
}
#press-mentions-4 .timeline-item:last-child {
  margin-bottom: 0;
}
#press-mentions-4 .timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: white;
  border: 4px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
#press-mentions-4 .timeline-left {
  left: 0;
  padding-right: 30px;
}
#press-mentions-4 .timeline-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
}
#press-mentions-4 .timeline-left::after {
  left: -12.5px;
}
#press-mentions-4 .timeline-right {
  left: 50%;
  padding-left: 70px;
}
#press-mentions-4 .timeline-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
}
#press-mentions-4 .timeline-right::after {
  left: -12.5px;
}
#press-mentions-4 .timeline-content {
  padding: 20px 30px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
#press-mentions-4 .timeline-date {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.1rem;
}
#press-mentions-4 .timeline-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#press-mentions-4 .timeline-item-source {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.9rem;
}
#press-mentions-4 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.6;
}
#press-mentions-4 .timeline-item-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-4 .timeline-item-link a:hover {
  text-decoration: underline;
}
#press-mentions-4 .timeline-item-link i {
  margin-left: 0.3rem;
}
@media screen and (max-width: 767.98px) {
  #press-mentions-4 .timeline-wrapper::after {
    left: 31px;
  }
  #press-mentions-4 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 2rem;
  }
  #press-mentions-4 .timeline-item::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  #press-mentions-4 .timeline-left::after,
  #press-mentions-4 .timeline-right::after {
    left: 18px;
  }
  #press-mentions-4 .timeline-left,
  #press-mentions-4 .timeline-right {
    left: 0%;
  }
  #press-mentions-4 .timeline-content {
    padding: 15px 20px;
  }
  #press-mentions-4 .timeline-item-title {
    font-size: 1.15rem;
  }
}



#timeline-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-11 .timeline-column {
  padding-right: 2rem;
}
#timeline-11 .timeline-wrapper {
  position: relative;
  padding-left: 30px;
}
#timeline-11.content-right .timeline-wrapper {
  padding-left: 0;
  padding-right: 30px;
}
#timeline-11 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 5px;
  bottom: 5px;
  z-index: 1;
  left: 0;
}
#timeline-11.content-right .timeline-wrapper::after {
  left: auto;
  right: 0;
}
#timeline-11 .timeline-item {
  padding: 0 0 1.8rem 25px;
  position: relative;
  width: 100%;
}
#timeline-11.content-right .timeline-item {
  padding-left: 0;
  padding-right: 25px;
}
#timeline-11 .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#timeline-11 .timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  top: 3px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px #ffffff;
  left: -10px;
}
#timeline-11.content-right .timeline-item::after {
  left: auto;
  right: -10px;
}
#timeline-11 .timeline-content {
  position: relative;
}
#timeline-11 .timeline-date {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.3rem;
  display: block;
  font-size: 1rem;
}
#timeline-11 .timeline-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#timeline-11 .timeline-item-title i {
  margin-right: 0.5rem;
  font-size: 1em;
  opacity: 0.8;
}
#timeline-11 .timeline-item-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
#timeline-11 .map-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#timeline-11 .map-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #timeline-11 .timeline-column {
    padding-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  #timeline-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-11 .section-title {
    font-size: 2.1rem;
  }
  #timeline-11 .timeline-column {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  #timeline-11 .timeline-wrapper {
    padding-left: 25px;
    padding-right: 0;
  }
  #timeline-11 .timeline-wrapper::after {
    left: 0;
  }
  #timeline-11 .timeline-item {
    padding-left: 20px;
    padding-right: 0;
  }
  #timeline-11 .timeline-item::after {
    left: -10px;
  }
}



#cta-banner-1 {
  padding: 6rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #343a40;
}
#cta-banner-1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.6);
}
#cta-banner-1 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-1 .cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
#cta-banner-1 .cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#cta-banner-1 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-1 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
  #cta-banner-1 {
    padding: 5rem 1rem;
  }
  #cta-banner-1 .cta-title {
    font-size: 2.4rem;
  }
  #cta-banner-1 .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-1 {
    padding: 4rem 1rem;
  }
  #cta-banner-1 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-1 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-1 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


