
#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;
  }
}



#features-14 {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f7fa, #80deea);
  text-align: left;
}
#features-14 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#features-14 .section-title {
  font-size: 36px;
  color: #006064;
  font-weight: 700;
}
#features-14 .section-subtitle {
  font-size: 20px;
  color: #004d40;
}
#features-14 .feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#features-14 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
#features-14 .feature-icon {
  font-size: 60px;
  color: #00838f;
  margin-bottom: 20px;
}
#features-14 .feature-title {
  font-size: 24px;
  color: #006064;
  margin-bottom: 10px;
  font-weight: 600;
}
#features-14 .feature-description {
  font-size: 16px;
  color: #424242;
}



#about-us-6 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#about-us-6 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-6 .description {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
}
#about-us-6 .info-section {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fafafa;
}
#about-us-6 .info-section h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #007bff;
}
#about-us-6 .info-section p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f4f6f9;
}
.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: #555;
  margin-top: 8px;
}

/* === Grid & Perspective === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  perspective: 1000px;
  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); }
}

/* === Tilt Card === */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
  cursor: pointer;
}
.post-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  background-color: #007bff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .btn-readmore:hover {
  background-color: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#testimonials-11 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#testimonials-11 .container {
  max-width: 960px;
}
#testimonials-11 .section-header {
  margin-bottom: 40px;
}
#testimonials-11 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#testimonials-11 .testimonial-item {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#testimonials-11 .testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px auto;
  border: 3px solid #dee2e6;
}
#testimonials-11 .testimonial-content blockquote {
  font-style: italic;
  color: #495057;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}
#testimonials-11 .testimonial-content blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-right: 8px;
}
#testimonials-11 .testimonial-content blockquote::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #adb5bd;
  margin-left: 8px;
}
#testimonials-11 .client-info .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-11 .client-info .client-position {
  font-size: 0.9rem;
  color: #6c757d;
}
#testimonials-11 .rating {
  margin-top: 10px;
  color: #ffc107;
}
#testimonials-11 .rating .fa-star.empty {
  color: #e0e0e0;
}
#testimonials-11 .carousel-indicators button {
  background-color: #adb5bd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
}
#testimonials-11 .carousel-indicators .active {
  background-color: #0d6efd;
}
#testimonials-11 .carousel-control-prev,
#testimonials-11 .carousel-control-next {
  width: 5%;
}
#testimonials-11 .carousel-control-prev-icon,
#testimonials-11 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
  background-size: 50% 50%;
  width: 40px;
  height: 40px;
}
#testimonials-11 .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#testimonials-11 .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
@media (max-width: 767.98px) {
  #testimonials-11 {
    padding: 40px 0;
  }
  #testimonials-11 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-11 .section-header p {
    font-size: 1rem;
  }
  #testimonials-11 .testimonial-item {
    padding: 20px;
    min-height: 320px;
  }
  #testimonials-11 .testimonial-content blockquote {
    font-size: 1rem;
  }
  #testimonials-11 .carousel-control-prev-icon,
  #testimonials-11 .carousel-control-next-icon {
    padding: 10px;
    width: 35px;
    height: 35px;
  }
}



#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;
}



.service-block-17 {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--svc17-text-color, #ffffff);
  overflow: hidden;
  z-index: 1;
}
.service-block-17::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--svc17-overlay-color, rgba(0, 0, 0, 0.5));
  z-index: -1;
}
.service-block-17 .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.service-block-17 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.service-block-17 p {
  font-size: 1.1rem;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.service-block-17 .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .service-block-17 {
    padding: 4rem 0;
    background-attachment: scroll;
  }
  .service-block-17 h2 {
    font-size: 2rem;
  }
  .service-block-17 p {
    font-size: 1rem;
  }
}



#why-choose-us-6 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 800px;
}
#why-choose-us-6 .header {
  text-align: center;
  margin-bottom: 40px;
}
#why-choose-us-6 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#why-choose-us-6 .header p {
  font-size: 1.1rem;
  color: #777;
}
#why-choose-us-6 .vertical-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#why-choose-us-6 .vertical-list li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
#why-choose-us-6 .vertical-list li:last-child {
  border-bottom: none;
}
#why-choose-us-6 .vertical-list li i {
  font-size: 2rem;
  color: #007bff;
  margin-right: 15px;
}
#why-choose-us-6 .vertical-list li .reason-content h5 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}
#why-choose-us-6 .vertical-list li .reason-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#offers-1 {
  padding: 60px 0;
  background-color: #f1f3f5;
}
#offers-1 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #1a1a1a;
}
#offers-1 .offer-card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
#offers-1 .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
#offers-1 .offer-card .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.95);
}
#offers-1 .offer-card .card-body {
  padding: 1.5rem;
}
#offers-1 .offer-card .card-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: #0d6efd;
  margin-bottom: 0.75rem;
}
#offers-1 .offer-card .card-text {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
#offers-1 .offer-code-wrapper {
  margin-bottom: 0.5rem;
  min-height: 30px;
}
#offers-1 .offer-code {
  font-weight: 700;
  color: #fff;
  background-color: #dc3545;
  padding: 0.3rem 0.8rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-left: 5px;
}
#offers-1 .offer-expiry {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 1.2rem;
  min-height: 20px;
}
#offers-1 .offer-expiry i {
  margin-right: 5px;
}
#offers-1 .offer-card .btn-offer-cta {
  padding: 0.7rem 1.3rem;
  font-weight: 600;
  background-color: #198754;
  border: none;
}
#offers-1 .offer-card .btn-offer-cta:hover {
  background-color: #157347;
}



#timeline-3 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-3 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-3 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-3 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-3 .timeline-event-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}
#timeline-3 .timeline-event-row:last-child {
  margin-bottom: 0;
}
#timeline-3 .timeline-event-row:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #dee2e6;
  top: 60px;
  bottom: -2rem;
  z-index: 1;
}
#timeline-3 .timeline-event-row.image-left::after {
  left: 50%;
  transform: translateX(-50%);
}
#timeline-3 .timeline-event-row.image-right::after {
  left: 50%;
  transform: translateX(-50%);
}
#timeline-3 .event-image-col {
  position: relative;
  z-index: 2;
}
#timeline-3 .event-image-col img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#timeline-3 .event-content-col {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  z-index: 2;
  background-color: #f8f9fa;
  position: relative;
}
#timeline-3 .timeline-event-row.image-right .event-content-col {
}
#timeline-3 .event-year {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}
#timeline-3 .event-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#timeline-3 .event-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-3 {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }
  #timeline-3 .section-title {
    font-size: 2.1rem;
  }
  #timeline-3 .timeline-event-row {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  #timeline-3 .timeline-event-row:not(:last-child)::after {
    display: none;
  }
  #timeline-3 .event-image-col {
    margin-bottom: 1.5rem;
  }
  #timeline-3 .event-content-col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
  }
  #timeline-3 .event-year {
    font-size: 1.5rem;
  }
  #timeline-3 .event-title {
    font-size: 1.2rem;
  }
  #timeline-3 .event-description {
    font-size: 0.95rem;
  }
}


