:root {
    --brand-blue: #004aad;
}

.text-brand { 
    color: var(--brand-blue); 
}

.bg-brand { 
    background-color: var(--brand-blue); 
}

.border-brand { 
    border-color: var(--brand-blue); 
}

html { 
    scroll-behavior: smooth; 
}

/* Adjust for fixed header */
section { 
    scroll-margin-top: 100px; 
}

/* FAQ animations */
#faq h3 {
    transition: all 0.3s ease;
}

#faq h3:hover {
    color: var(--brand-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Custom animations */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Video placeholder styling */
.video-placeholder {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #004aad 100%);
}

.video-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 30px -10px rgba(0, 74, 173, 0.2);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

ul li{
    list-style: none;
}

body.admin-bar header{
    top: 32px;
}

html, body, h1, h2, h3, h4, h5, p , span, div, ul, li, a{
        font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"!important;
}

.width100 a{
    display: block!important;
}

.excircle{
    border-radius: 3px;
}

.linearTextColor h2{
     background: linear-gradient(to right, #2563EB, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.fixedwidth{
    width: 58px!important;
    height: 61px!important;
}
header ul li a:hover{
    color: #004AAD;
}


.mobilemenubars{
  width:32px;
  height:24px;
  position:relative;
  cursor:pointer;
 
}

.mobilemenubars::before,
.mobilemenubars::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:currentColor;
  border-radius:3px;
  transition:transform .25s ease, top .25s ease, bottom .25s ease, opacity .2s ease;
}

.mobilemenubars::before{ top:4px; }
.mobilemenubars::after{ bottom:4px; }


.mobilemenubars{
  background:linear-gradient(currentColor,currentColor) center/100% 3px no-repeat;
  transition:background-size .2s ease;
}


.mobilemenubars.is-active{
  background-size:0 3px; /* hide middle */
}
.mobilemenubars.is-active::before{
  top:50%;
  transform:translateY(-50%) rotate(45deg);
}
.mobilemenubars.is-active::after{
  bottom:auto;
  top:50%;
  transform:translateY(-50%) rotate(-45deg);
}



.mobilemenuarea {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    max-width: 340px;
    padding-top: 60px;
    padding-left: 30px;
     box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: .5s;
}

.mobilemenuarea > .menus > a{
    display: inline-block;
    margin-top: 30px
}

.mobilemenuarea > .menus ul li a{
    font-size: 20px;
    padding: 11px 0;
    display: block;
}

.mobilemenuarea > .menus ul li a:hover{
    color: #004AAD;
}


.mobilemenuarea.active{
    right: 0;
}



@media(max-width: 910px){
    .mobilemenubars{
        display: inline-block!important;
    }

    .header_menu, .header_button{
        display: none!important;
    }

    .cross-icon{
    width:24px;
    height:24px;
    position:absolute;
    display:inline-block;
            right: 15px;
        top: 15px;
}

.cross-icon::before,
.cross-icon::after{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:3px;
    background:currentColor;
    border-radius:3px;
}

.cross-icon::before{
    transform:translateY(-50%) rotate(45deg);
}

.cross-icon::after{
    transform:translateY(-50%) rotate(-45deg);
}
}