/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.company-name {
    font-family: 'Abril Fatface', serif;
}

.header-line-about {
    width: 6rem;
    height: 0.1875rem;
    border-radius: 1.25rem;
    background-color: #ff4500;
    margin-top: 1.25rem;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/about-back.png') center/cover no-repeat;
    z-index: -1;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
    max-width: 50rem;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.625rem);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item h3::after {
    content: '+';
    margin-left: 12px;
}

/* History Section */
.history-section {
    padding: 6.25rem 0;
    background: var(--background);
}

.history-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem;
    align-items: center;
}

.history-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.625rem;
}

.history-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

.history-content {
    padding: 1.25rem;
}

.history-text {
    line-height: 1.8;
    color: hsla(223, 84%, 5%, 0.637);
    margin: 1.25rem 0;
}

/* Leadership Section */
.leadership-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.ceo-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.profile-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    transform: scale(1.04);
    height: auto;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.08);
}

.profile-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.designation {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 0.25rem solid var(--primary);
}

.achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.05);
}

/* Leadership Team */
.leadership-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-0.625rem);
}

.team-member img {
    width: 15.625rem;
    height: 15.625rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.about-team-member {
    color: #000000df;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Vision & Mission */
.vision-mission {
    padding: 6rem 0;
    background: #fff;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vision-box,
.mission-box {
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.vision-box {
    background: linear-gradient(135deg, #007bff, #00bcd4);
    color: #fff;
}

.mission-box {
    background: linear-gradient(135deg, #ff4081, #7c4dff);
    color: #fff;
}

.icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-0.625rem);
}

.value-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Journey Section */
.journey-section {
    padding: 6rem 0;
    background: #fff;
}

.timeline {
    position: relative;
    max-width: 50rem;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.125rem;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item .year {
    position: absolute;
    top: 0;
    width: 7.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.timeline-item:nth-child(odd) .year {
    right: -10rem;
}

.timeline-item:nth-child(even) .year {
    left: -10rem;
}

.timeline-item .content {
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.timeline-item .content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(1.25rem);
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(1.25rem);
    animation: fadeIn 0.6s ease forwards 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(1.25rem);
    animation: fadeIn 0.6s ease forwards 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 75rem) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .ceo-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image {
        max-width: 31.25rem;
        margin: 0 auto;
    }
}

@media (max-width: 62rem) {
    html {
        font-size: 12px;
    }

    .history-container,
    .vm-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .timeline::before {
        left: 1.875rem;
    }

    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item .year {
        left: -2.8125rem !important;
        width: 5.625rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 48rem) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 36rem) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-item .content {
        padding: 1rem;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
}