/* Animation for logo */
.pulse-logo {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation for notification button */
.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(229, 45, 39, 0.3);
    transition: all 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced mobile responsiveness */
@media (max-width: 600px) {
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-item {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

/* Gradient background for featured sections */
.section-highlight {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05) 0%, rgba(229, 45, 39, 0.05) 100%);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

/* Animated underline for headers */
h4 {
    position: relative;
    padding-bottom: 10px;
}

h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--irc-blue), var(--irc-red));
}

/* Floating effect for service cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Custom focus styles for input fields */
.input-field input[type=email]:focus {
    border-bottom: 1px solid var(--irc-blue) !important;
    box-shadow: 0 1px 0 0 var(--irc-blue) !important;
}

.input-field input[type=email]:focus + label {
    color: var(--irc-blue) !important;
}

/* Animated social icons */
.social-icons i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}

/* Preloader */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Mobile menu button styling */
.sidenav-trigger i {
    color: var(--irc-red);
}

/* Fade-in animation for content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.2s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.4s;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

/* Scroll reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Link styling */
.highlight-link {
    color: var(--irc-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--irc-red);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: var(--irc-red);
    border-bottom-color: var(--irc-blue);
}

/* Partner site box styling */
.alternate-site-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.95) 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 4px solid var(--irc-red);
}

.alternate-site-box p {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--irc-gray);
    margin-bottom: 15px;
}

.btn-alternate {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--irc-blue), #3a89e0);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-alternate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
    background: linear-gradient(45deg, var(--irc-red), #ff5a54);
}

.btn-alternate .mini-logo {
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-alternate i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-alternate:hover i {
    transform: translateX(4px);
} 