body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

.landing-page {
  background: url('../img/1st_sec_bg.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  color: white;
  overflow: hidden;
}

/* Top Navigation Section */

.custom-navbar {
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 20px;
  padding: 20px 40px;
  background: transparent;
  z-index: 1000;
}


.boxed-link {
  background-color: rgba(90, 90, 90, 0.85);
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.boxed-link:hover {
  background-color: #807228;
  color: black !important;
}

.custom-navbar .nav-link {
  color: white !important;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.register-now-button {
  display: inline-block;
  padding: 13px 18px;
  margin-left: 5px;
  background: linear-gradient(to bottom, #4da6ff, #0066cc);
  color: white;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}

.register-now-button:hover {
  background: linear-gradient(to bottom, #3399ff, #005cbf);
  transform: scale(1.05);
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.register-now-link:hover .register-now-img {
  transform: scale(1.1);
}


/* Team Logo */
.team-logo {
  position: absolute;
  top: 50px;
  left: 200px;
  width: 300px;
}

/* Slogan Text */
.slogan {
  position: absolute;
  bottom: 50px;
  left: 10px;
}

.slogan h1 {
  font-size: 120px;
  font-weight: bolder;
  margin: 0;
  position: relative;
  left: 50px;
}

.slogan .one-team {
  color: #c58a6a;
}

.slogan .one-dream {
  color: white;
}


/* Social Icons */
.social-icons {
  position: absolute;
  bottom: 100px;
  right: 30px;
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 85px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}



/* About Section */

.about-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('../img/about-bg.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  /* max-width: 1500px; */
  height: 100vh;
  margin: auto;
  align-items: flex-start;
  padding: 10px;
}

.about-left {
  width: 30%;
  text-align: center;
  padding-right: 20px;
}

.logo {
  width: 200px;
  margin-bottom: 60px;
  margin-top: 30px;
  position: relative;
  left: 15px;
}

.vertical-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
}

.about-text {
  transform: rotate(-90deg);
  margin: 20px 0;
  font-size: 90px;
  font-weight: 800;
  color: white;
  letter-spacing: 6px;
  position: relative;
  top: 100px;
  right: 30px;
}

.us-text {
  transform: rotate(-90deg);
  margin: 0px 0px 0px 50px;
  font-size: 90px;
  font-weight: 800;
  color: #c48a61;
  /* light brown or copper shade */
  letter-spacing: 6px;
  position: relative;
  bottom: 25px;
  left: 40px;
}

.about-right {
  width: 70%;
  text-align: justify;
  font-size: 16.5px;
  line-height: 1.8;
  margin: 45px 100px 0px 5px;
}

.about-right p {
  margin-bottom: 20px;
}

.one-vision {
  color: white;
  position: relative;
  left: 40px;
  bottom: 40px;
  font-size: 80px;
  font-weight: bolder;
  letter-spacing: 3px;
}

.one-vision span {
  color: #c58a6a;
}

/* Responsive Design for Tablet and Mobile */














/* ✅ AWARDS SECTION */

.awards-section {
  background: url('../img/awards_bg.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  /* optional for parallax-like effect */
  min-height: 10vh;
  padding: 30px 20px;
  color: white;
  position: relative;
  text-align: center;
}


.container {
  position: relative;
}

.title-wrapper {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* .title-wrapper {
  position: center;
  top: 0px;
  left: 0px;
  transform: translateX(-50%);
  z-index: 2;
} */

.awards-title {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.awards-title span {
  color: #c58a6a;
}

.swiper {
  margin-top: 50px;
  margin-bottom: 50px;
}

.awards-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
  margin-top: 180px;
  margin-bottom: 0px;
}

.award-img {
  width: 95%;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.award-img:hover {
  transform: scale(1.05);
}

.awards-subtext {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.awards-subtext span {
  color: #c58a6a;
}

.view-more-btn {
  margin-bottom: 20px;
  padding: 12px 0px;
  background-color: #ff3c3c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
  position: relative;
  left: 20px;
}

.view-more-btn:hover {
  background-color: #d32f2f;
}




/* ✅ CORE SECTION */

.core-team-section {
  background: url('../img/core_sec_bg.png') no-repeat center center/cover;
  padding: 20px 20px;
  position: relative;
  color: white;
  overflow: hidden;
}

.core-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 15px;
}

/* LEFT TITLE */
/* .core-left {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
  padding: 20px;
} */


.single-line-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 0px;
}

.core-title {
  font-size: 100px;
  font-weight: bold;
  line-height: 1.2;
}

.core-title .white {
  color: white;
}

.core-title .brown {
  color: #c58a6a;
}

.core-title .red {
  color: #ff3c3c;
}

/* TEAM IMAGES */
.core-right {
  flex: 2;
  gap: 0px;
  padding: 0px;
  margin-top: 10px;
  /* ✅ Push slider down */
}

/* .core-member {
  position: relative;
  top: 0px;
  left: 0px;
  margin: 2px;
  width: 350px;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
} */

.core-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#teamSwiperUnique {
  width: 100%;
  max-width: 1300px;
  margin: 0;
  padding: 0;
}

.swiper-team-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Common arrow styling */
.swiper-button-next.custom-nav,
.swiper-button-prev.custom-nav {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Hover effect */
.swiper-button-next.custom-nav:hover,
.swiper-button-prev.custom-nav:hover {
  background: #ff3b3b;
  color: #fff;
}

/* Override Swiper defaults */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Specific positioning */
.swiper-button-prev.custom-nav {
  left: -20px;
  /* adjust as needed */
}

.swiper-button-next.custom-nav {
  right: -20px;
  /* adjust as needed */
}

.core-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

/* QUOTE */
.core-quote {
  width: 100%;
  margin-top: 0px;
  padding: 35px;
  padding-bottom: 0px;
}

.core-quote p {
  font-size: 62px;
  font-weight: bolder;
  color: white;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
}

.view-more-btn2 {
  margin-bottom: 20px;
  padding: 12px 0px;
  background-color: #ff3c3c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
  position: relative;
  left: 20px;
}

.view-more-btn2:hover {
  background-color: #d32f2f;
}





/* ✅RECORDS SECTION */
.records-section {
  background: url('../img/records-section-bg.png') no-repeat center center/cover;
  padding: 20px 10px;
  color: #fff;
  text-align: center;
}

.records-heading {
  text-align: center;
  padding: 10px 10px;
}

.records-heading h1 {
  font-size: 54px;
  font-weight: 800;
  margin: 0;
}

.records-heading h2 {
  font-size: 35px;
  margin: 15px 0 0;
  line-height: 1.2;
}

.records-heading span {
  color: #da9b7e;
  font-weight: 800;
}


.records-heading h1 {
  font-size: 65px;
  font-weight: 900;
  margin: 0;
}

.records-heading h2 {
  font-size: 55px;
  margin: 0;
  line-height: 1.2;
}

.records-heading span {
  color: #da9b7e;
  font-weight: 800;
}

.player-category {
  display: flex;
  flex-direction: column;
  /* ✅ Stack heading and row vertically */
  align-items: center;
  /* ✅ Center everything horizontally */
  gap: 20px;
  margin: 0px 0 60px;
  padding: 0 0px;
  text-align: center;
}

.category-heading {
  width: 100%;
}

.category-heading h3 {
  font-size: 45px;
  font-weight: bolder;
  margin: 0;
  text-align: center;
  color: #da9b7e;
}

.category-players {
  width: 100%;
}

.player-row {
  display: flex;
  justify-content: center;
  /* ✅ Center the cards */
  flex-wrap: wrap;
  gap: 20px;
}

.player-card {
  width: 270px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 380px;
  /* set a fixed height to divide 60-40 proportion */
}

.player-card img {
  width: 100%;
  height: 70%;
  /* ✅ Image takes 60% */
  object-fit: cover;
}


.image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-name {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transition: 0.4s ease;
}

.image-wrapper:hover .player-name {
  opacity: 1;
}



.stats {
  height: 30%;
  /* ✅ Stats block takes 40% */
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

.rank {
  font-size: 80px;
  font-weight: bold;
  color: gold;
  margin-right: 10px;
}

.info {
  text-align: left;
}

.info p {
  margin: 2px 0;
  font-size: 14px;
  color: white;
}




/* ✅ GALLERY SECTION */

.gallery-section {
  background: url('../img/gallery-bg.png') no-repeat center center/cover;
  padding: 50px 20px;
  color: white;
  position: relative;
}

.gallery-title {
  font-size: 75px;
  font-weight: bold;
  text-align: center;
  /* ✅ Centered */
  margin-bottom: 40px;
}

.gallery-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-slider img {
  width: 100%;
  height: 300px;
  /* Or adjust as needed */
  object-fit: cover;
  /* Ensures the image fills its box without distortion */
  border-radius: 12px;
  /* Optional for rounded edges */
}

.gallery-carousel {
  width: 100%;
  max-width: 600px;
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-carousel img {
  height: 400px;
  object-fit: cover;
}

.gallery-footer {
  display: flex;
  flex-direction: column;
  /* ✅ Stack vertically */
  align-items: center;
  /* ✅ Center content */
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.gallery-caption {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  color: white;
  max-width: 70%;
  margin: 0;
}

.gallery-caption span {
  color: #c58a6a;
}

.view-more-btn {
  padding: 12px 30px;
  background-color: #ff3c3c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
  white-space: nowrap;
  position: relative;
  right: 100px;
}

.view-more-btn:hover {
  background-color: #d32f2f;
}







.instagram-section {
  background: url('../img/about-bg.png') no-repeat center center fixed;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.instagram-section .container {
  max-width: 1600px;
  margin: 0 auto;
}

.instagram-title {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.instagram-subtitle {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.instagram-widget-wrapper {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.snapwidget-widget {
  width: 100%;
  height: 400px;
  border: none;
}





/* ✅ FOLLOW US SECTION */

.follow-section {
  background: url('../img/follow-bg.png') no-repeat center center/cover;
  padding: 50px 20px;
  color: white;
  position: relative;
}

.follow-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.follow-heading {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Wrapper for icons and logo */
.follow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Social icons row */
.follow-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.follow-icons img {
  width: 115px;
  height: 60px;
  transition: transform 0.3s ease;
}

.follow-icons img:hover {
  transform: scale(1.1);
}

/* Logo */
.follow-logo-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.follow-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.follow-logo1 {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.follow-logo2 {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.follow-logo3 {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.powered-by {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.powered-by .social-donut-logo {
  height: 30px;
  object-fit: contain;
}










@media (max-width: 1200px) {}




@media (max-width: 992px) {

  .custom-navbar {
    padding: 15px;
    margin-top: 0;
  }

  .navbar-toggler {
    margin-right: 10px;
  }

  .nav-buttons {
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 10px;
  }


  .about-section {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .about-left,
  .about-right {
    width: 100%;
    margin: 0 auto;
  }

  .logo {
    display: none !important; 
    left: 0;
    margin: 0 auto;
  }

  .vertical-text {
    flex-direction: row;
    justify-content: center;
    transform: rotate(0deg);
    font-size: 50px;
    margin-bottom: 20px;
  }

  .about-text,
  .us-text {
    transform: rotate(0deg);
    font-size: 50px;
    margin: 10px;
    position: static;
  }



}




@media (max-width: 768px) {

  .team-logo {
    top: 20px;
    left: 20px;
    width: 200px;
  }

  .slogan h1 {
    font-size: 50px;
    left: 20px;
    text-align: left;
  }

  .slogan {
    bottom: 20px;
  }

  .core-title {
    font-size: 50px;
  }

  .core-img {
    max-width: 90%;
  }

  .core-quote p {
    font-size: 28px;
  }

  .records-heading h1 {
    font-size: 40px;
  }

  .records-heading h2 {
    font-size: 30px;
  }

  .category-heading h3 {
    font-size: 28px;
  }

  .player-card {
    width: 90%;
    height: auto;
  }



  .awards-title {
    font-size: 40px;
  }

  .awards-subtext {
    font-size: 20px;
  }

  .view-more-btn {
    font-size: 14px;
    padding: 10px 20px;
    left: 0;
  }


  .gallery-title {
    font-size: 40px;
  }

  .gallery-caption {
    font-size: 20px;
    max-width: 100%;
  }

  .gallery-slider img {
    height: 200px;
  }

  .instagram-title {
    font-size: 26px;
  }

  .instagram-subtitle {
    font-size: 14px;
  }

  .snapwidget-widget {
    height: 300px;
  }

  .follow-heading {
    font-size: 30px;
  }

  .follow-icons img {
    width: 80px;
    height: auto;
  }

  .follow-logo {
    width: 120px;
  }






}




@media (max-width: 576px) {


  .landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* centers vertically */
    min-height: 90vh;
    text-align: center;
    padding: 30px 10px;
    /* space from top/bottom */
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .team-logo {
    position: relative;
    top: 0px;
    left: 10px;
    width: 170px;
    margin-bottom: 20px;
  }

 .slogan {
  position: relative;
  top: 0px;
  left: -10px;
  margin-top: 0;
  text-align: center; /* Center align child content */
  display: flex;
  flex-direction: column;
  align-items: center; /* Ensures child elements are centered */
}


.slogan h1 {
  font-size: 56px;
  margin: 0;
}
  .social-icons {
    bottom: 100px;
    right: 100px;
    gap: 8px;
  }

  .social-icons img {
    width: 90px;
  }

  body,
  html {
    overflow-x: hidden;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    margin: 5px 0;
  }


  .one-vision {
    font-size: 36px;
    text-align: center;
    left: 0;
    bottom: 0;
    padding: 10px 15px;
  }



  .swiper-team-slider {
    width: 100%;
    padding: 0 10px;
  }

  .swiper-team-slider .swiper-slide {
    flex-shrink: 0;
    width: 80% !important;
    /* Keep some margin around the image */
    max-width: 280px;
  }

  .core-img,
  .player-card img,
  .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .core-title {
    font-size: 40px;
  }


}