
#hero-25 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 0;
  text-align: center;
}
#hero-25 .hero-overlay-25 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-25 .container {
  position: relative;
  z-index: 2;
}
#hero-25 .hero-content-wrapper-25 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
#hero-25 .hero-title-25 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-25 .hero-subtitle-25 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-25 .event-details-wrapper-25 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
#hero-25 .event-detail-item-25 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
#hero-25 .event-detail-item-25 i {
  font-size: 0.9em;
}
#hero-25 .hero-cta-button-25 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-25 .hero-cta-button-25:hover {
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
  #hero-25 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-25 .hero-title-25 {
    font-size: 2.3rem;
  }
  #hero-25 .hero-subtitle-25 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  #hero-25 .event-details-wrapper-25 {
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem 1rem;
  }
  #hero-25 .event-detail-item-25 {
    font-size: 0.9rem;
  }
}



#features-2 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#features-2 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
#features-2 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
  text-align: center;
}
#features-2 .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
#features-2 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-2 .feature-image {
  width: 40%;
  height: auto;
}
#features-2 .feature-content {
  padding: 20px;
  width: 60%;
}
#features-2 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #17a2b8;
}
#features-2 .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-8 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#how-it-works-8 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#how-it-works-8 .numbered-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
#how-it-works-8 .numbered-list li {
  position: relative;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#how-it-works-8 .numbered-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #007bff;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#how-it-works-8 .numbered-list li h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #007bff;
}
#how-it-works-8 .numbered-list li p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#content-block-18 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#content-block-18 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#content-block-18 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#content-block-18 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#content-block-18 .content-column {
  margin-bottom: 1.5rem;
}
#content-block-18 .content-column h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bs-primary, #0d6efd);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
  display: inline-block;
}
#content-block-18 .content-column h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #495057;
}
#content-block-18 .content-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
#content-block-18 .content-column p:last-child {
  margin-bottom: 0;
}
#content-block-18 .content-column ul,
#content-block-18 .content-column ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #555;
}
#content-block-18 .content-column ul li,
#content-block-18 .content-column ol li {
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  /* #content-block-18 .content-column:not(:last-child) {
    border-right: 1px solid #e9ecef;
    padding-right: 1.5rem;
  }
  #content-block-18 .content-column:not(:first-child) {
     padding-left: 1.5rem;
  } */
  #content-block-18 .content-column {
    margin-bottom: 0;
  }
}



#our-services-13 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fff;
}
#our-services-13 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-13 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#our-services-13 .featured-service-row {
  margin-bottom: 4rem;
}
#our-services-13 .featured-service-row:last-child {
  margin-bottom: 1rem;
}
#our-services-13 .service-image-col img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#our-services-13 .service-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#our-services-13 .service-text-col h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-primary, #0d6efd);
}
#our-services-13 .service-text-col .description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#our-services-13 .key-features-list {
  list-style: none;
  padding-left: 0;
}
#our-services-13 .key-features-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #6c757d;
}
#our-services-13 .key-features-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--bs-success, #198754);
  font-size: 0.9em;
}
@media (max-width: 767.98px) {
  #our-services-13 {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  #our-services-13 .featured-service-row {
    margin-bottom: 3rem;
  }
  #our-services-13 .service-image-col {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  #our-services-13 .service-text-col {
    text-align: center;
  }
  #our-services-13 .service-text-col h3 {
    font-size: 1.6rem;
  }
  #our-services-13 .key-features-list {
    display: inline-block;
    text-align: left;
  }
}



/* === 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;
}




#team-4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#team-4 .content-wrapper {
  display: flex;
  align-items: center;
}
#team-4 .text-column {
  padding-right: 3rem;
}
#team-4 .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}
#team-4 .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
}
#team-4 .text-content p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#team-4 .text-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
#team-4 .text-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  color: #495057;
}
#team-4 .text-content ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
}
#team-4 .text-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--bs-primary);
  font-size: 0.9em;
}
#team-4 .cta-button .btn {
  padding: 0.75rem 1.8rem;
  font-weight: 500;
}
#team-4 .image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #team-4 .text-column {
    padding-right: 1.5rem;
  }
  #team-4 .section-title {
    font-size: 2.1rem;
  }
}
@media (max-width: 767.98px) {
  #team-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-4 .content-wrapper {
    flex-direction: column;
  }
  #team-4 .image-column {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  #team-4 .image-column img {
    max-width: 90%;
  }
  #team-4 .text-column {
    padding-right: 0;
  }
}



#awards-19 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#awards-19 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-19 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-19 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#awards-19 .scope-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#awards-19 .scope-card:hover {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
  border-color: var(--bs-primary);
}
#awards-19 .scope-icon {
  flex-shrink: 0;
  margin-right: 1.5rem;
}
#awards-19 .scope-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-top: 5px;
}
#awards-19 .scope-content {
  flex-grow: 1;
}
#awards-19 .scope-area-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#awards-19 .scope-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
#awards-19 .scope-details {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0;
}
#awards-19 .scope-visual {
  margin-top: 1rem;
  text-align: left;
}
#awards-19 .scope-visual img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  #awards-19 .scope-card {
    padding: 1.5rem;
  }
  #awards-19 .scope-area-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  #awards-19 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-19 .section-title {
    font-size: 2.1rem;
  }
  #awards-19 .scope-card {
    flex-direction: column;
    text-align: center;
  }
  #awards-19 .scope-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  #awards-19 .scope-visual {
    text-align: center;
  }
}



#testimonials-1 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#testimonials-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#testimonials-1 .carousel {
  position: relative;
}
#testimonials-1 .carousel-item {
  text-align: center;
  padding: 30px;
}
#testimonials-1 .testimonial-message {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
}
#testimonials-1 .client-info {
  font-size: 0.95rem;
  color: #777;
}
#testimonials-1 .client-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}



#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%; }
    */
}


