/**
 * Fix for "No DNA Test Needed to Get Started" Section
 * Addresses missing styles when combined CSS has loading issues
 */

/* Experience Section Base Styles */
.experience {
    /* background-color: #f8f9fa; - Removed per user request */
    background-color: transparent;
    padding: 60px 0;
    margin-top: 40px;
    margin-bottom: 40px;
    /* border-top: 1px solid #e9ecef; - Removed with background */
    /* border-bottom: 1px solid #e9ecef; - Removed with background */
}

/* Section Title Styling */
.experience .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Subtitle Styling */
.experience h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Paragraph Styling */
.experience p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Link Styling */
.experience a {
    color: #0F75BD;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.experience a:hover {
    color: #0a5a91;
    text-decoration: none;
}

/* Button Styling */
.experience .btn {
    margin-top: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.experience .btn-primary {
    background: linear-gradient(135deg, #0F75BD 0%, #2196F3 100%);
    border: none;
    color: white !important;
    box-shadow: 0 4px 14px rgba(15, 117, 189, 0.3);
}

.experience .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 117, 189, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .experience {
        padding: 40px 0;
    }
    
    .experience .section-title {
        font-size: 1.875rem;
    }
    
    .experience h4 {
        font-size: 1.25rem;
    }
    
    .experience p {
        font-size: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .experience {
        /* background-color: #1a1a1a; - Removed per user request */
        background-color: transparent;
        /* border-color: #343a40; - Removed with background */
    }
    
    .experience .section-title {
        color: #f8f9fa;
    }
    
    .experience h4 {
        color: #adb5bd;
    }
    
    .experience p {
        color: #ced4da;
    }
}

/* Ensure proper spacing with previous section */
#Why\\ DNA\\? {
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

/* Add subtle animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Icon support if needed */
.experience .icon {
    font-size: 3rem;
    color: #0F75BD;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Card-like appearance option */
.experience.card-style {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: none;
    overflow: hidden;
}

/* Gradient background option */
.experience.gradient-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.experience.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q 25 40 50 50 T 100 50" stroke="%23e9ecef" stroke-width="0.5" fill="none"/></svg>') repeat-x;
    opacity: 0.5;
    pointer-events: none;
}