* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

body {
	background: #f5f8ff;
	color: #0b1320;
}

.container {
	width: 90%;
	max-width: 1300px;
	margin: auto;
}

:root {
	--primary: #0862d1;
	--dark: #061539;
	--yellow: #ffb400;
	--light: #ffffff;
}

header {
	background: #fff;
	padding: 10px 0;
	position: sticky;
	top: 0;
	z-index: 999;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 42px;
	font-weight: 800;
}

.logo span {
	color: #3d8cff;
}

.hero {
	padding: 100px 0;
	background: linear-gradient(to right, #061539 45%, rgba(6, 21, 57, 0.6)),
		url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop') center/cover;
	color: white;
}

.hero h1 {
	font-size: 62px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.hero h1 span {
	color: #0962d1;
}

.hero p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #dce7ff;
}

.btn {
	display: inline-block;
	padding: 15px 35px;
	background: var(--yellow);
	color: #000;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
}

.btn:hover {
	transform: translateY(-3px);
}

.section {
	padding: 90px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	color: var(--dark);
    font-weight: bold;
}

.section-title p {
	margin-top: 10px;
	color: #555;
}

.service-areas {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.area-box {
	background: white;
	padding: 20px 30px;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	font-weight: 600;
	color: var(--dark);
}

.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.plan-card {
	background: white;
	border-radius: 24px;
	padding: 40px 30px;
	text-align: left;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
	transition: .3s;
	position: relative;
	overflow: hidden;
}

.plan-card:hover {
	transform: translateY(-10px);
}

.plan-card::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 6px;
	background: linear-gradient(to right, var(--primary), #59a7ff);
	left: 0;
	top: 0;
}

.plan-card h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--dark);
}

.old-price {
	text-decoration: line-through;
	color: #888;
	font-size: 22px;
}

.new-price {
	font-size: 52px;
	color: var(--primary);
	font-weight: 800;
	margin: 10px 0;
}

.plan-card ul {
	list-style: none;
	margin-top: 10px;
    padding-left:10px !important;
}

.plan-card ul li {
	margin: 12px 0;
	color: #555;
}

.features {
	background: #061539;
	color: white;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-box {
	background: #0f2459;
	padding: 35px;
	border-radius: 22px;
	text-align: center;
}

.feature-box h4 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #66a8ff;
}

.experience {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.experience img {
	width: 100%;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-content h2 {
	font-size: 46px;
	margin-bottom: 20px;
	color: var(--dark);
}

.experience-content p {
	line-height: 1.9;
	color: #555;
	margin-bottom: 25px;
}

.services-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.service-item {
	background: #eef4ff;
	padding: 15px;
	border-radius: 12px;
	font-weight: 600;
}

.contact {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	color: white;
	text-align: center;
	padding: 90px 20px;
}

.contact h2 {
	font-size: 50px;
	margin-bottom: 20px;
}

.contact p {
	font-size: 20px;
	margin-bottom: 25px;
}

.phone {
	font-size: 48px;
	font-weight: 800;
	color: var(--yellow);
    letter-spacing: 3px;
}

footer {
	background: #02102f;
	color: #b7c6ef;
	text-align: center;
	padding: 25px;
}

@media(max-width:900px) {
	.hero h1 {
		font-size: 42px;
	}

	.experience {
		grid-template-columns: 1fr;
	}

	.contact h2 {
		font-size: 36px;
	}

	.phone {
		font-size: 34px;
	}
}