/* Athena Edge Global - Modern Design Enhancements */

/* Animated Background Patterns */
.section-bg-pattern {
    position: relative;
    overflow: hidden;
}

.section-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 165, 156, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.section-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 216, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 10;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation for CTAs */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 165, 156, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(59, 165, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 165, 156, 0);
    }
}

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

/* Badge Styles */
.badge-new {
    background: var(--gradient-secondary);
    color: #1D3540;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 90, 111, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(238, 90, 111, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 90, 111, 0);
    }
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    font-size: 32px;
    box-shadow: var(--shadow-primary);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon:hover::before {
    opacity: 1;
}

/* Testimonial Quotes */
.quote-icon {
    font-size: 48px;
    color: #3BA59C;
    opacity: 0.2;
    line-height: 1;
}

/* Progress Bars */
.skill-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
    position: relative;
}

.skill-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        right: 100%;
    }
    100% {
        right: -20px;
    }
}

/* Section Dividers */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #C4D82E;
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

/* Number Counter Animation */
.counter-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Lift Effect */
.lift-on-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lift-on-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Parallax Effect for Sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

/* AI-Themed Decorative Elements */
.ai-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, #3BA59C 50px, #3BA59C 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, #3BA59C 50px, #3BA59C 51px);
    pointer-events: none;
}

/* Loading Animation */
.loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(59, 165, 156, 0.1);
    border-top-color: #3BA59C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2d8b83;
}

/* WhatsApp Button Blink Animation */
@keyframes whatsapp-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.whatsapp-button {
    animation: whatsapp-blink 2s ease-in-out infinite;
}

/* Blog Detail Page Styling */
.blog-detail-content h3 {
    color: #3BA59C;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-header .h4:hover,
.blog-detail-header a:hover {
    color: #3BA59C !important;
    transition: color 0.3s ease;
}

/* Instructor Card Clickable Styles */
.team-item {
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 165, 156, 0.2) !important;
}

.team-item .team-content .h4 {
    transition: color 0.3s ease;
}

.team-item:hover .team-content .h4 {
    color: #3BA59C !important;
}

/* Skeleton Loading Animation */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-image {
    border-radius: inherit;
}

/* Skeleton Loading Animation */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-image {
    border-radius: inherit;
}

