.industries-section {
            background: #ffffff;
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .industries-section .container {
            max-width: 1170px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }

        .industries-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }

        .industries-section .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .industries-section .section-subtitle {
            font-size: 1.1rem;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .industries-section .industry-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 10px 20px;
            margin-bottom: 30px;
            transition: all 0.4s ease;
            border: 2px solid #e9ecef;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .industries-section .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(13, 110, 253, 0.2);
            border-color: var(--primary-color);
            background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
        }

        .industries-section .industry-icon {
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .industries-section .industry-card:hover .industry-icon {
            transform: scale(1.15) rotate(5deg);
            color: var(--accent-color);
        }

        .industries-section .industry-name {
            font-size: 13px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            line-height: 1.4;
            font-family: "Open Sans", sans-serif;
        }

        .industries-section .closing-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 15px;
            margin-top: 60px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .industries-section .closing-text h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .industries-section .closing-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .industries-section .closing-text p:last-child {
            margin-bottom: 0;
        }

        /* Tablet Responsiveness (768px - 991px) */
        @media (max-width: 991px) {
            .industries-section {
                padding: 60px 0;
            }

            .industries-section .container {
                max-width: 960px;
            }

            .industries-section .section-title {
                font-size: 2.2rem;
            }

            .industries-section .industry-card {
                padding: 30px 15px;
            }

            .industries-section .industry-icon {
                font-size: 3rem;
            }
        }

        /* Mobile Responsiveness (up to 767px) */
        @media (max-width: 767px) {
            .industries-section {
                padding: 50px 0;
            }

            .industries-section .container {
                max-width: 720px;
                padding: 0 20px;
            }

            .industries-section .section-title {
                font-size: 1.9rem;
                margin-bottom: 15px;
            }

            .industries-section .section-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
                padding: 0 15px;
            }

            .industries-section .industry-card {
                padding: 25px 15px;
                margin-bottom: 20px;
            }

            .industries-section .industry-icon {
                font-size: 2.8rem;
                margin-bottom: 15px;
            }

            .industries-section .industry-name {
                font-size: 1.05rem;
            }

            .industries-section .closing-text {
                padding: 35px 25px;
                margin-top: 40px;
            }

            .industries-section .closing-text h3 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }

            .industries-section .closing-text p {
                font-size: 0.95rem;
            }
        }

        /* Extra Small Mobile (up to 575px) */
        @media (max-width: 575px) {
            .industries-section {
                padding: 40px 0;
            }

            .industries-section .container {
                max-width: 540px;
                padding: 0 15px;
            }

            .industries-section .section-title {
                font-size: 1.75rem;
            }

            .industries-section .section-subtitle {
                font-size: 0.95rem;
            }

            .industries-section .industry-card {
                padding: 20px 12px;
            }

            .industries-section .industry-icon {
                font-size: 2.5rem;
            }

            .industries-section .industry-name {
                font-size: 0.95rem;
            }

            .industries-section .closing-text {
                padding: 30px 20px;
                border-radius: 12px;
            }

            .industries-section .closing-text h3 {
                font-size: 1.4rem;
            }

            .industries-section .closing-text p {
                font-size: 0.9rem;
            }
        }
        
        #vvv {
            width: 100%;
        }