﻿.hero-section {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #37517e 0%, #2c4065 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero-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 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,80 0,100"/></svg>');
        background-size: cover;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-container {
    background: #ffffff;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    position: relative;
    z-index: 3;
    padding: 60px 0;
    box-shadow: 0 -10px 30px rgba(55, 81, 126, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(55, 81, 126, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(55, 81, 126, 0.05);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #37517e, #4a6491);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(55, 81, 126, 0.15);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #37517e, #4a6491);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(55, 81, 126, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 20px;
}

.feature-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

    .feature-list li {
        padding: 8px 0;
        position: relative;
        padding-left: 30px;
        color: #555;
    }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #37517e;
            font-weight: bold;
            font-size: 1.1rem;
        }

.feature-link {
    color: #37517e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .feature-link:hover {
        color: #2c4065;
        transform: translateX(5px);
    }

.stats-section {
    background: linear-gradient(135deg, #f8f9fd 0%, #e8f0fe 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #37517e;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #37517e 0%, #2c4065 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #37517e;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .features-container {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.industry-section {
    margin-bottom: 80px;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(55, 81, 126, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(55, 81, 126, 0.05);
    position: relative;
    overflow: hidden;
}

    .industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #37517e, #4a6491);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(55, 81, 126, 0.15);
    }

        .industry-card:hover::before {
            transform: scaleX(1);
        }

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #37517e, #4a6491);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(55, 81, 126, 0.3);
}

.industry-card-description {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.section-link {
    text-align: center;
    margin-top: 40px;
}

.feature-link {
    color: #37517e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .feature-link:hover {
        color: #2c4065;
        transform: translateX(5px);
    }

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fd 0%, #e8f0fe 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 30px;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .industry-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .industry-card {
        padding: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .content-container {
        padding: 40px 0;
    }

    .industry-section {
        margin-bottom: 60px;
    }
}