
#hero-13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  --hero-overlay-color: transparent;
}
#hero-13::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
  pointer-events: none;
}
#hero-13 .container {
  position: relative;
  z-index: 2;
}
#hero-13 .hero-content-wrapper-13 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#hero-13 .hero-title-13 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-13 .hero-subtitle-13 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#hero-13 .cta-button-wrapper-13 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#hero-13 .hero-cta-button-13 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
#hero-13 .hero-cta-button-13.cta-style-secondary {
  border-color: #ffffff;
}
#hero-13 .hero-cta-button-13:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-13 {
    min-height: 55vh;
    padding: 4rem 0;
  }
  #hero-13 .hero-title-13 {
    font-size: 2.3rem;
  }
  #hero-13 .hero-subtitle-13 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  #hero-13 .cta-button-wrapper-13 {
    gap: 0.8rem;
  }
}



#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;
}



#our-services-15 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#our-services-15 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-15 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-15 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-15 .service-pills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
}
#our-services-15 .service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50rem;
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#our-services-15 .service-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#our-services-15 .service-pill i {
  margin-right: 0.5rem;
  font-size: 0.9em;
}
/*
#our-services-15 .service-pill.bg-warning { color: #333; }
#our-services-15 .service-pill.bg-info { color: #fff; }
*/



#awards-5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f8f9fa;
  overflow: hidden;
  position: relative;
}
#awards-5 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#awards-5 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-5 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-5 .aw5-swiper-container {
  overflow: hidden;
  position: relative;
}
#awards-5 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 200px;
}
#awards-5 .award-slide-content {
  background-color: #ffffff;
  border: 1px solid #e0e5eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  width: 90%;
  margin: 0 auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#awards-5 .award-slide-visual {
  margin-bottom: 1rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#awards-5 .award-slide-visual img {
  max-height: 45px;
  max-width: 130px;
  width: auto;
}
#awards-5 .award-slide-visual i {
  font-size: 2.5rem;
  color: var(--bs-primary);
}
#awards-5 .award-slide-name {
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.25rem;
}
#awards-5 .award-slide-by {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
#awards-5 .award-slide-year {
  font-size: 0.85rem;
  color: #6c757d;
}
#awards-5 .swiper-pagination-aw5 {
  position: static;
  margin-top: 2.5rem;
}
#awards-5 .swiper-pagination-aw5 .swiper-pagination-bullet {
  background-color: var(--bs-primary);
  opacity: 0.4;
}
#awards-5 .swiper-pagination-aw5 .swiper-pagination-bullet-active {
  opacity: 1;
}
#awards-5 .swiper-button-next-aw5,
#awards-5 .swiper-button-prev-aw5 {
  color: var(--bs-primary);
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
#awards-5 .swiper-button-next-aw5::after,
#awards-5 .swiper-button-prev-aw5::after {
  font-size: 1.1rem;
  font-weight: 900;
}
#awards-5 .swiper-button-prev-aw5 {
  left: 5px;
}
#awards-5 .swiper-button-next-aw5 {
  right: 5px;
}
@media (max-width: 767.98px) {
  #awards-5 {
    padding-bottom: 5rem;
  }
  #awards-5 .swiper-button-next-aw5,
  #awards-5 .swiper-button-prev-aw5 {
    width: 38px;
    height: 38px;
  }
  #awards-5 .swiper-button-next-aw5::after,
  #awards-5 .swiper-button-prev-aw5::after {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  #awards-5 .swiper-slide {
    min-height: 180px;
  }
  #awards-5 .award-slide-content {
    padding: 1rem;
    width: 100%;
    min-height: 160px;
  }
  #awards-5 .award-slide-name {
    font-size: 0.9rem;
  }
}



#testimonials-5 {
  position: relative;
  padding: 80px 15px;
  margin: 0 auto;
  max-width: 100%;
  color: #fff;
}
#testimonials-5 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(50%);
  z-index: -1;
}
#testimonials-5 .content-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
#testimonials-5 .content-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#testimonials-5 .content-wrapper p.subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
#testimonials-5 .testimonial {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#testimonials-5 .testimonial p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 10px;
}
#testimonials-5 .client-info {
  font-size: 0.95rem;
  color: #555;
}
#testimonials-5 .client-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}



#call-to-action-20 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-boxed-content {
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-boxed-headline {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-boxed-subtext {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-boxed-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-boxed-button .btn i {
  margin-right: 8px;
}
#call-to-action-20 .btn-warning {
}
@media (max-width: 767.98px) {
  #call-to-action-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 350px;
  }
  .cta-boxed-content {
    padding: 1.5rem;
  }
  .cta-boxed-headline {
    font-size: 1.8rem;
  }
  .cta-boxed-subtext {
    font-size: 1rem;
  }
}



#features-4 {
  padding: 60px 0;
  text-align: center;
}
#features-4 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-4 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-4 .feature-item {
  padding: 30px;
  border-radius: 8px;
  color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
}
#features-4 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
#features-4 .feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-4 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-4 .feature-description {
  font-size: 14px;
  color: #f8f9fa;
}
#features-4 .feature1 {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}
#features-4 .feature2 {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
}
#features-4 .feature3 {
  background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
}
#features-4 .feature4 {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}



/* style.css for post-section-2 */
#post-section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff; /* Clean white background */
}

#post-section-2 .section-header {
    margin-bottom: 45px;
    text-align: center;
}

#post-section-2 .section-header .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

#post-section-2 .section-header .section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

#post-section-2 .post-list-item {
    background-color: #f8f9fa; /* Light background for each item */
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px; /* Inner padding for the item */
    overflow: hidden; /* To contain floated elements or for box-shadow */
    transition: box-shadow 0.3s ease-in-out;
}

#post-section-2 .post-list-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#post-section-2 .post-item-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    max-height: 300px; /* Control image height */
}

#post-section-2 .post-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#post-section-2 .post-list-item:hover .post-item-image {
    transform: scale(1.05);
}

#post-section-2 .post-item-content {
    padding-left: 25px; /* Space between image and content on larger screens */
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content if row height allows */
    height: 100%; /* Ensure content area takes full height of its column */
}

/* For alternating layout, content padding adjustment might be needed if image is on the right */
#post-section-2 .post-list-item .order-md-last + .col-md-7 .post-item-content,
#post-section-2 .post-list-item .order-lg-last + .col-lg-7 .post-item-content {
    padding-left: 25px;
    padding-right: 0;
}
#post-section-2 .post-list-item .order-md-first + .col-md-7 .post-item-content,
#post-section-2 .post-list-item .order-lg-first + .col-lg-7 .post-item-content {
    padding-right: 25px;
    padding-left: 0;
}


#post-section-2 .post-item-categories {
    margin-bottom: 10px;
}

#post-section-2 .post-item-category-badge {
    font-size: 0.75rem;
    padding: 0.35em 0.7em;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    background-color: #5c6bc0; /* Indigo accent for categories */
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

#post-section-2 .post-item-category-badge:hover {
    background-color: #3f51b5; /* Darker indigo */
}

#post-section-2 .post-item-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

#post-section-2 .post-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

#post-section-2 .post-item-title a:hover {
    color: #5c6bc0; /* Category color on hover */
}

#post-section-2 .post-item-meta {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 15px;
}

#post-section-2 .post-item-meta .meta-icon {
    margin-right: 5px;
    color: #aaa;
}

#post-section-2 .post-item-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

#post-section-2 .post-item-readmore-btn {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    align-self: flex-start; /* Align button to the left of its container */
}

#post-section-2 .post-item-readmore-btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

#post-section-2 .post-item-readmore-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#post-section-2 .post-item-readmore-btn:hover .btn-icon {
    transform: translateX(4px);
}

#post-section-2 .pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for alternating layout */
@media (max-width: 767.98px) {
    #post-section-2 .post-item-content {
        padding-left: 15px; /* Standard padding on mobile */
        padding-right: 15px;
        padding-top: 20px; /* Add space above content when image stacks on top */
    }
    #post-section-2 .post-list-item .order-md-last + .col-md-7 .post-item-content,
    #post-section-2 .post-list-item .order-md-first + .col-md-7 .post-item-content,
    #post-section-2 .post-list-item .order-lg-last + .col-lg-7 .post-item-content,
    #post-section-2 .post-list-item .order-lg-first + .col-lg-7 .post-item-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    #post-section-2 .post-item-title {
        font-size: 1.4rem;
    }
    #post-section-2 .post-item-image-wrapper {
        max-height: 250px; /* Adjust image height for stacked layout */
    }
}




#contact-26 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
#contact-26.no-bg-image {
  background-color: #2d3748;
}
#contact-26 .section-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#contact-26 .container {
  position: relative;
  z-index: 2;
}
#contact-26 .section-title-container {
  margin-bottom: 40px;
}
#contact-26 .section-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#contact-26 .section-main-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
#contact-26 .contact-content-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#contact-26 .contact-details-block .block-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#contact-26 .contact-detail-entry {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#contact-26 .contact-detail-entry .detail-icon {
  font-size: 1.3rem;
  color: #0d6efd;
  background-color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#contact-26 .contact-detail-entry .detail-text .label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}
#contact-26 .contact-detail-entry .detail-text .value,
#contact-26 .contact-detail-entry .detail-text .value a {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
#contact-26 .contact-detail-entry .detail-text .value a:hover {
  text-decoration: underline;
  color: #0d6efd;
}
#contact-26 .social-proof-testimonial-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#contact-26 .social-proof-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffc107;
  text-align: center;
}
#contact-26 .testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
#contact-26 .testimonial-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  color: #0d6efd;
  position: absolute;
  left: 0;
  top: 0;
}
#contact-26 .testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-align: right;
}
#contact-26 .testimonial-author cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}
#contact-26 .cta-button-area {
  margin-top: 30px;
  text-align: center;
}
#contact-26 .btn-contact-social-proof {
  padding: 12px 35px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 50px;
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
  transition: all 0.3s ease;
}
#contact-26 .btn-contact-social-proof:hover {
  background-color: #e6ac00;
  border-color: #e6ac00;
  transform: scale(1.05);
}
#contact-26 .btn-contact-social-proof i {
  margin-right: 8px;
}
@media (max-width: 767.98px) {
  #contact-26 .section-main-title {
    font-size: 2.2rem;
  }
  #contact-26 .contact-content-wrapper {
    padding: 20px;
  }
}


