    /* Vision & Mission Section Styles */
    .vision-mission {
        width: 100%;
        background: #000;
        padding: 100px 0;
        position: relative;
    }

    .vm-container {
        max-width: 1172px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    /* Row 1: Header */
    .vm-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .vm-label {
        font-size: 16px;
        font-weight: 400;
        color: #DE7415;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .vm-title {
        font-size: 48px;
        font-weight: 400;
        color: white;
        line-height: 1.2;
        margin: 0;
    }

    /* Row 2: Cards */
    .vm-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-content: center;
    }

    .vm-card {
        width: 364px;
        height: 434px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 23px;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .vm-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 1px solid transparent;
        border-radius: 16px;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.1) 100%);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        padding: 1px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .vm-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.05);
    }

    .vm-card:hover::before {
        opacity: 1;
    }

    .card-image {
        width: 316px;
        height: 202px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 25px;
        position: relative;
    }

    .vm-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .vm-card:hover .vm-img {
        transform: scale(1.05);
    }

    .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-size: 24px;
        font-weight: 400;
        color: white;
        margin: 0 0 15px 0;
        line-height: 1.3;
    }

    .card-text {
        font-size: 15px;
        color: white;
        line-height: 1.6;
        margin: 0;
        flex: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 1200px) {
        .vm-container {
            max-width: 95%;
        }

        .vm-cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .vm-card {
            width: 100%;
            max-width: 364px;
            margin: 0 auto;
        }
    }

    @media (max-width: 1024px) {
        .vm-cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .vm-card {
            height: 420px;
        }

        .card-image {
            height: 180px;
        }
    }

    @media (max-width: 900px) {
        .vm-cards {
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 400px;
            margin: 0 auto;
        }

        .vm-card {
            height: 400px;
            max-width: 100%;
        }

        .card-image {
            height: 200px;
        }
    }

    @media (max-width: 768px) {

        .vision-mission {
        padding-top: 100px;
        padding-bottom: 0px;
    }

        .vm-header {
            margin-bottom: 50px;
        }

        .vm-title {
            font-size: 36px;
        }

        .vm-card {
            height: 380px;
            padding: 20px;
        }

        .card-title {
            font-size: 22px;
        }

        .card-text {
            font-size: 14px;
        }

        .card-image {
            height: 180px;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 480px) {
        .vm-title {
            font-size: 32px;
        }

        .vm-label {
            font-size: 14px;
        }

        .vm-card {
            height: 360px;
            padding: 18px;
        }

        .card-image {
            height: 160px;
            margin-bottom: 18px;
        }

        .card-title {
            font-size: 20px;
        }

        .card-text {
            font-size: 13px;
        }
    }

    @media (max-width: 380px) {
        .vm-card {
            height: 340px;
        }

        .card-image {
            height: 140px;
        }
    }