/* Demo page layout */
body, html {
	height: 100%;
}
.hero { 
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #222;
	background: url('../../assets/img/of-a-soccer-stadium-at-night-1.jpg') no-repeat center 100%;
	background-size: cover;
	background-position: center;
}
.owl-carousel {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 500px;
	overflow: hidden;
}

.text_slider { 
	color: #fff; 
	padding: 20px;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
}

.text_slider h1 { 
	font-weight: bolder;
	text-transform: uppercase;
}

.btn-primary {
	text-transform: uppercase;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
}

/* Glass background for the navbar */
.bg-glass {
	background: rgba(255,255,255,0.12); /* translucent */
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.18);
	transition: all 220ms ease;
	backdrop-filter: blur(8px);
}
.navbar-brand  {
	color: #fff !important;
}
/* Navbar initial (over hero) - transparent and not fixed */
.navbar-abs {
	position: absolute;
	top: 18px; /* float slightly down from the very top */
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1200px;
	border-radius: 12px;
	padding: .35rem 1rem;
}

/* Class applied when user scrolls: fixed to top */
.navbar-fixed {
	position: fixed !important; /* force fixed */
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	margin: 0 auto;
	padding: .2rem 1rem;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 6px 18px rgba(16,24,40,0.12);
	background: rgba(255,255,255,0.9); /* a stronger bg when fixed */
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(16,24,40,0.06);
}
/* Class applied when user scrolls: fixed to top */
.navbar-fixed .navbar-brand  {
	color:#000 !important;   
}

/* When fixed on small screens, keep padding comfortable */
@media (max-width: 575.98px) {
	.navbar-fixed {
		padding: .4rem .6rem;
	}
	.navbar-abs {
		left: 12px;
		right: 12px;
	}
}
.small {
	color: #fff !important;
}
.nav-pills .nav-link {
	text-align: left;
	justify-content: flex-start;
	margin-bottom: 12px;
}
 
/* Show scrollbar on hover */
.nav-pills:hover {
	overflow-y: auto;
}

/* Thin scrollbar styles for WebKit browsers (Chrome, Safari, Edge) */
.nav-pills::-webkit-scrollbar {
	width: 6px;
}

.nav-pills::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}

.nav-pills::-webkit-scrollbar-track {
	background-color: transparent;
}

/* Optional: Firefox support for thin scrollbar */
.nav-pills {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}


 /* Parallax Background */
.parallax-section {
	background-image: url('../img/hero-bg-image.jpg'); /* football field */
	min-height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Dark overlay */
.parallax-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
}
.parallax-section h2 {
	position: relative;
	z-index: 8;
}
/* Player Card */
.player-card {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.1); /* transparent white */
	border-radius: 1rem;
	padding: 2rem;
	max-width: 100%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: fadeInUp 1s ease-in-out;
}

/* Player Card */
.player-card .fw-bold {
	color: #fff;
}

.player-img {
	width: 100%;
	border-radius: 1rem;
	object-fit: cover;
}
 
.player-specs p {
	margin-bottom: 6px;
	font-size: 1rem;
	color: #fff;
	display: block;
	line-height: 38px;
	border-bottom: 1px solid #666;
}
.player-specs p:last-child {
	border-bottom: 1px solid transparent;
}

.player-specs strong {
	color: #198754;
	display: inline-block;
	width: 140px;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
	transform: translateY(30px);
	}
	to {
		opacity: 1;
	transform: translateY(0);
	}
} 
 
.gallery-item {
	cursor: pointer;
	transition: transform 0.3s ease;
}
.gallery-item:hover {
	transform: scale(1.05);
}
.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
	opacity: 1;
} 

/* Nice transition for links / toggler */
.navbar a.nav-link {
	transition: color .18s ease; 
	color: #fff !important;
	text-transform: uppercase;
}
/* Nice transition for links / toggler */
.navbar-fixed a.nav-link { 
	color: #000 !important;
}
 
 
/* Glassmorphism style for navbar toggler */
.navbar-toggler {
	border: none !important;
	background: rgba(255, 255, 255, 0.15);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 10px;
	padding: 8px 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 6px 14px rgba(0,0,0,0.15);
	outline: none;
}

/* Custom hamburger lines */
.navbar-toggler-icon {
	background-image: none; /* remove Bootstrap's default icon */
	width: 24px;
	height: 2px;
	background-color: #222; /* dark line color */
	position: relative;
	display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background-color: #222;
	transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
	top: -7px;
}
.navbar-toggler-icon::after {
	top: 7px;
}

/* Optional: animate into X when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	top: 0;
}


/* Custom nav buttons */
.owl-nav .custom-prev,
.owl-nav .custom-next {
	display: inline-block;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 2rem;
	padding: 0px 15px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s; 
}

.owl-nav .custom-prev:hover,
.owl-nav .custom-next:hover {
	background: rgba(255, 255, 255, 0.5);
	color: #000;
}

/* Position arrows */
.owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; /* keep clicks only on buttons */
}

.owl-nav .custom-prev,
.owl-nav .custom-next {
	pointer-events: auto;
}

.owl-nav .custom-next {
	margin-right: 50px;
	opacity: 1;
} 
.owl-nav .custom-prev {
	margin-left: 50px;
	opacity: 1;
}
 
.owl-carousel:hover .owl-nav .custom-prev, .owl-carousel:hover .owl-nav .custom-next { 
	opacity: 1;
}
 
@media(max-width: 768px ){
	.owl-nav .custom-prev,
	.owl-nav .custom-next {
		opacity: 0;
	}
	.owl-carousel:hover .owl-nav .custom-prev {
		margin-left: 0px;
	}

	.owl-carousel:hover .owl-nav .custom-next {
		margin-right: 0px;
	}
}


section {
	position: relative;
	width: 100%;
	min-height: 100vh;
}

.tips_words {
	position: relative;
	width: 100%;
	min-height: 100px;
	background: #0055ff;
	text-align: left;
	color: #fff;
	padding: 0px 10px;
	margin-top: 20px;
	-webkit-border-radius: 0.5em;
}

.text-head {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.text-head h4 {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
}

.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25D366; /* WhatsApp green */
	color: #fff;
	padding: 12px 18px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	z-index: 9999;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.whatsapp-float i {
	font-size: 24px;
}

#scrollTopBtn {
	display: none; /* Hidden by default */
	position: fixed;
	bottom: 100px;
	right: 30px;
	z-index: 99;
	width: 40px;
	height: 40px;
	font-size: 22px;
	line-height: 40px; 
	box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Core Values Section */
.core-values-section {
	background: linear-gradient(135deg, #f0f0f0, #e6e6e6);
}

.core-values-section .card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease;
}

.core-values-section .card:hover {
	transform: translateY(-5px);
}

.core-values-section h5 {
	margin-bottom: 0.8rem;
}

.core-values-section p {
	line-height: 1.6;
	color: #333;
}
.dashboard-card p strong {
	color: #a3a3a3; 
}



























































/* Mission & Vision Section */
.mission-vision-section {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Cards Glassmorphism */
.mission-vision-section .card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: transform 0.3s ease;
}

.mission-vision-section .card:hover {
	transform: translateY(-5px);
}

/* Card Icons */
.mission-vision-section i {
	font-size: 2rem;
}

/* Card Text */
.mission-vision-section p {
	line-height: 1.7;
	color: #333;
}

/* Card Titles */
.mission-vision-section h4 {
	color: #1b1b1b;
}

/* Section styling */
.about-us-section {
	background: linear-gradient(135deg, #f4f4f4, #e2e2e2);
}

/* Heading styling */
.about-text h2 {
	color: #1b1b1b;
}

/* Paragraph styling */
.about-text p {
	color: #333;
	line-height: 1.7;
}

/* Button styling */
.about-text .btn-primary {
	background-color: #0d6efd;
	border: none;
	transition: 0.3s;
}

.about-text .btn-primary:hover {
	background-color: #084298;
}

/* Image styling */
.about-img {
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.about-img:hover {
	transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 992px) {
	.about-text {
		margin-bottom: 2rem;
	}
}

/* Glassmorphism Form */
.email-form {
	max-width: 400px;
	margin: 20px auto;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.email-form .form-control {
	border: none;
	background: transparent;
	color: #fff;
}

.email-form .form-control::placeholder {
	color: #666;
}

.email-form .form-control:focus {
	box-shadow: none;
	outline: none;
}

.email-form .btn {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
:root{
	--glass-bg: rgba(255,255,255,0.12);
	--glass-border: rgba(255,255,255,0.18);
}

/* full width container styling */
.application-wrap{ 
	width: 100%; 
	margin: 0 auto;
	padding: 80px 0px;
	border-radius: 12px; 
	backdrop-filter: blur(6px);
	border: 1px solid var(--glass-border); 
}

.application-wrap section {
	min-height: 100px;
	margin-bottom: 10px !important;
}

.form-section-title{
	font-weight: 700;
	letter-spacing: .2px;
	margin-bottom: .75rem;
}

.required {
	color: #dc3545;
	margin-left: .15rem;
}

.form-note {
	font-size: .9rem;
	color: #495057;
}

.invalid-feedback {
	display: block;
}

.preview-img {
	max-width: 120px;
	max-height: 120px;
	object-fit: cover;
	border-radius: .5rem;
	border: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 767px){
	.application-wrap {
		padding: 1rem;
	}
}


























#contact {
	position: relative;
	width: 100%;
	background: #000 url('../img/hero-bg-image.jpg') center 100% no-repeat;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	
}
#contact:after {
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	right: 0ppx;
	bottom: 0px;
	top: 0px;
	background: rgba(0,0,0,0.8);
}
