 .homeNkey_agents_container {
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 70px;
        }

        .homeNkey_agents_main {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/banner/bg.jpg');
            background-size: cover;
            background-position: center;
        }

        .homeNkey_section_header {
            text-align: center;
            margin-bottom: 60px;
            animation: homeNkey_fadeInDown 0.8s ease;
            padding-top: 40px;
        }

        .homeNkey_section_title {
            font-size: 3rem;
            color: white;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .homeNkey_section_subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        .homeNkey_agents_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            animation: homeNkey_fadeInUp 1s ease;
        }

        .homeNkey_agent_card {
            background: white;
            /* border-radius: 20px; */
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }

        .homeNkey_agent_card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .homeNkey_image_wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        }

        .homeNkey_agent_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .homeNkey_agent_card:hover .homeNkey_agent_image {
            transform: scale(1.1);
        }

        .homeNkey_image_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .homeNkey_card_content {
            padding: 25px;
            text-align: center;
        }

        .homeNkey_company_name {
            font-size: 1rem;
            color: #2d3748;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .homeNkey_visit_btn {
            display: inline-block;
            padding: 12px 30px;
            background: #d79c47;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .homeNkey_visit_btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
        }

        .homeNkey_visit_btn:active {
            transform: scale(0.98);
        }

        @keyframes homeNkey_fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes homeNkey_fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .homeNkey_agents_grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .homeNkey_section_title {
                font-size: 2.2rem;
            }

            .homeNkey_agents_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .homeNkey_image_wrapper {
                height: 180px;
            }

            .homeNkey_card_content {
                padding: 20px;
            }

            .homeNkey_company_name {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 40px 15px;
            }

            .homeNkey_section_title {
                font-size: 1.8rem;
            }

            .homeNkey_section_subtitle {
                font-size: 1rem;
            }

            .homeNkey_agents_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .homeNkey_image_wrapper {
                height: 200px;
            }
        }