.hy-wrap-f0e1d971 {
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Common Header Styles */
.hy-mv-header, .hy-wcu-header {
    margin-bottom: 30px;
}
.hy-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0072BC;
    display: block;
    margin-bottom: 8px;
}
.hy-title {
    font-size: 32px;
    font-weight: 700;
    color: #002C5F;
    margin: 0;
}

/* Mission & Vision Layout */
.hy-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}
.hy-mv-card {
    border-radius: 18px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hy-mv-card:hover {
    transform: translateY(-5px);
}

/* Card Icons styling */
.card-icon-wrap {
    flex-shrink: 0;
}
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Gradient Mission Card */
.hy-card-gradient {
    background: linear-gradient(135deg, #001C3D 0%, #003366 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 44, 95, 0.15);
}
.hy-card-gradient .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.hy-card-gradient h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
}
.hy-card-gradient p {
    color: #D1DDEE;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Plain Vision Card */
.hy-card-plain {
    background: #F8FAFC;
    color: #333333;
    border: 1px solid #E2E8F0;
}
.hy-card-plain .card-icon {
    background: #E2E8F0;
    color: #002C5F;
}
.hy-card-plain h3 {
    color: #002C5F;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
}
.hy-card-plain p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Grid */
.hy-wcu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.hy-card-light {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}
.hy-card-light:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 44, 95, 0.08);
    border-color: #0072BC;
}
.hy-card-light .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0072BC;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.hy-card-light .card-icon svg {
    width: 22px;
    height: 22px;
    fill: #0072BC;
}
.hy-card-light:hover .card-icon {
    background: #0072BC;
    color: #ffffff;
    border-color: #0072BC;
}
.hy-card-light:hover .card-icon svg {
    fill: #ffffff;
}
.hy-card-light h3 {
    font-size: 15px;
    font-weight: 600;
    color: #002C5F;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.hy-card-light p {
    font-size: 12px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .hy-wcu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .hy-mv-grid {
        grid-template-columns: 1fr;
    }
    .hy-wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hy-wcu-grid {
        grid-template-columns: 1fr;
    }
    .hy-mv-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
