*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#0d1117;
  color:white;
  overflow-x:hidden;
}

.navbar{
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(8px);
  padding:15px 0;
}

.logo{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
  margin-right:10px;
}

.navbar-brand{
  font-size:28px;
  font-weight:bold;
  color:#ecdaca !important;
}

.nav-link{
  color:rgb(243, 199, 199) !important;
  margin-left:20px;
  transition:0.3s;
  font-weight:500;
}

.nav-link:hover{
  color:#e7eeeb !important;
}

.carousel{
  position:relative;
}

.slider-img{
  height:100vh;
  object-fit:cover;
  filter:brightness(50%);
}

.carousel-caption{
  bottom:35%;
}

.carousel-caption h1{
  font-size:80px;
  font-weight:bold;
  text-transform:uppercase;
  color:#f0ddc4;
  animation:slideDown 1s ease;
}

.carousel-caption p{
  font-size:24px;
  margin-top:15px;
  animation:fadeIn 2s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:#f0eeea;
  border-radius:50%;
  padding:25px;
}

.carousel-indicators button{
  width:12px !important;
  height:12px !important;
  border-radius:30%;
  background:#e6e2db !important;
}

.about-section{
  padding:100px 0;
}

.section-title{
  font-size:45px;
  font-weight:bold;
  margin-bottom:30px;
  color:#f0ddc4;
  text-transform:uppercase;
}

.about-section p{
  line-height:1.9;
  margin-top:20px;
  color:#dcdcdc;
  font-size:17px;
}

.about-img{
  border-radius:20px;
  margin-top:20px;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
}
.about-img{
  width:500px;      /* increase width */
  height:300px;     /* increase height */
  object-fit:cover;

  border-radius:20px;
  margin-top:20px;
  transition:0.4s;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
}


.about-img:hover{
  transform:scale(1.03);
}


.btn-success{
  background:#f1dcc9;
  border:none;
  color:black;
  padding:12px 30px;
  font-weight:bold;
  border-radius:30px;
  transition:0.3s;
}

.btn-success:hover{
  background:white;
  color:black;
}


.section{
  padding:100px 0;
}

.custom-card{
  background:#161b22;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  transition:0.4s;
  height:100%;
  border:1px solid transparent;
}

.custom-card:hover{
  transform:translateY(-10px);
  border:1px solid #f1dcc9;
  box-shadow:0 10px 30px rgba(241, 220, 201, 0.2);
}

.icon{
  font-size:50px;
  color:#f1dcc9;
  margin-bottom:20px;
}

.custom-card h3{
  margin-bottom:15px;
  font-size:28px;
}

.custom-card p{
  color:#cfcfcf;
  line-height:1.8;
}

.stats{
  background:url('stadium.jpg');
  background-size:cover;
  background-position:center;
  position:relative;
  padding:100px 0;
}

.stats::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
}

.stats .container{
  position:relative;
  z-index:1;
}

.stats h2{
  font-size:70px;
  color:#ece5d9;
  font-weight:bold;
}

.stats p{
  font-size:22px;
  margin-top:10px;
}

.footer{
  background:#000;
  text-align:center;
  padding:60px 20px;
}

.footer-logo{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
}

.footer h3{
  font-size:35px;
  color:#f7ebd8;
  margin-top:20px;
}

.footer p{
  color:#ccc;
}

.social-icons a{
  transition:0.3s;
}

.social-icons a:hover{
  color:#f1dcc9 !important;
  transform:translateY(-5px);
}

@keyframes slideDown{
  from{
    transform:translateY(-50px);
    opacity:0;
  }

  to{
    transform:translateY(0);
    opacity:1;
  }
}

@keyframes fadeIn{
  from{
    opacity:0;
  }

  to{
    opacity:1;
  }
}

@media(max-width:992px){

  .carousel-caption h1{
    font-size:55px;
  }

  .carousel-caption p{
    font-size:18px;
  }

  .section-title{
    font-size:35px;
  }

}

@media(max-width:768px){

  .slider-img{
    height:80vh;
  }

  .carousel-caption{
    bottom:25%;
  }

  .carousel-caption h1{
    font-size:38px;
  }

  .carousel-caption p{
    font-size:16px;
  }

  .stats h2{
    font-size:45px;
  }

  .stats p{
    font-size:18px;
  }

  .custom-card{
    margin-bottom:20px;
  }

}

body{
  background: #0b0f1a;
  font-family: Arial, sans-serif;
  color: white;
}

.navbar{
  background: rgba(0,0,0,0.9);
  padding: 15px 0;
}

.navbar-brand{
  color: white !important;
  font-size: 28px;
  font-weight: bold;
}

.nav-link{
  color: white !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover{
  color: #f1ddc9 !important;
}


.contact-hero{
  height: 50vh;
  background:
  linear-gradient(rgba(0,0,0,0.7),
  rgba(0,0,0,0.7)),
  url("stadium.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-hero h1{
  font-size: 60px;
  font-weight: bold;
}

.contact-hero p{
  font-size: 20px;
  color: #f1efef;
}


.contact-section{
  padding: 80px 0;
}

.contact-box{
  background: #111827;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.contact-title{
  font-size: 40px;
  margin-bottom: 20px;
  color: #f3f1da;
}

.contact-text{
  color: #ccc;
  line-height: 1.8;
}

/* Form */

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  background: #1f2937;
  color: rgb(202, 111, 32);
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border: 2px solid #e4c92e;
}

.contact-form button{
  margin-top: 20px;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  background: #e5e6bc;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.contact-form button:hover{
  background: #beca17;
}

/* Contact Info */

.contact-info{
  margin-top: 40px;
}

.contact-info h4{
  color: #e99d11;
  margin-bottom: 10px;
}

.contact-info p{
  color: #ddd;
}

/* Social Icons */

.social-icons{
  margin-top: 20px;
}

.social-icons a{
  color: white;
  font-size: 24px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover{
  color: #eeecce;
}

/* Footer */

.footer{
  background: black;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

.footer p{
  color: #aaa;
}

/* Responsive */

@media(max-width:768px){

  .contact-hero h1{
    font-size: 40px;
  }

  .contact-box{
    padding: 25px;
  }

}
/* ================= FIXTURES SECTION ================= */

.fixtures-section{
  padding:80px 0;
}

.fixtures-text{
  text-align:center;
  max-width:800px;
  margin:auto;
  color:#666;
  margin-bottom:50px;
}

.fixture-card{
  background:#111;
  color:white;
  border-radius:15px;
  padding:25px;
  margin-bottom:30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  transition:0.4s;
  border:2px solid transparent;
}

.fixture-card:hover{
  transform:translateY(-5px);
  border-color:#28a745;
}

.fixture-team{
  text-align:center;
  width:30%;
}

.fixture-team img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:10px;
}

.fixture-team h3{
  font-size:24px;
  margin-top:10px;
}

.fixture-center{
  text-align:center;
  width:40%;
}

.fixture-center h2{
  color:#28a745;
  font-size:40px;
  margin:10px 0;
}

.fixture-date{
  background:#28a745;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:bold;
}

.fixture-center p{
  margin-top:10px;
  color:#ccc;
}

/* MOBILE */

@media(max-width:768px){

  .fixture-card{
    flex-direction:column;
    gap:20px;
  }

  .fixture-team,
  .fixture-center{
    width:100%;
  }

}
/* ================= FEATURES PAGE ================= */

body{
  background:#0b0f1a;
  font-family:Arial, sans-serif;
  color:white;
}

/* Navbar */

.navbar{
  background:rgba(0,0,0,0.9);
  padding:15px 0;
}

.navbar-brand{
  font-size:28px;
  font-weight:bold;
  color:white !important;
}

.nav-link{
  color:white !important;
  margin-left:15px;
  transition:0.3s;
}

.nav-link:hover{
  color:#b7d8be !important;
}

/* Hero Section */

.features-hero{
  height:55vh;

  background:
  linear-gradient(rgba(0,0,0,0.7),
  rgba(0,0,0,0.7)),
  url("stadium.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.features-hero h1{
  font-size:65px;
  font-weight:bold;
}

.features-hero p{
  color:#ddd;
  font-size:20px;
}

/* Main Features */

.features-section{
  padding:80px 0;
}

.section-title{
  text-align:center;
  font-size:45px;
  margin-bottom:50px;
  font-weight:bold;
}

/* Feature Cards */
.feature-card{
  background:#e98f8f;
  padding:35px;
  border-radius:20px;
  text-align:center;
  transition:0.4s;
  height:100%;
  border:2px solid transparent;
}

.feature-card:hover{
  transform:translateY(-10px);
  border-color:#e6dcc6;
}

.feature-icon{
  font-size:60px;
  color:#df6332;
  margin-bottom:20px;
}


.feature-card h3{
  margin-bottom:15px;
  font-size:28px;
  color:#111827;
}

.feature-card p{
  color:#df1a1a;
  line-height:1.8;
}

/* Training Section */

.training-section{
  padding:80px 0;
}

.training-img{
  border-radius:20px;
  width:100%;
}

.training-content h2{
  font-size:45px;
  margin-bottom:25px;
}

.training-content p{
  color:#ccc;
  line-height:1.9;
}

/* Stats */

.stats-section{
  background:#111;
  padding:80px 0;
}

.stat-box{
  text-align:center;
}

.stat-box h1{
  color:#f1e3d2;
  font-size:60px;
  font-weight:bold;
}

.stat-box p{
  color:#ddd;
  font-size:20px;
}

/* Why Choose Us */

.choose-section{
  padding:80px 0;
}

.choose-box{
  background:#111827;
  padding:30px;
  border-radius:20px;
  transition:0.4s;
}

.choose-box:hover{
  transform:translateY(-8px);
}

.choose-box h3{
  color:#eee3c5;
  margin-bottom:15px;
}

.choose-box p{
  color:#ccc;
  line-height:1.8;
}

/* Footer */

.footer{
  background:black;
  text-align:center;
  padding:40px 0;
  margin-top:60px;
}

.footer-logo{
  width:100px;
  border-radius:50%;
}

.footer p{
  color:#aaa;
}

.social-icons a{
  color:white;
  font-size:22px;
  margin:0 10px;
  transition:0.3s;
}

.social-icons a:hover{
  color:#28a745;
}

/* Responsive */

@media(max-width:768px){

  .features-hero h1{
    font-size:42px;
  }

  .section-title{
    font-size:35px;
  }

  .training-content{
    margin-top:30px;
  }

}