* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #2c3e50;
	overflow-x: hidden;
}


/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, #12346a 0%, #0d2153 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateX(0) translateY(0); }
	25% { transform: translateX(10px) translateY(-10px); }
	50% { transform: translateX(-5px) translateY(10px); }
	75% { transform: translateX(-10px) translateY(-5px); }
}

.hero-content {
	text-align: center;
	color: white;
	max-width: 900px;
	padding: 0 2rem;
	z-index: 2;
	position: relative;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: slideUp 1s ease 0.5s forwards;
}

.hero .highlight {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.4rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: slideUp 1s ease 0.7s forwards;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: slideUp 1s ease 0.9s forwards;
}

.cta-button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
	background: transparent;
	border: 2px solid white;
	color: white;
	box-shadow: none;
}

.cta-button.secondary:hover {
	background: white;
	color: #667eea;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Main Content */
.main-content {
	padding: 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	padding-top: 4rem;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1rem;
	position: relative;
}

.section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 2px;
}

.section-header p {
	color: #64748b;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 6rem;
}

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	color: white;
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.service-card p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-card ul {
	list-style: none;
	padding: 0;
}

.service-card li {
	color: #64748b;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.service-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff6b35;
	font-weight: bold;
}

/* Why Choose Us Section */
.why-choose {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 6rem 0;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.why-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.why-content p {
	color: #64748b;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.why-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.why-feature {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.why-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-feature-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.why-feature h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.why-feature p {
	font-size: 0.9rem;
	color: #64748b;
	margin: 0;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #2c3e50, #3498db);
	padding: 4rem 0;
	color: white;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item {
	padding: 1rem;
}

.stat-item h4 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-item p {
	opacity: 0.9;
	font-size: 1.1rem;
}

.stat-item-static {
	padding: 1rem;
}

.stat-item-static h4 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-item-static p {
	opacity: 0.9;
	font-size: 1.1rem;
}

/* Contact CTA Section */
.contact-cta {
	padding: 6rem 0;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	text-align: center;
	color: white;
}

.contact-cta h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact-cta p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* Footer */
.footer {
	background: #1a202c;
	color: white;
	text-align: center;
	padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1 { font-size: 2.8rem; }
	.hero p { font-size: 1.2rem; }
	.why-grid { grid-template-columns: 1fr; gap: 2rem; }
	.why-features { grid-template-columns: 1fr; }
	.section-header h2 { font-size: 2rem; }
	.services-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-buttons { flex-direction: column; align-items: center; }
	
	.contact-cta h2 { font-size: 2rem; }
	.why-content h2 { font-size: 2rem; }
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
	.custom-video,
	.news-detail-image {
		object-fit: cover;
		width: 100vw;
		height: 90dvh;
	}
}
.videoWrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  z-index: 100;
  overflow: hidden;
  padding-bottom: 39%; /* 16:9 */
}
@media (max-width: 768px) {
  .videoWrapper {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 0; /* Remove aspect ratio constraint */
  }
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .videoWrapper {
      height: -webkit-fill-available;
      min-height: -webkit-fill-available;
    }
  }
}

/* Video element inside wrapper */
.videoWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.heroText {
  position: absolute;
  z-index: 900;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
  color:white;
}