/* Company Page Specific Styles */

/* Page Background */
body {
    background-image: url('/images/other_pages_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Hero Section */
.hero {
    padding: 30px 0 20px;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
}

.hero-content h2 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 1.5rem;
}

/* Company Overview */
.company-overview {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0.5rem;
}

.company-info, .company-services {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.company-header, .services-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e9ecef;
}

.company-icon, .services-icon {
    font-size: 2rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-header h3, .services-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-item p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.development-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.development-history li {
    background: #f8f9fa;
    padding: 0.6rem;
    margin-bottom: 0.4rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    font-size: 0.9rem;
    line-height: 1.4;
}

.development-history strong {
    color: #2c3e50;
}

.services-content h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.services-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: justify;
}



/* Company History */
.company-history {
    padding: 40px 0;
}

.history-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.history-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.footer-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-info .company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-info .detail-item h4 {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-info .detail-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Company Page Responsive */
@media (max-width: 768px) {
    .company-overview {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .footer-info .company-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
