/* Additional styles for enhanced features */

/* Quick Links Bar */
.quick-links-bar {
    background: var(--dark-bg);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.quick-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.quick-link {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    padding: 0.5rem;
}

.quick-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Adjust navbar for quick links bar */
.navbar {
    top: 40px;
}

.hero {
    margin-top: 110px;
}

/* Enhanced Nav Brand */
.nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.nav-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: -0.3rem;
}

/* Certifications Section */
.certifications {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.cert-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-platform {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s;
}

.cert-platform:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.cert-platform h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cert-platform p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cert-platform .btn {
    margin-top: 1rem;
}

/* Enhanced Social Links in Footer */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
}

/* Contact Method Icons Enhancement */
.contact-method i {
    color: var(--primary-color);
    transition: all 0.3s;
}

.contact-method:hover i {
    color: var(--white);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-links-bar {
        padding: 0.3rem 0;
    }

    .quick-links {
        justify-content: center;
    }

    .quick-link {
        font-size: 1rem;
        padding: 0.3rem;
    }

    .navbar {
        top: 35px;
    }

    .hero {
        margin-top: 105px;
    }

    .cert-platforms {
        grid-template-columns: 1fr;
    }
}

/* Badge Animation */
@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cert-icon {
    animation: badge-pulse 2s ease-in-out infinite;
}

.cert-platform:hover .cert-icon {
    animation: none;
    transform: scale(1.1);
}