.home-types {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px 45px 0px;
        }

        .home-types h2 {
            text-align: center;
            font-size: 30px;
            color: #000;
            margin-bottom: 50px;
            font-weight: 700;
            position: relative;
        }

        .home-types h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            border-radius: 2px;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 12px;
            margin-top: 40px;
        }

        .industry-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #b7b7b7;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: #23468f;
            transition: left 0.3s ease;
        }

        .industry-card:hover::before {
            left: 0;
        }

        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 1);
        }

        .industry-icon {
            font-size: 25px;
            color: #23468f;
            min-width: 35px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .industry-card:hover .industry-icon {
            color: #2980b9;
            transform: scale(1.1);
        }

        .industry-text {
            font-size: 15px;
            color: #000;
            font-weight: 600;
            line-height: 1.4;
            text-transform: capitalize;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .home-types {
                padding: 40px 15px;
            }

            .home-types h2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .industries-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .industry-card {
                padding: 20px 25px;
                gap: 15px;
            }

            .industry-icon {
                font-size: 2rem;
                min-width: 50px;
            }

            .industry-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .home-types h2 {
                font-size: 1.8rem;
            }

            .industry-card {
                padding: 18px 20px;
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .industry-icon {
                min-width: auto;
            }
        }

        /* Tablet Optimization */
        @media (min-width: 769px) and (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animation for cards */
        .industry-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .industry-card:nth-child(1) { animation-delay: 0.1s; }
        .industry-card:nth-child(2) { animation-delay: 0.2s; }
        .industry-card:nth-child(3) { animation-delay: 0.3s; }
        .industry-card:nth-child(4) { animation-delay: 0.4s; }
        .industry-card:nth-child(5) { animation-delay: 0.5s; }
        .industry-card:nth-child(6) { animation-delay: 0.6s; }
        .industry-card:nth-child(7) { animation-delay: 0.7s; }
        .industry-card:nth-child(8) { animation-delay: 0.8s; }
        .industry-card:nth-child(9) { animation-delay: 0.9s; }
        .industry-card:nth-child(10) { animation-delay: 1s; }
        .industry-card:nth-child(11) { animation-delay: 1.1s; }
        .industry-card:nth-child(12) { animation-delay: 1.2s; }
        .industry-card:nth-child(13) { animation-delay: 1.3s; }
        .industry-card:nth-child(14) { animation-delay: 1.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }