
#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;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f8f9fa;
}
.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 === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  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); }
}

/* === Card & Reveal Effect === */
.post-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}
.post-card .card-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.post-card .card-image,
.post-card .card-content {
  position: absolute;
  width: 100%;
  left: 0;
  transition: transform 0.5s ease, clip-path 0.5s ease;
}
.post-card .card-image {
  top: 0;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.post-card .card-image img {
  display: block;
  width: 100%;
  height: auto;
}
.post-card .card-content {
  bottom: -100%;
  padding: 1rem;
  background: #fff;
  box-sizing: border-box;
}
.post-card .card-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.post-card .card-content .btn-readmore {
  font-size: 0.9rem;
}

/* Hover state */
.post-card:hover .card-image {
  transform: translateY(-40%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 80%);
}
.post-card:hover .card-content {
  transform: translateY(-100%);
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}




#offers-9 {
  padding: 80px 0;
  background-color: #2c3e50;
  color: #ecf0f1;
}
#offers-9 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #fff;
}
#offers-9 .tournament-info-col {
  padding-right: 2rem;
}
#offers-9 .tournament-title {
  font-weight: 700;
  font-size: 2rem;
  color: #f1c40f;
  margin-bottom: 0.75rem;
}
#offers-9 .prize-pool-info {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
#offers-9 .prize-pool-info strong {
  opacity: 0.8;
  font-weight: 500;
  margin-right: 5px;
}
#offers-9 .rules-summary {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #bdc3c7;
}
#offers-9 .end-date {
  font-size: 0.9rem;
  color: #95a5a6;
  margin-bottom: 2rem;
  font-style: italic;
}
#offers-9 .end-date strong {
  opacity: 0.8;
  font-style: normal;
  margin-right: 5px;
}
#offers-9 .btn-join-tournament {
  padding: 0.8rem 2rem;
  font-weight: 600;
  background-color: #f1c40f;
  border: none;
  color: #2c3e50;
}
#offers-9 .btn-join-tournament:hover {
  background-color: #f39c12;
}
#offers-9 .leaderboard-col {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
}
#offers-9 .leaderboard-title {
  font-weight: 600;
  font-size: 1.3rem;
  color: #ecf0f1;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.8rem;
}
#offers-9 .leaderboard-list {
  list-style: none;
  padding-left: 0;
}
#offers-9 .leaderboard-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}
#offers-9 .leaderboard-list li:nth-child(1) {
  background-color: rgba(241, 196, 15, 0.2);
}
#offers-9 .leaderboard-list li:nth-child(2) {
  background-color: rgba(192, 192, 192, 0.15);
}
#offers-9 .leaderboard-list li:nth-child(3) {
  background-color: rgba(205, 127, 50, 0.15);
}
#offers-9 .player-rank {
  font-weight: 700;
  font-size: 1.1rem;
  width: 30px;
  text-align: center;
  margin-right: 10px;
}
#offers-9 .player-rank i {
  font-size: 0.8em;
  vertical-align: middle;
}
#offers-9 .player-name {
  flex-grow: 1;
  font-weight: 500;
  margin-right: 10px;
}
#offers-9 .player-score {
  font-weight: 600;
  font-size: 0.95rem;
  color: #bdc3c7;
}
#offers-9 .player-score .score-label {
  opacity: 0.7;
  margin-right: 3px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  #offers-9 .tournament-info-col {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  #offers-9 .btn-join-tournament {
    margin: 0 auto;
    display: table;
  }
  #offers-9 .leaderboard-col {
    padding: 1.5rem;
  }
}



#features-6 {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}
#features-6 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-6 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-6 .feature-item {
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 20px;
}
#features-6 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-6 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-6 .feature-counter {
  font-size: 36px;
  font-weight: bold;
  color: #17a2b8;
  margin-bottom: 10px;
}
#features-6 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-6 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#cta-banner-20 {
  padding: 4.5rem 1rem;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
  color: #212529;
}
#cta-banner-20 .container {
  max-width: 800px;
}
#cta-banner-20 .cta-title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
#cta-banner-20 .cta-text p {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#cta-banner-20 .cta-text p:last-child {
  margin-bottom: 2.5rem;
}
#cta-banner-20 .cta-button .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
}
#cta-banner-20 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-20 {
    padding: 3.5rem 1rem;
  }
  #cta-banner-20 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-20 .cta-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  #cta-banner-20 .cta-text p:last-child {
    margin-bottom: 2rem;
  }
}



#testimonials-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#testimonials-10 .nav-tabs .nav-link {
  font-size: 1rem;
  padding: 10px 15px;
}
#testimonials-10 .tab-content {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
#testimonials-10 .testimonial-tab {
  text-align: center;
}
#testimonials-10 .testimonial-tab img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-10 .testimonial-tab p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-10 .client-info {
  font-size: 0.95rem;
  color: #777;
}



#why-choose-us-24 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f8f9fa;
}
#why-choose-us-24 .section-title-container {
  margin-bottom: 40px;
}
#why-choose-us-24 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#why-choose-us-24 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#why-choose-us-24 .process-overview-main-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 30px;
  text-align: center;
}
#why-choose-us-24 .process-step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  border-left: 5px solid #0d6efd;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#why-choose-us-24 .process-step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
#why-choose-us-24 .step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#why-choose-us-24 .step-number-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  font-weight: 700;
}
#why-choose-us-24 .step-header .fas,
#why-choose-us-24 .step-header .far,
#why-choose-us-24 .step-header .fab {
  line-height: inherit;
}
#why-choose-us-24 .step-title-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #343a40;
}
#why-choose-us-24 .step-description-text {
  font-size: 0.95rem;
  color: #555e68;
  line-height: 1.7;
  margin-bottom: 10px;
}
#why-choose-us-24 .customer-involvement-note {
  font-size: 0.85rem;
  color: #0d6efd;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed #e0e0e0;
  margin-top: 10px;
}
#why-choose-us-24 .customer-involvement-note i {
  margin-right: 5px;
}
#why-choose-us-24 .final-transparency-message {
  margin-top: 30px;
  text-align: center;
  font-size: 1.05rem;
  color: #495057;
  font-weight: 500;
  padding: 15px;
  background-color: #e9f5ff;
  border-radius: 8px;
}



#faq-17 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-17 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2rem;
}
#faq-17 .faq-search-bar {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#faq-17 .faq-search-bar .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 50rem;
  border-color: #ced4da;
}
#faq-17 .faq-search-bar .btn-search {
  border-radius: 50rem;
  padding: 0.8rem 1.5rem;
}
#faq-17 .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#faq-17 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-17 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-17 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}
#faq-17 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
#faq-17 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-17 .accordion-body p:last-child {
  margin-bottom: 0;
}



.service-block-17 {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--svc17-text-color, #ffffff);
  overflow: hidden;
  z-index: 1;
}
.service-block-17::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--svc17-overlay-color, rgba(0, 0, 0, 0.5));
  z-index: -1;
}
.service-block-17 .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.service-block-17 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.service-block-17 p {
  font-size: 1.1rem;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.service-block-17 .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .service-block-17 {
    padding: 4rem 0;
    background-attachment: scroll;
  }
  .service-block-17 h2 {
    font-size: 2rem;
  }
  .service-block-17 p {
    font-size: 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;
  }
}



#call-to-action-23 {
  padding: 5rem 0;
  overflow: hidden;
}
.cta-form-content h2 {
  font-weight: 700;
  color: #312e81;
}
.cta-form-content p {
  color: #4f46e5;
  font-size: 1.1rem;
}
.cta-form-wrapper .input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}
.cta-form-wrapper .form-control {
  min-height: 3.5rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #e0e7ff;
}
.cta-form-wrapper .form-control:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}
.cta-form-wrapper .btn {
  min-height: 3.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cta-form-wrapper .btn:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}
@media (max-width: 991.98px) {
  .cta-form-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}


