:root {
    --primary: #1a3a6c;
    --secondary: #2c5282;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --success: #28a745;
}

.title_h1{
    font-size: 60px;
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(120deg, #1a3a6c 0%, #2c5282 100%);
    color: white;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    position: relative;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
}

.stats-bar {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto 0;
    max-width: 900px;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 15px 25px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    padding: 20px;
}

.industry-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.industry-card:hover {
    transform: translatey(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.industry-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 20px;
    display: flex;
    align-items: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-title {
    width: 240px;  margin-right: 60px;
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1.35rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    width: 100%;
}

.learn-more {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 1.35rem;
}

.learn-more:hover {
    color: var(--accent);
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translatex(5px);
}

.tag {
    background: #eef5ff;
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}



@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .stats-bar {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}