/* About Pages Styles - Consistent with Solution Pages */

/* Page Header - Image Background Header */
.page-header {
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header-image {
    position: relative;
    background: none;
    padding: 0;
    overflow: hidden;
    height: 300px;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #1e90ff;
}

.separator {
    margin: 0 8px;
    color: #adb5bd;
}

.current {
    color: #1e90ff;
    font-weight: 500;
}

/* Main Content Layout */
.main-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Styles - Consistent with solution pages */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.solution-menu {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.solution-menu h3 {
    background: #1e90ff;
    color: white;
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.solution-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-menu li {
    border-bottom: 1px solid #e9ecef;
}

.solution-menu li:last-child {
    border-bottom: none;
}

.solution-menu a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.solution-menu a:hover,
.solution-menu a.active {
    background: #f8f9ff;
    color: #1e90ff;
    border-left-color: #1e90ff;
}

/* Content Area */
.content-area {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* System Overview - matches solution pages */
.system-overview {
    margin-bottom: 40px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.product-image {
    margin: 30px 0;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Main Functions - matches solution pages */
.main-functions {
    margin-bottom: 40px;
}

.main-functions h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.functions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.function-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #1e90ff;
}

.function-number {
    background: #1e90ff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.function-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Honors Page Styles */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.honor-item {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

.honor-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Culture Page Styles */
.culture-section {
    margin-bottom: 40px;
}

.culture-section h2 {
    color: #1e90ff;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.culture-description {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    border-left: 4px solid #1e90ff;
}

.culture-image {
    margin: 30px 0;
    text-align: center;
}

.culture-image img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Team Page Styles */
.team-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

.team-highlights {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #1e90ff;
}

.team-highlights h3 {
    color: #1e90ff;
    margin-bottom: 20px;
    font-size: 20px;
}

.team-highlights p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-office-image {
    margin: 30px 0;
    text-align: center;
}

.team-office-image img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Environment Page Styles */
.environment-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.environment-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.environment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.2);
}

.environment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.environment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.environment-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .solution-menu {
        margin-bottom: 30px;
    }
    
    .solution-menu ul {
        display: flex;
        overflow-x: auto;
    }
    
    .solution-menu li {
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        flex-shrink: 0;
    }
    
    .product-image img {
        width: 500px;
        height: 320px;
    }
    
    .honors-grid,
    .environment-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-area {
        padding: 25px 20px;
    }
    
    .product-image img {
        width: 100%;
        height: 280px;
    }
    
    .honors-grid,
    .environment-gallery {
        grid-template-columns: 1fr;
    }
    
    .function-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 20px 15px;
    }
    
    .product-image img {
        height: 220px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.honor-item,
.environment-item,
.culture-section,
.team-highlights,
.function-item {
    animation: fadeInUp 0.6s ease-out;
}

.honor-item:nth-child(1) { animation-delay: 0.1s; }
.honor-item:nth-child(2) { animation-delay: 0.2s; }
.honor-item:nth-child(3) { animation-delay: 0.3s; }
.honor-item:nth-child(4) { animation-delay: 0.4s; }
.honor-item:nth-child(5) { animation-delay: 0.5s; }
.honor-item:nth-child(6) { animation-delay: 0.6s; }