/* designed by Value Up HD */
html, body {height: 100%;}
html {scroll-behavior: smooth;}
body{
	font-family:'Poppins',sans-serif;
	padding-top:55px;
	line-height: 1.6;
	color: #333;
	background-color: #f8f8f8;
}
.no-lists, .no-list {list-style-type: none!important; padding-left: 0;}

/* colors */
:root {
  --bs-primary: #007bff;
  --bs-primary-rgb: 0, 123, 255;
}

/* headings */
.section-title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 2.5em;
	font-weight: 700;
}
.section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: #007bff;
	border-radius: 2px;
}

/* ---------- Preloader ---------- */
#preloader{
	position:fixed;
	width:100%;
	height:100%;
	background:#fff;
	z-index:9999;
	display:flex;
	align-items:center;
	justify-content:center;
}
.loader{
	width:50px;
	height:50px;
	border:5px solid #eee;
	border-top:5px solid #0d6efd;
	border-radius:50%;
	animation:spin 1s linear infinite;
}
@keyframes spin{
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}

.lift-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.lift-up:hover {
  transform: translateY(-16px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
}

.card-title {
	font-size: 1.5em;
	margin-bottom: 15px;
}

/* ---------- Back To Top ---------- */
#backToTop{
	position:fixed;
	bottom:30px;
	right:30px;
	display:none;
	z-index:999;
	border-radius:50%;
	width:45px;
	height:45px;
	align-items:center;
	justify-content:center;
}

/* ---------- header ---------- */
#tpValupLogo img {height: 44px; width: auto;}

/* ---------- Footer ---------- */
footer{
	background:#111;
	color:#ddd;
	padding:60px 0;
}
footer a{
	color:#bbb;
	text-decoration:none;
}
footer a:hover{
	color:#fff;
}
.footer-title{
	font-weight:600;
	margin-bottom:15px;
}
.interview-profile {
	background: #f8f9fa;
	padding: 24px;
	border-radius: 8px;
	margin-bottom: 24px;
	border-left: 5px solid #007bff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* hero */
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.hero .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.hero .bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.2);
}
.hero .slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
}
.hero .content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(40px);
	text-align: center;
	color: white;
	z-index: 2;
}
.hero .content2 {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(40px);
	text-align: center;
	color: white;
	z-index: 2;
}
.hero .hero-title,
.hero .hero-text,
.hero .hero-text2,
.hero .cta-btn {
	opacity: 0;
	transform: translateY(40px);
}
.hero .hero-title {
	font-size: 48px;
	margin-bottom: 20px;
}
.hero .hero-text, .hero .hero-text {
	font-size: 20px;
	margin-bottom: 30px;
}
.hero .btn-primary {
	background-color: #2d6cdf;
	border: none;
	padding: 14px 32px;
	font-weight: 600;
	border-radius: 8px;
}
.hero .btn-primary:hover {
	background-color: #1f4fbf;
}
.modal-dialog.custom-width {
	max-width: 90%;
}
.modal-dialog.custom-width-px {
	max-width: 1000px;
}
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

/* hit box */
#hitBox {background-color: #2c3e50;}

/* dream team */
#dreamTeam h4 {margin-bottom: 5px;}
#dreamTeam h6 span {font-size: 70%;}
.avatar img {height: 200px; width: auto;}

/* contact us */
#formBox {position: relative;}
#formBTM {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	z-index: 99;
	background-color: #fff;
}

/* policy */
#policy li  {margin-bottom: 2em;}
#policy li li  {margin-bottom: 1em;}

/* responsive fixes */
@media (max-width:768px){
	.hero-content h1{
		font-size:2rem;
	}
	.hero-content p{
		font-size:1rem;
	}
}
@media screen and (max-width: 667px) {
	.hero .content2 img {max-width: 100%; width: 100%; height: auto;}
}