@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html,
body {
    width: 100%;
    height: 100%;
    font-family: Barlow;
    background: #fff;
    min-height: 200vh; 
	font-size: 16px;
	line-height: 26px;
	color: #787878;
}

a {
    color: #787878;
    text-decoration: none;
}

a:hover {
    color: #0b4468;
    text-decoration: none;
}

h1 {
	font-size: 48px;
}

h2 {
	margin: 100px 0 0 0;
	font-size: 28px;
	color: #0b4468;
	text-align: center;
}

h2::after {
    content: "";
    display: block;
    width: 50px;      
    height: 3px;      
    background: #0b4468;
    margin: 15px auto 30px;  
}

h2.light::after {
    content: "";
    display: block;
    width: 50px;      
    height: 3px;      
    background: #f2f2f2;
    margin: 15px auto 30px;  
}

h3 {
	margin: 20px 0 20px 0;
	color: #0b4468;
	text-align: center;
}

p {
	margin: 15px 0;
}

ul {
	margin: 0 0 0 20px;
	padding: 0px;
}

li {
	margin: 10px 0;
	padding: 0 0 0 0px;
	text-align: left;
}

ul.check-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 30px;
}

ul.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

ul.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: url("../images/check.png") no-repeat center;
    background-size: contain;
}

.horizontal-list li {
    display: inline-block;
    margin-right: 20px;
	padding: 10px;
}

.light {
	color: #f2f2f2;
}

.medium {
	color: #787878;
}

.header {
      	position: fixed;
      	top: 0; left: 0; right: 0;
	z-index: 1000;
      	display: flex;
      	align-items: center;
      	justify-content: space-between;
      	padding: 0 2rem;
      	height: 150px;              
      	background: transparent;
}

.header.scrolled {
      	height: 90px;
	z-index: 1000;
    	background: rgba(242, 242, 242, 0.5);
      	box-shadow: 0 4px 20px rgba(0,0,0,.45);
}

.header.scrolled + .nav-drawer {
    	top: 90px;
    	height: calc(100vh - 90px);
}

.header-left {
      	display: flex;
      	align-items: center;
      	gap: 0; 
      	   min-width: 0;
    display:flex;
    min-width:0;
    overflow:hidden;
}

.logo-wrap {
      	position: relative;
      	width: 120px;
      	height: 100px;        
      	flex-shrink: 0;
      	transition: width .35s ease, height .35s ease;
}

.header.scrolled .logo-wrap {
      	width: 90px;
      	height: 70px;
	z-index: 1000;
}

.logo-wrap img {
      	position: absolute;
      	top: 0; left: 0;
      	width: 100%; height: 100%;
      	object-fit: contain;
      	transition: opacity .35s ease;
}

.logo-default { 
	opacity: 1; 
}

.logo-scrolled { 
	opacity: 0; 
}

.header.scrolled .logo-default { 
	opacity: 0; 
}

.header.scrolled .logo-scrolled { 
	opacity: 1; 
}

.header-divider {
    	position: relative;
    	width: 18px;
    	height: 95px;
    	margin: 0 1.2rem;
    	flex-shrink: 0;
}

.header-divider::before {
    	content: "";
    	position: absolute;
    	left: 50%;
    	top: 0;
    	width: 1px;
    	height: 100%;
    	background: #ffffff;
    	transform: translateX(-50%) rotate(25deg);
    	transform-origin: center;
    	transition: height .35s ease;
}

.header.scrolled .header-divider {
    	height: 65px;
}

.header.scrolled .header-divider::before {    	
    	background: #0b4468;
}

.tagline {
      	font-size: 20px;
      	letter-spacing: .08em;
      	text-transform: uppercase;
	color: #ffffff;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
      	transition: font-size .35s ease, opacity .35s ease;
}

.header.scrolled .tagline {
      	font-size: 1rem;
	color: #0b4468;
}

.burger {
      	display: flex;
      	flex-direction: column;
      	justify-content: center;
      	gap: 5px;
      	width: 56px;
      	height: 36px;
      	padding: 4px;
      	cursor: pointer;
      	border: none;
      	background: transparent;
      	border-radius: 4px;
      	transition: background .2s;
}

.burger:hover {  

}

.burger span {
      	display: block;
      	height: 2px;
      	background: #ffffff;
      	border-radius: 2px;
      	transition: transform .35s ease, opacity .35s ease, width .35s ease;
      	transform-origin: left center;
}

.burger span:nth-child(2) { 
	width: 75%; 
}

.burger span:nth-child(3) { 
	width: 55%; 
}

.burger.open span:nth-child(1) { 
	transform: rotate(45deg) translate(1px, -1px); 
}

.burger.open span:nth-child(2) { 
	opacity: 0; 
	transform: scaleX(0); 
}

.burger.open span:nth-child(3) { 
	width: 100%; 
	transform: rotate(-45deg) translate(1px, 1px); 
}

.header.scrolled .burger span {
      	background: #0b4468;
}

.nav-drawer {
    	position: fixed;
    	top: 150px;    
    	right: 0;
    	width: 260px;
    	height: calc(100vh - 150px);
    	background: rgba(242, 242, 242, 0.8);
    	transform: translateX(100%);
    	transition:
        transform .4s cubic-bezier(.4,0,.2,1),
        top .35s ease,
        height .35s ease;
    	z-index: 999;
    	padding: 2rem;
    	display: flex;
    	flex-direction: column;
    	gap: 1.5rem;
    	box-shadow: -4px 0 30px rgba(0,0,0,.4);
}

.nav-drawer.open { 
	transform: translateX(0); 
}

.nav-drawer a {
      	font-size: 1.05rem;
      	color: #787878;
      	text-decoration: none;
      	letter-spacing: .04em;
      	text-transform: uppercase;
      	font-size: .9rem;
      	padding-bottom: .5rem;
      	border-bottom: 1px solid #787878;
      	transition: color .2s;
}

.nav-drawer a:hover { 
	color: #aaaaaa; 
}

.overlay {
      	position: fixed;
      	inset: 0;
      	background: rgba(0,0,0,.5);
      	opacity: 0;
      	pointer-events: none;
      	transition: opacity .35s;
      	z-index: 980;
}

.overlay.visible { 
	opacity: 1; 
	pointer-events: all; 
}

.wrap, section {
	width: 90%;	
	margin: 0px auto 0px;
}

.wrap-small {
    width: 75%;
    margin: 0px auto 0px;
}

.scroll-hint {
      	margin-top: 2rem;
      	display: inline-block;
      	font-size: .8rem;
      	letter-spacing: .08em;
      	text-transform: uppercase;
      	color: #999;
      	border: 1px solid #ddd;
      	border-radius: 20px;
      	padding: .4rem 1rem;
}

*{
    	margin:0;
    	padding:0;
    	box-sizing:border-box;
}

.video-slider {
    	position:relative;
    	width:100%;
    	height:100vh;
    	overflow:hidden;
}

.slides {
	background: #000000;
    	width:100%;
    	height:100%;
    	position:relative;
}
.slide {
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    	filter: brightness(50%);
}

.hero-content {
    	position:absolute;
    	top:50%;
    	left:50%;
    	transform:translate(-50%,-50%);
    	text-align:center;
    	color:#fff;
    	z-index:3;
    	width:min(90%,900px);
}

.hero-content h1 {
    font-size: clamp(1.4rem, 3.5vw, 3.15rem);
    	font-weight: 600;
    	margin: 100px 0 50px 0;
}

.hero-content p {
    	font-size:clamp(1rem,2vw,1.5rem);
    	letter-spacing: 3px;
	margin: 20px 0;
}

.hero {
    background: url(../images/hero-banner.webp) center center / cover no-repeat;
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 4 / 5;
    min-height: 350px;
}

.scroll-indicator {
    	position:absolute;
   	bottom:40px;
    	left:50%;
    	transform:translateX(-50%);
    	color:white;
    	z-index:3;
    	animation:bounce 1.5s infinite;
}

@keyframes bounce {
    	0%,100%{
        	transform:translate(-50%,0);
	}

    	50%{
        	transform:translate(-50%,10px);
    	}

}

.spacerbottom {
    height: 100px;
}

.fullscreen {
    width: 100%;
    min-height: 100vh;
    height: auto;
	padding: 50px 0 0 0;
}

.content {
    width: 100%;
    align-items: center;     /* Vertical center */
    text-align: center;
    padding-bottom: 20px;
}

.gray {
	background: #f5f5f5;
	background-position: center 80%;
}

.commitment, .missionvision {
    	border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    	transition: transform .3s ease, box-shadow .3s ease;
}

.offer {
    	background: #494949 url('../images/guards-on-duty.webp') no-repeat;
    	background-size: cover;        
    	background-position: center;
    	background-repeat: no-repeat;
    	background-attachment: fixed;  
}

.offer::before {
    	content: "";position: relative;
    overflow: hidden;
    	opacity: 0.3;  
    	background: rgba(0, 0, 0, 0.45);
}

.offer-content {
    	position: relative;
    	z-index: 1;
    	text-align: center;
	color: #ffffff;
    	padding: 0 20px;
}

.trained {
    	background: #000 url('../images/trained.webp');
    	background-size: cover;        
    	background-position: center;
    	background-repeat: no-repeat;
    	background-attachment: fixed;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center;     /* Vertical center */
    text-align: center;  
}

.divider {
    	border: 0;
    	height: 1px;
    	background: #787878;
    	width: 100%;
    	margin: 40px 0;
}

.read-more {
    	display: inline-block;
    	color: #787878;
    	text-decoration: none;
    	font-weight: 400;
    	font-size: 14px;
	margin: 0 20px 0 0;
    	padding: 5px 10px;
    	border: 1px solid #787878;
    	transition: all 0.3s ease;
	float: right;
}

.read-more:hover {
    	background: #0b4468;
    	color: #fff;
    	transform: translateX(5px);
}

.grid {
    display: grid;
    gap: 20px;
    width: 96%;
    max-width: 96%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item {
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    font-size: 18px;
    position: relative;
    height: 90%;
}

.item h2 {
    position: static;
    top: 0px;
    margin: 0;
    padding: 15px;
}

/* Image fills its container */
.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

/* Image keeps its original size */
.img-original {
    width: auto;
    height: auto;
    max-width: 100%; /* Prevents overflow on small screens */
    display: inline-block;
}


.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.justify {
	text-align: justify;
}

.animate {
    opacity: 0;
    transition: all .4s ease;
}

#missionvision {
    padding: 50px 0;    
}

#missionvision item {
    color: #787878;
}

#contact, #faq {
    padding: 120px 0 0 0;
}

#contact h2, #faq h2 {
	margin: 0px;
}	

.form-container {
    background: #fff;
    padding: 20px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 35%;
    margin: 0px auto 0px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

input::placeholder, 
    textarea::placeholder {
    color: #a0aec0;
    font-weight: 300;
    font-size: 14px;
    font-family: Barlow;
    opacity: 1;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    margin-top: 20px;
    background: #2d6cdf;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}

button:hover {
    background: #1f56b8;
}

.success {
    background: #e6ffed;
    color: #1a7f37;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.errors {
    background: #ffecec;
    color: #b3261e;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.errors ul {
    margin: 0;
    padding-left: 20px;
}

/* Initial State */
.animate {
    opacity: 0;
    transition: all .4s ease;
}

/* Fade */
.fade-in {
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
}

/* Slide Left */
.slide-left {
    transform: translateX(-80px);
}

.slide-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Right */
.slide-right {
    transform: translateX(80px);
}

.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Up */
.slide-up {
    transform: translateY(30px);
}

.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.image-box {
    width: 75%;
    margin: 20px auto 0px;
    padding: 0px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.image-box img {
    width: 100%;
    display: block;
    transition: filter .4s ease, transform .4s ease;
    filter: brightness(50%); /* Dark */
}

.image-box:hover img {
    filter: brightness(100%); /* Normal brightness */
    transform: scale(1.05);
}

#footer {
	background: #f2f2f2;
}

#subfooter {
	width: 100%;
	border-bottom: 1px solid #dbdbdb;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    border-radius: 12px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.email,
.call {
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 18px;
    min-height: 24px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.email {
    background: url(../images/mail.png) no-repeat;
}

.call {
    background: url(../images/call.png) no-repeat;
}

footer {
	background: #f2f2f2;
	width: 100%;
	padding: 20px;
	font-size: 14px;
}