/* Aerospace Defence Space Industry-specific styles */
.aerospace-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aerospace-hero::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"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.3"/><circle cx="80" cy="30" r="0.3" fill="white" opacity="0.4"/><circle cx="40" cy="60" r="0.4" fill="white" opacity="0.2"/><circle cx="70" cy="80" r="0.3" fill="white" opacity="0.5"/><circle cx="10" cy="70" r="0.2" fill="white" opacity="0.3"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1976d2;
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #e3f2fd;
    border-radius: 15px;
    border: 2px solid #bbdefb;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(25,118,210,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.stat-item:hover::before {
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0d47a1;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.challenges-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.challenge-card, .feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(13,71,161,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1976d2;
}

.challenge-card:hover, .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13,71,161,0.2);
}

.challenge-title, .feature-title {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #0d47a1;
    font-weight: 600;
}

.challenge-description, .feature-description {
    color: #666;
    line-height: 1.6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.sector-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(13,71,161,0.15);
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-content {
    padding: 30px;
}

.sector-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0d47a1;
    font-weight: 700;
}

.sector-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sector-features {
    list-style: none;
    padding: 0;
}

.sector-features li {
    color: #1976d2;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.sector-features li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffa726;
    font-weight: bold;
    font-size: 1.1rem;
}

.space-tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.space-tech-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #1976d2;
    transition: all 0.3s ease;
}

.space-tech-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(13,71,161,0.15);
}

.space-tech-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.space-tech-feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0d47a1;
    font-weight: 600;
}

.space-tech-feature-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.technology-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-category {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #bbdefb;
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(25,118,210,0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.tech-category-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #0d47a1;
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(13,71,161,0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,71,161,0.15);
}

.tech-icon {
    font-size: 1.5rem;
}

.tech-name {
    font-weight: 600;
    color: #333;
}

.success-story {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13,71,161,0.1);
    border: 1px solid #e3f2fd;
}

.success-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(13,71,161,0.1);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d47a1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0d47a1;
    font-weight: 700;
}

.success-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.aerospace-cta-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.aerospace-cta-section::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"><circle cx="10" cy="10" r="0.3" fill="white" opacity="0.2"/><circle cx="90" cy="20" r="0.4" fill="white" opacity="0.3"/><circle cx="30" cy="70" r="0.2" fill="white" opacity="0.4"/><circle cx="80" cy="90" r="0.3" fill="white" opacity="0.2"/></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #218838, #1ea085);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40,167,69,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: white;
    color: #0d47a1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .space-tech-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .success-story {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .technology-categories {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

/* Special animations */
.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from { box-shadow: 0 8px 25px rgba(13,71,161,0.1); }
    to { box-shadow: 0 12px 35px rgba(13,71,161,0.3); }
}
