/* ============================================
   TYNEX TECHNOLOGY - CUSTOM STYLES
   Professional AI Training Platform Design
   ============================================ */

/* === Color Variables === */
:root {
    --tynex-primary: #0071dc;
    --tynex-primary-dark: #005bb5;
    --tynex-secondary: #ffc221;
    --tynex-dark: #070b3b;
    --tynex-dark-light: #15163b;
    --tynex-success: #10b981;
    --tynex-danger: #ef4444;
    --tynex-warning: #f59e0b;
    --tynex-info: #3b82f6;

    --tynex-gray-50: #f9fafb;
    --tynex-gray-100: #f3f4f6;
    --tynex-gray-200: #e5e7eb;
    --tynex-gray-300: #d1d5db;
    --tynex-gray-400: #9ca3af;
    --tynex-gray-500: #6b7280;
    --tynex-gray-600: #4b5563;
    --tynex-gray-700: #374151;
    --tynex-gray-800: #1f2937;
    --tynex-gray-900: #111827;

    --tynex-gradient-1: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
    --tynex-gradient-2: linear-gradient(135deg, #ffc221 0%, #ffaa00 100%);
    --tynex-gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    --tynex-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tynex-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tynex-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tynex-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --tynex-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* === Hero Section === */
.tynex-hero-section {
    background: linear-gradient(135deg, #0a0f3d 0%, #0071dc 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.tynex-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.tynex-hero-content {
    position: relative;
    z-index: 2;
}

.tynex-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.tynex-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ffc221 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tynex-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 580px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.tynex-hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero CTA Buttons */
.tynex-hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.tynex-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tynex-secondary);
    color: #070b3b;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 194, 33, 0.3);
}

.tynex-btn-primary:hover {
    background: #ffaa00;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 194, 33, 0.4);
    color: #070b3b;
}

.tynex-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tynex-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Trust Badges */
.tynex-trust-badges {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.trust-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-logo {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Hero Visual */
.tynex-hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--tynex-shadow-xl);
}

.hero-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--tynex-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 32px;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--tynex-dark);
    line-height: 1;
}

.card-label {
    font-size: 12px;
    color: var(--tynex-gray-600);
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* === How It Works Section === */
.tynex-how-it-works {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--tynex-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--tynex-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--tynex-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.steps-container {
    position: relative;
    margin-bottom: 60px;
}

.steps-connector {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--tynex-gray-200);
    z-index: 0;
}

.step-card {
    background: #ffffff;
    border: 2px solid var(--tynex-gray-200);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--tynex-primary);
    box-shadow: var(--tynex-shadow-lg);
    transform: translateY(-5px);
}

.step-card.active {
    border-color: var(--tynex-primary);
    background: linear-gradient(135deg, rgba(0, 113, 220, 0.05) 0%, rgba(0, 113, 220, 0.02) 100%);
    box-shadow: var(--tynex-shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--tynex-gradient-1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--tynex-shadow-md);
}

.step-card.active .step-number {
    background: var(--tynex-gradient-2);
    color: var(--tynex-dark);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--tynex-gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon i {
    font-size: 36px;
    color: var(--tynex-primary);
}

.step-card.active .step-icon {
    background: rgba(255, 194, 33, 0.1);
}

.step-card.active .step-icon i {
    color: var(--tynex-secondary);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--tynex-dark);
    margin-bottom: 12px;
}

.step-description {
    color: var(--tynex-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tynex-gray-700);
    font-size: 14px;
}

.feature-item i {
    color: var(--tynex-success);
    font-size: 18px;
}

.tynex-btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tynex-gradient-1);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 113, 220, 0.3);
}

.tynex-btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 113, 220, 0.4);
    color: #ffffff;
}

/* === Task Categories Section === */
.tynex-task-categories {
    padding: 100px 0;
    background: var(--tynex-gray-50);
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--tynex-primary);
    box-shadow: var(--tynex-shadow-lg);
    transform: translateY(-5px);
}

.category-card.featured {
    border-color: var(--tynex-secondary);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 194, 33, 0.05) 0%, rgba(255, 194, 33, 0.02) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--tynex-gradient-2);
    color: var(--tynex-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--tynex-shadow-md);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 36px;
    color: #ffffff;
}

.category-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.category-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.category-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.category-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.category-icon.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.category-icon.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--tynex-dark);
    margin-bottom: 12px;
}

.category-description {
    color: var(--tynex-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.category-stats {
    display: flex;
    gap: 30px;
    padding: 16px 0;
    border-top: 1px solid var(--tynex-gray-200);
    border-bottom: 1px solid var(--tynex-gray-200);
    margin-bottom: 16px;
}

.category-stats .stat {
    display: flex;
    flex-direction: column;
}

.category-stats .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--tynex-dark);
}

.category-stats .stat-label {
    font-size: 12px;
    color: var(--tynex-gray-500);
}

.category-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: var(--tynex-gray-100);
    color: var(--tynex-gray-700);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

/* === Why Choose Section === */
.tynex-why-choose {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-content {
    padding-right: 40px;
}

.benefits-list {
    margin-top: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--tynex-gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: #ffffff;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--tynex-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--tynex-gray-600);
    line-height: 1.6;
    margin: 0;
}

.tynex-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--tynex-primary);
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--tynex-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tynex-btn-outline:hover {
    background: var(--tynex-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Comparison Card */
.comparison-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--tynex-shadow-lg);
    overflow: hidden;
}

.comparison-header {
    background: var(--tynex-gradient-1);
    padding: 20px;
    text-align: center;
}

.comparison-header h4 {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    font-size: 20px;
}

.comparison-body {
    padding: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 16px 20px;
    border-bottom: 1px solid var(--tynex-gray-200);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: var(--tynex-gray-50);
}

.comparison-label {
    font-weight: 600;
    color: var(--tynex-dark);
    font-size: 14px;
}

.comparison-value {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.comparison-value.tynex {
    color: var(--tynex-success);
}

.comparison-value.others {
    color: var(--tynex-gray-500);
}

/* === Testimonials Section === */
.tynex-testimonials {
    padding: 100px 0;
    background: var(--tynex-gray-50);
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--tynex-shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--tynex-shadow-lg);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc221;
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text {
    color: var(--tynex-gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--tynex-gray-200);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tynex-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--tynex-gray-600);
    display: block;
    margin-bottom: 8px;
}

.author-stats {
    display: flex;
    gap: 12px;
}

.author-stats .stat {
    background: var(--tynex-gray-100);
    color: var(--tynex-gray-700);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.trust-line {
    color: var(--tynex-gray-600);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-line i {
    color: var(--tynex-success);
    font-size: 18px;
}

/* === CTA Section === */
.tynex-cta-section {
    padding: 80px 0;
    background: var(--tynex-dark);
    position: relative;
    overflow: hidden;
}

.tynex-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(0, 113, 220, 0.2) 0%, rgba(0, 113, 220, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    position: relative;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.cta-feature i {
    color: var(--tynex-success);
    font-size: 20px;
}

.tynex-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tynex-secondary);
    color: var(--tynex-dark);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 194, 33, 0.4);
}

.tynex-btn-cta:hover {
    background: #ffaa00;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 194, 33, 0.5);
    color: var(--tynex-dark);
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Responsive Design === */
@media (max-width: 1199px) {
    .tynex-hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .floating-card.card-1,
    .floating-card.card-3 {
        left: -5%;
    }
}

@media (max-width: 991px) {
    .tynex-hero-section {
        padding: 80px 0 60px;
    }

    .tynex-hero-title {
        font-size: 40px;
    }

    .tynex-hero-stats {
        gap: 20px;
    }

    .stat-divider {
        height: 40px;
    }

    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .floating-card {
        display: none;
    }

    .steps-connector {
        display: none;
    }

    .cta-wrapper {
        padding: 40px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .tynex-hero-title {
        font-size: 32px;
    }

    .tynex-hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .tynex-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .tynex-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .tynex-btn-primary,
    .tynex-btn-secondary {
        justify-content: center;
    }

    .step-card {
        padding: 30px 20px;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .cta-features {
        flex-direction: column;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .comparison-value {
        text-align: left;
    }
}

/* === Additional Utility Classes === */
.text-gradient-primary {
    background: var(--tynex-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--tynex-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--tynex-gradient-1);
}

.bg-gradient-secondary {
    background: var(--tynex-gradient-2);
}



.tynex-about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content {
    padding-right: 40px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--tynex-dark);
}

.about-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--tynex-gray-700);
    margin-bottom: 40px;
}

.about-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.stat-box .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--tynex-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--tynex-gray-600);
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 32px;
}

.badge-title {
    font-weight: 700;
    color: var(--tynex-dark);
    font-size: 16px;
}

.badge-subtitle {
    font-size: 12px;
    color: var(--tynex-gray-600);
}

/* Mission & Vision Section */
.tynex-mission-vision {
    padding: 80px 0;
    background: #ffffff;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #0071dc 0%, #005bb5 100%);
    padding: 40px;
    border-radius: 20px;
    color: #ffffff;
    height: 100%;
    margin-bottom: 30px;
}

.vision-card {
    background: linear-gradient(135deg, #ffc221 0%, #ffaa00 100%);
    color: var(--tynex-dark);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i,
.vision-icon i {
    font-size: 36px;
}

.mission-card h2,
.vision-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.vision-card h2 {
    color: var(--tynex-dark);
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-card p {
    color: var(--tynex-dark);
}

.mission-highlights,
.vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    font-size: 20px;
}

.vision-card .highlight-item {
    color: var(--tynex-dark);
}

/* Our Story Section */
.tynex-our-story {
    padding: 80px 0;
    background: var(--tynex-gray-50);
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 30px;
}

.story-content {
    padding-left: 40px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--tynex-gray-700);
}

/* Why Choose Us About */
.tynex-why-choose-about {
    padding: 80px 0;
    background: #ffffff;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--tynex-gray-200);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    border-color: var(--tynex-primary);
    box-shadow: 0 15px 40px rgba(0, 113, 220, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 32px;
    color: #ffffff;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--tynex-dark);
}

.why-card p {
    color: var(--tynex-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.tynex-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #070b3b 0%, #0a0f3d 100%);
}

.tynex-values .section-tag,
.tynex-values .section-title {
    color: #ffffff;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--tynex-secondary);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.tynex-team {
    padding: 80px 0;
    background: #ffffff;
}

.team-member-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.member-image {
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--tynex-dark);
}

.member-info span {
    font-size: 14px;
    color: var(--tynex-gray-600);
    display: block;
    margin-bottom: 16px;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--tynex-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tynex-primary);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--tynex-primary);
    color: #ffffff;
}

/* About CTA Section */
.tynex-about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0071dc 0%, #005bb5 100%);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tynex-btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tynex-btn-outline-large:hover {
    background: #ffffff;
    color: var(--tynex-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .story-content {
        padding-left: 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-hero-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .tynex-btn-primary-large,
    .tynex-btn-outline-large {
        width: 100%;
        justify-content: center;
    }
}


.tynex-footer {
    background: #070b3b;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.tynex-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 24px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0071dc;
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0071dc;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffc221;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #0071dc;
    font-size: 18px;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 120px 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #0071dc;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px 0 40px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffc221;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright a {
    color: #ffc221;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffc221;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .tynex-footer {
        padding-top: 60px;
    }

    .footer-section-title {
        margin-top: 30px;
    }
}


 /* Modern Navbar Styles */
        .tynex-navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .tynex-navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .navbar-brand-tynex {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 24px;
            color: #070b3b;
            text-decoration: none;
        }

        .navbar-brand-tynex:hover {
            color: #070b3b;
        }

        .brand-logo {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 800;
            font-size: 20px;
        }

        .navbar-nav-tynex .nav-link {
            color: #374151;
            font-weight: 500;
            padding: 10px 18px;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav-tynex .nav-link:hover,
        .navbar-nav-tynex .nav-link.active {
            color: #0071dc;
        }

        .navbar-nav-tynex .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 18px;
            width: 0;
            height: 2px;
            background: #0071dc;
            transition: width 0.3s ease;
        }

        .navbar-nav-tynex .nav-link:hover::after,
        .navbar-nav-tynex .nav-link.active::after {
            width: calc(100% - 36px);
        }

        .tynex-nav-cta {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .tynex-nav-btn-login {
            color: #0071dc;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            border: 2px solid #0071dc;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .tynex-nav-btn-login:hover {
            background: #0071dc;
            color: #ffffff;
        }

        .tynex-nav-btn-signup {
            background: linear-gradient(135deg, #0071dc 0%, #00a8ff 100%);
            color: #ffffff;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 113, 220, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .tynex-nav-btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 113, 220, 0.4);
            color: #ffffff;
        }

        /* Preloader */
        .tynex-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }

        .tynex-preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f4f6;
            border-top: 4px solid #0071dc;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {
            .tynex-nav-cta {
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }

            .tynex-nav-btn-login,
            .tynex-nav-btn-signup {
                width: 100%;
                text-align: center;
            }

            .navbar-nav-tynex {
                padding-top: 15px;
            }
        }
