:root {
    --primary-blue: #0a192f;
    --accent-orange: #CC5338;
    --light-bg: #f4f7f9;
    --text-main: #ffffff;
    --text-dark: #333333;
	--text-blue: #122D73;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
	overflow-x: hidden;
}
/* Navigation & Logo Styling */
.navbar {
    position: absolute; /* Sits on top of the hero image */
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
	
}

.custom-logo-link {
    display: inline-block;
	position: absolute;
	top: 0;
	left: 20px;
}

.main-logo {
    height: 45px; /* Adjust this to match your specific image height */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05); /* Subtle interactive feel */
}

/* Ensure container alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	text-align:left;
	position:relative;
	clear:both;
}
/* Hero Section */
.hero {
	background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('../images/plane-cockpit.jpg') no-repeat center center/cover;
	height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--text-main);
	padding: 0 0 200px 0;
}


.hero h1 {
	font-size: 3rem;
	margin: 160px 0 10px;
}
.hero p { font-size: 1.2rem; opacity: 0.9; }

/* Grid Section */
.container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.who-section h2 {
	color: #122D73;
}
.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
body:not(.is-mobile) .who-item.first{
	margin:52px 0 0 0;
}

.who-item .icon-circle {
	background-color: #122D73;
	border-radius: 28px;
	width: 54px;
	height: 54px;
	text-align: center;
	vertical-align: middle;
	display: inline-block;
	position:relative;
}
body:not(.is-mobile) .who-item.first .icon-circle {
	float:left; 
	margin:0 10px 0 0;
}
.who-item .icon-circle img {
	top: 15px;
	position: relative;
}
.who-item i { font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; }
.who-item p { color:#122D73; }

body:not(.is-mobile) .who-item.first h3,
body:not(.is-mobile) .who-item.first p{
	text-align:left;
}
.included-section {
    position: relative;
	background-color: #1E3869;
    background-image: url('../images/plane-cockpit.jpg');
    background-repeat: no-repeat;
	background-size: 140% auto;
  	background-position: -74% 82%;

    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.included-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(30, 56, 105, 1) 0%,
		rgba(30, 56, 105, 0.8) 35%,
		rgba(30, 56, 105, 0.4) 70%,
		rgba(30, 56, 105, 0) 100%
	);

	z-index: 1;
}


.included-section > * {
    position: relative;
    z-index: 2;
}


.included-section .container{
	
}

.included-content { flex: 1; padding: 40px; }
.included-content h2 {
	font-size: 40px;
	font-weight: normal;
	margin: 0 0 10px;
}
.included-image { flex: 1; }
.included-image img { width: 100%; border-radius: 8px; }

.check-list { list-style: none; padding: 0; margin:0; }
.check-list li::before { content: '✓'; color: #fff; margin-right: 10px; line-height:50px; }

.included-content .procedural-accent{
	font-size:18px;
	line-height:34px;
}
.included-content .procedural-accent span{
	color: var(--accent-orange);
}
.pricing-section.container{
	padding-top:20px;
	display: table;
}
.pricing-section .section-title {
	text-align: center;
	color: var(--text-blue);
	font-size: 40px;
	font-weight: normal;
}
/* Pricing Card */
.pricing-box {
	background: white;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	min-width: 400px;
	margin: 0 4px;
	position: relative;
	float: left;
	min-height: 256px;
}
.pricing-box ul {
	margin: 0 auto;
	padding: 0;
	width: 280px;
}
.pricing-box h3{
	font-weight:normal;
	font-size:22px;
}
.pricing-box h3,
.pricing-box ul li{
	color: var(--text-blue);
}

.pricing-box ul li{
	text-align:left;
	list-style:circle;
	margin:0;
	padding:0;
	line-height:28px;
}

.btn-cta {
    background: var(--accent-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 26px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin-top: 20px;
}
.footer-area.container{
	max-width:none;
	padding:0;
	display: flex;
    flex-direction: column;	
}
.footer-area.container .footer-image-right,
.footer-area.container .footer-image-left {
    position: relative;
    background-image: url('../images/plane-flying.jpg');
    background-repeat: no-repeat;
    background-size: cover;           /* fills container */
    background-position: right center; /* keeps right side visible */
    background-color: #1E3869;        /* fallback for light areas */
    color: white;
    padding: 0;                        /* remove vertical padding for better control */
    height: 800px;                      /* adjust based on image aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}
.footer-area.container .footer-image-left {
    background-image: url('../images/plane-landed.jpg');
}
.footer-image-left .about-section {
    position: absolute;
    top: 20px;        /* a few px from top */
    left: 20px;       /* optional: distance from left */
    right: 20px;      /* optional: distance from right */
    color: white;     /* text color over image */
}
.footer-area.container .about-section .about-title{
	text-align:center;
}
.footer-image-left .about-section p{
	text-align:center;
	line-height: 32px;
}
.footer-area.container .about-section .about-title img.inline-logo {
	height: 44px;
	position: relative;
	top: 6px;
	margin: 0 0 0 2px;
}
.footer-area.container .disclaimer-section{
	text-align:center;
	background-color: #1E3869;
	margin:0;
	padding:0;
}
.footer-area.container .disclaimer-section h6,
.footer-area.container .disclaimer-section p,
.footer-area.container .disclaimer-section a{
	font-size:16px;
	font-weight:normal;
	color:#fff;
}
.footer-area.container .disclaimer-section a{
	text-decoration:underline;
}
.footer-area.container .disclaimer-section p{
}
/* Container for top-right link */
.top-my-videos-link {
    position: fixed;       /* stays on top-right while scrolling */
    top: 20px;
    right: 20px;
    z-index: 9999;         /* above everything */
}

/* Top-right container */
.top-my-videos-link {
    position: fixed;       /* stays on top-right while scrolling */
    top: 30px;
    right: 20px;
    z-index: 9999;         /* above everything */
}

/* Button style */

.my-videos-button,
.videos-access-notice .btn-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1E3869, #3A5A9F); /* subtle gradient */
    color: #ffffff;       /* white text */
    font-weight: 400;     /* normal weight */
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.my-videos-button.first {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.my-videos-button.last {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.my-videos-button:hover,
.videos-access-notice .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #3A5A9F, #1E3869); /* reversed gradient on hover */
}




