* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar a.active {
  color: #00ff99;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ccff00;
}

.hero {
  background: url('./images/background.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero p {
  color: #bbb;
  margin-bottom: 40px;
  font-size: 1.3rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.btn {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
}

.btn.primary {
  background-color: #ccff00;
  color: #000;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.primary:hover {
  background-color: #aee000;
}

.btn.secondary:hover {
  color: #ccff00;
  border-color: #ccff00;
}

.scrolling-banner {
  background-color: #ccff00;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
  font-size: 1.1rem;
}

.scrolling-banner p {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.why-choose-us {
  padding: 140px 80px;
  text-align: center;
}

.why-choose-us h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 100px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.card {
  background-color: #1e1e1e;
  border-radius: 20px;
  padding: 60px 40px;
  width: 340px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.highlight {
  background-color: #ccff00;
  color: #000;
}

.icon-wrap {
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-wrap img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.card h3 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-btn {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.3s;
  font-size: 1rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(204, 255, 0, 0.3);
}

.card-btn:hover {
  color: #ccff00;
}

.arrow {
  background: none;
  color: #ccff00;
  font-size: 2.5rem;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
}

.arrow.left {
  left: 40px;
}

.arrow.right {
  right: 40px;
}

.arrow:hover {
  background-color: #ccff00;
  color: #000;
}

.cards-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-our-gvm{
    font-family: 'Orbitron', sans-serif;
  font-size: 75px;
  margin-bottom: 100px;
  margin-left: 120px;
}
.about-our-gvm p{
  font-size: 14px;
  width: 600px;
}

.about-container {
  position: relative;
  display: inline-block;
}

.years-badge {
  position: absolute;
  bottom: 100px;
  right: -820px;
  background-color: #ccff00;
  color: #000;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.about-highlights {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-top: 40px;
}

.circle {
  width: 160px;
  height: 160px;
  border: 4px solid #ccff00;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-best-coaches{
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 100px;
  margin-left: 50px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; 
}

.photo {
  text-align: center;
}

.photo img {
  width: 200px;
  border-radius: 10px;
}

.photo p {
  margin-top: 8px;
  font-size: 16px;
  color: #ccc;
  font-weight: 500;
    font-family: 'Orbitron', sans-serif;  
}


.schedule {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 60px 0;
  font-family: 'Orbitron', sans-serif;
}

.schedule h2 {
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.schedule table {
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
}

.schedule th, .schedule td {
  border: 1px solid #333;
  padding: 15px;
  font-size: 14px;
  text-transform: uppercase;
}

.schedule th {
  background-color: #111;
  font-weight: 600;
}

.schedule td {
  background-color: #0a0a0a;
}

.schedule tr:hover td {
  background-color: #111;
  transition: 0.3s;
}

.view-more {
  margin-top: 30px;
  background-color: #c5ff41;
  color: #000;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.view-more:hover {
  background-color: #b4f232;
}






.trial-section {
  position: relative;
  background: url('./images/trial-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 200px 20px;
  color: white;
  font-family: 'Orbitron', sans-serif;
}

.trial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.trial-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.trial-section h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.trial-section p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.trial-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trial-form input {
  padding: 14px 25px;
  border: none;
  border-radius: 30px;
  width: 280px;
  font-size: 1rem;
}

.trial-form button {
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  background-color: #ccff00;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.trial-form button:hover {
  background-color: #aee000;
}


footer {
  background-color: #000;
  padding: 80px 10%;
  color: #ccc;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #ccff00;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col li:hover {
  color: #fff;
}

footer .copyright {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}



.footer-col a {
  color: inherit;        
  text-decoration: none; 
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ccff00;      
}