/* Obfusca Page Specific Styles */

.hero-section {
    background: linear-gradient(135deg, #013042 0%, #1a4d5c 25%, #2a6d7c 50%, #3a8d9c 75%, #4aadbc 100%);
    color: white;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Add subtle sparkle effect like InterSystems section */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    width: 200%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes sparkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-section p.mb-4 {
    font-size: 1.15rem;
}

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #327b8c;
    margin-bottom: 1rem;
}

.cta-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
}

.benefit-item {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.benefit-item:last-child {
    border-bottom: none;
}

.industry-badge {
    display: inline-block;
    background: linear-gradient(135deg, #013042 0%, #327b8c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(1, 48, 66, 0.2);
}
