@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary:#0f172a;
  --accent:#38bdf8;
  --light:#f8fafc;
}

/* RESET */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body {
  color:#333;
  line-height:1.7;
}

/* UTILITIES */
.container {
  max-width:1150px;
  margin:auto;
  padding:0 20px;
}

section {
  padding:80px 0;
}

p {
  margin-top:10px;
}

/* HEADER */
.header {
  background:var(--primary);
  position:sticky;
  top:0;
  z-index:100;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.logo {
  color:#fff;
  font-weight:600;
  font-size:1.4rem;
}

/* NAV */
.menu a {
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

.menu a:hover,
.menu a.active {
  color:var(--accent);
}

/* MOBILE NAV */
#menu-toggle {
  display:none;
}

.menu-icon {
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

/* HERO */
.hero {
  background:linear-gradient(135deg,#0f172a,#000000);
  color:#fff;
  padding:120px 20px;
}

.hero-content {
  max-width:650px;
}

.hero h1 {
  font-size:2.6rem;
}

.hero p {
  margin:15px 0 30px;
}

/* BUTTON */
.btn {
  background:var(--accent);
  padding:14px 30px;
  border-radius:30px;
  color:#000;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:transform .3s;
}

.btn:hover {
  transform:translateY(-3px);
}

/* GRID & CARDS */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card {
  background:#fff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ABOUT */
.about {
  background:var(--light);
}

.two-col {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  align-items:center;
}

/* .image-box {
  background:#e5e7eb;
  height:500px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#666;
}*/

/* CTA */
.cta {
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  text-align:center;
}

/* FOOTER */
.footer {
  background:var(--primary);
  color:#fff;
  text-align:center;
  padding:20px;
}

/* WHATSAPP */
.whatsapp {
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25d366;
  padding:14px 16px 10px;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
  transition:transform .3s;
  z-index:200;
}

.whatsapp:hover {
  transform:scale(1.1);
}

/* SCROLL ANIMATIONS */
.animate {
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.animate.show {
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .menu-icon {
    display:block;
  }

  .menu {
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:var(--primary);
    display:none;
    flex-direction:column;
    text-align:center;
  }

  .menu a {
    padding:15px;
    margin:0;
  }

  #menu-toggle:checked ~ .menu {
    display:flex;
  }

  .hero h1 {
    font-size:2rem;
  }
}
/* FAQ SECTION */
.faq h2 {
  margin-bottom:30px;
  text-align:center;
}

.faq-item {
  background:#fff;
  border-radius:10px;
  margin-bottom:15px;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
  overflow:hidden;
}

.faq-item input {
  display:none;
}

.faq-item label {
  display:block;
  padding:18px 20px;
  cursor:pointer;
  font-weight:500;
  position:relative;
}

.faq-item label::after {
  content:"+";
  position:absolute;
  right:20px;
  font-size:22px;
  transition:transform .3s;
}

.faq-item input:checked + label::after {
  transform:rotate(45deg);
}

.faq-content {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-content p {
  padding:0 20px 20px;
}

.faq-item input:checked ~ .faq-content {
  max-height:200px;
}

/* FEATURES WITH IMAGE */
.features-with-image {
  background:#fff;
}

.features-with-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

/* FEATURE LIST */
.feature-list {
  list-style:none;
  margin-top:20px;
}

.feature-list li {
  padding:12px 0 12px 32px;
  position:relative;
  font-size:1rem;
}

.feature-list li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:12px;
  color:var(--accent);
  font-weight:700;
  font-size:1.1rem;
}


/* ===== SERVICE COMPARISON ===== */
.service-compare h2 {
  text-align:center;
  margin-bottom:30px;
}

/* DESKTOP TABLE */
.compare-table {
  width:100%;
  border-collapse:collapse;
}

.compare-table th {
  background:linear-gradient(135deg,#020617,#0f172a);
  color:#fff;
  padding:16px;
}

.compare-table td {
  padding:16px;
  text-align:center;
  border-bottom:1px solid #e5e7eb;
}

.compare-table td:first-child {
  text-align:left;
  font-weight:500;
}

/* MOBILE CARDS */
.compare-mobile {
  display:none;
}

.plan-card {
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  padding:25px;
  margin-bottom:20px;
}

.plan-card h3 {
  margin-bottom:15px;
  text-align:center;
}

.plan-card ul {
  list-style:none;
}

.plan-card li {
  padding:10px 0;
  border-bottom:1px solid #e5e7eb;
}

.plan-card li:last-child {
  border-bottom:none;
}

/* HIGHLIGHT */
.plan-card.highlight {
  border:2px solid var(--accent);
}

/* RESPONSIVE SWITCH */
@media(max-width:768px){
  .compare-desktop {
    display:none;
  }

  .compare-mobile {
    display:block;
  }
}


/* Api SECTION */
.section {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    max-width: 1100px;
    margin: auto;
}



.section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* MATCH ROW */
.bet-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.bet-row:last-child {
    border-bottom: none;
}

/* LEFT CONTENT */
.left h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.series {
    font-size: 13px;
    color: #555;
    margin-bottom: 3px;
}

.score {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 3px;
}

.status {
    font-size: 12px;
    color: #777;
}

/* BADGES */
.badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    text-align: center;
}

.live {
    background: #16a34a;
    color: #fff;
    animation: blink 1s infinite;
}

.completed {
    background: #e5e7eb;
    color: #333;
}

/* BLINK */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: .4; }
    100% { opacity: 1; }
}

/* TIME */
.time {
    font-size: 13px;
    color: #444;
    white-space: nowrap;
}

/* ICONS */
.icon {
    font-size: 18px;
    cursor: pointer;
}

.icon.bm {
    background: #eee;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* BET BUTTON */
.bet-btn {
    background: #b3001b;
    color: #fff;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
}

.bet-btn:hover {
    background: #900017;
}

/* --------------------
   📱 MOBILE UI
-------------------- */
@media (max-width: 768px) {

    .bet-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .time,
    .icon {
        display: none;
    }

    .badge {
        justify-self: end;
    }

    .bet-btn {
        grid-column: span 2;
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {

    .left h4 {
        font-size: 14px;
    }

    .score {
        font-size: 13px;
    }

    .bet-btn {
        font-size: 14px;
        padding: 11px;
    }
}
.logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* IMAGE BOX SECTION */
.image-box-section {
  padding:80px 0;
  background:#f8fafc;
}


/* GRID */
.image-box-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* IMAGE BOX (ANCHOR) */
.img-box {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-decoration:none;
  color:#fff;
}

/* IMAGE */
.img-box img {
  width:100%;
  height:180px;
  object-fit:cover;
  transition:transform .4s ease;
}

/* OVERLAY CONTENT */
.img-content {
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
}

.img-content h3 {
  margin-bottom:5px;
  font-size:1.2rem;
}

.img-content p {
  font-size:.9rem;
  opacity:.9;
}

/* HOVER EFFECT */
.img-box:hover img {
  transform:scale(1.08);
}
.hero-split {
  padding:120px 0;
}

.hero-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  align-items:center;
}

.hero-image img {
  width:100%;
}

/* STEPS SECTION */
.steps-section {
  padding:80px 0;
  background:#f8fafc;
}

.section-title {
  text-align:center;
  font-size:1.8rem;
  margin-bottom:10px;
}

.section-subtitle {
  text-align:center;
  color:#6b7280;
  margin-bottom:40px;
}

/* GRID */
.steps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* STEP CARD */
.step-card {
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  position:relative;
  text-align:left;
}

/* STEP NUMBER */
.step-number {
  width:42px;
  height:42px;
  background:#0f172a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:15px;
}

/* TEXT */
.step-card h3 {
  margin-bottom:10px;
  font-size:1.1rem;
}

.step-card p {
  font-size:.95rem;
  color:#374151;
}
.image-box img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
}
.btn-primary {
  background-color: #29b6f6;
  border-color: #29b6f6;
}

.btn-primary:hover {
  background-color: #039be5;
  border-color: #039be5;
}

.home-blog {
  background: #ffffff;
}

/* Blog Row */
.blog-row {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}

.blog-row:last-child {
  border-bottom: none;
}

/* Thumbnail */
.blog-thumb {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-row:hover img {
  transform: scale(1.06);
}

/* Content */
.blog-content {
  flex: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin: 6px 0 8px;
  line-height: 1.4;
}

.blog-content h3 a {
  color: #212529;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #0d6efd;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

/* Read Link */
.read-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
}

.read-link:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-row {
    flex-direction: column;
  }

  .blog-thumb {
    width: 100%;
    height: 190px;
  }
}

/* Neon Button – Reddy Anna (Customizable) */
.neon-btn {
  --neon-color: #ff0000;      /* 🔥 CHANGE COLOR HERE */
  --border-size: 8px;         /* 🔥 CHANGE ANIMATION WIDTH */
  --speed: 1.2s;              /* 🔥 CHANGE SPEED */

  position: relative;
  display: inline-block;
  padding: 14px 30px;
  color: var(--neon-color);
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.4s;
  letter-spacing: 2px;
  overflow: hidden;
  font-weight: 600;
  border-radius: 8px;
}

/* Hover effect */
.neon-btn:hover {
  background: var(--neon-color);
  color: #050801;
  box-shadow:
    0 0 8px var(--neon-color),
    0 0 25px var(--neon-color),
    0 0 60px var(--neon-color);
}

/* Animated borders */
.neon-btn span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, var(--neon-color));
}

/* Top */
.neon-btn span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: var(--border-size);
  animation: neon1 var(--speed) linear infinite;
}

/* Right */
.neon-btn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: var(--border-size);
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--neon-color));
  animation: neon2 var(--speed) linear infinite;
  animation-delay: 0.25s;
}

/* Bottom */
.neon-btn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: var(--border-size);
  background: linear-gradient(270deg, transparent, var(--neon-color));
  animation: neon3 var(--speed) linear infinite;
  animation-delay: 0.5s;
}

/* Left */
.neon-btn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: var(--border-size);
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--neon-color));
  animation: neon4 var(--speed) linear infinite;
  animation-delay: 0.75s;
}

/* Animations */
@keyframes neon1 {
  0% { left: -100%; }
  50%,100% { left: 100%; }
}
@keyframes neon2 {
  0% { top: -100%; }
  50%,100% { top: 100%; }
}
@keyframes neon3 {
  0% { right: -100%; }
  50%,100% { right: 100%; }
}
@keyframes neon4 {
  0% { bottom: -100%; }
  50%,100% { bottom: 100%; }
}

/* Center container */
.btn-center {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* Filled version */
.neon-btn.filled {
  background: rgb(0, 0, 0);
  color: #ffffff;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 600px) {
  .neon-btn {
    padding: 12px 22px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
.blog-strip {
  padding: 70px 0;
  background: #0b0f19;
  color: #fff;
}

.blog-strip-head {
  margin-bottom: 25px;
}

.blog-strip-head h2 {
  font-weight: 800;
}

.blog-strip-head p {
  color: #b5b9c7;
}

/* Horizontal strip */
.blog-strip-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.blog-strip-row::-webkit-scrollbar {
  height: 6px;
}

.blog-strip-row::-webkit-scrollbar-thumb {
  background: #2c3252;
  border-radius: 10px;
}

/* Cards */
.strip-card {
  position: relative;
  min-width: 340px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #111;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.strip-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.strip-overlay {
  position: absolute;
  inset: 0;
  padding: 26px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.3),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.strip-date {
  font-size: 13px;
  color: #9aa0ff;
  margin-bottom: 6px;
}

.strip-overlay h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.strip-overlay p {
  font-size: .9rem;
  color: #d0d3ff;
  margin-bottom: 10px;
}

.strip-read {
  font-weight: 600;
  color: #6ddcff;
}

/* CTA */
.strip-cta {
  text-align: center;
  margin-top: 35px;
}

/* Mobile tuning */
@media(max-width: 600px) {
  .strip-card {
    min-width: 85%;
    height: 380px;
  }
}
.site-footer {
  background: #0b0f1a;
  color: #cfd3dc;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd3dc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #03e9f4;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #25d366;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  margin-right: 12px;
  font-size: 18px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9aa0b3;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-social {
    justify-content: left;
  }
}
.no-match {
  text-align: center;
  color: #888;
  padding: 20px;
  font-size: 15px;
}
