        /* 001 Section Styles */
        .section-001 {
            background-color: #e9ebee;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            padding: 40px 20px;
            color: #333;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .container-001 {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        /* Hero Section */
        .hero-001 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .hero-001::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .hero-text-001 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1877F2, #0d5bb8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
        }
        
            /* Video Container */
        .video-container-001 {
            position: relative;
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        /* 9:16 Aspect Ratio for YouTube Shorts */
        .video-container-001::before {
            content: "";
            display: block;
            padding-top: 177.78%; /* 16:9 ratio reversed for 9:16 */
        }

        .youtube-iframe-001 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
        }
        
        .subtext-001 {
            font-size: 1.3rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto 30px;
            font-weight: 500;
        }
        
        .cta-button-001 {
            display: inline-block;
            background: linear-gradient(135deg, #1877F2, #0d5bb8);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button-001:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(24, 119, 242, 0.4);
        }
        
        /* Profile Section */
        .profile-001 {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 50px;
            gap: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .profile-image-001 {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #1877F2;
            box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
            transition: transform 0.5s ease;
        }
        
        .profile-image-001:hover {
            transform: scale(1.05);
        }
        
        .profile-info-001 h2 {
            color: #1877F2;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .profile-info-001 p {
            line-height: 1.7;
            color: #555;
            font-size: 1.1rem;
        }
        
        /* Company Section */
        .company-001 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 50px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .company-logo-001 {
            max-width: 250px;
            margin-bottom: 25px;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
        }
        
        .company-info-001 {
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.7;
            color: #555;
            font-size: 1.1rem;
        }
        
        .company-images-001 {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .company-image-card-001 {
            width: 180px;
            height: 320px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
        }
        
        .company-image-card-001:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        
        .company-image-001 {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-label-001 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(24, 119, 242, 0.85);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
        }
        
        /* Branches Section */
        .branches-001 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .branch-card-001 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .branch-card-001::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1877F2, #0d5bb8);
        }
        
        .branch-card-001:hover {
            transform: translateY(-10px);
        }
        
        .branch-info h3 {
            color: #1877F2;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .branch-info h3::before {
            content: '\f3c5';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .branch-info address {
            font-style: normal;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #555;
            font-size: 1.05rem;
        }
        
        .branch-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #555;
        }
        
        .branch-info i {
            color: #1877F2;
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .map-link {
            display: inline-flex;
            align-items: center;
            background: #1877F2;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
        }
        
        .map-link:hover {
            background: #0d5bb8;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
        }
        
        .map-link i {
            color: white;
            margin-right: 8px;
        }
        
        /* Team Section - UPDATED */
        .team-001 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 50px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .team-001::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .team-title-001 {
            color: #1877F2;
            margin-bottom: 40px;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        .team-title-001::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1877F2, #0d5bb8);
            border-radius: 2px;
        }
        
        .team-grid-001 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .team-card-001 {
            text-align: center;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .team-card-001::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1877F2, #0d5bb8);
        }
        
        .team-card-001:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(24, 119, 242, 0.3);
        }
        
        .team-image-container-001 {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .team-image-001 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card-001:hover .team-image-001 {
            transform: scale(1.05);
        }
        
        .team-card-001:hover .team-image-container-001 {
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }
        
        .team-name-001 {
            font-weight: 700;
            color: #1877F2;
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
        
        .team-role-001 {
            color: #666;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .team-description-001 {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 90%;
        }
        
        /* Clients Section */
        .clients-001 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .clients-001::before {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .clients-title-001 {
            color: #1877F2;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .clients-title-001::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1877F2, #0d5bb8);
            border-radius: 2px;
        }
        
        .marquee-container-001 {
            overflow: hidden;
            position: relative;
            height: 120px;
            display: flex;
            align-items: center;
        }
        
        .marquee-track-001 {
            display: flex;
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: marquee-001 40s linear infinite;
        }
        
        .marquee-track-001:hover {
            animation-play-state: paused;
        }
        
        .client-item-001 {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(5px);
            padding: 12px 25px;
            margin: 0 15px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            font-weight: 600;
            color: #444;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .client-item-001:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            background: rgba(255, 255, 255, 0.8);
        }
        
        .client-item-001 i {
            color: #1877F2;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        @keyframes marquee-001 {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Section Headers */
        .section-header-001 {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-header-001 h2 {
            color: #1877F2;
            font-size: 2.2rem;
            display: inline-block;
            position: relative;
        }
        
        .section-header-001 h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1877F2, #0d5bb8);
            border-radius: 2px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .profile-001 {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text-001 {
                font-size: 2.5rem;
            }
            
            .branches-001 {
                grid-template-columns: 1fr;
            }
            
            .video-container-001 {
                max-width: 280px;
            }
            
            .company-image-card-001 {
                width: 150px;
                height: 270px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-text-001 {
                font-size: 2rem;
            }
            
            .team-grid-001 {
                grid-template-columns: 1fr;
            }
            
                        
            .video-container-001 {
                max-width: 250px;
            }
            
            .company-images-001 {
                flex-direction: column;
                align-items: center;
            }
            
            .company-image-card-001 {
                width: 200px;
                height: 355px;
            }
        }
        
        /* Video Card Styles - Integrated with Section-001 */
.card-013.hero-001 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.card-013.hero-001::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.card-header-001.section-header-001 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.card-title-001.hero-text-001 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1877F2, #0d5bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
    position: relative;
    display: inline-block;
}

.card-title-001.hero-text-001::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #1877F2, #0d5bb8);
    border-radius: 2px;
}

.glowing-text-001.subtext-001 {
    font-size: 1.3rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 50px;
    background: rgba(24, 119, 242, 0.1);
    animation: glow-001 2s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes glow-001 {
    from {
        box-shadow: 0 0 10px rgba(24, 119, 242, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-013.hero-001 {
        padding: 40px 20px;
    }
    
    .card-title-001.hero-text-001 {
        font-size: 2rem;
    }
    
    .video-container-001 {
        max-width: 280px;
    }
    
    .glowing-text-001.subtext-001 {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}