/* ====================================================
   HOME PAGE CSS (no Tailwind) — WINGS Brand
   Primary:  #0a4878
   Secondary:#21659a
   Text:     #5f5f5f
   ==================================================== */

/* ---------- Variables ---------- */
:root {
	--primary: #1b375e;
	--secondary: #285272;
	--text: #3A4A58;
	--muted: rgba(95, 95, 95, 0.72);

	--container-max: 1200px;
	--radius-lg: 14px;
	--glass: rgba(255, 255, 255, 0.62);
	--navy: #001f3f;
	/* Professional, trust */
	--teal: #00a896;
	/* Growth, modernity */
	--light-teal: #e6f7f6;
	/* Section background */
	--white: #ffffff;
	--gray: #333333;
	--light-gray: #f4f4f4;
	--yellow-accent: #ffc300;
	/* Contrasting CTA */

}

/* ---------- Reset (light) ---------- */
* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
	font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ---------- Layout container ---------- */
.container {
	width: 92%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
}

/* ---------- HERO ---------- */
.hero-section {
	position: relative;
	min-height: 520px;
	/* desktop default */
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #f9f7ff;
	background-size: cover;
}

/* background image: replace URL in your project */
.hero-section .hero-overlay,
.hero-section .hero-bg {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	z-index: 0;
}

/* keep .hero-overlay for color overlay & fade effect; easily tweak opacity */
.hero-section {
	background-image: url('../images/hero-desktop.png');
	/* placeholder - replace later */
	filter: none;
}

/* overlay to improve text readability (soft purple gradient + darkening)
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(70,43,168,0.10) 0%,
      rgba(70,43,168,0.08) 20%,
      rgba(255,255,255,0.92) 35%,
      rgba(255,255,255,0.7) 55%,
      rgba(255,255,255,0.35) 75%,
      rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
} */

/* content on top */
.hero-content {
	position: relative;
	z-index: 2;

}

/* Title & subtitle */
.hero-title {
	font-size: 28px;
	line-height: 1.05;
	font-weight: 700;
	color: var(--primary);

	margin: 0 0 18px;
}

.hero-sub {
	font-size: 16px;
	margin: 0 0 20px;
	color: var(--primary);

	opacity: 0.95;
}

/* CTA buttons */

.btn-primary {
	background: var(--primary);
	color: #fff;
	border: 2px solid var(--primary);
	transition: 0.3s ease;
}

.btn-primary:hover {
	background: var(--secondary);
	/* deeper purple */
	border-color: var(--secondary);
	transform: translateY(-3px);
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

/* ---------- STANDS-FOR SECTION ---------- */
.stands-section {
	padding: 44px 0;
	margin-top: 30px;
}

.section-heading {
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	color: var(--primary);
	margin: 0 0 18px;
}

/* grid */
.stands-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 18px;
}

/* card */
.stands-card {
	background: #ffffffab;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(70, 43, 168, 0.06);
	transition: transform .25s ease, box-shadow .25s ease;
}

.stands-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(70, 43, 168, 0.08);
}

.icon-box {
	width: 100%;
	height: 200px;
	margin: 0 auto 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.95;
}

.card-title {
	margin: 6px 0 8px;
	font-weight: 700;
	color: var(--primary);
	font-size: 18px;
	text-align: left;
}

.card-desc {
	color: var(--text);
	font-size: 14px;
	margin: 0;
	font-weight: 500;
	text-align: left;
}


/* ---------- Animations ---------- */
.fade-in {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .6s ease, transform .6s ease;
}

.in-view {
	opacity: 1 !important;
	transform: none !important;
}

/* ---------- Responsive layout ---------- */

/* >= 700px */
@media(min-width:700px) {
	.hero-section {
		min-height: 560px;
	}

	.hero-title {
		font-size: 36px;
		line-height: 44px;
	}

	.hero-sub {
		font-size: 18px;
	}

	.stands-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

/* >= 1000px */
@media(min-width:1000px) {
	.container {
		width: 88%;
		max-width: var(--container-max);
	}

	.hero-content {
		max-width: 56%;
		text-align: left;
		padding-left: 6%;
	}

	.hero-section {
		min-height: 640px;
	}

	.hero-title {
		font-size: 48px;
		line-height: 52px;
	}

	.hero-sub {
		font-size: 20px;
	}


}

/* ensure header placeholder space (if header is fixed in common.css) */
#header {
	width: 100%;
	height: 64px;
}

/* small utility */
.center {
	text-align: center;
}

/* ============================================
   ULTRA-SOFT HIGHLIGHT HOVER EFFECT
   (No border, no outline, no double line)
==
*/

@media (max-width: 999px) {
	.hero-section {
		background-image: url('../images/hero-mobile.png');
		background-position: right top;
		padding-top: 20px;
	}

	.hero-content {
		max-width: 65%;
		text-align: left;
		padding-left: 6%;
	}


	.hero-section::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;

		width: 100%;
		height: 100%;
		background: #cee4ebb5;
		transition: width 0.3s ease;

	}
}


/* ====================================
   CAREER STARTER KIT SECTION
==================================== */
.career-kit-section {
	padding: 70px 20px;
}

.career-kit-container {
	max-width: 1100px;
	margin: auto;
	display: grid;
	grid-template-columns: 120px auto;
	align-items: center;
	gap: 30px;
}

@media (max-width: 768px) {
	.career-kit-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Icon */
.career-kit-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.circle-outer {
	width: 70px;
	height: 70px;
	border: 4px solid var(--secondary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.circle-inner {
	width: 40px;
	height: 40px;
	border: 4px solid var(--primary);
	border-radius: 50%;
}

/* Content */
.career-kit-content h2 {
	font-size: 30px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 10px;
}

.career-kit-content .highlights {
	font-size: 17px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 8px;
}

.career-kit-content .subtext {
	font-size: 15px;
	color: #333;
	max-width: 450px;
	line-height: 1.5;
	opacity: 0.9;
	margin-bottom: 20px;
}

.career-btn {
	display: inline-block;
	padding: 12px 26px;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	transition: 0.25s;
}

.career-btn:hover {
	background: #083a61;
}


/* --- CTA Block Styling --- */
.callout {
	background-color: #3a7697;
	padding: 30px;
	color: var(--white);
	margin: 0 auto;
	text-align: center;
	margin-bottom: 40px;
}

.cta-headline {
	font-size: 28px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
}

.cta-text {
	font-size: 16px;
	margin-bottom: 20px;
}


.btn-white {
	background: #fff;
	color: var(--primary);
}

.btn-white:hover {
	color: #0a4878;
	transform: scale(0.98);
	transition: 0.5s;
}

/* --- Responsive adjustments for mobile --- */
@media (max-width: 768px) {
	.pillars-grid {
		flex-direction: column;
		align-items: center;
	}

	.pillar-step {
		margin-bottom: 25px;
		width: 100%;
		max-width: 350px;
	}


}


/* -------------------------------
   INDIVIDUAL CARD ANIMATIONS
--------------------------------*/

/* INITIAL STATE */
.stands-card {
	opacity: 0;
	transition: opacity .7s ease, transform .7s ease;
}

/* CARD 1 – Fade + Slide Up */
.stands-card:nth-child(1) {
	transform: translateY(25px);
}

.stands-card:nth-child(1).in-view {
	opacity: 1;
	transform: translateY(0);
}

/* CARD 2 – Fade + Slide Left */
.stands-card:nth-child(2) {
	transform: translateX(-30px);
}

.stands-card:nth-child(2).in-view {
	opacity: 1;
	transform: translateX(0);
}

/* CARD 3 – Fade + Slide Right */
.stands-card:nth-child(3) {
	transform: translateX(30px);
}

.stands-card:nth-child(3).in-view {
	opacity: 1;
	transform: translateX(0);
}

/* Hover Interaction (keep yours or this improved one) */
.stands-card:hover {
	transform: translateY(-6px);
	transition: transform .3s ease, box-shadow .3s ease;
	box-shadow: 0 4px 14px rgb(9 58 76 / 30%);
}

/* Container */
.steps-down-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
	margin: 20px auto;
}

.titles {
	margin-bottom: 50px;
}

.titles p {
	font-size: 16px;
}

.steps-down-section .titles h2 {
	font-size: 26px;
	color: var(--primary);
	margin-bottom: 0;
}

.steps-down-section h2 {
	font-size: 18px;
	color: #1983a9;
	margin-bottom: 20px;
}

/* Flow wrapper */
.steps-flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* Each step */
.step {
	position: relative;
	width: 100%;
	max-width: 720px;
}

/* The card */
.step-card {
	background: #ffffff;
	padding: 24px 28px;
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	text-align: center;
}

/* Small "Step X" badge */
.step-badge {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: rgba(23, 94, 149, 0.08);
	padding: 10px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.step-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 6px;
	font-family: "Roboto", sans-serif;
}

.step-card p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
}

/* Down arrow between steps */
.step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 12px solid #175e95;
	/* arrow color */
}

/* Optional small vertical line above arrow (for a “flow” feel) */
.step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -37px;
	transform: translateX(-50%);
	width: 2px;
	height: 25px;
	background: #c7e0f2;
	margin-bottom: 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.steps-down-section h2 {
		font-size: 26px;
	}

	.step-card {
		padding: 20px 18px;
	}

	.step-card h3 {
		font-size: 18px;
	}
}

/* Mobile adjustments */
@media(max-width:699px) {
	.hero-section {
		min-height: 420px;
		padding: 30px 0;
		align-items: flex-start;
	}

	.hero-content {
		text-align: center;
		max-width: 90%;
		margin: auto;
		padding: 10px;
	}

	.hero-title {
		font-size: 22px;
		line-height: 28px;
	}

	.hero-sub {
		font-size: 15px;
	}

	.hero-cta {
		margin-top: 12px;
		justify-content: center;
	}

	.steps-down-section {
		margin: 0 auto;
	}

}


.step-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.7s ease-out;
	will-change: opacity, transform;
	min-height: 1px;
	/* prevents collapse */
}

.step-animate.in-view {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.step-animate:nth-child(1) {
	transition-delay: 0.1s;
}

.step-animate:nth-child(2) {
	transition-delay: 0.25s;
}

.step-animate:nth-child(3) {
	transition-delay: 0.4s;
}

.step-animate:nth-child(4) {
	transition-delay: 0.55s;
}




.why-wings-stats {
  width: 100%;
  padding:80px 20px 40px 20px;
}

/* Row layout */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px 10px; /* space so borders don't touch */
  position: relative;
}

/* Individual item */
.stats-item {
  padding: 10px 30px;
  position: relative;
    opacity: 0;
  transition: all 0.8s ease;
}

/* Vertical separator (only between columns) */
.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e3e3e3;
}

/* Number */
.stats-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    display: inline-block;
    background: #1a7e9f;
    padding: 10px;
    border-radius: 2px;
    width: 85px;
    text-align: center;
}


/* Title */
.stats-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0;
  color: var(--primary);
}

/* Description */
.stats-item p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.45;
}



/* animation directions */
.from-left { transform: translateX(-40px); }
.from-right { transform: translateX(40px); }
.from-top { transform: translateY(-40px); }
.from-bottom { transform: translateY(40px); }

/* when in view → animate to final pos */
.stats-item.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ============================
   MOBILE (STACKED)
============================ */
@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
            text-align: center;
        padding-bottom: 0;
  }

  .stats-item {
    padding: 30px 0;
  }

  .stats-item::after {
    display: none; /* no vertical lines on mobile */
  }

  .stats-item h3 {
    font-size: 28px;
  }
  .why-wings-stats{
    padding: 60px 20px 0px 20px;
  }
  .why-wings-stats .section-heading {
    margin-bottom: 0;
  }
  .stands-section .section-heading{
    padding-bottom:20px
  }
}