
#hero-20 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 6rem 0 5rem 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}
#hero-20 .hero-overlay-20 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-20 .container {
  position: relative;
  z-index: 2;
}
#hero-20 .hero-content-wrapper-20 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
#hero-20 .hero-title-20 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-20 .hero-subtitle-20 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-20 .hero-cta-button-20 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
}
#hero-20 .hero-cta-button-20:hover {
  transform: translateY(-2px);
}
#hero-20 .hero-logos-wrapper-20 {
  margin-top: 3.5rem;
}
#hero-20 .logos-title-20 {
  font-size: 0.9rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#hero-20 .logos-list-20 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
#hero-20 .hero-logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  transition: filter 0.3s ease;
}
#hero-20 .hero-logo-item a:hover img,
#hero-20 .hero-logo-item img:hover {
  filter: none;
}
@media (max-width: 767.98px) {
  #hero-20 {
    min-height: 70vh;
    padding: 4rem 0 3rem 0;
  }
  #hero-20 .hero-content-wrapper-20 {
    margin-bottom: 2.5rem;
  }
  #hero-20 .hero-title-20 {
    font-size: 2.3rem;
  }
  #hero-20 .hero-subtitle-20 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }
  #hero-20 .hero-logos-wrapper-20 {
    margin-top: 3rem;
  }
  #hero-20 .logos-list-20 {
    gap: 1.5rem;
  }
  #hero-20 .hero-logo-item img {
    max-height: 30px;
  }
}



/* Section background & animated gradient */
#category-posts-28 {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pattern overlay */
#category-posts-28 .pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 4px, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Container above pattern */
#category-posts-28 .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
#category-posts-28 .section-header {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}
#category-posts-28 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
}
#category-posts-28 .section-subtitle {
  font-size: 1rem;
  opacity: .9;
  margin-top: .5rem;
}

/* Grid */
#category-posts-28 .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

/* Clickable wrapper */
#category-posts-28 .post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card base */
#category-posts-28 .post-card {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}
#category-posts-28 .post-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Media */
#category-posts-28 .post-card .card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Overlay */
#category-posts-28 .post-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity .3s ease;
}
#category-posts-28 .post-card:hover .card-overlay {
  opacity: 1;
}

/* Overlay content slides up */
#category-posts-28 .overlay-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform .3s ease;
  color: #fff;
}
#category-posts-28 .post-card:hover .overlay-content {
  transform: translateY(0);
}

/* Overlay text */
#category-posts-28 .overlay-content h3 {
  font-size: 1.125rem;
  margin: 0 0 .5rem;
}
#category-posts-28 .overlay-content p {
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-28 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: .5rem 1rem;
  border-radius: .5rem;
  transition: background .3s ease, transform .3s ease;
}
#category-posts-28 .btn-readmore i {
  margin-left: .5rem;
  transition: transform .3s ease;
}
#category-posts-28 .btn-readmore:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
#category-posts-28 .btn-readmore:hover i {
  transform: translateX(4px);
}

/* Pagination & Load More */
#category-posts-28 .pagination-wrapper,
#category-posts-28 .load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}




#features-5 {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
#features-5 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-5 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
#features-5 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#features-5 .tab-content {
  margin-top: 30px;
}
#features-5 .feature-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}
#features-5 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-5 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-5 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#about-us-26 {
  padding: 80px 0;
  background-color: #f4f4f4;
  color: #333;
}
#about-us-26 .container > h2.section-title,
#about-us-26 .container > p.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
#about-us-26 .our-story {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
#about-us-26 .our-story h3 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
}
#about-us-26 .our-story p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#about-us-26 .our-story img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
#about-us-26 .our-values {
  background-color: #e9ecef;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}
#about-us-26 .our-values h3 {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-values .value-item {
  text-align: center;
  margin-bottom: 30px;
}
#about-us-26 .our-values .value-item i {
  font-size: 2.5rem;
  color: #28a745;
  margin-bottom: 15px;
}
#about-us-26 .our-values .value-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
#about-us-26 .our-values .value-item p {
  font-size: 0.9rem;
  color: #555;
}
#about-us-26 .our-team {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}
#about-us-26 .our-team h3 {
  font-size: 2rem;
  color: #dc3545;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-team .team-member {
  text-align: center;
  margin-bottom: 30px;
}
#about-us-26 .our-team .team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
#about-us-26 .our-team .team-member h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}
#about-us-26 .our-team .team-member p {
  font-size: 0.9rem;
  color: #777;
}
#about-us-26 .our-achievements {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}
#about-us-26 .our-achievements h3 {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 30px;
  text-align: center;
}
#about-us-26 .our-achievements .achievement-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#about-us-26 .our-achievements .achievement-item img {
  width: 80px;
  height: auto;
  margin-right: 20px;
  border-radius: 4px;
}
#about-us-26 .our-achievements .achievement-item p {
  font-size: 1rem;
  color: #555;
}
@media (min-width: 768px) {
  #about-us-26 .our-values .row > div {
    margin-bottom: 0;
  }
  #about-us-26 .our-team .row > div {
    margin-bottom: 0;
  }
}



#faq-13 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-13 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #212529;
}
#faq-13 .faq-grid-card {
  border: none;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.8rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#faq-13 .faq-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}
#faq-13 .faq-card-icon {
  font-size: 1.8rem;
  color: #0d6efd;
  margin-bottom: 1rem;
  display: inline-block;
}
#faq-13 .faq-card-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.8rem;
}
#faq-13 .faq-card-answer {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}



#our-services-26 {
  padding: 80px 0;
  background-color: #f8f9fa;
}
#our-services-26 .services-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}
#our-services-26 .service-comparison-table {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
#our-services-26 .service-comparison-table thead th {
  background-color: #e9ecef;
  text-align: center;
  padding: 1.2rem 1rem;
  vertical-align: middle;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom-width: 2px;
  border-color: #ced4da !important;
  color: #343a40;
}
#our-services-26 .service-comparison-table thead th:first-child {
  background-color: #f8f9fa;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}
#our-services-26 .service-comparison-table .plan-price,
#our-services-26 .service-comparison-table .plan-price-period {
  display: none;
}
#our-services-26 .service-comparison-table tbody th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  vertical-align: middle;
  background-color: #f8f9fa;
  border-right: 1px solid #dee2e6;
}
#our-services-26 .service-comparison-table tbody td {
  text-align: center;
  padding: 1rem;
  vertical-align: middle;
  font-size: 0.95rem;
  color: #495057;
}
#our-services-26 .service-comparison-table .plan-header.highlighted {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0a58ca !important;
}
#our-services-26 .service-comparison-table .plan-cell.highlighted {
  background-color: #e7f1ff;
}
#our-services-26 .service-comparison-table .plan-cta-row td {
  padding: 1.5rem 1rem;
}
#our-services-26 .service-comparison-table .btn-select-plan {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
}



#testimonials-18 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-18 .container {
  max-width: 960px;
}
#testimonials-18 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-18 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-18 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container {
  position: relative;
  margin: 0 auto;
}
#testimonials-18 .testimonial-timeline-container::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--timeline-color, #0d6efd);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#testimonials-18 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 30px;
}
#testimonials-18 .timeline-item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: #ffffff;
  border: 4px solid var(--timeline-color, #0d6efd);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
#testimonials-18 .timeline-item.timeline-left {
  left: 0;
  padding-right: 60px;
}
#testimonials-18 .timeline-item.timeline-right {
  left: 50%;
  padding-left: 60px;
}
#testimonials-18 .timeline-item.timeline-right::after {
  left: -9px;
}
#testimonials-18 .timeline-item.timeline-left .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
}
#testimonials-18 .timeline-item.timeline-right .timeline-content::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 28px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}
#testimonials-18 .timeline-content {
  padding: 20px 25px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
#testimonials-18 .timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--timeline-color, #0d6efd);
  margin-bottom: 10px;
  display: block;
}
#testimonials-18 .timeline-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}
#testimonials-18 .timeline-client {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#testimonials-18 .timeline-client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #ffffff;
}
#testimonials-18 .timeline-client-info .name {
  font-weight: 600;
  color: #343a40;
  display: block;
  font-size: 0.95rem;
}
#testimonials-18 .timeline-client-info .position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
@media screen and (max-width: 767px) {
  #testimonials-18 .testimonial-timeline-container::before {
    left: 31px;
    margin-left: 0;
  }
  #testimonials-18 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
  #testimonials-18 .timeline-item.timeline-left,
  #testimonials-18 .timeline-item.timeline-right {
    left: 0%;
  }
  #testimonials-18 .timeline-item::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-right::after {
    left: 22px;
  }
  #testimonials-18 .timeline-item.timeline-left .timeline-content::before,
  #testimonials-18 .timeline-item.timeline-right .timeline-content::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  #testimonials-18 .section-header h2 {
    font-size: 2rem;
  }
}



#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-19 {
  padding: 80px 0;
  background-color: #f1f3f5;
}
#offers-19 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#offers-19 .offer-image-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease;
}
#offers-19 .offer-image-card:hover {
  transform: scale(1.03);
}
#offers-19 .offer-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}
#offers-19 .offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#offers-19 .offer-image-card:hover .offer-card-image img {
  transform: scale(1.1);
}
#offers-19 .offer-image-card .card-body {
  padding: 1.8rem;
}
#offers-19 .offer-image-card .card-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #212529;
  margin-bottom: 0.75rem;
}
#offers-19 .offer-image-card .card-text {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
#offers-19 .offer-details-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
  min-height: 30px;
}
#offers-19 .offer-details-inline .offer-code-part span {
  font-weight: 700;
  color: #fff;
  background-color: #6f42c1;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 5px;
}
#offers-19 .offer-details-inline .offer-expiry-part {
  font-size: 0.85rem;
  color: #6c757d;
}
#offers-19 .offer-details-inline .offer-expiry-part i {
  margin-right: 5px;
}
#offers-19 .btn-img-card-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
}



#game-section-5 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
}
#game-section-5 .section-hero {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#game-section-5 .story-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
}
@media (max-width: 576px) {
  #game-section-5 .story-content {
    padding: 20px;
  }
}



#why-choose-us-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
}
#why-choose-us-10 .header {
  text-align: center;
  margin-bottom: 40px;
}
#why-choose-us-10 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#why-choose-us-10 .header p {
  font-size: 1.1rem;
  color: #777;
}
#why-choose-us-10 .icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
#why-choose-us-10 .icon-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#why-choose-us-10 .icon-card:hover {
  transform: translateY(-5px);
}
#why-choose-us-10 .icon-card i {
  font-size: 2.5rem;
  color: #dc3545;
  margin-bottom: 10px;
}
#why-choose-us-10 .icon-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#why-choose-us-10 .icon-card p {
  font-size: 0.95rem;
  color: #555;
}


