@charset "utf-8";
/* CSS Document Dark Blue and Gray */

/* ------------------------------------------------------
   GLOBAL
------------------------------------------------------ */
body {
    font-family: 'Poppins', sans-serif;
    background: #cacaca;
    color: #222;
    overflow-x: hidden;
	padding-top: 10px;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* ------------------------------------------------------
   PRELOADER
------------------------------------------------------ */
.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #192e5b;
    z-index: 9999;
}

.js-preloader .preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.js-preloader .dot {
    width: 18px;
    height: 18px;
    background: #ffd15c;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
}

.js-preloader .dots span {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    animation: dots 1s infinite ease-in-out;
}
.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}


@keyframes dots {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* ------------------------------------------------------
   HEADER
------------------------------------------------------ */
.header-area {
    position: relative;
    z-index: 9999;
}
.header-area.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #192e5b; /* your dark blue */
    z-index: 9999;
}
.header-area .container {
    width: 100%
	display: flex;
    align-items: center;
    height: 80px;
}
.header-area .main-nav {
    height: 80px;
}



.header-area .main-nav .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto; /* pushes menu to the right */
	
}


.header-area .logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.header-area .logo em {
    font-style: normal;
    color: #ffd15c;
}

.header-area .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.header-area .nav li {
    padding: 0 15px;
}

.header-area .nav li a {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 15px;
}

.header-area .nav li a:hover,
.header-area .nav li a.active {
    color: #ffd15c;
}

/* Dropdown */
.header-area .dropdown-menu {
    background: #f2f2f2 !important;
    border-radius: 0;
    border: none;
    padding: 10px 0;
}

.header-area .dropdown-item {
    color: #192e5b !important;
    padding: 10px 20px;
}

.header-area .dropdown-item:hover {
    background: #cacaca !important;
    color: #ffffff;
}

/* Mobile Menu Trigger */
.menu-trigger {
    display: none;
    color: #ffffff;
    cursor: pointer;
}



/* ------------------------------------------------------
   HERO SECTION
------------------------------------------------------ */
.main-banner {
    position: relative;
    width: 100%;
    height: 60vh;      /* your chosen hero height */
    overflow: hidden;  /* hides the bottom you want trimmed */
}

.main-banner img {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* crops top/bottom as needed */
    transform: translate(-50%, -60%);
}


.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Static_Header_1920x1080.jpg');
    background-size: cover;      /* fills the space without distortion */
    background-position: center; /* keeps subject centered */
    background-repeat: no-repeat;
}


#bg-video {
    width: 100%;
    height: 60vh; /* adjust between 60–80 depending on taste */
    object-fit: cover;
}


.video-overlay {
    display: flex;
    justify-content: center;   /* keeps horizontal centering */
    align-items: flex-start;   /* moves content upward */
    padding-top: 120px;        /* adjust this number */
    text-align: center;
	background: #192e5b;
}



.video-overlay .caption h6 {
    color: #ffd15c;
    font-size: 24px;
    margin-bottom: 10px;
}

.video-overlay .caption h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
}

.video-overlay .caption h2 em {
    font-style: normal;
    color: #ffd15c;
}

.video-overlay p {
    color: #eaeaea;
    margin-top: 10px;
    font-size: 18px;
}

.main-button a {
    display: inline-block;
    background: #ffd15c;   /* yellow button */
    color: #192e5b;        /* dark blue text */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 40px;      /* spacing under text */
    text-decoration: none;
    transition: 0.3s ease;
}



.main-button a:hover {
    background: #ffcd3a;   /* slightly brighter yellow */
    color: #192e5b;
}
.section-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-bg:before {
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35,45,57,0.8);
}
#call-to-action {
  padding: 120px 0px;
  background-image: url(../images/cta-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta-content p {
  font-size: 16px;
  color: #fff;
  margin: 15px 0px 25px 0px;
}

.cta-content h2 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.cta-content h2 em {
  font-style: normal;
  color: #ffd15c;
}
.section-divider-dark {
    height: 20px;
    background: #192e5b; /* your dark blue */
    margin: 20px 0;
}
.section-divider-rounded {
    width: 80%;
    height: 12px;
    background: #F2E8D3; /* or #cacaca, or any brand color */
    border-radius: 999px;
    margin: 15px auto;
}
.section-divider-gradient {
    width: 70%;
    height: 14px;
    margin: 40px auto;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        #192e5b,
        #0f1e3d
    );
}
.section-divider-capsule {
    width: 60%;
    height: 20px;
    background: #F5F0F0;
    border-radius: 20px;
    margin: 50px auto;
}

.img-border {
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


.section-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-bg:before {
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35,45,57,0.8);
}

.section-bg > form,
.section-bg .container {
  position: relative;
  z-index: 2
}
.tabs-content h4 {
  font-size: 23px;
  font-weight: 700;
  color: #232d39;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.floatright {
	float: right;
	margin: 3px 0 3px 50px	
}
/* ------------------------------------------------------
   hero content/About Us
------------------------------------------------------ */
/* About Us section blocks */
.about-block:first-of-type {
    border-top: 20px solid #cacaca; /* white divider above first block */
	margin-top: 70px; /* header height (80px) + 20px breathing room */

}

.about-block {
    background: #192e5b;
    color: #fff;
    padding: 40px 20px;
    margin: 0;
    border-bottom: 20px solid #cacaca; /* white divider */
}

/* Remove divider after last section */
.about-block:last-of-type {
    border-bottom: none;
}

/* Headings centered */
.about-block h1,
.about-block h2 {
    text-align: center;
}

/* Paragraph spacing */
.about-block p {
    margin: 0 40px;
}

/* Accent color for <em> inside headings */
.about-block h2 em {
    font-style: normal;
    color: #ffd15c;
}
.about-block h1 em {
    font-style: normal;
    color: #ffd15c;
}
footer {
    background-color: #cacaca;
	 padding: 70px 0; /* or whatever you want */

}

/* FAQ Styles */
.faq-card {
    border: none;
    margin-bottom: 10px;
}

.faq-header {
    background: #192e5b;
    padding: 0;
}

.faq-btn {
    color: #ffffff;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
}

.faq-btn:hover,
.faq-btn:focus {
    text-decoration: none;
    color: #ffd15c;
}

.faq-body {
    background: #cacaca;
    padding: 20px;
    color: #192e5b;
    font-size: 15px;
    border-top: 1px solid #192e5b;
}
.faq-body ol ul {
    margin-left: 25px;
    padding-left: 20px;
}
/* Force solid blue bullets inside FAQ lists */
.faq-body ul {
    list-style-type: disc !important;
    margin-left: 25px;
    padding-left: 20px;
}

.faq-body ul li {
    color: #192e5b;
}

/* Make the bullet itself blue */
.faq-body ul li::marker {
    color: #192e5b;
}


/* ------------------------------------------------------
   RESPONSIVE
------------------------------------------------------ */
@media (max-width: 991px) {
    .menu-trigger {
        display: block !important;
        color: #ffffff !important;
        background: transparent !important;
    }

    .menu-trigger span::before,
    .menu-trigger span::after {
        background-color: #ffffff !important;
    }
}


@media (min-width: 992px) {
    .header-area {
        position: relative;
        z-index: 9999;
    }

    .main-nav {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav .nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }

    .menu-trigger {
        display: none !important;
    }
}


 


	@media (max-width: 768px) {
    .menu-trigger {
        display: block;
        color: #ffffff !important;
    }


	nav ul {
    position: absolute;
    top: 100%;
}


    .header-area .nav {
        display: none;
        flex-direction: column;
        background: #192e5b;
        width: 100%;
        padding: 20px 0;
    }

    .header-area .nav li {
        padding: 10px 0;
    }
	header {
    overflow: visible;
}

}

@media (max-width: 768px) {
    .video-overlay .caption h2 {
        font-size: 32px;
    }
}
