@font-face {
  font-family: 'Poppins';
  src: url('https://www.tigsportsbook.com/wp-content/themes/tigsportsbook/assets/fonts/poppins/poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('https://www.tigsportsbook.com/wp-content/themes/tigsportsbook/assets/fonts/poppins/poppins-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('https://www.tigsportsbook.com/wp-content/themes/tigsportsbook/assets/fonts/poppins/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('https://www.tigsportsbook.com/wp-content/themes/tigsportsbook/assets/fonts/poppins/poppins-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('https://www.tigsportsbook.com/wp-content/themes/tigsportsbook/assets/fonts/poppins/poppins-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.pd{
    padding: 10px;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 999;
  transition: 0.3s;
}

.skip-link:focus {
  top: 10px;
}
/* Padding Bottom */
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }

/* Padding Top */
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }

/* Margin Bottom */
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Margin Top */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }

/* Container */
.container {
  max-width: 1380px;
  margin: auto;
  padding: 0 20px;
}
/* HEADER BASE */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, #010846, #000da4);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.page-id-10 .header{
    background: rgba(10, 20, 60, 0.6);
}

/* Sticky state */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #010846, #000da4);
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    /* animation */
    animation: slideDown 0.4s ease;
}

/* Smooth slide effect */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FLEX */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  max-height: 50px;
    width: 200px;
    display: block;
    height: auto;
}
/* MENU */
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border: 1.5px solid #ffffff00;
}
.menu a:hover {
  border: 1.5px solid #fff;
  border-radius: 6px;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.icon-close {
  display: none;
}

/* When active */
.menu-toggle.active .icon-open {
  display: none;
}

.menu-toggle.active .icon-close {
    display: inline;
    z-index: 999999;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
}

.dropdown-icon::before {
    content: "▼"; /* dropdown arrow */
    font-size: 12px;
    margin-left: 6px;
    margin-top: -16px;
    display: inline-block;
    transition: 0.3s ease;
    line-height: 1;
    top: 0px; /* fine-tune vertical alignment */
    position: relative;
}
.menu-item.has-mega:hover .dropdown-icon::before {
    transform: rotate(180deg);
}
@media (max-width: 992px) {
    .nav.active {
        left: 0;
        padding-top: 15px;
    }
}
/* Show toggle on mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
}

/* CTA */
.btn {
  border: 1.5px solid #fff;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}
.btn:hover{
    background: #062aa6;
    border: 1.5px solid #062aa6;
}
/* ===================== */
/* MEGA MENU */
/* ===================== */

.has-mega {
  position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    width: max-content;
    background: #0b1d5c;
    padding: 20px;
    display: none;
    margin-top: 10px;
}
.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 20px;
}
.has-mega:hover .mega-menu {
  display: block;
}

.mega-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.mega-col h4 {
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0px;
}

.mega-col a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 15px;
    text-decoration: none;
    padding: 0;
}
.mega-col a:hover {
    border: 1.5px solid #ffffff00;
}

/* ===================== */
/* MOBILE */
/* ===================== */

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #020c2b;
    transition: 0.3s;
    padding-top: 80px;
  }

  .nav.active {
    right: 0;
  }

  .menu {
    flex-direction: column;
    padding: 20px;
  }

  .menu li {
    margin-bottom: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .btn {
    display: none;
  }

  /* Disable hover mega on mobile */
  .mega-menu {
    position: static;
    display: none;
  }

  .has-mega.active .mega-menu {
    display: block;
  }

  .mega-container {
    flex-direction: column;
  }
}

/* FOOTER BASE */
.footer {
  background: #020c2b;
  color: #cbd5e1;
  font-size: 14px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

/* COLUMN */
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

/* DESCRIPTION */
.footer-desc {
  margin: 15px 0 20px;
  line-height: 1.6;
  max-width: 350px;
  color: #fff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col .footer-heading{
    font-size:18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
}

/* SOCIAL */
.footer-social span {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  border-radius: 4px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 15px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}



/*HOME PAGE*/

.home-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 40px;
  padding: 60px 0;
}

/* HERO SECTION */
/*.hero {
    background: url(https://tigsportsbook.com/wp-content/themes/tigsportsbook/assets/images/top-banner.webp);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* FLEX */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.hero-content {
  max-width: 520px;
}

/* TITLE */
.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    font-style: italic;
    margin-top: 0;
}

/* SUBTITLE */
.hero-subtitle {
  color: #ffd500;
  font-weight: 600;
  margin-bottom: 15px;
}

/* DESC */
.hero-desc {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 40px;
}

/* IMAGE */
.hero-image img {
  max-width: 520px;
  width: 100%;
}

/* ================= */
/* STATS */
/* ================= */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  width: 100px;
}

.hero-stats .stat-box-title {
  margin: 0;
  font-size: 20px;
  color:#fff;
  font-weight: 600;
}

.stat-box p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #fff;
}

/*HOME Section*/
.sportsbook-section {
  padding: 60px 20px;
  background: #ffffff;
}

.wrapper {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.image-box {
  flex: 1;
  text-align: center;
}

.image-box img {
  width: 100%;
  max-width: 350px;
}

/* CONTENT */
.content-box {
  flex: 1;
}

.tagline {
    color: #3b4cca;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 20px;
}

.title {
    font-size: 35px;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.2;
    margin-top: 0;
    font-weight: 700;
}

.highlight {
  color: #6a2ccf;
  margin-bottom: 20px;
  font-weight:600;
}

.text {
  color: #000;
  line-height: 1.7;
  font-size: 15px;
}


/* TOP STATS */
.stats-section{
  background: #f2f2f2;
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-box1 {
  flex: 1;
  padding: 50px 20px;
  position: relative;
  text-align: center;
}

/* vertical divider */
.stat-box1:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: #ccc;
}

.stat-box1 .stat-number {
  font-size: 42px;
  font-weight: 700;
  color:#000;
  margin: 10px;
}

.stat-box1 .stat-text {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

/* BOTTOM BANNER */
.stats-banner {
  background: linear-gradient(135deg, #0b1a8f, #1b2cff);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* optional glow lines effect */
.stats-banner::before,
.stats-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 4px solid rgba(255,255,255,0.1);
  transform: rotate(45deg);
}

.stats-banner::before {
  top: -100px;
  left: -100px;
}

.stats-banner::after {
  bottom: -100px;
  right: -100px;
}

.banner-content {
  max-width: 800px;
  margin: auto;
}

.banner-content h3 {
  font-size: 30px;
  margin: 15px 0;
  font-weight: 600;
}

.banner-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 1;
  color: #fff;
}


/*FAQ Section*/
.faq-section {
  padding: 50px 20px;
  background: #f3f3f3;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1b1f3b;
  margin-top: 0;
}

/* ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ARROW ICON */
.faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* ACTIVE ARROW */
.faq-item.active .faq-question::after {
  transform: rotate(-135deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
  }
  /*----------- */
  .stats-banner {
    padding: 40px 20px;
}
.stat-box1 {
    flex: 1;
    padding: 22px 20px;
    position: relative;
    text-align: center;
}
.ts-cap-section {
    background: #f5f6fa;
    padding: 50px 20px 50px;
}
.why-section {
    padding: 50px 20px;
    background: #ffffff;
}
.testimonial-section {
    background: #0c1a8c;
    padding: 40px 20px;
    color: #fff;
}
.faq-question::after {
  content: "";
  width: 15px;
  height: 12px;
}
}


.why-section {
  padding: 60px 20px;
  background: #ffffff;
}

.container1 {
  max-width: 1000px;
  margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 45px;
    margin-top: 0;
}

/* FEATURE LIST */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #e2eefe7d;
  padding: 18px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-item .feature-item-title {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 700;
}

.feature-item p {
    font-size: 13px;
    color: #000;
    margin: 6px 0px;
}

/* PROCESS */
.process-section {
  margin-top: 60px;
  text-align: center;
}

.process-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  color: #000;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* BOX */
.process-box {
  background: #e2eefe7d;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  position: relative;
}

/* NUMBER */
.process-box span {
    width: 60px;
    height: 60px;
    background: #030972;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 800;
}

.process-box p {
  font-size: 16px;
  color: #000;
}


.testimonial-section {
  background: #0c1a8c;
  padding: 70px 20px;
  color: #fff;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.testimonial-left {
  flex: 1;
}

.quote {
  font-size: 80px;
  opacity: 0.5;
  display: none;
}

.testimonial-left h2 {
  font-size: 45px;
  margin-bottom: 10px;
  text-decoration: uppercase;
}

.testimonial-left p {
  font-size: 16px;
}

/* SLIDER */
.testimonial-slider {
  flex: 2;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  margin-right: 20px;
  position: relative;
}

/* speech bubble tail */
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.testimonial-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* STARS */
.stars {
  color: gold;
  margin-bottom: 15px;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user h4 {
  font-size: 14px;
  margin: 0;
}

.user span {
  font-size: 12px;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .slides {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    min-width: 260px;
  }
}

.pricing-section {
  padding: 30px 20px;
  text-align: center;
}

.pricing-section h2 {
  font-size: 35px;
  margin-bottom: 40px;
  color: #1a1a2e;
  font-weight: 700;
  margin-top: 0px;
}
.ts-list {
    padding: 20px 10px;
}
/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  border: 2px solid #4a5cff;
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #4a5cff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #4a5cff, #2e3de0);
  color: #fff;
}

/* Highlight card */

.card.highlight .badge {
  background: #fff;
  color: #2e3de0;
}

.card:hover .desc {
  color: #e0e4ff;
}

/* Tag */
.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* TEXT */
.card .price-title {
  font-size: 16px;
  margin-bottom: 12px;
  color:#000;
  font-weight: 600;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background: #4a5cff;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.desc {
    font-size: 13px;
    color: #000000;
    margin: 6px 0px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 22px;
  }
}

/* =========================
   CAPABILITIES SECTION
========================= */
.capabilities {
  background: #f4f6fb;
  padding: 30px 20px;
}

.cap-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.cap-right{
    position: sticky;
    top: 80px; /* distance from top when sticky */
    height: fit-content;
    text-align: center;
}
.cap-left h4 {
  color: #777;
  font-weight: 500;
}

.cap-item p {
    font-size: 14px;
    color: #000;
    margin-top: 0;
}

.cap-right img {
    max-width: 100%;
}

.cap-left h2 {
    font-size: 35px;
    color: #1a1a2e;
    margin-bottom: 25px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 40px;
}
.cap-item-title{
    font-size: 20px !important;
    color: #000 !important;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 5px;
}
.cap-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.cap-item .dot img{
    width: 50px;
}
/*.dot {
  width: 16px;
  height: 16px;
  background: #3c4cff;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}*/



/* =========================
   BENEFITS SECTION
========================= */
.benefits {
    background: linear-gradient(135deg, #0f1c8c, #0a1460);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.benefits h2 {
    font-size: 35px;
    margin-bottom: 20px;
    margin-top:0;
    font-weight: 700;
    line-height: 40px;
}
.ts-benefits-desc{
    margin-bottom: 40px; 
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

/* circle icon */
.circle img{
    width: 60px;
}

.benefit-card .benefit-card-desc {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  color: #fff;
}

/* WRAPPER */
.ts-hero-section {
  background: #ffffff;
  padding: 100px 0 0;
}

/* CONTAINER */
.ts-hero-container {
  width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.ts-hero-subtitle {
  color: #2e4cff;
  font-weight: 700;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 10px;
}

.ts-hero-title {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

.ts-hero-desc {
  color: #000;
  font-size: 15px;
  max-width: 450px;
  margin-bottom: 25px;
  margin-top:0px;
}

/* BUTTON */
.ts-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4a5cff, #1f2ed6);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(74, 92, 255, 0.3);
  /*margin-top: 35px;*/
}

.ts-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 92, 255, 0.4);
}

/* RIGHT IMAGE */
.ts-hero-right img {
  max-width: 500px;
  width: 100%;
  transition: 0.4s;
}

.ts-hero-right img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* FEATURE BAR */
.ts-hero-feature-bar {
  background: #e9edf5;
  margin-top: 60px;
  padding: 20px 0;
}

.ts-hero-feature-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ts-hero-feature-item {
  border-right: 2px solid #d6d6d6;
  /*padding-right: 15px;*/
  text-align: center;
}

.ts-hero-feature-item:last-child {
  border-right: none;
}

.ts-hero-feature-item span {
  color: #2e4cff;
  font-size: 25px;
}

.ts-hero-feature-item p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

/* SECTION */
.ts-solutions-section {
    background-image: url('https://tigsportsbook.com/wp-content/themes/tigsportsbook/assets/images/our-sportsbook-solutions-for-operators-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background: radial-gradient(circle at top right, #0b1a5a, #050d2c); */
    padding: 60px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle curved lines effect */
.ts-solutions-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,0,100,0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  top: -200px;
  right: -200px;
}

/* CONTAINER */
.ts-solutions-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* TITLE */
.ts-solutions-title {
  text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 45px;
    margin-top: 0;
}
.ts-solutions-para{
    text-align: center;
    margin-bottom: 50px;
}

/* GRID */
.ts-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ts-solutions-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.ts-sol-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
  position: relative;
}

/* HOVER */
.ts-sol-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #4a5cff;
  box-shadow: 0 10px 30px rgba(74,92,255,0.4);
  background: linear-gradient(135deg, #3a4eff, #1a2bd8);
}

/* ACTIVE CARD (CENTER ONE) */

/* ICON */
.ts-sol-icon {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TITLE */
.ts-sol-card-title {
  font-size: 18px!important;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
}

.ts-sol-card p {
  font-size: 14px;
}

/* LIST */
.ts-sol-card ul {
  list-style: none;
  padding: 0;
}

.ts-sol-card ul li {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 14px;
    line-height: 26px;
}

/* arrow bullets */
.ts-sol-card ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #4a5cff;
    font-size: 25px;
    top: -3px;
}
.ts-sol-card:hover ul li::before {
  color: #fff;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .ts-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ts-solutions-grid {
    grid-template-columns: 1fr;
  }

  .ts-solutions-title {
    font-size: 30px;
    line-height:35px;
  }
 p.ts-hero-desc {
    margin-bottom: 30px;

}
.ts-solutions-grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}
h2.ts-solutions-title {
    margin-bottom: 20px;
}
.page-id-19 .ts-cap-section {
    background: #f5f6fa;
    padding: 0px 20px 60px;
}
}
.page-id-19 .ts-cap-section {
    background: rgb(245, 246, 250);
    padding: 0px 20px 60px 20px;
}
.page-id-19 .ts-pay-section {
    background: #f5f6fa;
    padding: 20px 20px 60px 20px;
}

/* SECTION */
.ts-cap-section {
    background: #f5f6fa;
    padding: 60px 20px 60px;
}

/* CONTAINER */
.ts-cap-container {
    max-width: 1200px;
    margin: auto;
}

/* TOP */
.ts-cap-top {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
    grid-template-columns: 1fr 2fr;
}

/* IMAGE */
.ts-cap-left img {
    max-width: 420px;
    width: 100%;
}

/* RIGHT */
.ts-cap-right h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 15px;
  margin-top: 0;
}

.ts-cap-right h2 span {
  color: #2e4cff;
  font-weight: 700;
}

.ts-cap-desc {
  font-size: 18px !important;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}
.ts-cap-right .ts-cap-desc {
    font-size: 14px !important;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
}

/* LIST ITEMS */
.ts-cap-item {
  gap: 15px;
  margin-bottom: 20px;
}

.ts-cap-item span {
  width: 16px;
  height: 16px;
  background: #2e4cff;
  border-radius: 50%;
  margin-top: 6px;
}

.ts-cap-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.ts-cap-item-title {
  font-size: 15px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
}

.ts-cap-item p {
  font-size: 14px;
  color: #000;
}

/* TITLE */
.ts-cap-title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
  color: #1a1a2e;
  font-weight:700;
  margin-top:0;
}

/* GRID */
.ts-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.ts-cap-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #dbe2ff;
  transition: 0.3s;
}

.ts-cap-card span {
  color: #2e4cff;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 0px;
}

.ts-cap-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.ts-cap-card .ts-cap-desc{
    font-size: 15px;
    margin:8px 0px; 
    font-weight: 700;
    color:#000;
}

.ts-cap-card p {
  font-size: 15px;
  color: #000;
}

/* HOVER */
.ts-cap-card:hover {
  transform: translateY(-6px);
  border-color: #4a5cff;
  box-shadow: 0 10px 25px rgba(74,92,255,0.2);
  background: #050d2c;
  color: #fff;
}

.ts-cap-card:hover p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ts-cap-top {
    flex-direction: column;
    text-align: center;
  }

  .ts-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-cap-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .ts-cap-grid {
    grid-template-columns: 1fr;
  }

  .ts-cap-right h2 {
    font-size: 24px;
  }
}

/* SECTION */
.ts-pay-section {
  background: #f5f6fa;
  padding: 60px 20px;
}
.page-id-15 .ts-pay-section {
    background: #f5f6fa;
    padding: 30px 20px 60px 20px;
}
.page-id-17  .ts-pay-section {
    background: #f5f6fa;
    padding: 30px 20px 60px 20px;
}

/* CONTAINER */
.ts-pay-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.ts-pay-title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 45px;
    margin-top: 0;
    color: #1a1a2e;
}

/* GRID */
.ts-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ts-pay-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.ts-pay-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #cfe0ff;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

/* ICON BOX */
.ts-pay-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2e4cff, #030972);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

/* WHITE ICON for active */
.ts-pay-icon.white {
  background: #fff;
  color: #2e4cff;
}

/* TEXT */
.ts-pay-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.ts-pay-card .ts-pay-card-head{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color:#000;
}
.ts-pay-card p {
  font-size: 12.5px;
  color: #000;
  line-height: 1.5;
}

/* ACTIVE CARD */

/* HOVER */
.ts-pay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #2e4cff, #030972);
  color: #fff;
}
.ts-pay-card:hover p {
  color: #fff;
}
.ts-pay-card:hover .ts-pay-icon {
  width: 38px;
  height: 38px;
  background: #fff;
}  
/* RESPONSIVE */
@media (max-width: 992px) {
  .ts-pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ts-pay-grid {
    grid-template-columns: 1fr;
  }

  .ts-pay-title {
    font-size: 22px;
    line-height: 30px;
  }
}

/* Section */
.comparison-section {
  padding: 60px 20px;
  background: #f5f6f8;
  text-align: center;
}


/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table thead {
  background-color: #e5e7eb;
}

.comparison-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #000;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #e5e7eb;
  color: #000;
}

/* First column */
.comparison-table .label {
  font-weight: 600;
  color: #000;
  width: 30%;
}

/* Remove last border */
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* =========================
   📱 MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  h2 {
    font-size: 20px;
  }

  .comparison-section {
    padding: 40px 0px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
  }

  .comparison-table tr {
    background: #f9fafb;
    margin-bottom: 15px;
    border-radius: 6px;
    padding: 12px;
  }

  .comparison-table td {
    border: none;
    padding: 8px 10px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
  }

  .comparison-table .label {
    background: #e5e7eb;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 8px;
    width: 100%;
  }
}

/* CONTACT PAGE */
.contact-sec {
    background: url(https://tigsportsbook.com/wp-content/themes/tigsportsbook/assets/images/Contact-Us.webp);
    color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-section {
  padding: 50px 20px;
  color: #fff;
}

.contact-sec .ts-hero-title, .contact-sec .ts-hero-desc{
    color:#fff;
}

/* CONTAINER */
.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.contact-title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 50px;
  color: #000;
  margin-top: 0;
}

.contact-card-title{
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
/* ================= INFO CARDS ================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card {
  background: #071c34;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.contact-card:hover {
  background: linear-gradient(135deg, #4a5cff, #1f2ed6);
  color: #fff;
  transform: translateY(-5px);
}

.contact-card .icon img{
  width:25%;
}

/* ================= MAIN SECTION ================= */

.contact-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* FORM */
.contact-form {
    background: #071c34;
    padding: 25px;
    border-radius: 10px;
    width: 900px;
    margin: 0 auto;
}

.contact-form h3 {
  margin-bottom: 20px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: #f9f9f9;
  color: #000;
}

.contact-form textarea {
  margin-top: 15px;
  height: 120px;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px 20px;
  background: #fda40b;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #fff;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  border: none;
}

.rg-section {
  background: #f3f3f3;
  padding: 60px 20px;
}

.rg-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

/* LEFT */
.rg-left {
  flex: 1;
}

.rg-left h2 {
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 50px;
    margin-top:0;
}

.rg-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* RIGHT IMAGE */
.rg-right {
  flex: 1;
  text-align: center;
}

.rg-right img {
  max-width: 300px;
  width: 100%;
}

/* ========================= */
/* CTA SECTION */
/* ========================= */
.cta-section {
  padding: 60px 20px;
  text-align: center;

  /* Gradient background */
  background: linear-gradient(135deg, #cfd5e6, #8fa0d1);
  position: relative;
  overflow: hidden;
}

/* OPTIONAL circle effect */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.cta-section::before {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -80px;
}

/* CONTENT */
.cta-container {
  position: relative;
  z-index: 2;
}

.cta-container h2 {
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 50px;
    margin-top: 0px;
}

.cta-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #000;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #2a2fff, #6a00ff);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/*ABOUT US*/
.about-sec {
    background: url(https://tigsportsbook.com/wp-content/themes/tigsportsbook/assets/images/About-Us.webp);
    color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-sec .ts-hero-title{
    color: #fff;
}
.about-sec .ts-hero-desc{
    color: #fff;
}
/* ===================== */
/* OVERLAY */
/* ===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
}

/* ACTIVE STATE */
.popup-overlay.active {
  display: flex;
}

/* ===================== */
/* POPUP BOX */
/* ===================== */
.popup-box {
  background: #071c34;
  color: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: popupFade 0.3s ease;
  text-align: center;
}

/* ===================== */
/* CLOSE BUTTON */
/* ===================== */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close-popup:hover {
  color: #fda40b;
}
div.wpforms-container-full .wpforms-form button{
    width:100%;
}
/* ===================== */
/* TITLE */
/* ===================== */
.popup-box h3 {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 900;
  margin-top: 0;
}

/* ===================== */
/* WPFORMS STYLING */
/* ===================== */
.popup-box .wpforms-container input,
.popup-box .wpforms-container textarea {
  width: 100% !important;
  padding: 12px !important;
  border-radius: 6px !important;
  border: none !important;
  background: #f9f9f9 !important;
  margin-bottom: 15px !important;
  color: #000;
}

.popup-box .wpforms-container label {
  color: #fff !important;
}

.popup-box .wpforms-submit {
  width: 100%;
  background: #fda40b !important;
  color: #000 !important;
  border: none !important;
  padding: 12px !important;
  border-radius: 6px !important;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box .wpforms-submit:hover {
  background: #fff !important;
}

.popup-box .wpforms-container-full .wpforms-form .wpforms-field {
    padding: 0px 0;
    clear: both;
}


/*SERVICE PAGE CSS*/
.ts-hero-feature-item span img {
    width: 45px;
}
.ts-sol-icon img {
    width: 55px;
}
.ts-cap-item p img {
    width: 50px;
    margin-top: 8px;
}
.ts-cap-card span img {
    width: 50px;
    margin-bottom: 0;
}
.ts-cap-card:hover span img {
    border-radius: 50%;
    background: #fff;
    padding: 10px;
}
.ts-pay-icon img {
    width: 40px;
}
.dott img {
    width: 50px;
    margin-top: 20px;
}
.circlee img {
    width: 50px;
}



/*RESPONSIVE*/



/* ===================== */
/* ANIMATION */
/* ===================== */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 600px) {

  .popup-box {
    padding: 20px;
    border-radius: 10px;
  }
  
  .popup-box h3 {
    font-size: 18px;
  }
  
  .rg-left h2,
  .cta-container h2 {
    font-size: 26px;
    line-height: 30px;
  }
  
  .cta-section {
    padding: 60px 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

    .benefit-grid {
    grid-template-columns: 1fr;
  }

  .cap-left h2 {
    font-size: 24px;
  }
  .ts-hero-title {
    font-size: 34px;
  }

  .ts-hero-feature-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {

  .rg-container {
    display: block;
    text-align: center;
  }

  .rg-left p {
    max-width: 100%;
  }

  .rg-right img {
    margin-top: 20px;
  }
  
  .contact-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-main {
    grid-template-columns: 1fr;
  }
  
  .cap-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cap-item {
    justify-content: center;
    text-align: left;
  }

  .stats-wrapper {
    flex-direction: column;
  }

  .stat-box:not(:last-child)::after {
    display: none;
  }

  .stat-box {
    border-bottom: 1px solid #ddd;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
  
  .wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-hero-container {
    flex-direction: column;
    text-align: center;
    width: auto;
  }

  .ts-hero-desc {
    margin: auto;
  }

  .ts-hero-feature-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-hero-feature-item {
    border-right: none;
    justify-content: center;
  }
  .contact-form {
    background: #071c34;
    padding: 25px;
    border-radius: 10px;
    width: auto;
    margin: inherit;
}
}

@media (max-width: 576px) {
  .stat-box h2 {
    font-size: 32px;
  }

  .banner-content h3 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 14px;
  }
  
  .sportsbook-section {
    padding: 50px 15px;
  }

  .title {
    font-size: 30px;
  }

  .text {
    font-size: 14px;
  }
  .hero-title {
    font-size: 34px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 0 60px;
  }
  
  .section-title {
    font-size: 22px;
    line-height:30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 481px) and (max-width: 767px) {
    .stat-box {
        width: auto;
        text-align: center;
    }
    .testimonial-card{
        margin-right: 10px;
        margin-left: 10px;
    }
    .ts-cap-top {
        display: block;
    }
    .ts-pay-grid1 {
        display: block;
    }
    .ts-pay-card {
        margin-bottom: 10px;
    }
    .ts-cap-desc {
        font-size: 16px !important;
        font-weight: 500;
    }
    .ts-cap-title {
        font-size: 30px;
        line-height: 35px;
        font-weight: 600;
    }
    .ts-cap-item p {
      font-size: 16px;
      color: #000;
    }
    .mega-menu {
        width: fit-content;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .stat-box {
        width: auto;
        text-align: center;
    }
    .testimonial-card{
        margin-right: 10px;
        margin-left: 10px;
    }
    .ts-cap-top {
        display: block;
    }
    .ts-pay-grid1 {
        display: block;
    }
    .ts-pay-card {
        margin-bottom: 10px;
    }
    .ts-cap-desc {
        font-size: 16px !important;
        font-weight: 500;
    }
    .ts-cap-title {
        font-size: 30px;
        line-height: 35px;
        font-weight: 600;
    }
    .ts-cap-item p {
      font-size: 16px;
      color: #000;
    }
    .mega-menu {
        width: fit-content;
    }
}

/*-------------*/

.sportsbook-section{
background-image: url('https://tigsportsbook.com/wp-content/themes/tigsportsbook/assets/images/bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
h2.title {
    color: #000;
}
.page-id-15 .ts-cap-desc {
    color: #000000;
    margin-bottom: 30px;
    font-size:16px!important;
    font-weight: 500;
}

/*------------*/