.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 {
   background: linear-gradient(135deg, rgb(255 255 255), rgb(244 244 244));
	padding: 40px 20px;
	text-align: center;
	color: #000;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
		linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05));
	background-size: 80px 140px;
	animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
	0% { transform: translate(0, 0); }
	100% { transform: translate(80px, 140px); }
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 4em;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
	font-size: 1.4em;
	margin-bottom: 30px;
	opacity: 0.95;
	animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-image-box {
	width: 100%;
	max-width: 900px;
	height: 450px;
	margin: 30px auto;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgb(0 0 0 / 23%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #007c97 0%, #4fc6e3 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 40px;
}

.hero-image svg {
	width: 60%;
	height: 60%;
}

.container-custom {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 20px;
}

.section {
	background: white;
	border-radius: 20px;
	padding: 50px;
	margin-bottom: 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.section-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 3px solid #4568dc;
}

.icon {
	width: 70px;
	height: 70px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: white;
	margin-right: 20px;
	box-shadow: 0 10px 30px rgb(89 89 89 / 15%);
}

.section-header h2 {
	font-size: 2em;
	color: #4568dc;
}

.section-image-box {
	width: 100%;
	height: 300px;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-image {
	width: 100%;
	height: 100%;
	background: #dcf8ff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-image svg {
	width: 50%;
	height: 50%;
}

.feature-card {
	background: linear-gradient(135deg, #f5f7fa 0%, #ecfbff 100%);
	padding: 30px;
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	height: 100%;
}

.feature-card:hover::before {
	left: 100%;
}


.feature-card-image-box {
	width: 100%;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}

.feature-card-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c4efff 0%, #bdc8ff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card-image svg {
	width: 50%;
	height: 50%;
}

.feature-card h3 {
	color: #00b6ec;
	margin-bottom: 15px;
	font-size: 1em;
	font-weight: 700;
}

.feature-card p {
	color: #555;
	line-height: 1.6;
}

.module-badge {
	display: inline-block;
	background: #0082ab;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85em;
	margin-bottom: 10px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.stat-box {
	background: linear-gradient(135deg, #00a6e2, #009fcb52);
	color: white;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(69, 104, 220, 0.3);
}

.stat-box h3 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

.stat-box p {
	font-size: 1.1em;
	opacity: 0.9;
}

.cta-section {
	background: linear-gradient(135deg, #0082a9, #006f8c26);
	color: white;
	padding: 60px;
	border-radius: 20px;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 2rem;
}

.cta-button {
	background: white;
	color: #0082b0;
	padding: 18px 50px;
	border: none;
	border-radius: 50px;
	font-size: 1.2em;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 10px;
}

.cta-button:hover {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Modal Styles */
.modal-content {
	border-radius: 20px;
	border: none;
}

.modal-header {
	background: linear-gradient(to bottom right, #00b6ff, #007b8d);
	color: white;
	border-radius: 20px 20px 0 0;
	border: none;
}

.modal-title {
	font-weight: bold;
}

.form-control:focus {
	border-color: #a7eaff;
	box-shadow: 0 0 0 0.2rem rgb(0 160 209 / 11%);
}

.btn-submit {
	background: linear-gradient(135deg, #4568dc, #b06ab3);
	border: none;
	padding: 12px 40px;
	font-size: 1.1em;
	font-weight: bold;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(69, 104, 220, 0.4);
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5em;
	}
	.section {
		padding: 30px 20px;
	}
}