.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: 2.5rem;
  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;
}

@keyframes moveGradient {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(-50px, -50px) rotate(180deg); }
}

/* Hero Section with Parallax */
.hero-section {
	background: linear-gradient(135deg, #00a6e2, #009fcb52);
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
}

@keyframes pulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.8; }
}



.hero-section h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUp 1s ease forwards 0.3s;
	background-image: linear-gradient(#00b9ff, #006f91);
	color: transparent;
	background-clip: text;

}

.hero-section .subtitle {
	font-size: 1.6rem;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUp 1s ease forwards 0.5s;
	color: #0091c2;
	font-weight: 600;
}

.hero-section .tagline {
	font-size: 1.2rem;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUp 1s ease forwards 0.7s;
}

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating Stats */
.stats-container {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUp 1s ease forwards 0.9s;
}

.stat-card {
	background: #fff;
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 35px 20px;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	color: #0082a9;
	box-shadow: 0px 3px 12px 0px rgb(28 28 28 / 20%);
}

.stat-icon {
	font-size: 3rem;
	margin-bottom: 15px;
	display: block;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	display: block;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.95;
	font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce-vertical 2s ease-in-out infinite;
	z-index: 3;
}

@keyframes bounce-vertical {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 15px); }
}

.scroll-indicator span {
	display: block;
	width: 30px;
	height: 50px;
	border: 3px solid rgba(255,255,255,0.8);
	border-radius: 25px;
	position: relative;
}

.scroll-indicator span::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	transform: translateX(-50%);
	animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
	0% { top: 8px; opacity: 1; }
	100% { top: 30px; opacity: 0; }
}

/* Section Styling */
section {
	position: relative;
	padding: 100px 0;
}

.section-bg {
	background: linear-gradient(135deg, #f5f7fa 0%, #ecfbff 100%);
}

.section-title {
	text-align: center;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible {
	opacity: 1;
	transform: translateY(0);
}





.section-title p {
	font-size: 1.3rem;
	color: #666;
}

.section-title1 {
	font-weight: 600;
	color: #0082a9;
}

/* Feature Cards with Stagger Effect */
.feature-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.feature-card {
	background: white;
	border-radius: 25px;
	padding: 45px 35px;
	box-shadow: 0 10px 40px rgba(0, 166, 226, 0.08);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(50px) scale(0.9);
	border: 2px solid transparent;
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.feature-content {
	position: relative;
	z-index: 1;
}

.feature-icon {
	font-size: 4rem;
	margin-bottom: 25px;
	display: block;
	transition: all 0.6s ease;
	text-align: center;
}



.feature-card h4 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #00a6e2;
	margin-bottom: 12px;
	transition: color 0.3s ease;
	text-align: center;
}

.feature-card h5 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 18px;
	transition: color 0.3s ease;
	text-align: center;
}

.feature-card p {
	color: #666;
	line-height: 1.8;
	font-size: 1rem;
	transition: color 0.3s ease;
	text-align: center;
}

/* Highlight Section with Parallax */
.highlight-section {
	background: linear-gradient(135deg, #00a6e2, #009fcb52);
	padding: 100px 0;
	color: white;
	position: relative;
	overflow: hidden;
}

.highlight-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: move-bg 20s linear infinite;
}

@keyframes move-bg {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

.highlight-content {
	position: relative;
	z-index: 1;
}

.highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.highlight-box {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	transform: scale(0.8) translateY(30px);
	cursor: pointer;
	box-shadow:0 10px 40px rgba(0, 166, 226, 0.08);
}

.highlight-box.visible {
	opacity: 1;
	transform: scale(1) translateY(0);
}



.highlight-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
	display: block;
	transition: transform 0.5s ease;			
}



.highlight-box h5 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.highlight-box p {
	font-size: 1rem;
	opacity: 0.95;
}

.highlight-featured {
	grid-column: 1 / -1;
	background: rgba(255, 255, 255, 0.25);
}

.highlight-featured .highlight-icon {
	font-size: 4.5rem;
}

.highlight-featured h5 {
	font-size: 2rem;
}

/* Counter Animation */
.counter {
	font-size: 3rem;
	font-weight: 800;
	display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
	.stats-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.hero-section .subtitle {
		font-size: 1.2rem;
	}

	.stats-container {
		grid-template-columns: 1fr;
	}

	.section-title h2 {
		font-size: 2rem;
	}

	.feature-icon {
		font-size: 3rem;
	}
}

/* Progress Bar on Scroll */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, #00a6e2, #0077b6);
	z-index: 9999;
	transition: width 0.2s ease;
}


.feature-icon {
	font-size: 40px;
}

.card {
	background: white;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(0, 166, 226, 0.08);
	border: 2px solid transparent;
}
.card h4{
	font-size: 1.5rem;
	font-weight: 700;
	color: #00a6e2;
	margin-bottom: 12px;
	transition: color 0.3s ease;
	text-align: center;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}
.section-description {
	font-size: 1.3em;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}
.section-emoji {
	font-size: 4em;
	display: inline-block;
	margin-bottom: 10px;
}
.cta-section {
	background: linear-gradient(135deg, #0082a9, #006f8c26);
	color: white;
	padding: 60px;
	text-align: center;
	margin-bottom: 2rem;
	margin-left:15px;
	margin-right:15px;
	border-radius:20px;
}

.cta-button {
	background: white;
	color: #0082b0;
	padding: 18px 50px;
	border: none;
	border-radius: 50px;
	font-size: 1.2em;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.cta-button:hover {
	transform: scale(1.005);
	box-shadow: 0 15px 39px rgb(0 0 0 / 18%);
}