/* Base Styles - Orange Color Scheme */
:root {
    --about-white: #ffffff;
    --about-light: #f8f9fa;
    --about-dark: #1a1a1a;
    --about-red: #ef233c;
    --about-orange: #ff7b25;
    --about-blue: #2563eb;
    --about-pink: #ff4d6d;
    --about-gradient: linear-gradient(135deg, var(--about-red), var(--about-orange), var(--about-blue), var(--about-pink));
    --about-text: #333333;
    --about-text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--about-white);
    color: var(--about-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.about-container {
    width: 100%;
    overflow: hidden;
}

/* Updated Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(to bottom right, var(--about-light), var(--about-white));
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(239,35,60,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.about-hero-content {
    width: 50%;
    padding-right: 5%;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    margin-bottom: 40px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--about-dark);
}

.about-highlight {
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.about-hero-description {
    font-size: 1.25rem;
    color: var(--about-text-light);
    max-width: 500px;
}

.about-hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.about-hero-image {
    width: 50%;
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-logo {
    width: 80%;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.about-stats-grid {
    display: flex;
    gap: 40px;
}

.about-stat-item {
    position: relative;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.about-stat-label {
    color: var(--about-text-light);
    font-size: 0.9rem;
}

/* Buttons */
.about-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.about-btn-primary {
    background: var(--about-gradient);
    color: var(--about-white);
    background-size: 200% auto;
}

.about-btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 35, 60, 0.2);
}

.about-btn-outline {
    background: transparent;
    color: var(--about-orange);
    border-color: var(--about-orange);
}

.about-btn-outline:hover {
    background: var(--about-orange);
    color: white;
    transform: translateY(-3px);
}

/* Rest of the CSS remains exactly the same as your original about.css */
/* Section Styles */
.about-section, .about-mission-section, .about-team-section, .about-partners-section {
    padding: 100px 8%;
    position: relative;
}

.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-tag {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--about-orange);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-divider {
    width: 80px;
    height: 3px;
    background: var(--about-gradient);
    margin: 0 auto 30px;
    border-radius: 3px;
}

.about-section-subtext {
    font-size: 1.1rem;
    color: var(--about-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Company Section */
.about-company-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-company-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--about-orange);
}

.about-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--about-gradient);
}

.about-company-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--about-orange);
}

.about-company-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--about-dark);
}

.about-company-card p {
    color: var(--about-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-timeline-wrapper {
    flex: 1;
    position: relative;
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--about-orange);
}

.about-timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-date {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--about-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 0 5px var(--about-white);
}

.about-timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-left: 30px;
    transition: all 0.3s ease;
}

.about-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--about-dark);
}

.about-timeline-content p {
    color: var(--about-text-light);
}

/* Mission Section */
.about-mission-section {
    background-color: var(--about-light);
}

.about-mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission-card {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--about-orange);
}

.about-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(239, 35, 60, 0.03) 0%, 
        rgba(255, 123, 37, 0.03) 100%
    );
}

.about-mission-icon {
    font-size: 3rem;
    color: var(--about-orange);
    margin-bottom: 20px;
}

.about-mission-card h3 {
    font-size: 1.8rem;
    color: var(--about-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-mission-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--about-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 123, 37, 0.1);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 123, 37, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--about-orange);
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
    background: var(--about-orange);
    color: white;
    transform: rotateY(180deg);
}

.about-value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--about-dark);
}

.about-value-card p {
    color: var(--about-text-light);
    line-height: 1.6;
}

.about-value-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--about-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-value-card:hover .about-value-highlight {
    transform: scaleX(1);
}

/* Team Section */
.about-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.about-team-member {
    perspective: 1000px;
    height: 400px;
    flex: 0 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 350px;
}

.about-team-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-team-member:hover .about-team-card {
    transform: rotateY(180deg);
}

.about-team-front, .about-team-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.about-team-front {
    background: white;
}

.about-team-image {
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: top;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-team-member:hover .about-team-image {
    filter: grayscale(0%);
}

.about-team-info {
    padding: 20px;
    text-align: center;
}

.about-team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--about-dark);
}

.about-team-info p {
    color: var(--about-orange);
    font-weight: 600;
}

.about-team-back {
    background: var(--about-orange);
    color: white;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.about-team-back h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-team-back p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-team-social a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-team-social a:hover {
    background: white;
    color: var(--about-orange);
    transform: translateY(-5px);
}

/* CTA Section */
.about-cta {
    padding: 100px 8%;
    background: var(--about-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.1;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .about-hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
    }

    .about-hero-description {
        margin: 0 auto;
    }

    .about-hero-btns {
        justify-content: center;
    }

    .about-stats-grid {
        justify-content: center;
    }

    .about-hero-image {
        width: 100%;
        height: auto;
    }

    .about-hero-logo {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-company-content {
        flex-direction: column;
    }

    .about-team-member {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .about-section, .about-mission-section, .about-team-section, .about-partners-section {
        padding: 80px 5%;
    }

    .about-section-title {
        font-size: 2.25rem;
    }

    .about-mission-card {
        padding: 40px 25px;
    }
    
    .about-mission-card h3 {
        font-size: 1.5rem;
    }
    
    .about-mission-card p {
        font-size: 1rem;
    }

    .about-team-member {
        flex: 0 1 100%;
        max-width: 400px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-btn {
        padding: 12px 24px;
    }
}