.about-hero-area {
	position: relative;
	height: 500px;
	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: #FAFAFA;
}
        .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;
	padding-bottom: 20px;
	margin-bottom: 25px;
}
        .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: 260px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

      .event-image2 img {
	width: 100%;
	height: 360px;
	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: 25px;
}
        .event-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}
        .event-location {
	font-size: 15px;
	color: #838383;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
        .case-link-btn {
        max-width: 106px;
        padding: 10px 24px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;

}
        .case-link-btn:hover {
  color: #ffffff ;
  background-color: #000000;
}

     .detail-btn {
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 20px;
    transition: none;
    width: fit-content;
    background-color: #ffffff;
     }
     
        .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 10px;
            }
            .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;

                border-radius: 16px;
                background: white;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            }
            .event-image {
                min-height: 100px;
                max-height: 120px;
                flex: 0.8;
                flex-shrink: 0;
                order: 2;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
                margin-right: 15px;

            }
            .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: 25px;
                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;
            }
            .case-link-btn {
                display: block;
                margin-top: 10px;
            }
        }

        @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;
}

.spare-banner-area {
            width: 100%;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%);
            padding: 60px 0;

        }
        .spare-banner-wrapper {
            max-width: 1520px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 70fr 30fr;
            gap: 40px;
        }
        .spare-banner-left {
            position: relative;
            height: 495px;
            border-radius: 16px;
            overflow: hidden;
        }
        .spare-banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }
        .spare-banner-bg.active {
            opacity: 1;
        }
        .spare-banner-content {
            position: relative;
            display: none;
            animation: fadeIn 0.5s ease;
            z-index: 1;
            padding: 40px;
            height: 100%;
            box-sizing: border-box;
        }
        .spare-banner-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .spare-banner-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
        }
        .tag-icon {
            font-size: 16px;
        }
        .spare-banner-title {
            font-size: 48px;
            font-weight: bold;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 10px 0;
            line-height: 1.2;
        }
        .spare-banner-subtitle {
            font-size: 36px;
            font-weight: bold;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }
        .spare-banner-desc {
            font-size: 16px;
            color: #fff;
            margin: 0 0 30px 0;
            line-height: 1.6;
        }
        .spare-banner-btn-group {
            display: flex;
            gap: 15px;
        }
        .spare-banner-btn {
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .spare-banner-btn-primary {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .spare-banner-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        .spare-banner-btn-secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }
        .spare-banner-btn-secondary:hover {
            background: #667eea;
            color: white;
        }
        .spare-banner-text-nav {
            position: absolute;
    top: 420px;
    left: 120px;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 25px;
    z-index: 222;
  
        }
        .spare-banner-text-nav-item {
            position: relative;
            font-size: 15px;
            color: #fff;
            cursor: pointer;
            padding-bottom: 8px;
            transition: color 0.3s ease;
        }
        .spare-banner-text-nav-item:hover {
            color: #667eea;
        }
        .spare-banner-text-nav-item.active {
            color: #fff;
            font-weight: 600;
        }
        .spare-banner-text-nav-item .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: width 0.1s linear;
        }
        .spare-banner-right {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .spare-banner-right-item {
            align-items: center;
            gap: 15px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 155px;
        }
        .spare-banner-right-item:hover {

            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
   
        .look-btn {
            display: inline-block;
            margin-top: 150px;
            padding: 10px 28px;
            border: 1px solid #000; 
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background-color: #000;
        }

        .item-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
            border-radius: 12px;
            font-size: 24px;
        }
        .item-content {
            flex: 1;
        }
        .item-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #333;
      
            padding-bottom:5px;
        }
        .item-desc {
            font-size: 1em;
            color: #999;
            padding: 5px 0 0;
        }
        @media (max-width: 992px) {
            .spare-banner-wrapper {
                flex-direction: column;
            }
            .spare-banner-right {
                width: 100%;
            }
            .spare-banner-title {
                font-size: 32px;
            }
            .spare-banner-subtitle {
                font-size: 24px;
            }
        }
        @media screen and (max-width: 768px) {
            .spare-banner-right {
                display: none !important;
            }
            .spare-banner-wrapper {
                grid-template-columns: 1fr;
            }
        }
         /* 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;
            }
        }