/* About Page Specific Styles */

/* About text content */
.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle,
.about-content .about-subtitle {
    color: #F5A623 !important;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem !important;
    font-weight: 500;
}

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

/* Journey section */
.journey-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-image {
    text-align: center;
}

.journey-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
}

.journey-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.journey-image h3 {
    font-size: 1.5rem;
    color: #1B2A49;
    font-weight: 600;
}

/* Companies section */
.companies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.company-badge {
    background: #f8f9fa;
    padding: 12px 24px;
    border-radius: 25px;
    color: #1B2A49;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
    display: inline-block;
}

.company-badge:hover {
    background: #F5A623;
    color: white;
    border-color: #F5A623;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-text p {
        font-size: 1rem;
    }

    .journey-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-image img {
        height: 350px;
    }

    .company-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Awards Section */
.awards {
    padding: 80px 20px;
    background: #f8f9fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.award-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F5A623 0%, #f39c12 100%);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F5A623 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.award-content h3 {
    font-size: 1.5rem;
    color: #1B2A49;
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.award-title {
    font-size: 1.1rem;
    color: #F5A623;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-event {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .awards {
        padding: 60px 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .award-card {
        padding: 2rem;
    }
    
    .award-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .award-content h3 {
        font-size: 1.3rem;
    }
}