* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #07111f;
  color: white;
  overflow-x: hidden;
}

/* ===== BACKGROUND GLOW ===== */

.glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.glow1 {
  background: #00e5ff44;
  top: -100px;
  left: -100px;
  animation: moveGlow1 8s infinite alternate;
}

.glow2 {
  background: #ff00cc44;
  bottom: -100px;
  right: -100px;
  animation: moveGlow2 8s infinite alternate;
}

@keyframes moveGlow1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(60px);
  }
}

@keyframes moveGlow2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-60px);
  }
}

/* ===== HEADER ===== */

header {
  width: 100%;
  padding: 5px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(12px);
}

.logo {
  width: 100px;
  height: 90px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #00e5ff;
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 8% 80px;
  gap: 50px;
}

.hero-content {
  flex: 1;
  animation: fadeUp 1s ease;
}

.tag {
  background: #00e5ff22;
  color: #00e5ff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-content p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: #00e5ff;
  color: black;
}

.secondary-btn {
  border: 2px solid #00e5ff;
  color: white;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}

.hero-image {
  flex: 1;
  animation: float 4s infinite ease-in-out;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 40px #00e5ff22;
}

.hero-contact-us,
.hero-whatsapp-us {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ===== COMMON SECTION ===== */

section {
  padding: 100px 8%;
}

section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* ===== CONTACT ===== */

.contact-text {
  text-align: center;
  color: #cfcfcf;
  margin-bottom: 50px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #111d30;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid transparent;
  font-size: 25px;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #00e5ff;
  box-shadow: 0 0 30px #00e5ff22;
}

.contact-card p {
  margin-top: 15px;
  color: #00e5ff;
}

.contact-btn-container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}

/* ===== STATS ===== */

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-box {
  background: #111d30;
  padding: 40px;
  text-align: center;
  border-radius: 25px;
  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h3 {
  font-size: 42px;
  color: #00e5ff;
  margin-bottom: 10px;
}

/* ===== SPORTS GRID ===== */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.sports-box {
  background: #111d30;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  transition: 0.4s;
}

.sports-box:hover {
  transform: scale(1.05);
  background: #00e5ff;
  color: black;
}

/* ===== BLOG ===== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #111d30;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #00e5ff22;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-top: 10px;
}

/* ===== FOOTER ===== */

/* footer {
  padding: 30px;
  text-align: center;
  background: #050b14;
  color: #aaa;
} */

/* =========================
   FOOTER
========================= */

.footer {
  position: relative;
  margin-top: 80px;
  padding: 60px 8% 20px;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 15px;
}

.footer-about p {
  color: #b9b9b9;
  font-size: 14px;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-contact p {
  color: #b9b9b9;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ffcc00;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 80px 8%;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 0, 0.4);
}

.faq-item h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #c7c7c7;
  line-height: 1.8;
}

/* =========================
   WHATSUP FLOATER BUTTON
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
    display: block;
  }
}

/* ===== SCROLL ANIMATION ===== */

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 950px) {
  .hero,
  .about-section {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  section h2 {
    font-size: 34px;
  }
}
