.container {
	width: 80%;
	max-width: 720px;
	margin: 0 auto;
}

/* your other styles go here */
body {
	font-family: Arial, sans-serif;
	color: #eee;
	text-align: center;
	margin: 0;
	padding: 1px;
}

.container {
	max-width: 680px;
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
}

.profile-img {
	width: 50%;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	margin-top: -40px;
}

h1 {
	font-size: 18px;
	color: #FFD700;
	margin: 10px 0;
}

.video-container {
	margin: 15px 0;
}

iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 10px;
	border: none;
}

.cta-box {
    background-color: rgba(4, 67, 121, 0.7);
    padding: 18px;
    border-radius: 12px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-align: left;
    border: solid #01b2db;
}

.cta-box strong {
	color: #ffb800;
}

.cta-box .highlight {
	color: #f4b400;
	font-weight: bold;
}

.cta-input {
    display: block;
    padding: 20px;
    width: 82%;
    max-width: 660px;
    margin: 50px auto 0;
    border-radius: 15px;
    border: 2px solid #fff;
    background: rgb(3, 21, 59, 0.7);
    color: #eee;
    font-size: 28px;
    text-align: center;
}
.cta-input::placeholder{
	color: white;
}

.cta-btn {
	transition: transform 0.3s ease, background 0.3s ease;
	animation: floatPulse 2s ease-in-out infinite;
}

.cta-btn:hover {
	background-color: #e6c100;
}

.footer-text {
	font-size: 13px;
	color: #aaa;
	margin-top: 60px;
	margin-bottom: 12px;
	line-height: 1.6;
}

.links {
	margin-top: 20px;
	font-size: 12px;
}

.links a {
	color: #0d6efd;
	margin: 0 8px;
	text-decoration: none;
}

.links a:hover {
	text-decoration: underline;
}

#progress-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.progress-content {
	background: #001f2f;
	color: #fff;
	padding: 30px;
	border-radius: 12px;
	width: 90%;
	max-width: 580px;
	text-align: left;
	font-size: 30px;
}

.progress-content h2 {
	color: #ff9900;
	margin-bottom: 20px;
}

.progress-bar-group {
	margin-bottom: 12px;
}

.progress-label {
	margin-bottom: 5px;
	font-size: 25px;
}

.progress-bar {
	width: 100%;
	background: #333;
	border-radius: 20px;
	overflow: hidden;
}

.progress-fill {
	height: 10px;
	width: 0%;
	background: #FFD700;
	border-radius: 20px;
	transition: width 0.4s ease;
}

#popup-modal .modal-btn {
	animation: floatPulse 2s ease-in-out infinite;
	background-color: #28a745;
	color: #fff;
	padding: 12px 20px;
	border: none;
	border-radius: 30px;
	font-size: 25px;
	cursor: pointer;
	transition: background 0.3s;
}

#popup-modal .modal-btn:hover {
	background-color: #1e7e34;
}

@keyframes floatPulse {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}
.bg-img{
	position: absolute;
	left: 0%;
	right: 0%;
	margin: 0 auto;
	z-index: -1;
}