/* =========================================
   GLOBAL RESET + BETTER BROWSER SUPPORT
========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;

  /* Better font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

/* =========================================
   HEADER
========================================= */

.header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  background: transparent;
  box-shadow: none;

  z-index: 1000;
}

.top-bar {
  background: rgba(255, 255, 255, 0.12);

  font-size: 13px;
  padding: 10px 0;
  color: #111827;

  /* Safari support */
  -webkit-backdrop-filter: brightness(1.1);

  /* Modern browsers */
  backdrop-filter: brightness(1.1);
}

.nav-links a {
  position: relative;
  display: block;

  padding: 30px 0;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.main-header {
  position: relative;

  margin: 15px 37px;

  background: rgba(255, 255, 255, 0.562);

  border-radius: 50px;
  border: none;

  /* Safari */
  -webkit-backdrop-filter: blur(5px) brightness(1.1);

  /* Modern */
  backdrop-filter: blur(5px) brightness(1.1);
}

/* Fallback if backdrop-filter unsupported */

@supports not (
  (-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))
) {
  .main-header,
  .top-bar,
  .hero-section-inner,
  .brand-card {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* =========================================
   MOBILE HEADER
========================================= */

@media screen and (max-width: 768px) {
  .header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
  }

  .main-header {
    margin: 0;

    border-radius: 0;

    background: #ffffff;

    -webkit-backdrop-filter: blur(5px) brightness(1.1);
    backdrop-filter: blur(5px) brightness(1.1);
  }
  .top-bar {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  }
  .nav-links {
    padding:  25px;
    top: 69px;
  }
  .nav-links.active {
    
        left: 0;
        top: 69px;
    

  }
  .nav-links li a {
    color: #0c0c0c;
  }
}

/* =========================================
   MAIN
========================================= */

main {
  position: relative;

  width: 100%;
  overflow: hidden;
}

/* =========================================
   BACKGROUND EFFECTS
========================================= */

main::before,
main::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  opacity: 0.5;

  z-index: 0;

  pointer-events: none;

  /* Better support */
  filter: blur(120px);
  -webkit-filter: blur(120px);
}

main::before {
  top: -150px;
  left: -120px;

  background: #3b82f6;
}

main::after {
  top: 300px;
  right: -120px;

  background: #8b5cf6;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;
  z-index: 2;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 120px 20px 80px;

  text-align: center;
}

.hero-section::before {
  content: "GLOBAL SPORTS SUPPLIER";

  display: inline-block;

  margin-bottom: 22px;
  padding: 10px 18px;

  border: 1px solid rgba(37, 170, 225, 0.25);
  border-radius: 999px;

  background: #ffffff;

  color: #25aae1;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-section-inner {
  width: 100%;
  max-width: 850px;

  padding: 80px 50px;

  border-radius: 32px;

  background: rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(255, 255, 255, 0.4);

  /* Safari */
  -webkit-backdrop-filter: blur(18px);

  /* Modern */
  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);

  animation: fadeUp 1s ease both;
}

/* =========================================
   HERO HEADING
========================================= */

.hero-section h1 {
  margin: 0 0 22px;

  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  font-weight: 800;

  letter-spacing: -2px;

  background: linear-gradient(135deg, #7ed9ff, #25aae1, #a746ab);

  /* Standard */
  background-clip: text;

  /* Safari/Chrome */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Fallback */
  color: #25aae1;
}

/* =========================================
   HERO TEXT
========================================= */

.hero-section p {
  max-width: 650px;

  margin: 0 auto;

  color: #4b5563;

  font-size: 1.15rem;
  line-height: 1.8;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 40px;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 30px;

  border-radius: 16px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* PRIMARY */

.btn-primary {
  background: linear-gradient(135deg, #25aae1, #8b5cf6);

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.4);
}

/* SECONDARY */

.btn-secondary {
  background: #ffffff;

  color: #111827;

  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-4px);

  background: #f9fafb;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================
   FB MANIA GLOBAL PARTNERS
   Premium 2026 Design
========================================================== */

.fbm-global-partners {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: 140px 20px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(37, 170, 225, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(167, 70, 171, 0.08),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );
}

/* ==========================================================
   FLOATING GLOW BLOBS
========================================================== */

.fbm-global-partners::before,
.fbm-global-partners::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  z-index: -2;
}

.fbm-global-partners::before {
  width: 600px;
  height: 600px;

  top: -250px;
  left: -200px;

  background: rgba(37, 170, 225, 0.12);

  animation: fbmBlobOne 18s ease-in-out infinite;
}

.fbm-global-partners::after {
  width: 700px;
  height: 700px;

  right: -250px;
  bottom: -300px;

  background: rgba(167, 70, 171, 0.10);

  animation: fbmBlobTwo 24s ease-in-out infinite;
}

/* ==========================================================
   NOISE TEXTURE
========================================================== */

.fbm-global-partners__noise {
  position: absolute;
  inset: 0;

  opacity: 0.018;

  pointer-events: none;

  background-image:
    radial-gradient(circle, #000 1px, transparent 1px);

  background-size: 14px 14px;

  z-index: -1;
}

/* ==========================================================
   CONTENT
========================================================== */

.fbm-global-partners__content {
  position: relative;
  z-index: 20;

  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

.fbm-global-partners__badge {
  display: inline-flex;

  align-items: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(37, 170, 225, 0.15);

  backdrop-filter: blur(20px);

  color: #25aae1;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  box-shadow:
    0 10px 30px rgba(37, 170, 225, 0.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.fbm-global-partners__content h2 {
  margin: 28px 0 20px;

  font-size: clamp(2.5rem, 6vw, 5rem);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -3px;

  color: #111827;

  text-shadow:
    0 0 30px rgba(37,170,225,.05);
}

.fbm-global-partners__content h2 span {
  background:
    linear-gradient(
      135deg,
      #7ed9ff,
      #25aae1,
      #a746ab
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.fbm-global-partners__content p {
  max-width: 700px;

  margin: 0 auto;

  color: #6b7280;

  font-size: 1.1rem;

  line-height: 1.9;
}

/* ==========================================================
   FLOATING LOGOS
========================================================== */

.fbm-global-partners__background {
  position: absolute;
  inset: 0;

  overflow: hidden;

  pointer-events: none;
}

.fbm-global-partners__logo {
  position: absolute;

  width: 55px;
  height: 55px;

  object-fit: contain;

  opacity: 0.035;

  filter:
    grayscale(100%)
    blur(0.8px);

  animation: fbmFloat 16s ease-in-out infinite;
}

/* positions */

.logo-1 {
  top: 12%;
  left: 7%;
}

.logo-2 {
  top: 22%;
  right: 8%;
  animation-delay: -2s;
}

.logo-3 {
  top: 58%;
  left: 12%;
  animation-delay: -4s;
}

.logo-4 {
  top: 72%;
  right: 14%;
  animation-delay: -1s;
}

.logo-5 {
  top: 40%;
  left: 48%;
  width: 75px;
  height: 75px;
  animation-delay: -3s;
}

.logo-6 {
  top: 80%;
  left: 62%;
  animation-delay: -5s;
}

/* hover */

.fbm-global-partners:hover
.fbm-global-partners__logo {
  opacity: 0.08;

  filter:
    grayscale(100%)
    blur(0);

  transition: all .8s ease;
}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fbmFloat {
  0% {
    transform:
      translateY(0)
      rotate(0deg);
  }

  50% {
    transform:
      translateY(-22px)
      rotate(5deg);
  }

  100% {
    transform:
      translateY(0)
      rotate(0deg);
  }
}

@keyframes fbmBlobOne {
  50% {
    transform:
      translate(90px, 50px)
      scale(1.15);
  }
}

@keyframes fbmBlobTwo {
  50% {
    transform:
      translate(-90px, -60px)
      scale(1.2);
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

  .fbm-global-partners {
    padding: 100px 24px;
  }

  .fbm-global-partners__content h2 {
    letter-spacing: -1px;
  }

  .fbm-global-partners__logo {
    width: 40px;
    height: 40px;
  }
}


/* ===== PRODUCTS & CRAFTSMANSHIP SECTION ===== */

.craft-section {
  padding: 110px 0;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  position: relative;
  overflow: hidden;
}

.craft-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(80px);
}

.craft-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(37, 170, 225, 0.25);
  border-radius: 999px;

  background: #ffffff;

  color: #25aae1;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.craft-header h2 {
  font-size: 52px;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 22px;
  font-weight: 800;
}

.craft-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.craft-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 320px;
  background: #111827;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.45s ease;
}

.craft-card:hover {
  transform: translateY(-10px);
}

.craft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.craft-card:hover img {
  transform: scale(1.08);
}

.craft-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 35px;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.92), transparent);
  color: white;
}

.craft-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #92c5ff;
  text-shadow: 0 0px 2px rgb(0, 0, 0);
}

.craft-overlay h3 {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.craft-overlay p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.large-card {
  min-height: 700px;
}

.small-card {
  min-height: 335px;
}

.experience-card {
  background: linear-gradient(135deg, #7ed9ff, #25aae1, #a746ab);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.experience-content {
  color: white;
  text-align: center;
}

.experience-content h2 {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 800;
}

.experience-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 35px;
}

.experience-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.experience-stats h4 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
}

.experience-stats span {
  font-size: 14px;
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    min-height: 600px;
  }
}

@media (max-width: 768px) {

  .craft-section {
    padding: 80px 0;
  }

  .craft-header h2 {
    font-size: 38px;
  }

  .craft-header p {
    font-size: 16px;
  }

  .small-grid {
    grid-template-columns: 1fr;
  }

  .large-card,
  .small-card,
  .experience-card {
    min-height: 320px;
  }

  .craft-overlay {
    padding: 24px;
  }

  .craft-overlay h3 {
    font-size: 22px;
  }

  .experience-content h2 {
    font-size: 58px;
  }

  .experience-stats {
    flex-direction: column;
    gap: 18px;
  }
}