/* About Page Specific Styles */

/* Reset and Base Styles */

:root {
    --primary-color: #ff6a02;
    --secondary-color: #1a0936;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

/* .container {
    max-width: 85%;
    margin: 0 auto;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
} */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2A1B3D 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6a02" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .highlight {
    color: var(--primary-color);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Who Is OneAccess Section */
.who-section {
    padding: 100px 50px;
    /* background: green; */
}

.who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.who-text .highlight {
    color: var(--primary-color);
}

.who-text .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.who-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.who-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-top: 20px solid var(--primary-color);
    background: var(--secondary-color);
    color: white;
    padding: 25px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 106, 2, 0.3);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-header .highlight {
    color: var(--primary-color);
}

.process-step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 20px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    background: #eff8ff;
    border-top: 20px solid var(--secondary-color);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 106, 2, 0.3);
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    width: 100%;
}

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    width: 100%;
    margin: 0;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vision-mission-container {
    max-width: 80%;
    margin: 0 auto;
}

.vision-item,
.mission-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vision-item:hover,
.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #2A1B3D);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(26, 9, 54, 0.2);
}

.vision-content,
.mission-content {
    flex: 1;
}

.vision-content h3,
.mission-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    /* margin-bottom: 0.5rem; */
}

.mission-content span,
.vision-content span {
    color: var(--primary-color);
}

.vision-content .label,
.mission-content .label {
    color: grey;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* .vision-content .label span, .mission-content .label span{
    color: var(--primary-color);
} */

.vision-content p,
.mission-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .who-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-text h2 {
        font-size: 2.2rem;
    }

    .who-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }

    .vision-item,
    .mission-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .vision-mission-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .who-section,
    .process-section,
    .vision-mission-section {
        padding: 60px 0;
    }

    .who-text h2 {
        font-size: 1.8rem;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }
}