.my-info-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.my-info-box:hover {
    background: #0693e3; /* Blue background */
    color: #ffffff !important;     /* White text */
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Ensure inner text also turns white */
.my-info-box:hover h2,
.my-info-box:hover h4,
.my-info-box:hover h3,
.my-info-box:hover p,
.my-info-box:hover span {
    color: #ffffff !important;
}
.my-info-box p,
.my-info-box h2,
.my-info-box span {
    text-align: justify;
}
.my-info-box:hover p,
.my-info-box:hover h2,
.my-info-box:hover span {
    text-align: justify;
}
.matrix-particle {
    position: fixed;
    width: 6px;
    height: 6px;
	color:blue;
    background: #00aaff; /* Neon blue */
    border-radius: 2px;
    pointer-events: none;
    opacity: 0.9;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: fadeOut 0.8s linear forwards;
    z-index: 9999;
}

@keyframes fadeOut {
    from {
        opacity: 0.9;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.3);
    }
}
button:hover,
.wp-block-button__link:hover,
a.button:hover {
    background: linear-gradient(135deg, #007bff, #00c6ff) !important;
    color: #fff !important;
    transform: translateY(-3px);
    transition: 0.3s ease;
}
/* Default navbar Contact Us button */
.ast-custom-button {
    background: #007bff;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

/* Hover effect: white background + blue text */
.ast-custom-button:hover {
    background: #ffffff !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}
.main-header-menu .menu-link {
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 12px 18px;
}
/* Footer container spacing */
.site-footer {
    padding: 60px 0;
    background: #0a0f1f;
}

/* Footer columns spacing */
.site-footer .footer-widget-area {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.site-footer h2,
.site-footer h3,
.site-footer .widget-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}
.site-footer a {
    color: #b8c4d9;
    transition: 0.3s ease;
}

.site-footer a:hover {
    color: #007bff;
    padding-left: 4px;
}
.site-footer .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #b8c4d9;
    transition: 0.3s ease;
}

.site-footer .social-icons a:hover {
    color: #007bff;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8f9bb3;
    font-size: 14px;
}
.site-footer .footer-cta-btn {
    background: #007bff;
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 6px;
    transition: 0.3s ease;
    display: inline-block;
}

.site-footer .footer-cta-btn:hover {
    background: #ffffff !important;
    color: #007bff !important;
    border: 2px solid #007bff;
    transform: translateY(-3px);
}

/* Nuclear option for footer pattern */
.wp-block-group a {
    color: black !important;
    transition: 0.3s ease;
}

.wp-block-group a:hover {
    color: #007bff !important;
    padding-left: 4px;
}
.site-footer {
    display: none !important;
}
.footer-bottom p{
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    color: #555;
}
/* Modern card style for the 3-step section */
.auth-cards .wp-block-group {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.auth-cards .wp-block-group:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Center everything inside the card */
.auth-cards .wp-block-group * {
    text-align: center;
}
/* Hover test: blue border only when hovering the section */
.auth-cards:hover {
    border: 2px solid #0693e3 !important;
}
.auth-cards:hover p,
.auth-cards:hover h3,
.auth-cards:hover h4,
.auth-cards:hover span {
    color: #005eff !important;
}

.modern-cards .wp-block-column {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: 0.3s ease;
}

.modern-cards .wp-block-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.info-box p,
.info-box span,
.info-box li {
    text-align: justify !important;
}
.info-box h3,
.info-box h4,
 {
    text-align: center !important;
}
.info-box .title{
	text-align:left !important;;
}

.info-box {
    background: #ffffff;
    border: 5px solid grey;
    border-radius: 14px;
    padding: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}
/* Hover effect */
.info-box:hover {
    background: #0693e3; /* Blue */
    border-color: #005eff;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Make ALL text inside turn white on hover */
.info-box:hover * {
    color: #ffffff !important;
}
/* Moving text strip */
.moving-strip {
    width: 100%;
    overflow: hidden;
    background: #ffffff; /* White background */
    padding: 16px 0;
    position: relative;
   /* border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;*/
}

.moving-strip p {
    display: inline-block;
    white-space: nowrap;
    color: #0693e3; /* Blue text */
    font-size: 20px;
    font-weight: 600;
    animation: move-strip 28s linear infinite; /* Slower speed */
    margin: 0;
}

/* Spacing between items */
.moving-strip p span {
    padding: 0 30px; /* Increase or decrease spacing here */
}
.moving-strip p {
    letter-spacing: 0.5px;
}


/* Smooth scrolling animation */
@keyframes move-strip {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}


@keyframes move-strip {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* ⭐ Hover effect: stop + invert colors */
.moving-strip:hover {
    background: #0693e3; /* Blue background */
}

.moving-strip:hover p {
    color: #ffffff !important; /* White text */
    animation-play-state: paused; /* Stop movement */
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}







