:root {
	--primary: #0a2540;
	--secondary: #3a86ff;
	--background: #ffffff;
	--light: #f5f7fa;
	--text: #1c2b36;
	--shadow: 0 24px 60px rgba(10, 37, 64, 0.16);
	--radius: 18px;
	--radius-sm: 12px;
	--transition: 0.3s ease;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



html {
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", sans-serif;
	color: var(--text);
	background: var(--background);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

.container {
	width: min(1120px, 90%);
	margin: 0 auto;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	background: var(--primary);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	z-index: 99;
}

.skip-link:focus {
	left: 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--background);
	border-bottom: 1px solid rgba(10, 37, 64, 0.08);
	transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
	box-shadow: 0 12px 30px rgba(10, 37, 64, 0.1);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
}

.nav-bar {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 18px 0;
}

.logo {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--primary);
	letter-spacing: 0.2px;
}

.logo span {
	color: var(--secondary);
}

.logo.light {
	color: #fff;
}

.nav {
	justify-content: flex-end;
}

.nav-menu {
	display: flex;
	gap: 20px;
	justify-content: flex-end;
}

.nav-menu a {
	font-weight: 600;
	font-size: 0.95rem;
	padding: 6px 0;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--secondary);
	transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
	width: 100%;
}

.nav-toggle {
	display: none;
	border: none;
	background: transparent;
	padding: 6px;
	cursor: pointer;
}

.nav-toggle__line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--primary);
	margin: 5px 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 600;
	border: 1px solid transparent;
	transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(10, 37, 64, 0.15);
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-light {
	background: #fff;
	color: var(--primary);
}

.btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	background: transparent;
}

.btn-outline.light {
	border-color: rgba(255, 255, 255, 0.7);
}

.hero {
	background: linear-gradient(120deg, #0a2540 0%, #1b4f99 45%, #3a86ff 100%);
	color: #fff;
	padding: 110px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	filter: blur(0.5px);
}

.hero::before {
	width: 320px;
	height: 320px;
	top: -120px;
	left: -60px;
}

.hero::after {
	width: 240px;
	height: 240px;
	bottom: -100px;
	right: 60px;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	align-items: center;
}



.hero-content h1 {
	font-family: "Poppins", sans-serif;
	font-size: clamp(2.4rem, 3vw, 3.5rem);
	line-height: 1.2;
	margin: 12px 0 16px;
	
}
#heading1{
	color: #ffffff;
}

.lead {
	font-size: 1.05rem;
	max-width: 520px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgb(255, 255, 255);
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin: 28px 0 32px;
	flex-wrap: wrap;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 18px;
}

.hero-metrics h3 {
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
}

.hero-card {
	position: relative;
	display: grid;
	gap: 16px;
}

.hero-card__panel {
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 24px;
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
}

.hero-card__panel.ghost {
	position: absolute;
	inset: 16px -16px -16px 16px;
	background: rgba(255, 255, 255, 0.08);
	z-index: -1;
}

.hero-card h4 {
	font-family: "Poppins", sans-serif;
	margin-bottom: 6px;
}
/* ===== Animate Balls Like Fish Swimming ===== */

.hero::before,
.hero::after {
  animation: swim1 18s ease-in-out infinite alternate;
}

/* Different motion for second ball */
.hero::after {
  animation: swim2 22s ease-in-out infinite alternate;
}


/* First Ball Movement */
@keyframes swim1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, 30px) rotate(5deg);
  }
  50% {
    transform: translate(80px, -20px) rotate(-5deg);
  }
  75% {
    transform: translate(30px, 40px) rotate(3deg);
  }
  100% {
    transform: translate(60px, -10px) rotate(-3deg);
  }
}


/* Second Ball Movement */
@keyframes swim2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-30px, -40px) rotate(-4deg);
  }
  50% {
    transform: translate(-60px, 20px) rotate(4deg);
  }
  75% {
    transform: translate(-20px, -30px) rotate(-2deg);
  }
  100% {
    transform: translate(-50px, 10px) rotate(2deg);
  }
}
.chart {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin: 18px 0;
}

.chart span {
	display: block;
	width: 20%;
	background: #fff;
	border-radius: 8px 8px 4px 4px;
	opacity: 0.85;
}

.chart span:nth-child(1) {
	height: 40px;
}

.chart span:nth-child(2) {
	height: 56px;
}

.chart span:nth-child(3) {
	height: 72px;
}

.chart span:nth-child(4) {
	height: 64px;
}

.hero-card__stats {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.9rem;
}

.section {
	padding: 90px 0;
}

.section.light {
	background: var(--light);
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.section-header h2,
.split-grid h2,
.cta h2 {
	font-family: "Poppins", sans-serif;
	font-size: clamp(2rem, 2.5vw, 2.6rem);
	margin: 10px 0 14px;
}

.split-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	align-items: center;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.pill-list span {
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(58, 134, 255, 0.12);
	color: var(--primary);
	font-weight: 600;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.card {
	background: #fff;
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: 0 16px 32px rgba(10, 37, 64, 0.08);
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(10, 37, 64, 0.14);
}

.card h3 {
	font-family: "Poppins", sans-serif;
	margin: 16px 0 8px;
}

.card-media {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(10, 37, 64, 0.08);
	margin-bottom: 6px;
}

.card-media img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
}

.card .btn {
	margin-top: auto;
	align-self: flex-start;
}

.icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(58, 134, 255, 0.12);
	color: var(--secondary);
}

.expertise-list {
	display: grid;
	gap: 20px;
}

.expertise-item {
	border-radius: var(--radius-sm);
	padding: 20px 22px;
	border: 1px solid rgba(10, 37, 64, 0.08);
	background: #fff;
}

.expertise-item h3 {
	font-family: "Poppins", sans-serif;
	margin-bottom: 6px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.testimonial-card {
	background: #fff;
	padding: 24px;
	border-radius: var(--radius);
	box-shadow: 0 16px 32px rgba(10, 37, 64, 0.08);
}

.testimonial-card blockquote {
	font-style: italic;
	margin-bottom: 18px;
}

.testimonial-card figcaption {
	display: grid;
	gap: 4px;
	font-size: 0.95rem;
}

.cta {
	background: linear-gradient(120deg, #0a2540 0%, #1b4f99 45%, #3a86ff 100%);
	color: #fff;
	padding: 70px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	align-items: center;
}

.cta-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.faq {
	background: var(--light);
	border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.faq-list {
	display: grid;
	gap: 14px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.12);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
}

.faq-item summary {
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 22px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--secondary);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin-top: 10px;
	color: rgba(28, 43, 54, 0.9);
}

.contact-details {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.contact-details h4 {
	font-family: "Poppins", sans-serif;
	margin-bottom: 4px;
}

.contact-form {
	background: #fff;
	padding: 28px;
	border-radius: var(--radius);
	box-shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
	display: grid;
	gap: 16px;
}

.contact-form label {
	font-weight: 600;
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(10, 37, 64, 0.16);
	font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(58, 134, 255, 0.4);
	border-color: var(--secondary);
}

.form-note {
	font-size: 0.85rem;
	color: rgba(28, 43, 54, 0.6);
}

.footer {
	background: var(--primary);
	color: #fff;
	padding: 70px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
}

.footer h4 {
	font-family: "Poppins", sans-serif;
	margin-bottom: 12px;
}

.footer ul {
	display: grid;
	gap: 8px;
}

.newsletter {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.newsletter input {
	flex: 1 1 180px;
	padding: 10px 12px;
	border-radius: 999px;
	border: none;
}

.footer-bottom {
	margin-top: 40px;
	text-align: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 960px) {
	.nav-bar {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav {
		justify-self: end;
	}

	.nav-menu {
		position: absolute;
		top: 72px;
		right: 5%;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		border-radius: 16px;
		box-shadow: 0 16px 32px rgba(10, 37, 64, 0.15);
		display: none;
	}

	.nav-menu.open {
		display: flex;
	}

	.nav-toggle {
		display: block;
	}

	.btn-primary {
		justify-self: end;
	}
}

@media (max-width: 720px) {
	.hero {
		padding-top: 90px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-metrics {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.faq-item {
		padding: 14px 16px;
	}
}


/* ===== Newsletter Section Styling Only ===== */

.newsletter {
  display: flex;
  align-items: center;
  margin-top: 15px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 4px;
}

.newsletter input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: #bbb;
}

.newsletter button {
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  background: #c9a227;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter button:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* Mobile small fix */
@media (max-width: 600px) {
  .newsletter {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter button {
    width: 100%;
    margin-top: 8px;
  }
}

/* ================= PREMIUM FOOTER ================= */

.footer-bottom {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 22px 0;
  color: #dcdcdc;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Subtle top glow line */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  opacity: 0.4;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: #dcdcdc;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.footer-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}
/* ===== Footer Enhancement Styling ===== */

/* Improve footer spacing */
.footer {
  padding-top: 80px;
}

/* Better grid spacing */
.footer-grid {
  gap: 50px;
}

/* Headings refinement */
.footer h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
}

/* Links hover refinement */
.footer ul li a {
  transition: 0.3s ease;
}

.footer ul li a:hover {
  padding-left: 6px;
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
  font-size: 14px;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: var(--primary);
}

/* Bottom section alignment */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Bottom links styling */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  transition: 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* ===============================
   NEWSLETTER FORM STYLING
================================= */

.newsletter {
  max-width: 500px;
  margin: 30px auto;
}

.newsletter-field {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Input Styling */
.newsletter input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  border-radius: 30px;
  background: #f5f7fa;
  transition: all 0.3s ease;
}

.newsletter input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.newsletter button {
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .newsletter-field {
    flex-direction: column;
    border-radius: 16px;
  }

  .newsletter button {
    width: 100%;
  }
}
