* RESET*/ *,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* SCROLL ANIMATIONS */

.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-stagger {
	opacity: 0;
	transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal-fade {
	transform: translateY(20px);
}

.reveal-up {
	transform: translateY(60px);
}

.reveal-left {
	transform: translateX(-80px);
}

.reveal-right {
	transform: translateX(80px);
}

.reveal-stagger {
	transform: translateY(60px);
}

.reveal-visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* Stagger delay */
.reveal-stagger:nth-child(1) {
	transition-delay: .1s;
}

.reveal-stagger:nth-child(2) {
	transition-delay: .2s;
}

.reveal-stagger:nth-child(3) {
	transition-delay: .3s;
}

.reveal-stagger:nth-child(4) {
	transition-delay: .4s;
}

/* Hero Section */

.hero {
	background: linear-gradient(135deg, #f5f9ff 0%, #e6efff 100%);
	padding: 150px 0 110px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: #475569;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(45deg, #1e3a8a, #2563eb);
	color: white;
	box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
	transition: transform 0.3s ease-in-out;
}

.btn-primary:hover {
	transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
	background: white;
	color: #1e3a8a;
	border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
	background-color: #1e3a8a;
	color: #fff;
}

.hero-image {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-visual {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.central-logo {
	text-align: center;
	color: white;
	z-index: 2;
}

.central-logo i {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: block;
	text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.central-logo span {
	font-size: 1.2rem;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.floating-icons {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.icon-item {
	position: absolute;
	color: rgba(255, 255, 255, 0.2);
	font-size: 2rem;
	animation: float 6s ease-in-out infinite;
}

.icon-item:nth-child(1) {
	top: 20%;
	left: 15%;
	animation-delay: 0s;
}

.icon-item:nth-child(2) {
	top: 60%;
	left: 80%;
	animation-delay: 1s;
}

.icon-item:nth-child(3) {
	top: 80%;
	left: 20%;
	animation-delay: 2s;
}

.icon-item:nth-child(4) {
	top: 30%;
	left: 75%;
	animation-delay: 3s;
}

.icon-item:nth-child(5) {
	top: 70%;
	left: 50%;
	animation-delay: 4s;
}

.icon-item:nth-child(6) {
	top: 40%;
	left: 30%;
	animation-delay: 5s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Hero Mobile Responsive */

@media (max-width: 992px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.hero-content h1 {
		font-size: 2.6rem;
	}

	.hero-visual {
		height: 350px;
	}
}

@media (max-width: 600px) {
	.hero {
		padding: 130px 0 80px;
	}

	.hero-content h1 {
		font-size: 2.1rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.hero-buttons {
		justify-content: center;
	}
}


/* Contacts Section */
.contacts {
	padding: 100px 0;
	background: white;
}

.contacts-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contacts h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #1e3a8a;
	margin-bottom: 4rem;
}

.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.contact-item {
	background: linear-gradient(135deg, #f4f7ff 0%, #e6edff 100%);
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
	overflow: hidden;
	padding-left: 1rem;
	padding-right: 1rem;
}

.contact-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
	font-size: 3rem;
	color: #2563eb;
	margin-bottom: 1.5rem;
}

.contact-item h3 {
	font-size: 1.5rem;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.contact-item p {
	/* font-size: 0.95rem; */
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.contact-item a {
	text-decoration: none;
	font-weight: 500;
	color: #2563eb;
}

/* Emergency Call Section */

.emergency-alert {
	background: linear-gradient(45deg, #ff6b6b, #e74c3c);
	padding: 32px 0px;
	color: white;
}

.emergency-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.alert-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.alert-icon i {
	font-size: 3rem;
	color: #fff
}

.alert-text {
	flex: 1;
	min-width: 250px;
}

.alert-text h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.alert-text p {
	font-size: 1rem;
	opacity: 0.9;
}

.btn-urgent {
	background: linear-gradient(45deg, #e74c3c, #c0392b);
	color: white;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	animation: pulse 2s infinite;
}

/* btn urgent keyframes */

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}


.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn.btn-urgent:hover {
	background-color: #8a0000;
}

/* Emergency Mobile responsiveness */


@media (max-width: 768px) {
	.alert-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
}