.custom-backgroud {
    background-color: #031119;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    /* optional background */
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: calc(250px * 12);
    /* width = logo width * number of logos */
    animation: scroll 25s linear infinite;
}

.slider-track img {
    width: 250px;
    /* adjust logo size */
    height: 120px;
    /* fixed height */
    object-fit: contain;
    margin: 0 20px;
    /* space between logos */
    background: #fff;
    /* clean bg for transparent logos */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* smooth zoom + glow */
    will-change: transform, box-shadow;
    /* smoother GPU rendering */
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.partners-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Zoom + glow on hover */
.slider-track img:hover {
    transform: scale(1.2);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(230, 106, 51, 0.6);
    /* orange glow */
}

.icon-badge {
    font-size: 28px;
    /* icon size */
    color: #fff;
    /* icon color */
    background: #E66A33;
    /* brand orange */
    padding: 12px;
    /* space inside */
    border-radius: 50%;
    /* circle */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* subtle shadow */
}

.icon-badge:hover {
    transform: scale(1.1);
    /* zoom effect */
    background: #cc4f1f;
    /* darker orange on hover */
}


.portfolio-entry {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.entry-image {
    overflow: hidden;
    /* hides overflow during zoom */
    border-radius: 12px;
    position: relative;
}

.entry-image img {
    width: 100%;
    height: 250px;
    /* default height for desktop */
    object-fit: cover;
    /* crop but keep proportions */
    object-position: center;
    /* center image inside frame */
    transition: transform 0.5s ease;
    /* smooth zoom */
    border-radius: 12px;
}

/* .entry-image img {
    transition: transform 0.4s ease;
  } */

.portfolio-entry:hover img {
    transform: scale(1.1);
}

.entry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.portfolio-entry:hover .entry-overlay {
    opacity: 1;
}

.overlay-content {
    color: #fff;
    text-align: center;
}

.overlay-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.entry-links a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.entry-links a:hover {
    color: #E66A33;
    /* your brand orange */
}


:root {
    --primary: #E66A33;
    --white: #ffffff;
    --dark: #111111;
}

/* Buttons */
.btn-success {
    background-color: var(--primary);
    border: none;
}

.btn-success:hover {
    background-color: #d85f2d;
}

/* Section Title */
.section-title {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin-top: 10px;
}

/* Player Cards */
.player-card {
    border: none;
    transition: 0.3s;
    border-radius: 15px;
    overflow: hidden;
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Badge Style */
.badge-role {
    background: var(--primary);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #111, #222);
}


/* PAGINATION */
.custom-pagination .page-link {
    color: #111;
    border: none;
    margin: 0 6px;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    background: #E66A33;
    color: #fff;
    transform: translateY(-3px);
}

.custom-pagination .page-item.active .page-link {
    background: #E66A33;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 106, 51, 0.35);
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* shared pagination style */
#videoPagination .page-link,
#galleryPagination .page-link {
    color: #111;
    border: none;
    margin: 0 6px;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#videoPagination .page-link:hover,
#galleryPagination .page-link:hover {
    background: #E66A33;
    color: #fff;
    transform: translateY(-3px);
}

#videoPagination .page-item.active .page-link,
#galleryPagination .page-item.active .page-link {
    background: #E66A33;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 106, 51, 0.35);
}

#videoPagination .page-item.disabled .page-link,
#galleryPagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}



.news-card{border:none;border-radius:16px;overflow:hidden;transition:.3s;box-shadow:0 8px 24px rgba(0,0,0,.08)}
.news-card:hover{transform:translateY(-8px)}
.news-card img{height:240px;object-fit:cover}
.news-badge{background:var(--primary);color:#fff}
.section-title{font-weight:800;text-transform:uppercase}
.breaking{background:rgb(228, 228, 228);color: #000;}




.trial-hero{
    background:
    linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),
    url('../img/football/background_section.jpg') center/cover;
    padding:160px 0;
}

.hero-badge{
    background:#E66A33;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
}

.btn-garzah{
    background:#E66A33;
    color:#fff;
    border:none;
    border-radius:10px;
}

.trial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.trial-card:hover{
    transform:translateY(-10px);
}

.trial-tag{
    background:#E66A33;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
}

.feature-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.feature-box i{
    font-size:42px;
    color:#E66A33;
}

.apply-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.custom-input{
    height:58px;
    border-radius:12px;
}


.btn-garzah{
    background: #E66A33;
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-garzah:hover{
    background: #cf5825;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 106, 51, 0.35);
}

.btn-garzah:focus,
.btn-garzah:active{
    background: #cf5825 !important;
    color: #fff !important;
    box-shadow: none;
}


.scout-hero{
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
    url('../img/football/background_section.jpg') center/cover;
    padding:160px 0;
}

.region-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.region-card:hover{
    transform:translateY(-8px);
}

.region-card i{
    font-size:42px;
    color:#E66A33;
}

.scout-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.process-wrapper{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.process-step{
    background:#E66A33;
    color:#fff;
    padding:18px 28px;
    border-radius:30px;
    font-weight:700;
}

.media-hero{
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
    url('../img/football/background_section.jpg') center/cover;
    padding:160px 0;
}

/* .featured-video{
    position:relative;
    overflow:hidden;
    border-radius:20px;
} */

.featured-video {
  position: relative;
  width: 100%;
  height: 420px;          /* desktop height */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* Featured video */
/* .featured-img {
  height: 420px;
  object-fit: cover;
} */

/* IMAGE CONTROL */
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: 0.4s ease;
}

@media (max-width: 768px) {
  .featured-video {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .featured-video {
    height: 220px;
  }
}

/* .video-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
} */

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.play-btn{
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:#E66A33;
    color:#fff;
    font-size:36px;
}

/* .media-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
} */

.media-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.media-card:hover {
  transform: translateY(-5px);
}

/* Video thumbnail */
/* .media-thumb {
  position: relative;
} */

.media-thumb {
  position: relative;
  width: 100%;
  height: 220px;          /* 🔥 fixed uniform card height */
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 🔥 prevents distortion */
  object-position: top center; /* keeps focus stable */
  display: block;
  transition: 0.3s ease;
}

.media-card:hover .media-thumb img {
  transform: scale(1.05);
}


/* .media-overlay{
    position:absolute;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:55px;
} */

/* Overlay */
.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.media-thumb:hover .media-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .media-thumb {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .media-thumb {
    height: 160px;
  }
}

/* .gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
} */



.media-box {
  width: 100%;
  height: 220px;        /* fixed base height */
  overflow: hidden;     /* prevents cut overflow */
  border-radius: 12px;
  background: #f5f5f5;
  position: relative;
}

/* IMAGE CONTROL */
.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;   /* 👈 keeps focus in center */
  display: block;
  transition: 0.3s ease;
}

/* hover effect */
.media-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .media-box {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .media-box {
    height: 160px;
  }
}


/* MODAL CONTAINER */
.clean-modal {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGE WRAPPER */
.modal-image-wrapper {
  width: 100%;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f5; /* soft neutral instead of black */
}

/* IMAGE STANDARD RULE (GLOBAL FIX) */
.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .modal-image-wrapper {
    height: 55vh;
  }
}

@media (max-width: 576px) {
  .modal-image-wrapper {
    height: 45vh;
  }
}


.submit-media-section{
    background:#111;
    padding:100px 0;
}


.player-card .card-img-top {
    width: 100%;
    height: 280px;   /* same fixed height */
    object-fit: cover;
    object-position: top center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background: #f8f9fa;
}


/* Zoom on hover */
.entry-image:hover img {
    transform: scale(1.1);
    /* slight zoom */
}

/* Tablets */
@media (max-width: 992px) {
    .entry-image img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .entry-image img {
        height: 160px;
    }
}



.player-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.player-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.player-card:hover .player-image {
    transform: scale(1.08);
}

/* POSITION BADGE OVER IMAGE */
.player-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.player-position {
    background: rgba(230, 106, 51, 0.95);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

/* BODY */
.player-body {
    padding: 18px 20px 22px;
}

.player-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1f1f1f;
}

/* INFO */
.player-info {
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

.player-info span {
    font-weight: 600;
    color: #222;
}

/* BUTTON */
.player-btn {
    display: block;
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E66A33, #ff7a3d);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.player-btn:hover {
    filter: brightness(0.95);
}

/* MOBILE */
@media (max-width: 768px) {
    .player-image-wrapper {
        height: 240px;
    }

    .player-name {
        font-size: 1.2rem;
    }
}

.text-brand {
    color: #E66A33 !important;
}

.badge-news{background:#E66A33;color:#fff}
.sidebar-card{border:none;box-shadow:0 8px 20px rgba(0,0,0,.08);border-radius:16px}
.article-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center top; /* 👈 KEY FIX */
    border-radius: 18px;
}

@media (max-width: 992px) {
    .article-img {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .article-img {
        height: 200px;
    }
}


.form-label{
    margin-bottom:.4rem;
}

.form-control,
.form-select{
    min-height:48px;
    border-radius:12px;
}

#trialSubmitForm{
    max-width:1000px;
    margin:auto;
}

#trialSubmitForm h6{
    color:#E66A33;
}