:root {
    --primary-blue: #0066ff;
    --dark-blue: #003366;
    --primary-green: #66cc33;
    --gradient-main: linear-gradient(135deg, #0066ff, #66cc33);
    --gradient-dark: linear-gradient(135deg, #003366, #0066ff);
    --text-color: #222;
    --white: #ffffff;
}

.common-banner{padding:200px 0 100px;}
.common-banner h3{font-size:4rem;}


/* Animations */
.wow {
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0s;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}