/* Global Font Family */
body {
    font-family: Montserrat, sans-serif;
    margin: 0 !important;
}
html, body, .page-wrapper {
    overflow-x: hidden;
}
.page-content, .entry-content, .entry-summary{
    margin: 0 !important;
}
a:focus, 
a.x-btn:focus, 
select:focus, 
input[type="file"]:focus, 
input[type="radio"]:focus, 
input[type="submit"]:focus, 
input[type="checkbox"]:focus, 
input[type="button"]:focus {
        outline: none !important;
}
/* Banner Section Styles - Global */
.banner-section {
    height: 550px;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -120px !important; /* This will bring header above banner */
}

/* SEO and Accessibility - Visually Hidden Elements */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Dropdown hover functionality */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown .dropdown-menu {
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0px !important;
}
.navbar-nav .dropdown .dropdown-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}
.navbar-nav .dropdown .dropdown-menu li a {
    border-top: 1px solid #ffffff59;
}

/* Ensure dropdown menu appears above other content */
.navbar-nav .dropdown .dropdown-menu {
    z-index: 1000;
}

/* Optional: Add smooth transition for better UX */
.navbar-nav .dropdown .dropdown-menu {
    transition: opacity 0.2s ease-in-out;
}

.navbar-style-one{
    border: 1px solid #fff;
    border-radius: 40px;
    background-color: #fff !important;
    padding: 0px 0px !important;
}
.navbar-style-one .menu-container{
    background-color: #002d85;
    border-radius: 40px;
    margin-right: -9px;
    padding-left: 20px;
}
.navbar-style-one .menu-container ul li a{
    color: #fff;
    padding: 10px 20px !important;
    transition: all 0.1s ease;
}
.navbar-style-one .menu-container ul li .active{
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 0px 40px 40px 0;
    position: relative;
}

/* Modern angled top border for active menu - left side */
.navbar-style-one .menu-container ul li .active::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -11px;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 0 solid transparent;
    border-top: 25px solid #002d85;
    transform: rotate(-90deg);
}

/* Hover styles that replicate the active design */
.navbar-style-one .menu-container > ul > li > a:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 40px 40px 40px 0;
    position: relative;
}

/* Modern angled top border for hover menu - left side (same as active) */
.navbar-style-one .menu-container > ul > li > a:hover::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -11px;
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 0 solid transparent;
    border-top: 25px solid #002d85;
    transform: rotate(-90deg);
}

/* Header positioning to appear above banner */
.header {
    position: relative;
    z-index: 1000;
    margin-top: 60px;
}

/* Footer */
.main-footer {
    background-color: #002E85;
    padding: 60px 0 40px;
    color: #fff;
}

.footer-contact h3 {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

.footer-contact .address {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    color: #fff;
}

.contact-item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-height: 80px;
    margin-bottom: 15px;
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 5px;
    color: #002E85;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 20px;
}

/* Global Button Styles - Reusable across all pages */
.btn-primary-custom {
    background-color: #002d85 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1.5 !important;
}

.btn-primary-custom:hover {
    background-color: #1e3a8a;
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

.btn-primary-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 45, 133, 0.3);
}

/* Global Typography Styles - Reusable across all pages */
/* Headings */
.global-h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #002d85;
}

.global-h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    color: #002d85;
}

.global-h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #002d85;
}

/* Paragraphs */
.global-p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

.global-p-large {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.global-p-small {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #fff;
}



/* Animation utilities - Global */
.aos {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.aos--left {
    transform: translateX(-50px);
}

.aos--right {
    transform: translateX(50px);
}

.aos.in-view {
    opacity: 1;
    transform: none;
}

/* Fancybox navigation alignment (center vertically) */
.fancybox-nav{
    padding-top: 7px;
}
.fancybox-close{
    top: 40px !important;
    line-height: 16px;
    padding: 13px;
    border-radius: 100%;
}

/* end Fancybox navigation alignment (center vertically) */
