
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.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;
}

/* === Gallery Grid === */
.post-gallery {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 576px) {
  .post-gallery { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px) {
  .post-gallery { grid-template-columns: repeat(4,1fr); }
}

/* === Card Styles === */
.post-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.4s ease, background-size 0.4s ease;
}
.post-card:hover {
  transform: translateY(-8px);
  background-size: 110%;
}

/* Hexagon tag badge */
.post-card .tag-hex {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.5rem;
  background: rgba(0,123,255,0.85);
  color: #fff;
  font-size: 0.75rem;
  clip-path: polygon(
    25% 0%, 75% 0%, 
    100% 50%, 75% 100%, 
    25% 100%, 0% 50%
  );
  text-align: center;
  text-transform: uppercase;
}

/* Overlay gradient with content */
.post-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}
.post-card .overlay h5 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.post-card .overlay .date {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.post-card .overlay .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .overlay .btn-readmore:hover {
  background: #fff;
  color: #000;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}




#about-us-26 {
  padding: 80px 0;
  background-color: #f4f4f4;
  color: #333;
}
#about-us-26 .container > h2.section-title,
#about-us-26 .container > p.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
#about-us-26 .our-story {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
#about-us-26 .our-story h3 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
}
#about-us-26 .our-story p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#about-us-26 .our-story img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
#about-us-26 .our-values {
  background-color: #e9ecef;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}
#about-us-26 .our-values h3 {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-values .value-item {
  text-align: center;
  margin-bottom: 30px;
}
#about-us-26 .our-values .value-item i {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 15px;
}
#about-us-26 .our-values .value-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
#about-us-26 .our-values .value-item p {
  font-size: 0.9rem;
  color: #555;
}
#about-us-26 .our-team {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}
#about-us-26 .our-team h3 {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-team .team-member {
  text-align: center;
  margin-bottom: 30px;
}
#about-us-26 .our-team .team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
#about-us-26 .our-team .team-member h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}
#about-us-26 .our-team .team-member p {
  font-size: 0.9rem;
  color: #777;
}
#about-us-26 .our-achievements {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}
#about-us-26 .our-achievements h3 {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-achievements .achievement-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#about-us-26 .our-achievements .achievement-item img {
  width: 80px;
  height: auto;
  margin-right: 20px;
  border-radius: 4px;
}
#about-us-26 .our-achievements .achievement-item p {
  font-size: 1rem;
  color: #555;
}
@media (min-width: 768px) {
  #about-us-26 .our-values .row > div {
    margin-bottom: 0;
  }
  #about-us-26 .our-team .row > div {
    margin-bottom: 0;
  }
}



#why-choose-us-8 {
  position: relative;
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#why-choose-us-8 .section-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#why-choose-us-8 .feature-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#why-choose-us-8 .feature-box .reason-item {
  margin-bottom: 20px;
}
#why-choose-us-8 .feature-box .reason-item i {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 10px;
}
#why-choose-us-8 .feature-box .reason-item h5 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
#why-choose-us-8 .feature-box .reason-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#counter-6 {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
}
#counter-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color, rgba(0, 0, 0, 0.7));
  z-index: 1;
}
#counter-6 .container {
  position: relative;
  z-index: 2;
}
/* Optional Section Header Styling (if added in template)
#counter-6 .section-header {
    margin-bottom: 50px;
}
#counter-6 .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
#counter-6 .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}
*/
#counter-6 .counter-item-inline {
  padding: 20px 15px;
}
#counter-6 .counter-item-inline i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
  transition: transform 0.3s ease;
}
#counter-6 .counter-item-inline:hover i {
  transform: scale(1.1);
}
#counter-6 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
}
#counter-6 .counter-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
#counter-6 .counter-suffix {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 5px;
  line-height: 1;
}
#counter-6 .counter-title-inline {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991.98px) {
  #counter-6 .counter-item-inline {
    margin-bottom: 30px;
  }
  #counter-6 .counter-number {
    font-size: 2.5rem;
  }
  #counter-6 .counter-suffix {
    font-size: 1.8rem;
  }
  #counter-6 .counter-item-inline i {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  #counter-6 {
    padding: 60px 0;
    background-attachment: scroll;
  }
  #counter-6 .counter-item-inline {
    margin-bottom: 35px;
  }
  #counter-6 .counter-item-inline:last-child {
    margin-bottom: 0;
  }
  #counter-6 .counter-title-inline {
    font-size: 1rem;
  }
}



#features-30 {
  padding: 60px 0;
  overflow: hidden;
background-color: {{ $data['features-30']['fallback_bg_color'] ?? '#f1f3f5' }}; 
}
#features-30 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-30 .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-30 .section-title p {
  margin-bottom: 50px; 
  color: #6c757d;
}
#features-30 .feature-item-shape {
  text-align: center;
  padding: 25px;
  background-color: #ffffff; 
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; 
  display: flex;
  flex-direction: column; 
}
#features-30 .feature-item-shape:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
#features-30 .shaped-icon {
  width: 80px; 
  height: 80px;
  border-radius: 50%; 
  margin: 0 auto 25px auto; 
  display: flex;
  align-items: center;
  justify-content: center;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease;
}
#features-30 .feature-item-shape:hover .shaped-icon {
    transform: scale(1.1); 
}
#features-30 .shaped-icon i {
  font-size: 32px; 
  color: #ffffff; 
  line-height: 0;
}
#features-30 .feature-item-shape h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #343a40;
}
#features-30 .feature-item-shape p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1; 
}
@media (max-width: 767.98px) {
  #features-30 .section-title h2 {
    font-size: 28px;
  }
  #features-30 .shaped-icon {
     width: 70px;
     height: 70px;
     margin-bottom: 20px;
  }
   #features-30 .shaped-icon i {
     font-size: 28px;
   }
   #features-30 .feature-item-shape h4 {
     font-size: 17px;
   }
}



#cta-banner-10 {
  padding: 7rem 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: #212529;
}
#cta-banner-10::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.55);
}
#cta-banner-10 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-10 .cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#cta-banner-10 .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#cta-banner-10 .cta-button .btn {
  padding: 1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
#cta-banner-10 .cta-button .btn:hover {
  transform: scale(1.05);
}
#cta-banner-10 .cta-button .btn i {
  margin-left: 0.6rem;
}
@media (max-width: 991.98px) {
  #cta-banner-10 {
    padding: 6rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.5rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-10 {
    padding: 5rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.1rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-10 .cta-button .btn {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
  }
}



#testimonials-20 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-20 .container {
  max-width: 1140px;
}
#testimonials-20 .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#testimonials-20 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-20 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-20 .map-testimonial-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
#testimonials-20 .map-testimonial-item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#testimonials-20 .marker-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #dc3545;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
#testimonials-20 .map-testimonial-item:hover .marker-icon,
#testimonials-20 .map-testimonial-item .marker-icon:focus {
  transform: scale(1.2);
  color: #0d6efd;
}
#testimonials-20 .testimonial-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
  text-align: left;
  border: 1px solid #e0e0e0;
}
#testimonials-20 .map-testimonial-item:hover .testimonial-popup,
#testimonials-20 .map-testimonial-item .marker-icon:focus + .testimonial-popup {
  opacity: 1;
  visibility: visible;
}
#testimonials-20 .testimonial-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}
#testimonials-20 .popup-message {
  font-size: 0.9rem;
  color: #343a40;
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}
#testimonials-20 .popup-client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  display: block;
  text-align: right;
}
#testimonials-20 .testimonial-list-fallback {
  display: none;
  margin-top: 40px;
}
#testimonials-20 .testimonial-list-fallback h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #343a40;
}
#testimonials-20 .fallback-item {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #e9ecef;
}
#testimonials-20 .fallback-item blockquote {
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-style: italic;
  color: #495057;
}
#testimonials-20 .fallback-item cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: normal;
}
@media (max-width: 767.98px) {
  #testimonials-20 {
    padding: 50px 0;
  }
  #testimonials-20 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-20 .map-testimonial-container {
    display: none;
  }
  #testimonials-20 .testimonial-list-fallback {
    display: block;
  }
}



#call-to-action-3 {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 70px 15px;
  color: #fff;
  text-align: center;
}
#call-to-action-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#call-to-action-3 .content {
  position: relative;
  z-index: 2;
}
#call-to-action-3 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-3 p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
#call-to-action-3 .btn {
  background-color: #ff5722;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-3 .btn:hover {
  background-color: #e64a19;
}
#call-to-action-3 .statistics {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
#call-to-action-3 .stat {
  text-align: center;
}
#call-to-action-3 .stat .value {
  font-size: 2rem;
  font-weight: bold;
}
#call-to-action-3 .stat .label {
  font-size: 1rem;
  color: #ddd;
}



#offers-3 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-3 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-3 .offer-tier-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  height: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
#offers-3 .offer-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
#offers-3 .offer-tier-card .card-header-custom {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}
#offers-3 .offer-tier-card .tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}
#offers-3 .offer-tier-card .tier-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
  margin-bottom: 0.75rem;
}
#offers-3 .offer-tier-card .tier-description {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#offers-3 .offer-tier-card .tier-condition {
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.5rem;
}
#offers-3 .offer-tier-card .btn-tier-cta {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: auto;
}


