
#hero-13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-13::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-13 .container {
  position: relative;
  z-index: 2;
}
#hero-13 .hero-content-wrapper-13 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#hero-13 .hero-title-13 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-13 .hero-subtitle-13 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-13 .cta-button-wrapper-13 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#hero-13 .hero-cta-button-13 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#hero-13 .hero-cta-button-13.cta-style-secondary {
  border-color: #ffffff;
}
#hero-13 .hero-cta-button-13:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-13 {
    min-height: 55vh;
    padding: 4rem 0;
  }
  #hero-13 .hero-title-13 {
    font-size: 2.3rem;
  }
  #hero-13 .hero-subtitle-13 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  #hero-13 .cta-button-wrapper-13 {
    gap: 0.8rem;
  }
}



#why-choose-us-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#why-choose-us-4 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#why-choose-us-4 .card-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
#why-choose-us-4 .card-slider .reason-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  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;
}
#why-choose-us-4 .card-slider .reason-card:hover {
  transform: translateY(-5px);
}
#why-choose-us-4 .reason-card i {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 10px;
}
#why-choose-us-4 .reason-card h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
#why-choose-us-4 .reason-card p {
  font-size: 0.95rem;
  color: #555;
}



#our-services-2 {
  padding: 60px 15px;
  max-width: 800px;
  margin: 0 auto;
}
#our-services-2 .header {
  text-align: center;
  margin-bottom: 40px;
}
#our-services-2 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#our-services-2 .header p {
  font-size: 1.1rem;
  color: #777;
}
#our-services-2 .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#our-services-2 .service-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
#our-services-2 .service-list li:last-child {
  border-bottom: none;
}
#our-services-2 .service-list li i {
  font-size: 2rem;
  color: #28a745;
  margin-right: 15px;
}
#our-services-2 .service-list li .service-content h5 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
#our-services-2 .service-list li .service-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#portfolio-2 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #1a1a1a;
}
#portfolio-2 .section-title-container {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #f8f9fa;
}
#portfolio-2 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-2 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#portfolio-2 .carousel-item {
  height: 75vh;
  min-height: 450px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
#portfolio-2 .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#portfolio-2 .carousel-caption {
  bottom: 10%;
  left: 10%;
  right: 10%;
  padding-top: 20px;
  padding-bottom: 30px;
  color: #ffffff;
  z-index: 10;
}
#portfolio-2 .carousel-caption.text-center {
  text-align: center !important;
}
#portfolio-2 .carousel-caption.text-start {
  text-align: left !important;
}
#portfolio-2 .carousel-caption.text-end {
  text-align: right !important;
}
#portfolio-2 .carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
#portfolio-2 .carousel-caption p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 700px;
}
#portfolio-2 .carousel-caption.text-start p,
#portfolio-2 .carousel-caption.text-end p {
  max-width: 550px;
}
#portfolio-2 .carousel-caption.text-center p {
  margin-left: auto;
  margin-right: auto;
}
#portfolio-2 .btn-slide-cta {
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#portfolio-2 .btn-slide-cta:hover {
  transform: translateY(-2px);
}
#portfolio-2 .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}
#portfolio-2 .carousel-indicators .active {
  background-color: #ffffff;
}
#portfolio-2 .carousel-control-prev-icon,
#portfolio-2 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 15px;
  width: 50px;
  height: 50px;
  background-size: 50% 50%;
}
@media (max-width: 767.98px) {
  #portfolio-2 .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  #portfolio-2 .carousel-caption {
    bottom: 8%;
    left: 5%;
    right: 5%;
  }
  #portfolio-2 .carousel-caption h5 {
    font-size: 1.8rem;
  }
  #portfolio-2 .carousel-caption p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f7f7f7;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Grid === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Flip Card === */
.flip-card {
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.flip-card-front {
  background: #fff;
}
.flip-card-front img {
  width: 100%;
  display: block;
}
.flip-card-front .card-title {
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.flip-card-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.flip-card-back .excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.flip-card-back .meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.flip-card-back .btn-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #007bff;
  color: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.flip-card-back .btn-readmore i {
  margin-left: 0.5rem;
}
.flip-card-back .btn-readmore:hover {
  background: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#faq-17 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-17 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2rem;
}
#faq-17 .faq-search-bar {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#faq-17 .faq-search-bar .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 50rem;
  border-color: #ced4da;
}
#faq-17 .faq-search-bar .btn-search {
  border-radius: 50rem;
  padding: 0.8rem 1.5rem;
}
#faq-17 .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-17 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-17 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-17 .accordion-button::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");
  transition: transform 0.2s ease-in-out;
}
#faq-17 .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-17 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-17 .accordion-body p:last-child {
  margin-bottom: 0;
}



#cta-banner-15 {
  padding: 5rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-color: #ffffff;
  color: #212529;
}
#cta-banner-15 .container {
  max-width: 750px;
}
#cta-banner-15 .content-image-wrapper {
  margin-bottom: 2rem;
}
#cta-banner-15 .content-image-wrapper img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
  border-radius: 0.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#cta-banner-15 .cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
#cta-banner-15 .cta-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1rem;
}
#cta-banner-15 .cta-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}
#cta-banner-15 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-15 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-15 {
    padding: 4rem 1rem;
  }
  #cta-banner-15 .content-image-wrapper img {
    max-height: 200px;
  }
  #cta-banner-15 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-15 .cta-subtitle {
    font-size: 1.05rem;
  }
  #cta-banner-15 .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-15 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}



#timeline-1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-1 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-1 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-1 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-1 .timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
#timeline-1 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 15px;
  bottom: 15px;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
#timeline-1 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}
#timeline-1 .timeline-item:last-child {
  margin-bottom: 0;
}
#timeline-1 .timeline-item::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 5px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
}
#timeline-1 .timeline-marker-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  text-align: center;
  z-index: 3;
  line-height: 30px;
  color: var(--bs-primary);
  font-size: 0.9rem;
}
#timeline-1 .timeline-left {
  left: 0;
  padding-right: 35px;
}
#timeline-1 .timeline-left::after {
  left: -15px;
}
#timeline-1 .timeline-left .timeline-marker-icon {
  right: -15px;
}
#timeline-1 .timeline-right {
  left: 50%;
  padding-left: 75px;
}
#timeline-1 .timeline-right::after {
  left: -15px;
}
#timeline-1 .timeline-right .timeline-marker-icon {
  left: -15px;
}
#timeline-1 .timeline-content {
  padding: 1.5rem;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
#timeline-1 .timeline-date {
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.2rem;
}
#timeline-1 .timeline-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #343a40;
}
#timeline-1 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}
#timeline-1 .timeline-item-image img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 4px;
}
@media screen and (max-width: 767.98px) {
  #timeline-1 .timeline-wrapper::after {
    left: 31px;
  }
  #timeline-1 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 2.5rem;
  }
  #timeline-1 .timeline-left,
  #timeline-1 .timeline-right {
    left: 0%;
  }
  #timeline-1 .timeline-left::after,
  #timeline-1 .timeline-right::after {
    left: 16px;
  }
  #timeline-1 .timeline-left .timeline-marker-icon,
  #timeline-1 .timeline-right .timeline-marker-icon {
    left: 16px;
  }
  #timeline-1 .timeline-content {
    padding: 1.25rem;
  }
}



#text-block-4 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-4 .container {
  max-width: 960px;
}
#text-block-4 .section-title-optional {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#text-block-4 .text-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 25px;
}
#text-block-4 .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color, #555e68);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
#text-block-4 .list-heading-optional {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color, #343a40);
  margin-top: 40px;
  margin-bottom: 25px;
}
#text-block-4 .icon-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
#text-block-4 .icon-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color, #495057);
}
#text-block-4 .icon-list-item i {
  font-size: 1.2rem;
  color: var(--icon-color, #17a2b8);
  margin-right: 12px;
  margin-top: 0.2em;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
#text-block-4 .icon-list-item span {
  flex-grow: 1;
}
@media (min-width: 768px) {
  #text-block-4 .icon-list.list-cols-2 {
    column-count: 2;
    column-gap: 30px;
  }
  #text-block-4 .icon-list.list-cols-2 .icon-list-item {
    break-inside: avoid;
  }
}
@media (max-width: 767.98px) {
  #text-block-4 {
    padding: 60px 0;
  }
  #text-block-4 .text-heading {
    font-size: 2rem;
  }
  #text-block-4 .text-paragraph,
  #text-block-4 .icon-list-item {
    font-size: 0.95rem;
  }
  #text-block-4 .list-heading-optional {
    font-size: 1.25rem;
  }
  #text-block-4 .icon-list.list-cols-2 {
    column-count: 1;
  }
}


