.nav-dropdown1 {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  background:#fff;
  padding:0;
}

nav ul {
  list-style: none;  
}

nav ul li {
  float: left;
  position: relative;
}
a:hover{
	color:#0056b3;
}

nav ul li ul li:hover{
	background:#ddd;
}

nav  ul li a:not(:only-child):after,
nav  ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

nav ul li ul li {
  min-width: 200px;
  padding:10px;
}

nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}
.nav-light .navbar-nav .nav-link{
	color:#fff;
	Cursor:pointer;
	padding:8px;
}

.navbar-nav .nav-link{
	font-size:13px;
	font-weight:600 !important;
}

.nav-light .navbar-nav .active .nav-link, .nav-light .navbar-nav .active .nav-link:hover, .nav-light .navbar-nav .nav-item:hover > a, .nav-light .navbar-nav .nav-link:hover{
	background:linear-gradient(to bottom right, #00b6ff, #00606e);
}

.header-one{
	background:#0080a8;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
  padding-top:30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #47b2e4;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

p span{
	color:#47b2e4;
}

h4{
	color:#47b2e4;
}

.rounded-circle{
	width:50px;
	height:50px;
}

 /* Hero Section */
.hero {
	padding: 60px 20px 80px;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5em;
	margin-bottom: 20px;
	font-weight: 800;
	animation: fadeInDown 1s ease;
	background-image: linear-gradient(#00b9ff, #006f91);
	color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.4em;
	margin-bottom: 15px;
	opacity: 0.95;
	animation: fadeInDown 1.2s ease;
	color: #0091c2;
	font-weight: 600;
}

.hero-description {
	font-size: 1.1em;
	opacity: 0.9;
	margin-bottom: 40px;
	animation: fadeInDown 1.4s ease;
	max-width: 700px;
	margin: 0 auto 40px;
	color: #0091c2;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-icon {
	font-size: 80px;
	margin-bottom: 20px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

/* Container */
.container-custom {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 20px;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #ecfbff 100%);
	padding: 60px 20px;
	margin: -40px 0 60px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.stat-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 166, 226, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-icon {
	font-size: 2.5em;
	margin-bottom: 15px;
}

.stat-number {
	font-size: 2.5em;
	font-weight: 800;
	color: #00a6e2;
	margin-bottom: 10px;
}

.stat-label {
	color: #666;
	font-size: 1em;
	font-weight: 600;
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-icon {
	font-size: 3.5em;
	margin-bottom: 20px;
	display: inline-block;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #00a6e2, #009fcb);
	border-radius: 2px;
}

.section-description {
	font-size: 1.2em;
	color: #666;
	max-width: 700px;
	margin: 30px auto 0;
	line-height: 1.8;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.service-card {
	background: linear-gradient(135deg, #f5f7fa 0%, #ecfbff 100%);
	border-radius: 20px;
	padding: 40px 35px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow:0px 3px 12px 0px rgb(28 28 28 / 20%);
	height:100%;
}

.service-icon-box {
	width: 80px;
	height: 80px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5em;
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgb(141 141 141 / 30%);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
	border: 0.5px solid #cecece;
}

.service-title {
	font-size: 1.6em;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.service-description {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}

.service-features li {
	padding: 10px 0;
	color: #555;
	position: relative;
	padding-left: 30px;
	transition: all 0.3s ease;
}

.service-btn {
	background: linear-gradient(135deg, #00a6e2, #009fcb);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
	display: inline-block;
	text-decoration: none;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.service-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.5s, height 0.5s;
}

.service-btn:hover::before {
	width: 300px;
	height: 300px;
}

.service-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 166, 226, 0.4);
	text-decoration: none;
	color: white;
}
 .service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #00a6e2;
	font-weight: bold;
	font-size: 1.2em;
}


/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #00a6e2, #009fcb);
	border-radius: 25px;
	padding: 80px 60px;
	text-align: center;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	color: white;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: moveDots 15s linear infinite;
}

@keyframes moveDots {
	0% { transform: translate(0, 0); }
	100% { transform: translate(40px, 40px); }
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: 2.5em;
	font-weight: 800;
	margin-bottom: 20px;
}

.cta-description {
	font-size: 1.2em;
	margin-bottom: 40px;
	opacity: 0.95;
}

.cta-button {
	background: white;
	color: #00a6e2;
	padding: 18px 50px;
	border: none;
	border-radius: 50px;
	font-size: 1.2em;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-button.secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal-content {
	border-radius: 20px;
	border: none;
}

.modal-header {
	background: linear-gradient(135deg, #00a6e2, #009fcb);
	color: white;
	border-radius: 20px 20px 0 0;
	border: none;
}

.modal-title {
	font-weight: 700;
}

.form-control:focus {
	border-color: #00a6e2;
	box-shadow: 0 0 0 0.2rem rgba(0, 166, 226, 0.25);
}

.btn-submit {
	background: linear-gradient(135deg, #00a6e2, #009fcb);
	border: none;
	padding: 12px 40px;
	font-size: 1.1em;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.3s ease;
	color: white;
}

.btn-submit:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 166, 226, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5em;
	}

	.section-title {
		font-size: 2em;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.cta-section {
		padding: 50px 30px;
	}
}

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}