.about-hero-area {
            position: relative;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .about-hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            height: auto;
            z-index: 0;
            object-fit: contain;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            will-change: opacity;
        }
        .about-hero-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1500px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .about-hero-content h1 {
	font-size: 60px;
	color: #ffffff;
	margin-bottom: 30px;
	font-weight: 700;
	font-family: 'Work Sans', sans-serif;
}
        .about-hero-btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}
        .about-hero-btn:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #000000;
        }
        .about-intro-area {
	padding: 60px 20px;
	background-color: #FAFAFA1;
}
        .about-intro-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
        }
        .about-intro-left {
            flex-shrink: 0;
        }
        .about-intro-left h2 {
            font-size: 32px;
            color: #333333;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .about-intro-left .subtitle {
            font-size: 14px;
            color: #999999;
            letter-spacing: 2px;
        }
        .about-intro-right {
            flex: 1;
            background-color: #ffffff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .about-intro-right p {
            font-size: 16px;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }
        .about-intro-right p:last-child {
            margin-bottom: 0;
        }
        .events-section {
	padding: 80px 20px 100px 20px;
	background: white;
}
        .events-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .events-title {
            text-align: center;
            margin-bottom: 30px;
        }
        .events-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            position: relative;
            display: inline-block;
        }
        .events-title h2 span {
            color: #ff6b35;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .event-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }
        .event-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        .event-image {
	position: relative;
	height: 260px;
	overflow: hidden;
}
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .event-card:hover .event-image img {
            transform: scale(1.05);
        }
        .event-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .event-content {
	padding-top: 25px;
	padding-right: 25px;
	padding-left: 25px;
}
        .event-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}
        .event-location {
	font-size: 15px;
	color: #838383;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
}
        .event-location i {
            color: #ff6b35;
        }
        .event-join-btn {
            display: inline-block;
            padding: 8px 16px;
            background: transparent;
            color: #333;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .event-join-btn:hover {
            background: #333;
            color: white;
            border-color: #333;
        }
        .mobile-btn {
            display: none;
        }

        @media screen and (max-width: 1200px) {
            .about-intro-container {
                gap: 40px;
            }
        }

        @media screen and (max-width: 1050px) {
            .events-section {
                padding: 60px 0;
            }
            .events-title h2 {
                font-size: 28px;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .event-card {
                display: flex;
                flex-direction: row;
                align-items: center;
                height: auto;
                min-height: 160px;
                padding: 25px;
                border-radius: 16px;
                background: white;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            }
            .event-image {
                width: 100px;
                height: 80px;
                flex-shrink: 0;
                order: 2;
                margin-left: 15px;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
            }
            .event-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .event-date {
                position: absolute;
                bottom: 6px;
                left: 6px;
                background: white;
                padding: 2px 6px;
                border-radius: 3px;
                font-size: 10px;
                font-weight: 500;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            }
            .event-content {
                flex: 1;
                padding: 0;
                display: flex;
                flex-direction: column;
                order: 1;
                min-width: 0;
            }
            .event-title {
                font-size: 17px;
                font-weight: 700;
                margin-bottom: 6px;
                color: #333;
                line-height: 1.3;
            }
            .event-location {
                font-size: 12px;
                color: #666;
                margin-bottom: 12px;
                line-height: 1.5;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .event-location i {
                color: #ff6b35;
                margin-right: 3px;
                flex-shrink: 0;
            }
            .desktop-btn {
                display: none;
            }
            .mobile-btn {
                display: inline-block;
                padding: 6px 20px;
                background: transparent;
                color: #333;
                border: 1px solid #ddd;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 500;
                text-decoration: none;
                transition: all 0.3s ease;
                align-self: flex-start;
            }
            .mobile-btn:hover {
                background: #333;
                color: white;
                border-color: #333;
            }
        }

        @media screen and (max-width: 992px) {
            .about-hero-content h1 {
                font-size: 36px;
            }
            .about-intro-container {
                flex-direction: column;
                gap: 30px;
            }
            .about-intro-left {
                text-align: center;
            }
        }

        @media screen and (max-width: 768px) {
            .about-hero-area {
                height: 300px;
            }
            .about-hero-video {
                display: block;
            }
            .about-hero-content h1 {
                font-size: 28px;
                margin-bottom: 20px;
                color: #ffffff;
            }
            .about-hero-btn {
                padding: 10px 24px;
                font-size: 14px;
                background-color: transparent;
                color: #ffffff;
                border: 1px solid #ffffff;
            }
            .about-hero-btn:hover {
                background-color: rgba(255, 255, 255, 1);
                color: #000000;
            }
            .about-intro-area {
                padding: 40px 15px;
            }
            .about-intro-left h2 {
                font-size: 26px;
            }
            .about-intro-right p {
                font-size: 14px;
            }
            }

        @media screen and (max-width: 480px) {
            .about-hero-content h1 {
                font-size: 22px;
                color: #ffffff;
            }
            .about-hero-btn {
                color: #ffffff;
                border: 1px solid #ffffff;
            }
            .about-hero-btn:hover {
                color: #000000;
            }
            .about-intro-left h2 {
                font-size: 22px;
            }
        }

        .stats-area {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }
        .stats-container {
            max-width: 1500px;
            margin: 0 auto;
            text-align: center;
        }
        .stats-title {
            font-size: 32px;
            color: #333333;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .stats-subtitle {
            font-size: 14px;
            color: #999999;
            margin-bottom: 50px;
        }
        .stats-card {
            display: flex;
            justify-content: space-around;
            background-color: #ffffff;
            border-radius: 16px;
            padding: 50px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .stats-item {
            flex: 1;
            text-align: center;
            position: relative;
        }
        .stats-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background-color: #eeeeee;
        }
        .stats-item .number {
            font-size: 48px;
            color: #333333;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .stats-item .label {
            font-size: 14px;
            color: #999999;
        }

        @media screen and (max-width: 768px) {
            .stats-area {
                padding: 50px 15px;
            }
            .stats-title {
                font-size: 26px;
            }
            .stats-card {
                flex-direction: column;
                padding: 40px 20px;
                gap: 30px;
            }
            .stats-item:not(:last-child)::after {
                display: none;
            }
            .stats-item {
                padding-bottom: 30px;
                border-bottom: 1px solid #eeeeee;
            }
            .stats-item:last-child {
                padding-bottom: 0;
                border-bottom: none;
            }
            .stats-item .number {
                font-size: 36px;
            }
        }

        @media screen and (max-width: 480px) {
            .stats-title {
                font-size: 22px;
            }
            .stats-item .number {
                font-size: 28px;
            }
        }

        .cases-area {
            padding: 80px 20px;
            background-color: #ffffff;
        }
        .cases-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .cases-title {
            text-align: center;
            font-size: 32px;
            color: #333333;
            font-weight: 600;
            margin-bottom: 60px;
        }
        .cases-list {
            display: flex;
            gap: 15px;
            overflow: hidden;
        }
        .cases-item {
            flex: 1;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            height: 400px;
            min-height: 400px;
        }
        .cases-item.active {
            flex: 3;
            min-height: 400px;
        }
        .cases-item:not(.active) {
            flex: 1;
            min-height: 400px;
        }
        .cases-item .case-image {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .cases-item:hover .case-image,
        .cases-item.active .case-image {
            transform: scale(1.05);
        }
        .cases-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }
        .cases-item.active::before {
            opacity: 0.8;
        }
        .cases-item .case-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .cases-item.active .case-content {
            transform: translateY(0);
            opacity: 1;
        }
        .cases-item .case-label {
            font-size: 12px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 8px;
        }
        .cases-item .case-title {
            font-size: 20px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0;
        }
        .cases-item .case-name {
            position: absolute;
            bottom: 20px;
            left: 20px;
            font-size: 14px;
            color: #ffffff;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        .cases-item.active .case-name {
            opacity: 0;
        }

        @media screen and (max-width: 1200px) {
            .cases-item {
                height: 350px;
            }
        }

        @media screen and (max-width: 992px) {
            .cases-list {
                display: block !important;
            }
            .cases-container .cases-item {
                display: block !important;
                height: 250px !important;
                min-height: 250px !important;
                flex: none !important;
                width: 100% !important;
                margin-bottom: 10px !important;
            }
            .cases-container .cases-item.active {
                height: 250px !important;
                min-height: 250px !important;
                flex: none !important;
            }
            .cases-container .cases-item .case-content {
                transform: translateY(0) !important;
                opacity: 1 !important;
            }
            .cases-container .cases-item .case-name {
                display: none !important;
            }
            .cases-container .cases-item.active .case-name {
                display: none !important;
            }
            .cases-container .cases-item::before {
                opacity: 0.8 !important;
            }
            .cases-container .cases-item.active::before {
                opacity: 0.8 !important;
            }
        }

        @media screen and (max-width: 768px) {
            .cases-area {
                padding: 50px 15px;
            }
            .cases-title {
                font-size: 26px;
                margin-bottom: 40px;
            }
            .cases-list {
                display: block !important;
            }
            .cases-container .cases-item {
                display: block !important;
                height: 250px !important;
                min-height: 250px !important;
                flex: none !important;
                width: 100% !important;
                margin-bottom: 10px !important;
            }
            .cases-container .cases-item.active {
                height: 250px !important;
                min-height: 250px !important;
                flex: none !important;
            }
            .cases-container .cases-item .case-image {
                width: 100% !important;
                height: 100% !important;
                min-height: 250px !important;
                object-fit: cover !important;
            }
            .cases-container .cases-item.active .case-image {
                min-height: 250px !important;
            }
            .cases-container .cases-item .case-content {
                padding: 15px !important;
                transform: translateY(0) !important;
                opacity: 1 !important;
            }
            .cases-container .cases-item.active .case-content {
                padding: 15px !important;
            }
            .cases-container .cases-item .case-title {
                font-size: 14px !important;
            }
            .cases-container .cases-item .case-name {
                font-size: 12px !important;
                bottom: 10px !important;
                left: 10px !important;
                opacity: 1 !important;
            }
            .cases-container .cases-item.active .case-name {
                opacity: 1 !important;
            }
            .cases-container .cases-item::before {
                opacity: 0.8 !important;
            }
            .cases-container .cases-item.active::before {
                opacity: 0.8 !important;
            }
            .bgtop {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    background: #fff!important;
}
        }

        @media screen and (max-width: 480px) {
            .cases-title {
                font-size: 22px;
            }
        }
        
        
        
            .bgtop {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    background: #000000;
}

.cooperation-section {
            padding: 80px 20px;
            background-color: #fafbfc;
        }
        .cooperation-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .cooperation-title {
            text-align: center;
            font-size: 32px;
            color: #333333;
            font-weight: 600;
            margin-bottom: 60px;
        }
        .cooperation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 24px;
        }
        .cooperation-card {
            position: relative;
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .cooperation-card-small {
            min-height: 250px;
        }
        .cooperation-card:hover {
            box-shadow: inset 0 2px 10px rgba(102, 126, 234, 0.2), inset 0 2px 6px rgba(118, 75, 162, 0.15);
        }
        .cooperation-card-large {
            grid-column: span 1;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
            min-height: 500px;
            padding: 40px;
        }
        .cooperation-card-group {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .cooperation-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            z-index: 1;
            position: relative;
        }
        .cooperation-card-title {
            font-size: 20px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 12px;
            z-index: 1;
            position: relative;
        }
        .cooperation-card-large .cooperation-card-title {
            font-size: 24px;
        }
        .cooperation-card-desc {
            font-size: 14px;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 24px;
            z-index: 1;
            position: relative;
            max-width: 70%;
        }
        .cooperation-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: #333333;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1;
            position: relative;
            align-self: flex-start;
        }
        .cooperation-btn:hover {
            background: #333333;
            color: #ffffff;
            border-color: #333333;
        }

        @media screen and (max-width: 992px) {
            .cooperation-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cooperation-card-large {
                grid-column: span 1;
                grid-row: span 1;
            }
            .cooperation-card-large {
                min-height: 315px;
            }
            .cooperation-card-small {
                min-height: 200px;
            }
        }

        @media screen and (max-width: 768px) {
            .cooperation-section {
                padding: 50px 15px;
            }
            .cooperation-title {
                font-size: 26px;
                margin-bottom: 40px;
            }
            .cooperation-card {
                padding: 24px;
            }
            .cooperation-card-large {
                min-height: 315px;
            }
            .cooperation-card-small {
                min-height: 200px;
            }
        }

        @media screen and (max-width: 480px) {
            .cooperation-title {
                font-size: 22px;
            }
            .cooperation-card-title {
                font-size: 18px;
            }
            .cooperation-card-large .cooperation-card-title {
                font-size: 20px;
            }
            .cooperation-card-large {
                min-height: 315px;
            }
            .cooperation-card-small {
                min-height: 200px;
            }
        }


        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        .video-modal.active {
            display: flex;
        }
        .video-modal-content {
            position: relative;
            max-width: 100vw;
            max-height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            overflow: visible;
        }
        .video-modal-content video {
            max-width: 100vw;
            max-height: 100vh;
            object-fit: contain;
            display: block;
            border-radius: 8px;
            background-color: transparent;
        }
        .video-modal-close {
            position: absolute;
            top: -45px;
            right: 10px;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 25px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
            z-index: 10001;
        }
        .video-modal-close:hover {
            background-color: #fff;
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            color: #000000;
            text-align: center;
        }

        .cta-agents {
	background-position: center bottom;
	background-image: url('/plugins/img/tos.jpg');
}

        .cta-section h2 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #000000;
        }

        .cta-section p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 30px;
            color: rgba(0, 0, 0, 0.9);
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #ffffff;
            color: #000000;
            border: 1px solid #000000;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #000000;
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 50px 20px;
            }

            .cta-section h2 {
                font-size: 28px;
            }

            .cta-section p {
                font-size: 16px;
            }

            .cta-btn {
                padding: 12px 30px;
                font-size: 16px;
            }
        }