/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
======================================== */

:root {
    --brand-red: #F32735;
    --brand-blue: #003764;
    --brand-blue-hover:#105b99;
    --brand-lightgrey: #F2F2F2;
    --brand-softgrey: #d3d3d3;
    --brand-green: #11AC00;
    --white: #FFFFFF;
}

/* ========================================
   GLOBAL BODY STYLES
======================================== */

body {
    font-family: 'Bai Jamjuree', sans-serif;
    color: var(--brand-blue);
}

/* Remove all focus outlines globally */
*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    color: var(--brand-blue);
}

h1.extra{
    font-size: 60px;
}

a:link,a:visited{
    color: var(--brand-blue);
    transition: all 0.3s ease-in-out;
}
a:hover{
    color: var(--brand-blue-hover);
    transition: all 0.3s ease-in-out;
}

.tabbed:hover{
    padding-left:8px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.red{
    color: var(--brand-red);
}
.bg-lightgrey{
    background-color: var(--brand-lightgrey);
}
.bg-blu{
    background-color: var(--brand-blue);
}
.bg-red{
    background-color: var(--brand-red);
}
.br10blu{
    border: 10px solid var(--brand-blue);
}
.br20blu{
    border: 20px solid var(--brand-blue);
}
.bs-light{
    border-left: 1px solid rgb(255 255 255 / 10%);
}
.spacedTitle{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
}
.spacedUpper{
    text-transform: uppercase;
    letter-spacing: 2px;
}


.triangled{
    position: relative;
}

.triangled::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    z-index: 3;
    background-image: url(../img/triangle.png);
    background-size: cover;
}

.topspacer{
    margin-top: 100px ;
}
.bg-primary{
    background: var(--brand-blue) !important;
    color: var(--white);
}
.text-primary{
    color: var(--brand-blue) !important;
}
.border-primary{
    border-color: var(--brand-blue) !important;;
}


/* ========================================
   STANDARDIZED BUTTON SYSTEM
======================================== */

/* Base button styles */
.btn.btn-primary {
    background-color: var(--brand-blue);
    border: 1px;
    border-style: solid;
    border-color: var(--brand-blue);
    color: var(--white);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn.btn-primary:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
    /* filter: brightness(1.8); */
}

/* Red button variant */
.btn.btn-primary.solid-red {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--white);
}

.btn.btn-primary.solid-red:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* White button variant */
.btn.btn-primary.solid-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--brand-blue);
}

.btn.btn-primary.solid-white:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--white);
    transform: translateY(-2px);
    opacity: 1;
}
    
/* Outline white button variant */
.btn.btn-primary.outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn.btn-primary.outline-white:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--brand-blue);
    transform: translateY(-2px);
    opacity: 1;
}

.btn.btn-primary.outline-white{
    background: transparent;
    border: 1px;
    border-style: solid;
    border-color: var(--white);
    color: var(--white);
    padding: 12px 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.btn.btn-primary.outline-white:hover{
    background: var(--brand-red);
    color: var(--white);
    border: 1px solid var(--brand-red);
    transform: translateY(-2px);
}



/* ========================================
   NAVBAR HEADER STYLES
======================================== */

.navbar-main {
    /* background-color: var(--brand-blue); */
    background-color: rgb(0 55 100 / 91%);
    filter: multiply;
    height: 80px;
    width: 100%;
    z-index: 1050;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    will-change: transform;
}

body.menu-open .navbar-main {
    background-color: transparent;
}

.navbar-content {
    height: 80px;
    padding: 0 20px;
}

/* Logo Styles */
.navbar-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    z-index: 1051;
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
    will-change: transform, background-color;
    border-radius: 0;
}

.hamburger-line-1 {
    transform: translateY(-3.5px);
}

.hamburger-line-2 {
    transform: translateY(3.5px);
}

/* Active State - X Formation */
.hamburger-menu.active .hamburger-line-1 {
    transform: rotate(45deg) translate(4px, 3px);
    background-color: var(--brand-red);
}

.hamburger-menu.active .hamburger-line-2 {
    transform: rotate(-45deg) translate(0, 0);
    background-color: var(--brand-red);
}

/* ========================================
   MOBILE MENU OVERLAY STYLES
======================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--brand-lightgrey);
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    will-change: opacity, transform, visibility;
}

.mobile-menu-overlay.active {
    z-index: 1051;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    padding-left: 20%;
    height: 100%;
    overflow-y: auto;
}

/* Mobile Navigation Styles */
.mobile-navigation {
    width: 100%;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item:not(.has-submenu) {
    padding-left: 27px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.mobile-menu-link:hover {
    color: var(--brand-red);
    text-decoration: none;
}

.mobile-menu-link.active {
    color: var(--brand-red);
}

/* Menu Arrow Styles */
.menu-arrow {
    width: 12px;
    height: auto;
    transition: all 0.3s ease;
    transform-origin: center;
    filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(1000%) hue-rotate(200deg) brightness(95%) contrast(105%);
}

.mobile-menu-link.active .menu-arrow {
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(7471%) hue-rotate(349deg) brightness(95%) contrast(95%);
}

/* Submenu Styles */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-submenu.active {
    max-height: 300px;
    padding: 10px 0;
}

.mobile-submenu-item {
    border-bottom: none;
}

.mobile-submenu-link {
    display: block;
    padding: 0px 0px 8px 20px;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-submenu-link:hover {
    color: var(--brand-red);
    text-decoration: none;
    padding-left: 30px;
}

/* Mobile Menu Bottom Section */
.mobile-menu-top-right {
    position: absolute;
    top: 10px;
    right: 0;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
}
.mobile-menu-top-left {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0 30px;
}
.mobile-menu-bottom-right {
    position: absolute;
    bottom: 40px;
    right: 0;
    padding: 0 15px;
}
.mobile-menu-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 0;
    padding: 0 15px;
}

/* Language Selector Styles */
.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-option {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-blue);
    background-color: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option.active {
    background-color: var(--brand-red);
    color: var(--white);
    border-color: var(--brand-red);
}

.language-option:hover:not(.active) {
    background-color: var(--brand-red);
    color: var(--white);
}

/* Social Icons Mobile Styles */
.social-icons-mobile {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons-mobile i {
    font-size: 24px;
    color: var(--brand-blue);
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icons-mobile i:hover {
    color: var(--brand-red);
}

/* ========================================
   RESPONSIVE DESIGN - NAVBAR
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .navbar-content {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hamburger-line {
        width: 45px;
        height: 3px;
    }
    
    .mobile-menu-content {
        padding-top: 100px;
    }
    
    .mobile-menu-link {
        font-size: 16px;
        padding: 18px 0;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }
    
    .navbar-main {
        height: 70px;
    }
    
    .navbar-content {
        height: 70px;
        padding: 0 10px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hamburger-menu {
        width: 50px;
        height: 50px;
    }
    
    .hamburger-line {
        width: 40px;
        height: 3px;
    }
    
    .hamburger-line-1 {
        transform: translateY(-3.5px);
    }
    
    .hamburger-line-2 {
        transform: translateY(3.5px);
    }
    
    .mobile-menu-content {
        padding-top: 90px;
    }
    
    .mobile-menu-link {
        font-size: 16px;
        padding: 15px 0;
    }
}


/* ========================================
   PERFORMANCE OPTIMIZATIONS - NAVBAR
======================================== */

.navbar-main,
.hamburger-menu,
.mobile-menu-overlay {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* .hamburger-line,
.mobile-menu-overlay {
    transform: translateZ(0);
} */

/* Preload hover states */
.mobile-menu-link {
    will-change: transform, color, padding-left;
}

/* ========================================
   FOOTER STYLES
======================================== */

.footer-main {
    background-color: #f8f9fa;
    padding: 60px 0 30px 0;
    color: var(--brand-blue);
    font-family: 'Bai Jamjuree', sans-serif;
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 50px;
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

/* Footer Navigation Section */
.footer-nav-section {
    margin-bottom: 60px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
}

.footer-menu li a:hover {
    color: #0056b3;
    text-decoration: none;
    padding-left: 5px;
}

/* Company Info Section */
.footer-company-section {
    margin-bottom: 40px;
}

.company-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0;
}

/* Contact Boxes Section */
.footer-contact-boxes {
    margin-bottom: 40px;
    justify-content: center;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
}

.contact-icon.mail {
    width: 50px;
    height: 50px;
    background-color: var(--brand-softgrey);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
}




.contact-icon.phone-icon {
    background-color: #dc3545;
}

.contact-icon i {
    color: var(--white);
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-text {
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2px;
}

/* Legal Section */
.footer-legal-section {
    margin-bottom: 40px;
}

.legal-text {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Bottom Section */
.footer-bottom-section {
    padding-top: 30px;
    align-items: center;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    color: var(--brand-blue);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link i {
    color: var(--brand-blue);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #dc3545;
    text-decoration: none;
}

.social-link:hover i {
    color: var(--brand-blue-hover);
    transform: scale(1.3);
}

.credits-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.credits-text {
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 400;
}

.credits-logo {
    max-height: 25px;
    width: auto;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 40px 0 20px 0;
    }
    
    .footer-logo-section {
        margin-bottom: 40px;
    }
    
    .footer-nav-section {
        margin-bottom: 40px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .contact-box {
        justify-content: flex-start;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .footer-bottom-section {
        text-align: center;
    }
    
    .social-section {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .credits-section {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .footer-main {
        padding: 30px 0 15px 0;
    }
    
    .footer-logo {
        max-height: 60px;
    }
    
    .footer-logo-section {
        margin-bottom: 30px;
    }
    
    .footer-nav-section {
        margin-bottom: 30px;
        padding: 0 10%;
    }
    
    .footer-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .footer-menu li a {
        font-size: 13px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .footer-company-section {
        margin-bottom: 30px;
    }
    
    .footer-contact-boxes {
        padding: 0 10%;
        margin-bottom: 30px;
    }
    
    .contact-box {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    
    .footer-legal-section {
        margin-bottom: 30px;
    }
    
    .legal-text {
        font-size: 11px;
    }
    
    .footer-bottom-section {
        padding-top: 20px;
    }
    
    .social-section {
        margin-bottom: 15px;
    }
    
    .social-label {
        font-size: 13px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 14px;
    }
    
    .credits-logo {
        max-height: 20px;
    }
}


/* ========================================
   PERFORMANCE OPTIMIZATIONS
======================================== */

.footer-main * {
    box-sizing: border-box;
}

.footer-main img {
    max-width: 100%;
    height: auto;
}

/* Preload hover states */
.footer-menu li a,
.social-link {
    will-change: transform, background-color, color;
}

/* ========================================
   HERO SECTION STYLES
======================================== */

a.mediumLink{
    font-size: 24px;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
a.mediumLink:hover{
    color: var(--brand-red);
    transition: all 0.3s ease-in-out;
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 900px;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 55, 100, 0) 0%, rgba(0, 55, 100, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 80px 0;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ========================================
   OWL CAROUSEL CUSTOM NAVIGATION
======================================== */

.hero-carousel .owl-nav {
    position: absolute;
    bottom: 50px;
    left: calc(50% - 58px);
    display: flex;
    gap: 30px;
    z-index: 4;
    pointer-events: none;
}

.hero-carousel .owl-nav button {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-carousel .owl-nav button:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.1);
}

.hero-carousel .owl-nav button img {
    width: 20px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Hide dots navigation */
.hero-carousel .owl-dots {
    display: none !important;
}

/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 700px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .hero-carousel .owl-nav {
        left: calc(50% - 45px);
    }

    .hero-carousel .owl-nav button {
        width: 50px;
        height: 50px;
    }
    
    .hero-carousel .owl-nav button img {
        width: 16px;
        height: 32px;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .hero-slide {
        height: 600px;
    }
    
    .hero-content {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn.btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: auto;
        min-width: 150px;
    }
    
    .hero-carousel .owl-nav {
        left: calc(50% - 65px);
    }

    .hero-carousel .owl-nav button {
        width: 45px;
        height: 45px;
    }
    
    .hero-carousel .owl-nav button img {
        width: 14px;
        height: 28px;
    }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn.btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
}


/* ========================================
   PERFORMANCE OPTIMIZATIONS - HERO
======================================== */

.hero-slide,
.hero-background,
.hero-overlay,
.hero-content {
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-bg-image {
    will-change: transform;
}

.hero-carousel .owl-nav button {
    will-change: transform, background-color, border-color;
}

/* ========================================
   TWO COLUMN SECTION STYLES
======================================== */

.two-column-section {
    width: 100%;
}

.two-column-section__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.two-column-section__tagline {
    background-color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 120px;
}

.two-column-section__tagline-text {
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.two-column-section__content-wrapper {
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
}

.two-column-section__title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.two-column-section__text {
    color: var(--brand-blue);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.two-column-section__button-wrapper {
    margin-top: 1rem;
}


/* ========================================
   RESPONSIVE DESIGN - TWO COLUMN SECTION
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .two-column-section {
        min-height: auto;
    }
    
    .two-column-section__content-wrapper {
        min-height: auto;
    }
    
    .two-column-section__tagline {
        padding: 30px 15px;
        min-height: 100px;
    }
    
    .two-column-section__tagline-text {
        font-size: 1.8rem;
    }
    
    .two-column-section__title {
        font-size: 2.2rem;
    }
    
    .two-column-section__text {
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .two-column-section__tagline {
        padding: 25px 15px;
        min-height: 80px;
    }
    
    .two-column-section__tagline-text {
        font-size: 1.5rem;
    }
    
    .two-column-section__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .two-column-section__text {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
    .two-column-section__tagline-text {
        font-size: 1.3rem;
    }
    
    .two-column-section__title {
        font-size: 1.6rem;
    }
    
    .two-column-section__text {
        font-size: 0.9rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS - TWO COLUMN
======================================== */


.two-column-section__image {
    will-change: transform;
}

/* ========================================
   BACKGROUND IMAGE SECTION STYLES
======================================== */

.background-image-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.background-image-section__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-image-section__container {
    position: relative;
    z-index: 2;
}

.background-image-section__content-block {
    background-color: var(--brand-blue);
    border-radius: 0;
    min-height: 600px;
    border-left:20px solid var(--white);
    border-right:20px solid var(--white);
}

.background-image-section__title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.background-image-section__text {
    font-size: 1rem;
    line-height: 1.6;
}

.background-image-section__button {
    transition: all 0.3s ease;
}


/* ========================================
   RESPONSIVE DESIGN - BACKGROUND IMAGE SECTION
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .background-image-section {
        min-height: 500px;
    }
    
    .background-image-section__title {
        font-size: 1.6rem;
    }
    
    .background-image-section__text {
        font-size: 0.95rem;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .background-image-section {
        min-height: 400px;
    }
    
    .background-image-section .row {
        justify-content: center;
    }
    
    .background-image-section__content-block {
        margin: 0 auto;
    }
    
    .background-image-section__title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .background-image-section__text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
    .background-image-section {
        min-height: 350px;
    }
    
    .background-image-section__title {
        font-size: 1.3rem;
    }
    
    .background-image-section__text {
        font-size: 0.85rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS - BACKGROUND IMAGE
======================================== */

.background-image-section__image {
    will-change: transform;
}

.background-image-section__content-block {
    will-change: transform;
}

.background-image-section__button {
    will-change: transform, background-color, border-color;
}

/* ========================================
   SERVICE TAB SECTION STYLES
======================================== */

.serviceTab {
    padding: 80px 0;
}

.serviceTab .service-menu {
    margin: 0;
    padding: 0;
}

.serviceTab .service-link {
    position: relative;
    display: block;
    font-size: 2.9rem;
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.serviceTab .service-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 10px;
    background-color: var(--brand-blue);
    transition: all 0.3s ease;
}

.serviceTab .service-link.active {
    color: var(--brand-red);
}

.serviceTab .service-link.active::before {
    background-color: var(--brand-red);
    transform: translateY(-50%) rotate(-35deg);
}

.serviceTab .service-link:hover {
    color: var(--brand-red);
    text-decoration: none;
}

.applicazioni-faq a::before {
    content: "+  ";
}
.applicazioni-faq a.active::before {
    content: "-  ";
}

.serviceTab .service-image-container,
.serviceTab .service-content-container {
    position: relative;
}

.serviceTab .service-image,
.serviceTab .service-content {
    transition: opacity 0.3s ease;
}

.serviceTab .service-image img {
    box-shadow: -20px -20px 10px var(--white);
}

.serviceTab .service-content p {
    color: var(--brand-blue);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN - SERVICE TAB SECTION
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .serviceTab {
        padding: 60px 0;
    }
    
    .serviceTab .serviceTab .service-link {
        font-size: 48px;
        padding-left: 50px;
    }
    
    .serviceTab .serviceTab .service-link::before {
        width: 35px;
        height: 8px;
    }
}

@media (max-width: 942px) and (min-width: 768px) {
    .serviceTab .service-link {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .serviceTab .service-link {
        font-size: 2.2rem;
    }
}
/* Mobile Styles */
@media (max-width: 767.98px) {

    .serviceTab {
        padding: 40px 0;
    }
    
    .serviceTab .serviceTab .service-link {
        font-size: 36px;
        padding-left: 45px;
        margin-bottom: 15px;
    }
    
    .serviceTab .serviceTab .service-link::before {
        width: 30px;
        height: 6px;
    }
    
    .serviceTab .serviceTab .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
    .serviceTab .serviceTab .service-link {
        font-size: 28px;
        padding-left: 40px;
    }
    
    .serviceTab .serviceTab .service-link::before {
        width: 25px;
        height: 5px;
    }
}

/* ========================================
   MADE IN ITALY SECTION STYLES
======================================== */

.madeInItaly {
    background-color: var(--brand-blue);
    position: relative;
}
.madeInItaly .rect{
    width: 40%;
    height: 6px;
    display: block;
}

.madeInItaly .rect.rect-green{
    background-color: var(--brand-green);
}

.madeInItaly .rect.rect-white{
    background-color: var(--white);
}

.madeInItaly .rect.rect-red{
    background-color: var(--brand-red);
}
.madeInItaly .triangle{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height:100px;
    z-index: 2;
}


/* ========================================
   APPLICATIONS SECTION STYLES
======================================== */

.applications {
    background-color: var(--white);
}

.applications .applications-title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.applications .applications-nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.applications .applications-prev-btn,
.applications .applications-next-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.applications .applications-prev-btn:hover,
.applications .applications-next-btn:hover {
    transform: scale(1.1);
}

.applications .nav-arrow {
    width: 24px;
    height: 24px;
}

.applications .applications-card {
    padding: 15px;
}

.applications .applications-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.applications .applications-link:hover {
    text-decoration: none;
}

.applications .applications-image-wrapper {
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 15px;
}

.applications .applications-image {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    filter: brightness(1);
}

.applications .applications-link:hover .applications-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.applications .applications-card-title {
    color: var(--brand-blue);
}

.applications .applications-link:hover .applications-card-title {
    color: var(--brand-red);
}

/* ========================================
   SIMILAR SOLUTIONS SECTION STYLES
======================================== */

.similarSolutions {
    background-color: var(--white);
}

.similarSolutions .similarSolutions-title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.similarSolutions .similarSolutions-nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.similarSolutions .similarSolutions-prev-btn,
.similarSolutions .similarSolutions-next-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.similarSolutions .similarSolutions-prev-btn:hover,
.similarSolutions .similarSolutions-next-btn:hover {
    transform: scale(1.1);
}

.similarSolutions .nav-arrow {
    width: 24px;
    height: 24px;
}

.similarSolutions .similarSolutions-card {
    padding: 15px;
}

.similarSolutions .similarSolutions-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.similarSolutions .similarSolutions-link:hover {
    text-decoration: none;
}

.similarSolutions .similarSolutions-image-wrapper {
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 15px;
}

.similarSolutions .similarSolutions-image {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    filter: brightness(1);
}

.similarSolutions .similarSolutions-link:hover .similarSolutions-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.similarSolutions .similarSolutions-card-title {
    color: var(--brand-blue);
}

.similarSolutions .similarSolutions-link:hover .similarSolutions-card-title {
    color: var(--brand-red);
}

/* ========================================
   NEWS SECTION STYLES
======================================== */

a.news-card-link .imgWrap{
    overflow: hidden;
}

a.news-card-link .imgWrap img{
    transition: all 0.5s ease;
    filter: brightness(1);
}

a.news-card-link:hover .imgWrap  img{
filter: brightness(1.1);
transform: scale(1.05);
}

a.news-card-link:hover h4{
    color: var(--brand-red);
}
    

/* ========================================
   CLIENTS SECTION STYLES
======================================== */

.owlClientsWrap {
    background-color: var(--white);
}

.owlClientsWrap .client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.owlClientsWrap .client-item img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.owlClientsWrap .client-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Owl Carousel customizations for clients */
.owlClientsWrap .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owlClientsWrap .owl-carousel .owl-item.center .client-item img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* ========================================
   BREADCRUMB SECTION STYLES
======================================== */

.breadc .breadcrumb-item:before{
    content: "";
}

.breadc .breadcrumb-item a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadc .breadcrumb-item a:hover {
    color: var(--brand-red);
    text-decoration: none;
}

.breadc .breadcrumb-item.active small {
    color: var(--brand-red);
}

.breadc .breadcrumb-item small {
   color: var(--brand-blue);
}

.breadc .breadcrumb-item i{
    color: var(--brand-blue);
    font-size:10px ;
    margin-left: 10px;
}

.breadcrumb-item+.breadcrumb-item{
    padding:0;
}


/* ========================================
   MISSION SECTION STYLES
======================================== */

.mission-block .col01,
.mission-block .col02,
.mission-block .col03{
   position: relative;
}

.mission-block .col01:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 40%;
    background-color: var(--brand-lightgrey);
    z-index: 2;
    transition: all 0.3s ease;
}
.mission-block .col02:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 80%;
    background-color: var(--white);
    z-index: 2;
    transition: all 0.3s ease;
}

.mission-block .col03 img{
    margin-top: -20px;
}






/* ========================================
   MADE IN ITALY DETAILS SECTION STYLES 
======================================== */


.mii-block .triangled{
    position: relative;
    min-height: 500px;
}

.mii-block .triangled::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    z-index: 3;
    background-image: url(../img/triangle.png);
    background-size: cover;
}




/* ========================================
   SOCIETY VALUES CAROUSEL STYLES
======================================== */

.owlSocietyValuesWrapper {
    background-color: var(--white);
}

.owlSocietyValuesWrapper .society-values-title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.owlSocietyValuesWrapper .society-values-nav-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.owlSocietyValuesWrapper .society-values-prev-btn,
.owlSocietyValuesWrapper .society-values-next-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.owlSocietyValuesWrapper .society-values-prev-btn:hover,
.owlSocietyValuesWrapper .society-values-next-btn:hover {
    transform: scale(1.1);
}

.owlSocietyValuesWrapper .nav-arrow {
    width: 24px;
    height: 24px;
}

.owlSocietyValuesWrapper .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.owlSocietyValuesWrapper .card-img-top {
    border-radius: 0;
    transition: all 0.3s ease;
}


.owlSocietyValuesWrapper .cardInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: transparent;
    width: 100%;
    transition: all 0.3s ease;
    padding:15px 25px;
}

.owlSocietyValuesWrapper .cardInfo h4{
    color: var(--white);
}

.owlSocietyValuesWrapper .cardInfo .desc {
    opacity: 0;
    font-size: 13px;
    visibility: hidden;
    height: 0;
    transition: all 0.3s ease;
    padding: 0;
}
/* ========================================
   SOCIETY VALUES CARD LINK STYLES
======================================== */

.owlSocietyValuesWrapper .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.owlSocietyValuesWrapper .card-link:hover {
    text-decoration: none;
    color: inherit;
}

.owlSocietyValuesWrapper .card-link:focus {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.owlSocietyValuesWrapper .card-link:hover .card {
    transform: translateY(-5px);
}

.owlSocietyValuesWrapper .card-link:hover .card-img-top {
    transform: scale(1.02);
}

.owlSocietyValuesWrapper .card-link:hover .cardInfo {
    background-color: rgba(255, 255, 255, 0.8);
}

.owlSocietyValuesWrapper .card-link:hover .cardInfo .desc {
    opacity: 1;
    visibility: visible;
    height: auto;
    color: var(--brand-blue);
}

.owlSocietyValuesWrapper .card-link:hover .cardInfo h4 {
    color: var(--brand-blue);
}
/* ========================================
   SHOWCASE CAROUSEL STYLES
======================================== */

.owlShowcaseWrapper {
    background-color: var(--white);
}

.owlShowcaseWrapper .showcase-title {
    color: var(--brand-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.owlShowcaseWrapper .showcase-nav-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.owlShowcaseWrapper .showcase-prev-btn,
.owlShowcaseWrapper .showcase-next-btn {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.owlShowcaseWrapper .showcase-prev-btn:hover,
.owlShowcaseWrapper .showcase-next-btn:hover {
    transform: scale(1.1);
}

.owlShowcaseWrapper .nav-arrow {
    width: 24px;
    height: 24px;
}

.owlShowcaseWrapper .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.owlShowcaseWrapper .card-img-top {
    border-radius: 0;
    transition: all 0.3s ease;
}

.owlShowcaseWrapper .cardInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: transparent;
    width: 100%;
    transition: all 0.3s ease;
    padding: 15px 25px;
}

.owlShowcaseWrapper .cardInfo h4{
    color: var(--white);
}

.owlShowcaseWrapper .cardInfo .row:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s ease;
}

/* ========================================
   SHOWCASE CARD LINK STYLES
======================================== */

.owlShowcaseWrapper .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.owlShowcaseWrapper .card-link:hover {
    text-decoration: none;
    color: inherit;
}

.owlShowcaseWrapper .card-link:focus {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.owlShowcaseWrapper .card-link:hover .card {
    transform: translateY(-5px);
}

.owlShowcaseWrapper .card-link:hover .card-img-top {
    transform: scale(1.02);
}

.owlShowcaseWrapper .card-link:hover .cardInfo {
    background-color: rgba(255, 255, 255, 0.8);
}

.owlShowcaseWrapper .card-link:hover .cardInfo .row:nth-child(2) {
    opacity: 1;
    visibility: visible;
    height: 200px;
    color: var(--brand-blue);
}

.owlShowcaseWrapper .card-link:hover .cardInfo h4 {
    color: var(--brand-blue);
}

/* ========================================
   TEXT OVERLAY STYLES
======================================== */
.fullHeroImg.covered{
    position: relative;
}

.fullHeroImg.covered:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../img/mask-azienda-hsa-dsk.svg) no-repeat center center;
    background-size: cover;
}

.fullHeroImg.covered:after{
 content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background:var(--white);
  animation: sheen 0.7s ;
  animation-timing-function: cubic-bezier(0.42,0,0.58,1);
  animation-fill-mode: forwards;
}

@keyframes sheen {
  100% {
    width: 0%;
    animation-play-state: paused;
  }
}

.fullHeroImg .textOverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: #003764;
    background: linear-gradient(0deg,rgba(0, 55, 100, 1) 0%, rgba(0, 55, 100, 0) 50%, rgba(0, 55, 100, 1) 100%);
    display: flex;
    justify-content: start;
    align-items: end;
    padding-bottom: 50px;
}


/* ========================================
   GROUP ADVANTAGE STYLES
======================================== */

.groupAdvantage {
    border-radius: 0;
    padding: 30px;
    border:1px solid var(--brand-blue);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
    width: 45%;
    margin-bottom: 20px;
    margin-right: 20px;
    justify-content: center;
}

.groupAdvantage.outred {
    border:1px solid var(--brand-red);
}


/* ========================================
   RESPONSIVE DESIGN - TWO COLUMN SECTION
======================================== */

/* Tablet Styles */
@media (max-width: 991.98px) {
    .fullHeroImg.covered:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: url(../img/mask-azienda-hsa-tab.svg) no-repeat center center;
        background-size: cover;
    }

    .owlSocietyValuesWrapper .card-link .card {
        transform: translateY(-5px);
    }

    .owlSocietyValuesWrapper .card-link .card-img-top {
        transform: scale(1.02);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo .desc {
        opacity: 1;
        visibility: visible;
        height: auto;
        color: var(--brand-blue);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo h4 {
        color: var(--brand-blue);
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .fullHeroImg.covered:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(../img/mask-azienda-hsa-mob.svg) no-repeat center center;
    background-size: cover;
    }
    
    .groupAdvantage {
        margin-right: 10px;
    }

    .owlSocietyValuesWrapper .card-link .card {
        transform: translateY(-5px);
    }

    .owlSocietyValuesWrapper .card-link .card-img-top {
        transform: scale(1.02);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo .desc {
        opacity: 1;
        visibility: visible;
        height: auto;
        color: var(--brand-blue);
    }

    .owlSocietyValuesWrapper .card-link .cardInfo h4 {
        color: var(--brand-blue);
    }
}

/* ========================================
   INSIDE ARGUMENT SECTION STYLES
======================================== */

.insideArgument .col01,
.insideArgument .col02,
.insideArgument .col03{
   position: relative;
}

.insideArgument .col01:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 40%;
    background-color: var(--brand-lightgrey);
    z-index: 2;
    transition: all 0.3s ease;
}
.insideArgument .col02:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 80%;
    background-color: var(--white);
    z-index: 2;
    transition: all 0.3s ease;
}

.insideArgument .col03 img{
    margin-top: -20px;
}


/* ========================================
   BIG CTA GREY SECTION STYLES
======================================== */

.bigCtaGrey {
   position: relative;
}

/* ========================================
   FAQ LIST SECTION STYLES  
======================================== */

.faqList .extendedleft{
   position: relative;
}
.faqList .extendedleft::before{
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--brand-blue);
    transform: translateX(-100%);
    transition: all 0.3s ease;
}
/* ========================================
   SHOWCASE GRID LINK  STYLES
   ======================================== */

a.fadeHover{
    position: relative;
    overflow: hidden;
    display: block;
}
a.fadeHover .textOverlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgb(0 0 0 / 20%);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transform: translateY(100%);
    transition: all 0.3s ease;
}
a.fadeHover:hover .textOverlay{
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

/* ========================================
   SERVICE LINK STYLES  
======================================== */

a.serviceLink{
    display: block;
    padding: 20px;
    transition: all 0.3s ease;
}

a.serviceLink .imgWrap{
  overflow: hidden;
}

a.serviceLink .imgWrap img{
  transition: all 0.3s ease;
}
a.serviceLink:hover .imgWrap img{
  transform: scale(1.1);
}

.grecaptcha-badge {
    visibility: hidden;
}

#applicationForm input, #applicationForm textarea, #applicationForm select, #applicationForm option {
    color: var(--brand-blue);
}
