.elementor-kit-5{--e-global-color-primary:#0438B0;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#7CB342;--e-global-color-495af81:#F8FBFF;--e-global-color-6a7c7ed:#54A38C;--e-global-color-78253a1:#7FB3D3;--e-global-color-cf1f8a1:#2D5E7A;--e-global-color-7525b58:#021D5C;--e-global-color-34066b1:#4DA3E0;--e-global-color-26f14bb:#02010100;--e-global-typography-primary-font-family:"Crimson Pro";--e-global-typography-primary-font-size:60px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-size:24px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:700;font-family:"Inter", Sans-serif;font-size:18px;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:var( --e-global-color-primary );}.elementor-kit-5 h1{color:var( --e-global-color-primary );font-family:"Crimson Pro", Sans-serif;font-weight:600;}.elementor-kit-5 h2{font-family:"Crimson Pro", Sans-serif;font-size:60px;}.elementor-kit-5 h3{font-family:"Crimson Pro", Sans-serif;font-size:50px;}.elementor-kit-5 h5{font-family:"Crimson Pro", Sans-serif;font-size:40px;}.elementor-kit-5 h6{font-family:"Crimson Pro", Sans-serif;font-size:40px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1366px;}.e-con{--container-max-width:1366px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-5{--e-global-typography-primary-font-size:45px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-5{--e-global-typography-primary-font-size:45px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 75px); /* 100vh minus 75px for marquee */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Video Background */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

/* Logo Styling */
.hero-logo {
    margin-bottom: 2rem;
}

.site-logo-img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Subheader Styling */
.hero-subheader {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Marquee Section (place this AFTER the hero) */
.marquee-container {
    height: 75px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-top: 3px solid #0438b0;
    border-bottom: 3px solid #54a38c;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    padding: 0 60px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 60px); /* Smaller marquee on mobile */
    }
    
    .site-logo-img {
        max-width: 200px;
    }
    
    .site-title {
        font-size: 2.2rem;
    }
    
    .hero-subheader {
        font-size: 1.3rem;
    }
    
    .marquee-container {
        height: 60px;
    }
    
    .marquee-item {
        font-size: 14px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .site-logo-img {
        max-width: 150px;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .hero-subheader {
        font-size: 1.1rem;
    }
}/* End custom CSS */