* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	overflow: hidden;
}

ul {
	margin-top: 0;
	margin-bottom: 15px;
	list-style-type: disc; 
	margin-left: 20px;
}

h4 {
	margin-top: 25px;
	margin-bottom: 10px;
}

.hero {
	height: 100vh;
	width: 100vw;
	position: relative;
	overflow: hidden;
}

#bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	transform: scale(1.1); /* Scale up the video to hide borders */
	transform-origin: center;
}

/* Loading bar styles */
.loading-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.loading-text {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 20px;
}

.loading-bar-container {
	width: 300px;
	height: 20px;
	background-color: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
}

.loading-bar {
	height: 100%;
	width: 0%;
	background-color: #33658a;
	border-radius: 10px;
	transition: width 0.3s ease;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	color: white;
	z-index: 10;
	animation: 
		jiggle 1s ease-in-out infinite,
		bounce 2s ease-in-out infinite;
	opacity: 1;
	transition: opacity 1s ease-in-out;
}

@keyframes jiggle {
	0%, 100% { transform: translateX(-50%) rotate(0deg); }
	25% { transform: translateX(-50%) rotate(-5deg); }
	75% { transform: translateX(-50%) rotate(5deg); }
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-20px); }
	60% { transform: translateX(-50%) translateY(-10px); }
}

.message-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

.message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.5s;
	width: 100%;
	color: #ffffff !important;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);           
}

#initial-message {
	font-size: 4rem;
	opacity: 1;
}

#second-message {
	font-size: 4rem;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.8); /* Starting smaller for zoom effect */
	transition: opacity 0.8s, transform 1.2s; /* Add transition for transform */
}

/* Zoom-in effect class to be added via JavaScript */
.zoom-in {
	transform: translate(-50%, -50%) scale(1) !important;
}

.content-section {
	padding: 100px 20px;
	min-height: 50vh;
	background: #ffffff;
	position: relative;
	z-index: 2;
}

.section-heading {
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 50px;
}

.section-heading-intro {
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 30px;
}

.section-heading-company {
	text-align: center;
	font-size: 3rem;
	color: #075c7e;
	margin-bottom: 30px;
}

.section-heading2 {
	text-align: center;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 50px;
}

/* New styles for added sections */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 20px;
}

.card {
	flex: 1 1 300px;
	background: #f9f9f9;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card h3 {
	font-size: 2.0rem;
	margin-bottom: 15px;
	color: #0056b3;
}

.card p {
	color: #555;
	line-height: 1.6;
	font-size: 1.5rem;
}

/* Contact form styles */
.contact-section {
	background: #f5f9ff;
	padding: 100px 20px;
	position: relative;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
}

.form-group a {
	text-decoration: underline ;            
	color: #19194b;
	cursor: pointer;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-control:focus {
	border-color: #0056b3;
	outline: none;
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.captcha-container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.captcha-image {
	background: #e9ecef;
	padding: 10px;
	border-radius: 5px;
	margin-right: 15px;
	font-family: 'Courier New', monospace;
	font-size: 18px;
	letter-spacing: 5px;
	position: relative;
}

.captcha-image::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(0,0,0,0.2);
	transform: rotate(-5deg);
}

.refresh-captcha {
	background: none;
	border: none;
	color: #0056b3;
	cursor: pointer;
	font-size: 20px;
}

/* Updated button styles */
.btn {
	display: block;
	margin: 0 auto;
	background: #33658a;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.btn:hover {
	background: #264c6f;
	transform: scale(1.05);
}

/* Footer styles */
footer {
	background: #2c3e50;
	color: white;
	padding: 40px 0;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	color: white;
	margin: 0 15px;
	text-decoration: none;
	transition: opacity 0.3s;
	cursor: pointer;
}

.footer-links a:hover {
	opacity: 0.8;
}

.copyright {
	font-size: 14px;
	opacity: 0.8;
}

/* Privacy Policy Modal Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 1000;
	overflow: auto;
	line-height: 1.6;   
}

.modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 30px;
	width: 80%;
	max-width: 700px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
	position: relative;
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	transition: color 0.3s;
}

.close-modal:hover {
	color: #f44336;
}

.modal-title {
	margin-top: 0;
	margin-bottom: 20px;
	color: #2c3e50;
	font-size: 24px;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
}

@media (max-width: 768px) {
	#bg-video {
		width: 100%;
		height: 100%;
	}
	
	#initial-message { 
		font-size: 2.5rem;
	}
	#second-message { 
		font-size: 2.5rem;
	}
	
	.section-heading {
		font-size: 1.5rem;
	}
	
	.section-heading-intro {
		font-size: 1.5rem;
	}

	.section-heading-company {
		font-size: 2rem;
	}

	.section-heading2 {
		font-size: 1.2rem;
	}

	.card h3 {
		font-size: 1.5rem;
	}
	
	.card p {
		font-size: 1.2rem;
	}

	.content-section {
		padding: 80px 16px;
	}

	.flex-container {
		flex-direction: column;
	}
	
	.contact-section {
		padding: 80px 16px;
	}


	.contact-form {
		padding: 30px 20px;
	}
	
	.modal-content {
		margin: 20% auto;
		width: 90%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	#bg-video {
		width: 100%;
		height: 100%;
	}
	
	#initial-message { font-size: 2.0rem; }
	#second-message { font-size: 2.0rem; }
	
	.section-heading {
		font-size: 1.4rem;
	}
	
	.section-heading-intro {
		font-size: 1.4rem;
	}

	.section-heading-company {
		font-size: 1.8rem;
	}

	.card h3 {
		font-size: 1.3rem;
	}
	
	.card p {
		font-size: 1.1rem;
	}
	
	.section-heading2 {
		font-size: 1.1rem;
	}

	.content-section {
		padding: 60px 12px;
	}

	.contact-section {
		padding: 60px 12px;
	}


	.contact-form {
		padding: 28px 18px;
	}

	.captcha-container {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.captcha-image {
		margin-bottom: 10px;
		margin-right: 0;
		width: 100%;
		text-align: center;
	}
}