.elementor-51 .elementor-element.elementor-element-36214c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-51 .elementor-element.elementor-element-31a8920{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;box-shadow:0px 3px 10px 0px rgba(0, 0, 0, 0.26);overflow:visible;}.elementor-51 .elementor-element.elementor-element-31a8920:not(.elementor-motion-effects-element-type-background), .elementor-51 .elementor-element.elementor-element-31a8920 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-51 .elementor-element.elementor-element-4b3c3e2 .ekit-breadcrumb > li:not(.brd_sep){color:#000000;}.elementor-51 .elementor-element.elementor-element-4b3c3e2 .ekit-breadcrumb{font-size:13px;}.elementor-51 .elementor-element.elementor-element-62773f0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}@media(min-width:768px){.elementor-51 .elementor-element.elementor-element-31a8920{--content-width:1400px;}}/* Start custom CSS for html, class: .elementor-element-e5a6403 */.about-hero {
            min-height: 60vh;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 100px 5%;
        }

        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 50px,
                rgba(255, 255, 255, 0.03) 50px,
                rgba(255, 255, 255, 0.03) 100px
            );
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            from { transform: translate(0, 0); }
            to { transform: translate(100px, 100px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1000px;
            animation: heroFadeIn 1s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 30px;
            animation: badgeGlow 2s infinite;
        }

        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
            50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.6); }
        }

        .hero-title {
            font-size: 58px;
            font-weight: 900;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
        }

        /* Main Content Container */
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Mission Statement Section */
        .mission-section {
            padding: 100px 0;
            text-align: center;
        }

        .mission-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.02));
            border-radius: 30px;
            border: 2px solid rgba(220, 38, 38, 0.1);
            position: relative;
            overflow: hidden;
            animation: missionFadeIn 1s ease-out;
        }

        @keyframes missionFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .mission-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .mission-text {
            font-size: 28px;
            line-height: 1.8;
            color: #1a1a1a;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .mission-text strong {
            color: #dc2626;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(220, 38, 38, 0.1);
            border-radius: 20px;
            border: 2px solid rgba(220, 38, 38, 0.3);
            transition: all 0.5s ease;
            animation: statFadeIn 0.8s ease-out both;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes statFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: #dc2626;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            color: #dc2626;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 18px;
            color: #ffffff;
            font-weight: 600;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: headerFadeIn 1s ease-out;
        }

        @keyframes headerFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #b91c1c);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Who We Are Section */
        .who-we-are {
            padding: 100px 0;
        }

        .who-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .who-text {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .who-text p {
            font-size: 17px;
            line-height: 1.9;
            color: #333333;
            margin-bottom: 20px;
        }

        .who-text strong {
            color: #dc2626;
            font-weight: 700;
        }

        .who-features {
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: #dc2626;
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 16px;
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Journey Timeline */
        .journey-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff, #f9f9f9);
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #dc2626, #b91c1c);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            animation: timelineFadeIn 0.8s ease-out both;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }

        @keyframes timelineFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: 55%;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 55%;
            margin-right: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            width: 25px;
            height: 25px;
            background: #dc2626;
            border: 5px solid #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.2);
            z-index: 1;
            animation: dotPulse 2s infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.2);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
            }
        }

        .timeline-content {
            padding: 30px;
            background: #ffffff;
            border-radius: 15px;
            border: 2px solid rgba(220, 38, 38, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: #dc2626;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
        }

        .timeline-year {
            font-size: 28px;
            font-weight: 900;
            color: #dc2626;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .timeline-text {
            font-size: 16px;
            line-height: 1.8;
            color: #555555;
        }

        /* Core Expertise Grid */
        .expertise-section {
            padding: 100px 0;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .expertise-card {
            padding: 40px 30px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 20px;
            transition: all 0.5s ease;
            animation: cardFadeIn 0.8s ease-out both;
        }

        .expertise-card:nth-child(1) { animation-delay: 0.1s; }
        .expertise-card:nth-child(2) { animation-delay: 0.2s; }
        .expertise-card:nth-child(3) { animation-delay: 0.3s; }
        .expertise-card:nth-child(4) { animation-delay: 0.4s; }
        .expertise-card:nth-child(5) { animation-delay: 0.5s; }
        .expertise-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            border-color: #dc2626;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
        }

        .expertise-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
            transition: transform 0.5s ease;
        }

        .expertise-card:hover .expertise-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .expertise-title {
            font-size: 20px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .expertise-text {
            font-size: 14px;
            line-height: 1.8;
            color: #666666;
        }

        /* Strengths Section */
        .strengths-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f9f9, #ffffff);
        }

        .strengths-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .strength-badge {
            padding: 25px 20px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            animation: badgeBounce 0.8s ease-out both;
        }

        .strength-badge:nth-child(1) { animation-delay: 0.05s; }
        .strength-badge:nth-child(2) { animation-delay: 0.1s; }
        .strength-badge:nth-child(3) { animation-delay: 0.15s; }
        .strength-badge:nth-child(4) { animation-delay: 0.2s; }
        .strength-badge:nth-child(5) { animation-delay: 0.25s; }
        .strength-badge:nth-child(6) { animation-delay: 0.3s; }
        .strength-badge:nth-child(7) { animation-delay: 0.35s; }
        .strength-badge:nth-child(8) { animation-delay: 0.4s; }

        @keyframes badgeBounce {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .strength-badge:hover {
            background: #dc2626;
            border-color: #dc2626;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        .strength-badge:hover .strength-text {
            color: #ffffff;
        }

        .strength-icon {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .strength-text {
            font-size: 15px;
            color: #1a1a1a;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        /* Industries Section */
        .industries-section {
            padding: 100px 0;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .industry-category {
            padding: 40px 35px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 20px;
            transition: all 0.5s ease;
            animation: industryFadeIn 0.8s ease-out both;
        }

        .industry-category:nth-child(1) { animation-delay: 0.1s; }
        .industry-category:nth-child(2) { animation-delay: 0.2s; }
        .industry-category:nth-child(3) { animation-delay: 0.3s; }

        @keyframes industryFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .industry-category:hover {
            transform: translateY(-10px);
            border-color: #dc2626;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(220, 38, 38, 0.1);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            flex-shrink: 0;
            transition: transform 0.5s ease;
        }

        .industry-category:hover .category-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .category-title {
            font-size: 22px;
            font-weight: 800;
            color: #1a1a1a;
        }

        .category-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .category-list li {
            font-size: 15px;
            color: #555555;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .category-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
        }

        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 100px 0;
            
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .vm-card {
            padding: 50px 40px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            animation: vmFadeIn 0.8s ease-out both;
        }

        .vision-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
            border: 2px solid rgba(220, 38, 38, 0.3);
            animation-delay: 0.1s;
        }

        .mission-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
            border: 2px solid rgba(220, 38, 38, 0.3);
            animation-delay: 0.2s;
        }

        @keyframes vmFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
            animation: vmShimmer 3s infinite;
        }

        @keyframes vmShimmer {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .vm-card:hover {
            transform: translateY(-10px);
            border-color: #dc2626;
            box-shadow: 0 20px 50px rgba(220, 38, 38, 0.4);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin-bottom: 25px;
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        }

        .vm-title {
            font-size: 28px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 20px;
        }

        .vm-text {
            font-size: 18px;
            line-height: 1.9;
            color: #000000;
        }

        .vm-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .vm-list li {
            font-size: 16px;
            color: #000000;
            padding-left: 30px;
            position: relative;
            line-height: 1.8;
        }

        .vm-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
            font-size: 20px;
        }

        /* Leadership Section */
        .leadership-section {
            padding: 100px 0;
        }

        .leadership-intro {
            text-align: center;
            font-size: 20px;
            color: #555555;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .team-role {
            text-align: center;
            padding: 35px 25px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 20px;
            transition: all 0.4s ease;
            animation: teamFadeIn 0.8s ease-out both;
        }

        .team-role:nth-child(1) { animation-delay: 0.1s; }
        .team-role:nth-child(2) { animation-delay: 0.15s; }
        .team-role:nth-child(3) { animation-delay: 0.2s; }
        .team-role:nth-child(4) { animation-delay: 0.25s; }
        .team-role:nth-child(5) { animation-delay: 0.3s; }
        .team-role:nth-child(6) { animation-delay: 0.35s; }

        @keyframes teamFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .team-role:hover {
            transform: translateY(-8px);
            border-color: #dc2626;
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .role-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin: 0 auto 20px;
            transition: transform 0.5s ease;
        }

        .team-role:hover .role-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .role-name {
            font-size: 17px;
            color: #1a1a1a;
            font-weight: 700;
        }

        .leadership-note {
            text-align: center;
            font-size: 18px;
            color: #555555;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Quality Section */
        .quality-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            position: relative;
            overflow: hidden;
        }

        .quality-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 50px,
                rgba(255, 255, 255, 0.03) 50px,
                rgba(255, 255, 255, 0.03) 100px
            );
        }

        .quality-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            animation: qualityFadeIn 1s ease-out;
        }

        @keyframes qualityFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quality-header {
            margin-bottom: 50px;
        }

        .quality-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50px;
            margin-bottom: 30px;
        }

        .quality-icon {
            font-size: 28px;
        }

        .quality-badge span {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .quality-title {
            font-size: 38px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 50px;
        }

        .quality-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .quality-column {
            text-align: left;
            padding: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .quality-subtitle {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .quality-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .quality-list li {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
        }

        .quality-footer {
            font-size: 18px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Trust Section */
        .trust-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff, #f9f9f9);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px 30px;
            background: #ffffff;
            border: 2px solid rgba(220, 38, 38, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
            animation: trustFadeIn 0.8s ease-out both;
        }

        .trust-item:nth-child(1) { animation-delay: 0.1s; }
        .trust-item:nth-child(2) { animation-delay: 0.15s; }
        .trust-item:nth-child(3) { animation-delay: 0.2s; }
        .trust-item:nth-child(4) { animation-delay: 0.25s; }
        .trust-item:nth-child(5) { animation-delay: 0.3s; }
        .trust-item:nth-child(6) { animation-delay: 0.35s; }

        @keyframes trustFadeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .trust-item:hover {
            border-color: #dc2626;
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
        }

        .trust-check {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ffffff;
            font-weight: bold;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .trust-item:hover .trust-check {
            transform: scale(1.2) rotate(360deg);
        }

        .trust-item p {
            font-size: 16px;
            color: #333333;
            line-height: 1.7;
            font-weight: 600;
        }

        /* Final Message Section */
        .final-message-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        }

        .final-message-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 50px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
            border: 3px solid rgba(220, 38, 38, 0.3);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            animation: finalFadeIn 1s ease-out;
        }

        @keyframes finalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .final-message-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
            animation: finalShimmer 3s infinite;
        }

        @keyframes finalShimmer {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .final-tagline {
            font-size: 42px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .final-text {
            font-size: 20px;
            line-height: 1.9;
            color: #e5e5e5;
            position: relative;
            z-index: 1;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(255, 255, 255, 0.03) 40px,
                rgba(255, 255, 255, 0.03) 80px
            );
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: #ffffff;
            color: #dc2626;
            font-size: 20px;
            font-weight: 800;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .who-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .strengths-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .vm-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .quality-grid {
                grid-template-columns: 1fr;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .mission-text {
                font-size: 22px;
            }

            .stats-grid,
            .expertise-grid,
            .strengths-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-dot {
                left: 30px;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 80px;
                margin-right: 0;
                text-align: left;
            }

            .final-tagline {
                font-size: 32px;
            }

            .quality-title {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 36px;
            }

            .final-message-content {
                padding: 40px 30px;
            }

            .final-tagline {
                font-size: 26px;
            }

            .final-text {
                font-size: 16px;
            }
        }/* End custom CSS */