
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#overview-17 {
  overflow: hidden;
  background-color: var(--section-bg-color, #ffffff);
}
#overview-17 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-17 .section-intro {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#overview-17 .section-intro .section-heading {
  margin-bottom: 0.5rem;
}
#overview-17 .section-intro .lead {
  color: #6c757d;
  margin-bottom: 0;
}
#overview-17 .content-grid-item {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease-in-out;
  height: 100%;
  text-align: center;
  position: relative;
}
#overview-17 .content-grid-item:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.25);
}
#overview-17 .content-grid-item:hover .grid-item-icon,
#overview-17 .content-grid-item:hover h5,
#overview-17 .content-grid-item:hover p {
  color: #ffffff !important;
}
#overview-17 .grid-item-icon {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
#overview-17 .content-grid-item h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #343a40;
  transition: color 0.3s ease-in-out;
}
#overview-17 .content-grid-item p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease-in-out;
}
#overview-17 .cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}



/* Section wrapper */
#category-posts-30 {
  position: relative;
  padding: 80px 20px;
  background: #f5f5f5;
  overflow: hidden;
}

/* Header */
#category-posts-30 .section-header {
  text-align: center;
  margin-bottom: 60px;
}
#category-posts-30 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-30 .section-subtitle {
  font-size: 1rem;
  color: #666;
}

/* Timeline line */
#category-posts-30 .timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 800px;
}
#category-posts-30 .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ccc;
  transform: translateX(-50%);
}

/* Timeline item */
#category-posts-30 .timeline-item {
  position: relative;
  width: calc(50% - 30px);
  padding: 1rem 2rem;
  margin-bottom: 40px;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(20px);
}
#category-posts-30 .timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
#category-posts-30 .timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Left/right positioning */
#category-posts-30 .timeline-item:nth-child(odd) {
  left: 0;
}
#category-posts-30 .timeline-item:nth-child(even) {
  left: 50%;
}

/* Connector dot */
#category-posts-30 .timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid #ff6f61;
  border-radius: 50%;
}
#category-posts-30 .timeline-item:nth-child(odd)::before {
  right: -36px;
}
#category-posts-30 .timeline-item:nth-child(even)::before {
  left: -36px;
}

/* Content inside item */
#category-posts-30 .item-date {
  font-size: .875rem;
  color: #999;
  margin-bottom: .5rem;
}
#category-posts-30 .item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #333;
}
#category-posts-30 .item-excerpt {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-30 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #ff6f61;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-30 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-30 .btn-readmore:hover {
  color: #e6554b;
}
#category-posts-30 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Mobile: full width */
@media (max-width: 768px) {
  #category-posts-30 .timeline::before {
    left: 8px;
  }
  #category-posts-30 .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    margin-bottom: 30px;
  }
  #category-posts-30 .timeline-item:nth-child(even) {
    left: 0;
  }
  #category-posts-30 .timeline-item::before {
    left: 0;
    right: auto;
  }
}

/* Pagination & Load More */
#category-posts-30 .pagination-wrapper,
#category-posts-30 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}




#content-block-12 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#content-block-12 .quote-block {
  background: #f1f1f1;
  padding: 50px 30px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#content-block-12 .quote-block .author {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}



#faq-3 {
  padding: 60px 0;
  background-color: #f1f3f5;
}
#faq-3 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-3 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-3 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
}
#faq-3 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#faq-3 .accordion-button {
  background-color: #e2e6ea;
  color: #333333;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-3 .accordion-button:hover {
  background-color: #d6d8db;
}
#faq-3 .accordion-body {
  padding: 20px;
  background-color: #ffffff;
  border-left: 2px solid #17a2b8;
}



#timeline-2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-2 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-2 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-2 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-2 .timeline-horizontal-row {
  position: relative;
}
/*
#timeline-2 .timeline-horizontal-row::before {
    content: '';
    position: absolute;
    top: 60px; // Position relative to icon/year top
    left: 5%; // Start after first item padding
    right: 5%; // End before last item padding
    height: 4px;
    background-color: var(--bs-primary);
    opacity: 0.3;
    z-index: 1;
}
*/
#timeline-2 .milestone-column {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}
#timeline-2 .milestone-column::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  border-radius: 50%;
  z-index: 3;
}
#timeline-2 .milestone-icon {
  margin-bottom: 0.75rem;
}
#timeline-2 .milestone-icon i {
  font-size: 2rem;
  color: var(--bs-primary);
}
#timeline-2 .milestone-year {
  font-size: 1.3rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#timeline-2 .milestone-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
}
#timeline-2 .milestone-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-2 {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  #timeline-2 .section-title {
    font-size: 2.1rem;
  }
  #timeline-2 .timeline-horizontal-row::before {
    display: none;
  }
  #timeline-2 .milestone-column {
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  #timeline-2 .row > div:last-child .milestone-column {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #timeline-2 .milestone-column::before {
    display: none;
  }
}



#team-3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-3 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-3 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-3 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-3 .team-member-item {
  text-align: center;
  margin-bottom: 1.5rem;
}
#team-3 .member-photo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffffff;
}
#team-3 .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#team-3 .team-member-item:hover .member-photo img {
  transform: scale(1.1);
}
#team-3 .member-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-3 .member-role {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
#team-3 .member-social-links a {
  display: inline-block;
  color: #adb5bd;
  margin: 0 0.3rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}
#team-3 .member-social-links a:hover {
  color: var(--bs-primary);
}
@media (max-width: 991.98px) {
  #team-3 .member-photo {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 767.98px) {
  #team-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-3 .section-title {
    font-size: 2.1rem;
  }
  #team-3 .member-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }
  #team-3 .member-name {
    font-size: 1.1rem;
  }
}



#press-mentions-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-6 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-6 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-6 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-6 .award-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#press-mentions-6 .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(var(--bs-primary-rgb), 0.1);
  border-color: rgba(var(--bs-primary-rgb), 0.5);
}
#press-mentions-6 .award-icon i {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
}
#press-mentions-6 .award-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#press-mentions-6 .awarded-by {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
#press-mentions-6 .awarded-by-logo img {
  height: 25px;
  width: auto;
  max-width: 80px;
  margin-right: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.7;
}
#press-mentions-6 .award-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}
#press-mentions-6 .award-link {
  margin-top: auto;
}
#press-mentions-6 .award-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-6 .award-link a:hover {
  text-decoration: underline;
}
#press-mentions-6 .award-link i {
  margin-left: 0.3rem;
}
@media (max-width: 767.98px) {
  #press-mentions-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-6 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-6 .award-card {
    padding: 1.5rem;
  }
  #press-mentions-6 .award-name {
    font-size: 1.2rem;
  }
}



#customer-support-12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#customer-support-12 .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
#customer-support-12 .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#customer-support-12 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
}
#customer-support-12 .content-box {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}
#customer-support-12 .box-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
  color: #343a40;
}
#customer-support-12 .contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#customer-support-12 .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
#customer-support-12 .contact-list li:last-child {
  margin-bottom: 0;
}
#customer-support-12 .contact-list li i {
  color: var(--bs-primary);
  margin-right: 1rem;
  width: 25px;
  text-align: center;
  font-size: 1.2rem;
}
#customer-support-12 .contact-list li a {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}
#customer-support-12 .contact-list li a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#customer-support-12 .contact-list li span {
  color: #495057;
  font-weight: 500;
}
#customer-support-12 .hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
#customer-support-12 .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dotted #e0e0e0;
  font-size: 1rem;
  color: #495057;
}
#customer-support-12 .hours-list li:last-child {
  border-bottom: none;
}
#customer-support-12 .hours-list li .days {
  font-weight: 500;
  color: #343a40;
}
#customer-support-12 .hours-list li .time {
  text-align: right;
}
#customer-support-12 .status-indicator {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 1.1rem;
}
#customer-support-12 .status-indicator.open {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}
#customer-support-12 .status-indicator.closed {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}
#customer-support-12 .status-indicator.limited {
  background-color: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
}
@media (max-width: 991.98px) {
  #customer-support-12 .content-box {
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-12 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  #customer-support-12 .section-header {
    margin-bottom: 2.5rem;
  }
  #customer-support-12 .section-title {
    font-size: 2rem;
  }
  #customer-support-12 .row > div {
    margin-bottom: 1.5rem;
  }
  #customer-support-12 .row > div:last-child {
    margin-bottom: 0;
  }
  #customer-support-12 .content-box {
    padding: 1.5rem;
    margin-bottom: 0;
  }
}



#call-to-action-10 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
#call-to-action-10 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-10 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-10 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #2575fc;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-10 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #2575fc;
}
@media (max-width: 767.98px) {
  #call-to-action-10 h2 {
    font-size: 28px;
  }
  #call-to-action-10 p {
    font-size: 16px;
  }
}



#offers-16 {
  padding: 80px 0;
  background-color: #f8f9fa;
}
#offers-16 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-16 .offer-name-highlight {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  color: #0d6efd;
  margin-bottom: 3rem;
}
#offers-16 .offer-steps-list .list-group-item {
  border: none;
  background-color: transparent;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #ced4da;
}
#offers-16 .offer-steps-list .list-group-item:last-child {
  border-bottom: none;
}
#offers-16 .offer-steps-list .step-indicator {
  min-width: 50px;
  text-align: center;
  margin-right: 1.5rem;
}
#offers-16 .offer-steps-list .step-indicator i {
  font-size: 1.8rem;
  color: #198754;
}
#offers-16 .step-details .step-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #212529;
  margin-bottom: 0.3rem;
}
#offers-16 .step-details .step-description {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}
#offers-16 .final-cta-area {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
#offers-16 .btn-final-cta {
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}


