@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* <weight>: Use a value from 300 to 800
<uniquifier>: Use a unique and descriptive class name

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
 */

/* ===========================================================
   THEME VARIABLES
   =========================================================== */
:root {
  --primary: #3a86ff;
  --secondary: #8338ec;
  --accent: #ff006e;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-hero: linear-gradient(
    270deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
}

/* ===========================================================
   GLOBAL STYLES
   =========================================================== */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
.main-content {
    overflow: hidden;
}
.text-blue {
  color: var(--primary);
  font-size: 24px;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

.a.nav-link .focus {
  color: white;
}

.gradient-hero {
  background: var(--gradient-hero);
}

.button-gradient-1 {
  background: linear-gradient(
    270deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 10px;
  font-size: 18px;
  border: 2px solid #81b5ab;
}

.button-gradient-1:hover {
  background: linear-gradient(
    270deg,
    hsla(155, 74%, 43%, 1) 0%,
    hsla(210, 82%, 44%, 1) 100%
  );
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 10px;
  font-size: 18px;
  border: 2px solid #81b5ab;
}

.button-3 {
  padding: 15px 20px;
  background: transparent;
  max-width: 350px;
  margin: 0 auto;
  border: 1px solid black;
  color: black;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.5s ease;
}

.button-3:hover {
  background: linear-gradient(
    270deg,
    hsla(155, 74%, 43%, 1) 0%,
    hsla(210, 82%, 44%, 1) 100%
  );
  border: 1px solid rgb(255, 255, 255);
  color: white;
}

.button-gradient-1-width {
  max-width: 240px;
  margin: 0 auto;
}


button.navbar-toggler:focus {
  box-shadow: none;
}
/* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    } */

/* @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100px;
    }
} */

.gradient-primary {
  background: var(--gradient);
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-sports {
  box-shadow: 0 8px 30px rgba(58, 134, 255, 0.2);
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(58, 134, 255, 0.5);
}

.bg-muted {
  background-color: #f8f9fa;
}

/* ===========================================================
   HEADER / NAVBAR
   =========================================================== */
header {
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #ffffff2b;
}
.pricing-features p{
  margin-bottom: 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

a.nav-link {
  color: white;
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary) !important;
}
.navbar-expand-lg .navbar-nav {
  gap: 40px;
}

/* Basic nav-link styling */
.navbar .nav-link {
  color: #ffffff; /* default color */
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover state */
.navbar .nav-link:hover {
  color: #ffffff !important;
  /* background: linear-gradient(135deg, #0077ff, #00c896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* Active state (Bootstrap adds .active to the link) */
.navbar .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Optional: add underline glow when active or hover */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f5be0b, #f5be0b);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* Header when fixed and scrolled */
header.scrolled {
  backdrop-filter: blur(20px);
  background-color: #1576c6ad !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ===========================================================
   HERO SLIDER (OWL CAROUSEL)
   =========================================================== */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  color: #fff;
}

/* Add your uploaded images here */
.hero-bg-1 {
  background-image: url(../images/banner-image-1.webp);
}

.hero-bg-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url("../images/hero-bg.jpg");
}
.hero-content h2 {
  font-size: 4rem;
  font-weight: 600;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.gradient-text-border h1 {
  background: linear-gradient(
    270deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  border-radius: 12px;
  font-size: 5rem;
  font-weight: 800;
  /* White outline / border */
  -webkit-text-stroke: 1px #81b5ab; /* 🧱 Main white border */
  text-stroke: 1px #81b5ab;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-hero {
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  background: var(--gradient);
}

i.fa-solid.fa-arrow-left {
  color: white;
}

i.fa-solid.fa-arrow-right {
  color: white;
}

button.owl-prev {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  border: 1px solid #ffffff !important;
  background: rgba(255, 255, 255, 0) !important;
}
button.owl-next {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  border: 1px solid #ffffff !important;
  background: rgba(255, 255, 255, 0) !important;
}
.owl-nav .disabled {
  background: linear-gradient(
    270deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  ) !important;
}

/* ---------- Trusted Logos ---------- */
.hero-trusted {
  margin-top: 3rem;
}

.trusted-title {
  color: rgba(218, 218, 218, 0.8);
  font-size: 20px;
  letter-spacing: 1px;
  padding-top: 20px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trusted img {
  max-width: 100%;
  margin: 0 auto;
  width: auto !important;
  margin-bottom: 20px;
}
.trusted-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #8fc9cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trusted-circle:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* ---------- Owl Nav ---------- */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 25px;
  z-index: 3;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

button.owl-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgb(255, 255, 255);
}
.hero-content .owl-nav button:hover {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1);
}

/* ===========================================================
   FLOATING ELEMENTS (OPTIONAL DECOR)
   =========================================================== */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--primary);
}

.floating-element:nth-child(2) {
  bottom: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  top: 50%;
  left: 25%;
  width: 50px;
  height: 50px;
  background: var(--accent);
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===========================================================
   GENERAL SECTIONS
   =========================================================== */
section {
  padding: 60px 0;
}

.section-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* ===========================================================
   ABOUT SECTION
   =========================================================== */
.about-image {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.2;
  border-radius: 20px;
  transform: rotate(5deg);
  z-index: -1;
}

.jb-img {
  position: absolute;
  bottom: 0;
  right: 20px;
}

/* ===============================
   ABOUT IMAGE SECTION
=============================== */

.about-photo-wrapper {
  display: inline-block;
  max-width: 100%;
}

.about-photo {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Make image responsive and slightly rounded */
.about-photo img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* JB circular badge */
.jb-badge {
  position: absolute;
  bottom: -30px;
  right: -70px;
  /* width: 90px; */
  /* height: 90px; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.jb-badge:hover {
  transform: scale(1.05);
}

/* Inner JB logo */
.jb-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.about-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5f2ff;
  opacity: 1;
  border-radius: 20px;
  transform: rotate(5deg);
  z-index: 1;
  width: 100%;
}

/* ===========================================================
   SERVICES / PRICING SECTION
   =========================================================== */
#subscription {
  background: #f2f9ff;
}

.pricing-card {
  position: relative;
  background: #F2F9FF;
  border-radius: 20px;
  transition: all 0.3s ease;
  z-index: 1;
  width: 98%;
  margin: 0 auto;
}

.pricing-card:hover {
  background: #ffffff;
}

/* Gradient Border Layer */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px; /* same as card */
  padding: 2px; /* thickness of gradient border */
  background: linear-gradient(
    356deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Hover Effect */
/* .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */

.pricing-header {
  padding: 50px 20px 20px 20px;
  text-align: center;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-features {
  padding: 0px 20px 50px 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom:20px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.popular-badge {
  background: #f5be0b;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
}
.pricing-card.popular {
  box-shadow: 0 8px 30px rgba(58, 134, 255, 0.2);
  border: 2px solid #f5be0b;
}
.pricing-card.popular::before {
  background: transparent;
}

.gradient-secondary {
  background: rgb(168, 168, 168);
}

.pricing-card.popular .gradient-secondary {
  background: linear-gradient(
    135deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
}

.gradient-secondary:hover {
  background: linear-gradient(
    135deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
}

.feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

i.fas.fa-check.text-white.small {
  font-size: 14px;
}

.button-gradient-2 {
  position: relative;
  background: transparent; /* transparent by default */
  color: rgb(56, 56, 56);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Gradient border layer */
.button-gradient-2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(
    355deg,
    hsla(210, 82%, 44%, 1),
    hsla(155, 74%, 43%, 1)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.3s ease;
}

/* 💡 Gradient background color fill */
.button-gradient-2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    355deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
  opacity: 0; /* hidden initially */
  transition: opacity 0.3s ease;
  z-index: -2;
}

/* Hover: fill background with gradient */
.button-gradient-2:hover::after {
  opacity: 1;
}

.button-gradient-2:hover {
  color: #fff;
  transform: translateY(-2px);
}


.pricing-card-box{
  position: relative;
}

.pricing-card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    opacity: 1;
    border-radius: 20px;
    transform: rotate(2deg);
    z-index:1;
    height: 100%;
    width: 98%;
        transition: all 0.3s ease;
        display: none;
}

.pricing-card-box:hover::before {
    transform: rotate(0deg);
     width: 96%;
     margin: 0 auto;
}

.pricing-card-box:nth-child(2)::before {
    display: none;
}



/* ===========================================================
   COMING SOON SECTION
   =========================================================== */
/* #coming-soon {
  background: #f8fbff;
} */

/* Card Base */

/* Gradient Border Trick */
.gradient-border {
  position: relative;
  z-index: 1;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, #0077ff, #00c896);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Icons */
.coming-soon-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
  padding: 0;
}
.coming-soon-icon img {
  max-width: 80px;
}
.strongss {
  font-weight: 700;
  font-size: 1.6rem;
}

.badge {
  background: #95959500;
  padding: 10px 10px;
  border-radius: 50px;
  border: 1px solid #1770ce;
  color: #1770ce !important;
}

/* Dots for features */
.gradient-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0077ff, #00c896);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(270deg, #0077ff, #00c896);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lock {
  width: 50px;
  height: 50px;
  background: #9595951a;
  padding: 15px;
}

.coming-soon-card {
  position: relative;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

/* Gradient border that always shows */
.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px; /* match main radius */
  padding: 2px; /* thickness of border */
  background: linear-gradient(
    356deg,
    hsla(210, 82%, 44%, 1) 0%,
    hsla(155, 74%, 43%, 1) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1; /* <-- changed from -1 to 1 */
}

/* Optional hover animation */
.coming-soon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===========================================================
     boxess 
   =========================================================== */

.cutting-edge {
  background: #f3fffb;
}

.cutting-edge h3 {
  font-size: 42px;
  font-weight: 700;
}

.cutting-edge-1 {
  background: #f2f9ff;
  margin-bottom: 60px;
}

/* ===========================================================
   TESTIMONIALS SECTION
   =========================================================== */
.sport-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.sport-icon:hover {
  transform: scale(1.05);
  background: var(--gradient-primary) !important;
}

.testimonial-card {
  position: relative;
  border-radius: 15px;
  background: #fff; /* inner background */
  overflow: hidden;
  transition: all 0.3s ease;
}

/* The gradient border effect */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left = 0 */
  border-radius: 15px;
  padding: 2px; /* border thickness */
  background: linear-gradient(290deg, #0077ff, #00c896); /* gradient colors */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; /* prevent blocking content */
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-icon {
  max-width: 80px;
}

.client-icon img {
  width: 100%;
  margin-right: 20px;
}

/* ===========================================================
   CONTACT SECTION
   =========================================================== */
.contact-card {
  border-radius: 15px;
  overflow: hidden;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
}
#contact {
  background: #f3fffb;
}

#contact .section-subtitle {
  width: 65%;
  margin: 0 auto;
}

.cutting-edge-3 {
  position: relative;
  background: white; /* inner background */
  padding: 50px;
  border-radius: 20px; /* rounded corners */
  overflow: hidden;
  z-index: 1;
}

/* gradient border using pseudo-element */
.cutting-edge-3::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left = 0 */
  border-radius: 20px;
  padding: 2px; /* border thickness */
  background: linear-gradient(135deg, #0077ff, #00c896);

  /* masking technique to show only border */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1;
}

.contact-card h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form label {
  font-weight: 500;
  font-size: 18px;
  color: #383838;
}
.contact-form input {
  border-radius: 5px;
  border: 1px solid #dee2e6;
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.contact-form select#service {
  border-radius: 5px;
  border: 1px solid #dee2e6;
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.contact-form textarea {
  border-radius: 5px;
  border: 1px solid #dee2e6;
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.contact-icon 

/* ===========================================================
   FOOTER
   =========================================================== */


.footer {
  background: #1d2530;
  color: white;
  padding: 60px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.footer-links li {
  margin: 15px 0;
  transition: 0.3s ease-in-out;
}
.footer-links li:hover {
  transform: translatey(-2px);
  color: rgb(181, 225, 245);
}

.footer-biver {
  transition: color 0.3s ease;
}
.footer-biver:hover {
  color: rgb(255, 255, 255);
  transform: translatey(-2px);
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  font-size: 22px;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

footer.footer {
  background: #1d2530;
  padding: 80px 0;
}

.footer-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-bottom {
  background: #040e1a;
}

.border-img {
  border-right: 2px dotted #8e8c8c;
  padding: 0px 30px;
}
.footer-bottomp {
  font-size: 18px;
}
/* ===========================================================
   ANIMATIONS
   =========================================================== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(58, 134, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.8);
  }
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}


.new-icon-li ul {
  list-style: none; /* remove default bullets */
  padding-left: 25px; /* leave space for icon */
  margin: 0;
}

.new-icon-li ul li {
  position: relative;
  margin-bottom: 10px !important; /* optional spacing between items */
}

.new-icon-li ul li::before {
  content: "\f0da"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 6 Free"; /* ✅ correct family name */
  font-weight: 900; /* solid style */
  color: #303030;
  font-size: 16px;
  position: absolute;
  left: -20px; /* shift icon into padding space */
  top: 2px;
}
.new-icon-li-2 ul li{
  position: relative;
  margin-bottom: 10px !important;
  padding-left: 10px; /* optional spacing between items */
}
.new-icon-li-2 ul li::before {
  content: "\f0da"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 6 Free"; /* ✅ correct family name */
  font-weight: 900; /* solid style */
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  left: -8px; /* shift icon into padding space */
  top: 3px;
}

.new-icon-li ul li a {
  position: relative;
  margin-bottom: 10px !important; /* optional spacing between items */
}

.new-icon-li ul li a::before {
  content: "\f0da"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 6 Free"; /* ✅ correct family name */
  font-weight: 900; /* solid style */
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  left: -20px; /* shift icon into padding space */
  top: 2px;
}

.sports-grid {
  display: grid;
  gap: 30px 20px; /* spacing between icons */
  justify-content: center;
  text-align: center;
}

/* Default (mobile-first) — 3 items per row */
.sports-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Tablets — 4 items per row */
@media (min-width: 700px) {
  .sports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large screens — all in one line */
@media (min-width: 1199px) {
  .sports-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.sport-item img {
  width: 100px;
  max-width: 100px;
  height: auto;
  transition: transform 0.3s ease;
}

.sport-item img:hover {
  transform: scale(1.06);
}


button.navbar-toggler {
  background: white;
  padding: 10px 10px;
  transition: 0.3s ease-in-out;
}

.navbar-toggler {
  border: none;
  background: transparent;
  width: 50px;
  height: 40px;
  position: relative;
  padding: 0;
}

.navbar-toggler i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Hamburger visible when collapsed */
.navbar-toggler.collapsed .open-icon { opacity: 1; }
.navbar-toggler.collapsed .close-icon { opacity: 0; }

/* Cross visible when open */
.navbar-toggler:not(.collapsed) .open-icon { opacity: 0; }
.navbar-toggler:not(.collapsed) .close-icon { opacity: 1; }




.menu-main-menu-container {
    margin: 0 auto;
}


.wpcf7 form .wpcf7-response-output {
    margin: 3px;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
}

.btn.button-gradient-1.shadow-sports.w-100{
   padding: 15px 30px !important;
   border: 2px solid #81b5ab !important;
   font-size: 18px;
}

.btn.button-gradient-1.shadow-sports.w-100:hover{
   padding: 15px 30px !important;
   border: 2px solid #81b5ab !important;
   font-size: 18px;
}



/* Container for all cards */
.testimonial-slider .owl-stage {
    display: flex;
    flex-wrap: wrap;
}

/* Each item */
.testimonial-slider .owl-item {
    display: flex;            /* Make child stretch */
    padding: 0 15px;          /* Optional spacing */
}

/* The card itself */
.testimonial-card {
    display: flex;
    flex-direction: column;   /* Stack content vertically */
    justify-content: space-between; /* Keep spacing consistent */
    flex: 1 1 100%;           /* Take full available height */
    height: 100%;             /* Ensure full height */
}

/* Optional: equal height text inside card */
.testimonial-card p,
.testimonial-card .text-warning {
    margin-bottom: 0.4rem;
}




/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */
@media (max-width: 1599px) {
.section-title {
    font-size: 3.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.owl-nav {
    padding: 0 5px;
  }
  .navbar-expand-lg .navbar-nav {
    gap: 10px;
}
}

@media (max-width: 1399px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  .gradient-text-border h1 {
    font-size: 3.1rem;
  }
  .button-gradient-1 {
    padding: 15px 20px;
  }
  .button-gradient-2 {
    padding: 15px 20px;
  }
  .button-gradient-2:hover {
    padding: 15px 20px;
  }
  .button-gradient-1:hover {
    padding: 15px 20px;
  }
  .button-3 {
    padding: 15px 20px;
    max-width: 320px;
  }
    .button-3:hover {
    padding: 15px 20px;
  }
  .button-gradient-1-width {
    max-width: 220px;
    margin: 0 auto;
  }
  .trusted-circle {
    width: 55px;
    height: 55px;
    font-size: 16px;
  }
  .logo-img {
    max-width: 220px;
  }
  .hero-subtitle {
    margin: 0 auto 1rem;
  }
  .trusted-title {
    padding-top: 10px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero-slide {
    min-height: 100vh;
  }
  .hero-trusted {
    padding-bottom: 30px;
  }
  .navbar-expand-lg .navbar-nav {
    gap: 10px;
  }
  section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 3rem;
  }
  .jb-badge {
    bottom: -35px;
    right: -36px;
  }
  .jb-badge img {
    max-width: 120px;
  }
  .popular-badge {
    font-size: 1.5rem;
  }
  .pricing-price {
    font-size: 2rem;
  }
  .coming-soon-icon img {
    max-width: 60px;
  }
  .strongss {
    font-weight: 700;
    font-size: 1.2rem;
  }
  .contact-card h3 {
    font-size: 26px;
  }
  .footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    font-size: 16px;
  }
  .coming-soon-card {
    padding: 15px;
  }
 i.fas.fa-phone.me-1.phone-icon {
    font-size: 22px;
}
.cutting-edge-1 {
  margin-bottom: 40px;
}
}
@media (max-width: 1199px) {
  .navbar-brand img {
    max-width: 210px;
  }
  .jb-badge {
    right: -20px;
  }
  .navbar-expand-lg .navbar-nav {
    gap: 10px;
    margin: 20px 0;
  }
  .section-title {
    font-size: 2.4rem;
  }

  .navbar .nav-link {
    font-size: 16px;
  }
  .button-gradient-1 {
    padding: 10px 15px;
  }
  .button-gradient-1:hover {
    padding: 10px 15px;
  }
  .button-gradient-2 {
    padding: 10px 15px;
  }
  .button-gradient-2:hover {
    padding: 10px 15px;
  }
  .jb-badge img {
    max-width: 90px;
  }
  .pricing-features {
    padding: 0px 15px 50px 15px;
  }
   .button-3 {
    padding: 10px 25px;
    max-width: 290px;
  }
    .button-3:hover {
    padding: 10px 25px;
  }
  .border-img {
    padding: 0px 15px;
  }
  .social-icons a{
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .client-icon {
    max-width: 70px;
}
}

@media (max-width: 1080px) {
 .navbar-expand-lg .navbar-nav {
    gap:0px;
    margin: 20px 0;
  }
}


@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 11%;
  }
  .border-img {
  border: none;
}
.navbar-collapse {
    padding-bottom: 25px;
}
    .navbar .nav-link {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .coming-soon-card {
    margin-bottom: 1rem;
  }
  .border-img {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .trusted-circle {
    width: 56px;
    height: 56px;
    font-size: 0.8rem;
  }
  button.owl-prev {
    width: 40px !important;
    height: 40px !important;
  }
  button.owl-next {
    width: 40px !important;
    height: 40px !important;
  }
  .hero-content h2 {
    font-size: 1.6rem;
  }
  .gradient-text-border h1 {
    font-size: 2.2rem;
  }
  .owl-nav {
    padding: 0 10px;
    display: none;
  }
  .trusted-title {
    font-size: 17px;
  }
  .jb-badge {
    bottom: -25px;
    right: -10px;
  }
  .jb-badge img {
    max-width: 80px;
  }
  .about-photo::before {
    transform: rotate(2deg);
  }
  .cutting-edge-3 {
    padding: 20px;
  }
  #contact .section-subtitle {
    width: 100%;
    margin: 0 auto;
  }
  .text-ssm {
    font-size: 20px;
  }
  .contact-icon {
    margin-right: 15px;
  }
  footer.footer {
    background: #1d2530;
    padding: 40px 0;
  }
  .hero-slide {
    min-height: 1vh;
  }
  .copyright{
    font-size: 14px;
  }
  .sport-item img {
    width: 80px;
    max-width: 100px;
}
    section {
        padding: 30px 0;
    }
     #about{
        padding: 10px 0px 20px 0 !important;
    }
    .about-photo img{
      border-radius: 20px !important;
    }
}
@media (max-width: 410px) {
  .section-title {
    font-size: 1.6rem;
  }
  .cutting-edge h3 {
    font-size: 26px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .text-ssm {
        font-size: 16px;
    }
        .copyright {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
  .copyright{
    font-size: 12px;
  }
}


/* ✅ Custom Responsive Container Override */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  max-width: 1620px; /* Cap width at 1620px for large screens */
  padding-right: 20px; /* Consistent left-right gap */
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* Responsive spacing refinement (optional for tighter mobile padding) */
@media (max-width: 575.98px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
