/* Hero Section Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes drawLine {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.drawing-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-in-out forwards;
}

.rotating {
    animation: rotate 20s linear infinite;
}

/* Industry Card Styles */
:root {
    --gradient-primary: linear-gradient(135deg, #af63cd, #1976D2);
    --gradient-secondary: linear-gradient(135deg, #00BCD4, #0097A7);
    --gradient-accent: linear-gradient(135deg, #3F51B5, #303F9F);
    --gradient-success: linear-gradient(135deg, #4CAF50, #388E3C);
    --gradient-warning: linear-gradient(135deg, #FFC107, #FFA000);
    --gradient-danger: linear-gradient(135deg, #F44336, #D32F2F);
}

.industry-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.industry-card:hover::after {
    opacity: 0.05;
}

@keyframes gradientMove {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.industry-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.industry-card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.industry-card .card-body {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    position: relative;
    z-index: 1;
}

.industry-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
}

.industry-card .card-text {
    color: #455a64;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    position: relative;
    padding-left: 1.8rem;
}

.industry-card .card-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.industry-card:hover .card-text::before {
    width: 6px;
    background: var(--gradient-secondary);
}

.industry-card .btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    background: var(--gradient-primary);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.industry-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.industry-card .btn-primary:hover::before {
    left: 100%;
}

.industry-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    background: var(--gradient-secondary);
}

.industry-card .btn-primary:active {
    transform: translateY(-1px);
}

.industry-card .icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-right: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.industry-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: var(--gradient-secondary);
}

.industry-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.industry-card .stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.industry-card .stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #652b7e;
    transition: all 0.3s ease;
}

.industry-card .stat-item:hover {
    color: #ad19d2;
    transform: translateX(5px);
}

.industry-card .stat-item svg {
    width: 18px;
    height: 18px;
    fill: url(#gradient-primary);
    transition: all 0.3s ease;
}

.industry-card .stat-item:hover svg {
    transform: scale(1.2);
    fill: url(#gradient-secondary);
}

.industry-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.industry-card .tag {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.1));
    color: #1976D2;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.industry-card .tag:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(25, 118, 210, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #af63cd, #40327b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #af63cd, #8e19d2);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.1));
    border-radius: 50%;
    z-index: -1;
} 