
#hero-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-14::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-14 .container {
  position: relative;
  z-index: 2;
}
#hero-14 .hero-content-wrapper-14 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .hero-title-14 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-14 .hero-subtitle-14 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-14 .hero-form-wrapper-14 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#hero-14 .input-group .form-control {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.3rem 0 0 0.3rem;
  border: none;
}
#hero-14 .input-group .btn-form-submit-14 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 0 0.3rem 0.3rem 0;
  border: none;
  background-color: #0d6efd;
  color: #ffffff;
  transition: filter 0.2s ease;
}
#hero-14 .input-group .btn-form-submit-14:hover {
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-14 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-14 .hero-title-14 {
    font-size: 2.2rem;
  }
  #hero-14 .hero-subtitle-14 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #hero-14 .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  #hero-14 .input-group .form-control,
  #hero-14 .input-group .btn-form-submit-14 {
    border-radius: 0.3rem;
    width: 100%;
  }
}



#features-1 {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
#features-1 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-1 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-1 .feature-item {
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#features-1 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-1 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-1 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-1 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#portfolio-1 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f8f9fa;
}
#portfolio-1 .section-title-container {
  margin-bottom: 40px;
}
#portfolio-1 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-1 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-1 .portfolio-filters {
  margin-bottom: 40px;
  text-align: center;
}
#portfolio-1 .portfolio-filters .filter-btn {
  background-color: transparent;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  padding: 8px 20px;
  margin: 5px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
#portfolio-1 .portfolio-filters .filter-btn:hover,
#portfolio-1 .portfolio-filters .filter-btn.active {
  background-color: #0d6efd;
  color: #ffffff;
}
#portfolio-1 .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio-1 .portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
#portfolio-1 .portfolio-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#portfolio-1 .portfolio-item:hover img {
  transform: scale(1.05);
}
#portfolio-1 .portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  color: #ffffff;
}
#portfolio-1 .portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
#portfolio-1 .portfolio-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
}
#portfolio-1 .portfolio-item:hover .portfolio-item-title {
  transform: translateY(0);
  opacity: 1;
}
#portfolio-1 .portfolio-item-category {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 8px;
  background-color: rgba(13, 110, 253, 0.8);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
}
#portfolio-1 .portfolio-item:hover .portfolio-item-category {
  transform: translateY(0);
  opacity: 1;
}
#portfolio-1 .portfolio-item-description {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
  max-height: 0;
  overflow: hidden;
}
#portfolio-1 .portfolio-item:hover .portfolio-item-description {
  opacity: 0.9;
  transform: translateY(0);
  max-height: 60px;
}



#how-it-works-29 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
#how-it-works-29 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-29 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}
#how-it-works-29 .section-main-subtitle {
  font-size: 1.1rem;
  color: #495057;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-29 .flow-stage-column {
  display: flex;
  height: 100%;
}
#how-it-works-29 .flow-stage-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
#how-it-works-29 .flow-stage-card:not(:last-child)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #0d6efd;
  z-index: 2;
}
@media (min-width: 992px) {
  #how-it-works-29 .row > div:nth-child(3) .flow-stage-card::after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #how-it-works-29 .flow-stage-card::after {
    display: none;
  }
  #how-it-works-29 .flow-stage-card {
    margin-bottom: 30px;
  }
  #how-it-works-29 .flow-stage-card:not(:last-child)::before {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: #0d6efd;
    z-index: 2;
  }
  #how-it-works-29 .row > div:last-child .flow-stage-card::before {
    display: none;
  }
}
#how-it-works-29 .stage-icon-header {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 15px;
}
#how-it-works-29 .stage-main-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
#how-it-works-29 .stage-description-text {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}
#how-it-works-29 .stage-item-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-top: auto;
}
#how-it-works-29 .stage-item-list li {
  font-size: 0.9rem;
  color: #495057;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  display: flex;
  align-items: center;
}
#how-it-works-29 .stage-item-list li:last-child {
  border-bottom: none;
}
#how-it-works-29 .stage-item-list li i {
  color: #20c997;
  margin-right: 10px;
  font-size: 0.8rem;
}



#content-block-7 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#content-block-7 .header {
  text-align: center;
  margin-bottom: 40px;
}
#content-block-7 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#content-block-7 .header p {
  font-size: 1.1rem;
  color: #777;
}
#content-block-7 .article-body {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}



#our-services-28 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-28 .services-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}
#our-services-28 .service-testimonial-block {
  background-color: #f8f9fa;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  border: 1px solid #eee;
}
#our-services-28 .service-testimonial-block:last-child {
  margin-bottom: 0;
}
#our-services-28 .service-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #0d6efd;
  margin-bottom: 0.75rem;
}
#our-services-28 .service-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 2rem;
}
#our-services-28 .testimonials-wrapper {
}
#our-services-28 .service-testimonial blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding: 1rem 1rem 1rem 1.5rem;
  border-left: 4px solid #adb5bd;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  position: relative;
}
#our-services-28 .service-testimonial blockquote::before {
  content: "\\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ced4da;
  font-size: 1.8rem;
  position: absolute;
  left: -10px;
  top: 5px;
  opacity: 0.6;
  z-index: 0;
}
#our-services-28 .service-testimonial blockquote p {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}
#our-services-28 .service-testimonial .blockquote-footer {
  font-size: 0.9rem;
  color: #555;
  font-style: normal;
  margin-top: 0.5rem;
  text-align: right;
}
#our-services-28 .service-testimonial .blockquote-footer cite {
  font-weight: 600;
}
#our-services-28 .service-testimonial blockquote:last-child {
  margin-bottom: 0;
}



/* === Section & Header === */
.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;
}

/* === Magazine Layout === */
.magazine-layout {
  gap: 1.5rem;
}
.hero-post, .secondary-grid {
  margin-bottom: 1.5rem;
}
.hero-post .card {
  height: 100%;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.hero-post .card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}
.hero-post .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 1.5rem;
}
.hero-post .card-body h5 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.hero-post .btn-readmore {
  color: #fff;
  border: 1px solid #fff;
}

/* Secondary grid */
.secondary-grid .secondary-item {
  padding: 0.5rem;
}
.secondary-item .card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.secondary-item .card:hover {
  transform: translateY(-5px);
}
.secondary-item img {
  width: 100%;
  height: auto;
  display: block;
}
.secondary-item .card-body {
  padding: 0.75rem;
}
.secondary-item h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.secondary-item .btn-readmore {
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
}

/* === Browse All Button === */
.browse-all {
  text-align: center;
  margin-top: 30px;
}




#team-12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-12 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-12 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-12 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-12 .profile-link-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team-12 .profile-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#team-12 .member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}
#team-12 .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#team-12 .member-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-12 .member-role {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
#team-12 .profile-link-button {
  margin-top: auto;
}
#team-12 .profile-link-button .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#team-12 .profile-link-button .btn i {
  margin-left: 0.4rem;
}
@media (max-width: 767.98px) {
  #team-12 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-12 .section-title {
    font-size: 2.1rem;
  }
  #team-12 .member-photo {
    width: 100px;
    height: 100px;
  }
  #team-12 .member-name {
    font-size: 1.05rem;
  }
}



#awards-1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#awards-1 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-1 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-1 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-1 .award-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#awards-1 .award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#awards-1 .award-visual {
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#awards-1 .award-visual img {
  max-height: 55px;
  max-width: 150px;
  width: auto;
}
#awards-1 .award-visual i {
  font-size: 3rem;
  color: var(--bs-primary);
  opacity: 0.8;
}
#awards-1 .award-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
  flex-grow: 1;
  min-height: 44px;
}
#awards-1 .award-body {
  flex-grow: 1;
}
#awards-1 .award-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 50px;
}
#awards-1 .award-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f1f1;
}
#awards-1 .awarded-by {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
#awards-1 .award-year {
  font-size: 0.85rem;
  font-weight: 500;
  color: #495057;
}
@media (max-width: 991.98px) {
  #awards-1 .award-name {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  #awards-1 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-1 .section-title {
    font-size: 2.1rem;
  }
  #awards-1 .award-card {
    padding: 1.5rem;
  }
  #awards-1 .award-visual i {
    font-size: 2.5rem;
  }
  #awards-1 .award-visual img {
    max-height: 50px;
  }
}



#testimonials-2 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#testimonials-2 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#testimonials-2 .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#testimonials-2 .section-header p {
  font-size: 1.1rem;
  color: #777;
}
#testimonials-2 .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-2 .testimonial-card {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#testimonials-2 .testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-2 .testimonial-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}
#testimonials-2 .testimonial-card .client-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
#testimonials-2 .testimonial-card .client-position {
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 576px) {
  #testimonials-2 .testimonial-card {
    flex: 1 1 100%;
  }
}



#cta-banner-9 {
  padding: 4rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 0.375rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #198754;
  color: #ffffff;
}
#cta-banner-9 .container {
  max-width: 750px;
}
#cta-banner-9 .cta-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
#cta-banner-9 .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#cta-banner-9 .cta-form .input-group {
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50rem;
  overflow: hidden;
}
#cta-banner-9 .cta-form .form-control {
  border-radius: 50rem 0 0 50rem !important;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
}
#cta-banner-9 .cta-form .form-control:focus {
  box-shadow: none;
  z-index: 3;
}
#cta-banner-9 .cta-form .btn {
  border-radius: 0 50rem 50rem 0 !important;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
}
#cta-banner-9 .cta-form .btn:hover {
}
#cta-banner-9 .cta-form .btn i {
  margin-right: 0.4rem;
}
#cta-banner-9 .privacy-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  #cta-banner-9 {
    padding: 3rem 1rem;
  }
  #cta-banner-9 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-9 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-9 .cta-form .input-group {
    max-width: 90%;
  }
}
@media (max-width: 575.98px) {
  /*
     #cta-banner-9 .cta-form .input-group { flex-direction: column; border-radius: 0.375rem; gap: 0.5rem; background: none; box-shadow: none;}
     #cta-banner-9 .cta-form .form-control { border-radius: 0.25rem !important; }
     #cta-banner-9 .cta-form .btn { border-radius: 0.25rem !important; width: 100%; }
    */
}


