
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    font-size: 1.1rem;
  }
}



#about-us-24 {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}
#about-us-24 .left-col,
#about-us-24 .right-col {
  flex: 1 1 50%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
}
#about-us-24 .left-col {
  background-color: #f9f9f9;
  color: #333;
}
#about-us-24 .left-col h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
#about-us-24 .left-col p {
  font-size: 1rem;
  line-height: 1.7;
}
#about-us-24 .right-col {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
#about-us-24 .right-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#about-us-24 .right-col .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
#about-us-24 .right-col .overlay-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
#about-us-24 .right-col .overlay-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #about-us-24 {
    flex-direction: column;
  }
  #about-us-24 .left-col,
  #about-us-24 .right-col {
    flex: 1 1 100%;
    min-height: auto;
  }
}



#content-block-25 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#content-block-25 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#content-block-25 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#content-block-25 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#content-block-25 .pricing-tier-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
#content-block-25 .pricing-tier-card .card-header {
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
  padding: 1.25rem 1rem;
  text-align: center;
}
#content-block-25 .pricing-tier-card .card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #495057;
}
#content-block-25 .pricing-tier-card .card-header .price {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}
#content-block-25 .pricing-tier-card .card-body {
  padding: 1.5rem;
  flex-grow: 1;
}
#content-block-25 .features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#content-block-25 .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #555;
}
#content-block-25 .features-list li:last-child {
  margin-bottom: 0;
}
#content-block-25 .features-list li i {
  min-width: 1.5em;
  text-align: center;
  margin-right: 0.5rem;
  font-size: 1.1em;
}
#content-block-25 .features-list li i.fa-check {
  color: var(--bs-success, #198754);
}
#content-block-25 .features-list li i.fa-times {
  color: var(--bs-danger, #dc3545);
  opacity: 0.6;
}
#content-block-25 .features-list li .feature-value {
  font-weight: 600;
  margin-left: 0.3rem;
  color: #343a40;
}
#content-block-25 .pricing-tier-card .card-footer {
  background-color: transparent;
  border-top: 1px solid #e9ecef;
  padding: 1.5rem;
  text-align: center;
  margin-top: auto;
}
#content-block-25 .pricing-tier-card .card-footer .btn {
  width: 100%;
}
#content-block-25 .pricing-tier-card.highlighted {
  border-width: 2px;
  border-color: var(--bs-primary, #0d6efd);
  transform: scale(1.03);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
  z-index: 1;
}
#content-block-25 .pricing-tier-card.highlighted .card-header {
  background-color: var(--bs-primary, #0d6efd);
  border-color: var(--bs-primary, #0d6efd);
}
#content-block-25 .pricing-tier-card.highlighted .card-header h4,
#content-block-25 .pricing-tier-card.highlighted .card-header .price {
  color: #fff;
}
#content-block-25 .pricing-tier-card.highlighted .card-footer .btn {
}
@media (max-width: 991.98px) {
  #content-block-25 .pricing-tier-card {
    margin-bottom: 1.5rem;
  }
  #content-block-25 .pricing-tier-card.highlighted {
    transform: scale(1);
  }
}



#why-choose-us-25 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#why-choose-us-25 .section-title-container {
  margin-bottom: 50px;
}
#why-choose-us-25 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
}
#why-choose-us-25 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#why-choose-us-25 .award-item {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e7e7e7;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
#why-choose-us-25 .award-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
#why-choose-us-25 .award-image-container {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#why-choose-us-25 .award-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#why-choose-us-25 .award-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 8px;
}
#why-choose-us-25 .award-meta {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 10px;
}
#why-choose-us-25 .award-meta .awarded-by {
  font-style: italic;
}
#why-choose-us-25 .award-meta .award-year::before {
  content: "|";
  margin: 0 5px;
}
#why-choose-us-25 .award-description {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  #why-choose-us-25 .award-item {
    margin-bottom: 25px;
  }
  #why-choose-us-25 .row > div:last-child .award-item {
    margin-bottom: 0;
  }
  #why-choose-us-25 .award-name {
    font-size: 1.15rem;
  }
}



#content-block-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
#content-block-16 .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
#content-block-16 .content-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#content-block-16 .content-text h2,
#content-block-16 .content-text h3 {
  font-weight: 600;
  color: #343a40;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
#content-block-16 .content-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}
#content-block-16 .content-text p:last-child {
  margin-bottom: 0;
}
#content-block-16 .content-text h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-16 .content-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
#content-block-16 .content-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6c757d;
  font-size: 0.95rem;
}
#content-block-16 .content-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--bs-primary, #0d6efd);
  font-size: 0.9em;
}
@media (max-width: 767.98px) {
  #content-block-16 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #content-block-16 .content-image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #content-block-16 .content-text h2,
  #content-block-16 .content-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  #content-block-16 .content-text {
    text-align: center;
  }
  #content-block-16 .content-text ul {
    display: inline-block;
    text-align: left;
  }
}



#counter-12 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
}
#counter-12 .container {
  max-width: 1140px;
}
#counter-12 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#counter-12 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#counter-12 .counter-item-circular {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#counter-12 .counter-circle-svg {
  display: block;
  margin: 0 auto;
  position: relative;
}
#counter-12 .circle-bg {
  fill: none;
  stroke: var(--circle-base-color, #e9ecef);
  stroke-width: var(--stroke-width, 10px);
}
#counter-12 .circle-progress {
  fill: none;
  stroke: var(--circle-progress-color, #0d6efd);
  stroke-width: var(--stroke-width, 10px);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.5s ease-out;
}
#counter-12 .counter-number-svg {
  font-size: 1.8rem;
  font-weight: 700;
  fill: #343a40;
  dominant-baseline: middle;
  text-anchor: middle;
}
#counter-12 .counter-suffix-svg {
  font-size: 0.9rem;
  font-weight: 500;
  fill: #555;
}
#counter-12 .counter-title-circular {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
}
@media (max-width: 991.98px) {
  #counter-12 .counter-circle-svg {
  }
  #counter-12 .counter-number-svg {
  }
}
@media (max-width: 767.98px) {
  #counter-12 {
    padding: 50px 0;
  }
  #counter-12 .section-header h2 {
    font-size: 2rem;
  }
  #counter-12 .counter-item-circular {
    margin-bottom: 50px;
  }
  #counter-12 .counter-item-circular:last-child {
    margin-bottom: 0;
  }
}



#call-to-action-9 {
  background-color: #f8f9fa;
  color: #333;
  padding: 60px 20px;
}
#call-to-action-9 .cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
#call-to-action-9 .cta-icon {
  flex: 0 0 auto;
}
#call-to-action-9 .cta-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
#call-to-action-9 .cta-text {
  flex: 1 1 300px;
  text-align: left;
}
#call-to-action-9 .cta-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
#call-to-action-9 .cta-text p {
  font-size: 16px;
  margin-bottom: 20px;
}
#call-to-Action-9 .cta-btn {
  padding: 10px 25px;
  background-color: #17a2b8;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-9 .cta-btn:hover {
  background-color: #138496;
}
@media (max-width: 767.98px) {
  #call-to-action-9 .cta-container {
    flex-direction: column;
    text-align: center;
  }
  #call-to-action-9 .cta-text {
    text-align: center;
  }
}


