/* ============================================
   ABOUT PAGE - COMPLETE REBUILD STYLES
   ============================================ */

/* About Content Section */
.about-content-section {
    background: var(--bg-color, #ffffff);
    color: var(--text-color, #333333);
}

[data-theme="dark"] .about-content-section {
    background: #0a0a0a;
    color: #e0e0e0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-heading {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
}

[data-theme="dark"] .section-subtitle {
    color: #b0b0b0;
}

.about-icon {
    max-width: 150px;
    height: auto;
}

.about-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555555;
    text-align: left;
}

[data-theme="dark"] .about-description p {
    color: #d0d0d0;
}

/* Services Overview */
.services-overview {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .services-overview {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.services-overview h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
}

[data-theme="dark"] .services-overview h3 {
    color: #ffffff;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.25rem;
}

[data-theme="dark"] .services-list li {
    color: #d0d0d0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Global Reach */
.global-reach p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555555;
}

[data-theme="dark"] .global-reach p {
    color: #d0d0d0;
}

.global-reach strong {
    color: #007bff;
    font-weight: 600;
}

[data-theme="dark"] .global-reach strong {
    color: #4da3ff;
}

/* Info Cards (Why Knoxed & Life@Knoxed) */
.info-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

[data-theme="dark"] .info-card {
    background: #1a1a1a;
    border-color: rgba(77, 163, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .info-card:hover {
    box-shadow: 0 15px 40px rgba(77, 163, 255, 0.2);
    border-color: rgba(77, 163, 255, 0.4);
}

.card-icon {
    max-width: 100px;
    height: auto;
}

.card-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333333;
}

[data-theme="dark"] .card-heading {
    color: #ffffff;
}

.card-features {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 0 auto;
    max-width: 400px;
}

.card-features li {
    font-size: 1.0625rem;
    padding: 0.625rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555555;
    line-height: 1.6;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.25rem;
}

[data-theme="dark"] .card-features li {
    color: #d0d0d0;
}

.card-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
}

[data-theme="dark"] .card-description {
    color: #d0d0d0;
}

/* Team Videos */
.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Testimonials Section - Complete Rebuild */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="dark"] .testimonials-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%) !important;
}

.testimonials-section .container,
.testimonials-section .row,
.testimonials-section .col-lg-8,
.testimonials-section .col-lg-10 {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-heading {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.125rem;
}

/* Testimonial Item */
.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial-quote {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 123, 255, 0.3);
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 0.25rem 0;
}

.author-position {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0;
}

/* Swiper Pagination */
.testimonials-section .swiper-pagination {
    margin-top: 2rem;
    position: relative;
    bottom: auto;
}

.testimonials-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .about-description p {
        font-size: 1rem;
    }

    .services-overview {
        padding: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-item {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .about-icon {
        max-width: 100px;
    }

    .card-icon {
        max-width: 80px;
    }

    .testimonial-item {
        padding: 1.5rem 1.25rem;
    }

    .quote-icon {
        font-size: 2rem;
    }
}
