:root {
  --primary: #0057b8;
  --secondary: #ffffff;
  --accent: #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--secondary);
  color: var(--accent);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.header {
  background: var(--primary);
  color: var(--secondary);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
}

/* Fixture */
   .fixtures-section {
      padding: 40px 0;
    }
    .table thead {
      background-color: #2e3134;
      color: white;
    }
    .table-striped tbody tr:nth-of-type(odd) {
      background-color: #f2f2f2;
    }

/* Dropdown styling */
.nav ul li.dropdown {
  position: relative;
}

.nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background:  #416cc9;
  padding: 10px 0;
  z-index: 999;
  min-width: 180px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav ul li .dropdown-menu li {
  display: block;
}

.nav ul li .dropdown-menu li a {
  color: white;
  padding: 8px 16px;
  display: block;
  text-decoration: none;
}

.nav ul li .dropdown-menu li a:hover {
  background-color: #0c0f14;
}

.nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}


.hero {
  color: var(--secondary);
  text-align: center;
  padding: 15rem 2rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
/* para */
.left-aligned-section {
  text-align: left;
  padding: 25px;
  font-size: 17px;
  line-height: 2;
}


.hero-buttons .btn,
.btn,
.btn-outline {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

#latest-updates .card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.btn {
  background: var(--primary);
  color: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn:hover,
.btn-outline:hover {
  opacity: 0.9;
  color: #ccc;
}

.slideshow-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

.schedule .match-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

.match-list li {
  margin: 0.5rem 0;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
/* Gallery 2 */
  .filter-btn {
    background-color: #0077b6;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
  }

  .filter-btn:hover {
    background-color: #023e8a;
  }

  .swiper-slide {
    transition: all 0.3s ease;
  }

  .swiper-slide.hidden {
    display: none !important;
  }







.footer {
  background: var(--accent);
  color: var(--secondary);
  text-align: center;
  padding: 2rem 1rem;
}

.socials a {
  color: var(--secondary);
  text-decoration: none;
  margin: 0 0.5rem;
}



.services .card-body i {
  font-size: 50px;
  padding-bottom: 5px;
}

.team .card-text {
  font-size: 20px;
  color: rgb(61, 42, 165);
}

.portfolio .card {
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.team .card-body {
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);

}

.about-text p {
  font-size: 20px;
}

.section-header p {
  font-size: 25px;
  color: blue;
}

.keeper-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  gap: 1.2rem;
}

.w-100 {
  height: 80vh;
}

/* --- CSR Section --- */
.csr-section {
  background-color: #f8f9fa;
}

.csr-section .card-title {
  font-weight: 600;
  margin-top: 15px;
  color: #dc3545;
}

.csr-section .card-text {
  font-size: 0.95rem;
  color: #333;
}

.csr-section .csr-img {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.csr-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.csr-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- Achievements Section (Photo-Based) --- */
.achievements-section {
  background-color: #fdfdfd;
}

.achievement-img {
  height: 230px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.achievements-section .card-title {
  color: #dc3545;
  font-weight: 600;
}

.achievements-section .card-text {
  font-size: 0.95rem;
  color: #555;
}

.achievements-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


.team-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.team .card-body h5 {
  font-weight: 600;
  color: #333;
}

.team .card-body small {
  color: #888;
}

.team .btn-outline-danger {
  border-width: 2px;
  font-weight: 500;
}

#team {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 600;
}

hr.mb-4 {
  border: 1px solid #ddd;
  width: 50px;
  margin: 0 auto;
}

.player-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  position: relative;
}

.player-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.player-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.player-info {
  padding: 20px;
  text-align: center;
}

.player-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.profile-link {
  display: inline-block;
  font-size: 1.2rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.profile-link:hover {
  color: #0056b3;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col-md-4 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .player-card {
    margin: 0 auto;
  }

  .player-info h3 {
    font-size: 1.3rem;
  }
}

/* shop */
.shop .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.shop .section-header p {
  color: #555;
  font-size: 1rem;
}

.product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  border-radius: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-card .btn {
  border-radius: 5px;
  padding: 10px 20px;
  text-transform: uppercase;
}

.btn-outline-primary {
  border-color: #0056d2;
  color: #0056d2;
}

.btn-outline-primary:hover {
  background-color: #0056d2;
  color: white;
}

@media (max-width: 767px) {
  .product-card {
    margin-bottom: 30px;
  }
}

/* shop end */



@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    display: none;
  }

  .nav.active ul {
    display: flex;
  }

  .hero {
    color: var(--secondary);
    text-align: center;
    padding: 5rem 2rem;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.user-img {
  width: 50px;
  border-radius: 100%;

}

/* Players Profile */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.profile-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.profile-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.profile-number {
  font-size: 1.3rem;
  color: #777;
}

.profile-bio {
  margin-top: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.gallery-section {
  margin-top: 50px;
}

.gallery-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
}

.back-link:hover {
  color: #0056b3;
}

@media (max-width: 600px) {
  .profile-photo {
    width: 180px;
    height: 180px;
  }

  .profile-name {
    font-size: 1.8rem;
  }
}

/* managements profile */
body {
  font-family: 'Outfit', sans-serif;
  background-color: #f4f7ff;
  margin: 0;
  padding: 0;
}

.profile-section {
  padding: 60px 0;
}

.profile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
}

.profile-content {
  padding: 30px;
}

.profile-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-content p.quote {
  color: #0056d2;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.profile-table th {
  width: 40%;
  color: #333;
  font-weight: 600;
}

.profile-table td {
  color: #555;
}

@media (max-width: 767px) {
  .profile-image img {
    border-radius: 20px 20px 0 0;
  }
}

/* objective parts */
.section-padding {
  padding: 60px 0;
}

.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card i {
  color: white;
}

@media (max-width: 768px) {
  .card-body p.lead {
    font-size: 15px;
  }
}