/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
    background-color: white;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.company-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.company-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--grey-color);
}

.company-content p:last-child {
    margin-bottom: 0;
}

/* Company Info Styles */
.company-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--grey-light-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    margin: 0;
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.company-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Mission and Values */
.mission-values {
    padding: 5rem 0;
    background-color: var(--grey-light-color);
}

.mission-box {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.mission-content p {
    font-size: 1.2rem;
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto;
}

.values-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--grey-color);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.team h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(67, 97, 238, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--grey-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.member-social a:hover {
    color: var(--primary-color);
}

/* Achievements Section */
.achievements {
    padding: 5rem 0;
    background-color: var(--grey-light-color);
    text-align: center;
}

.achievements h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    position: relative;
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 40px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--grey-color);
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.clients h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    position: relative;
}

.clients h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
}

/* Join Team Section */
.join-team {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-content .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
}

.join-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Company Location */
.company-location {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.location-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.address-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.address-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3436;
    margin: 0;
}

.address-box strong {
    color: #0984e3;
    font-size: 1.3rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .company-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .company-content {
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.25rem;
    }
    
    .about-hero p,
    .mission-content p {
        font-size: 1.1rem;
    }
    
    .mission-box {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1.25rem;
    }
} 