/* Modern About Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.about-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.header-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-content h1 i {
    color: #e74c3c;
    font-size: 4rem;
}

.header-content p {
    font-size: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

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

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

.overview-text h2 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.company-badge i {
    font-size: 2rem;
}

.company-description {
    font-size: 1.8rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.stat-item i {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.6rem;
    color: #6c757d;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.card-content {
    padding: 3rem;
}

.card-content p {
    font-size: 1.6rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-list {
    list-style: none;
    padding: 0;
}

.vision-list li {
    font-size: 1.6rem;
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vision-list li i {
    color: #27ae60;
    font-size: 1.8rem;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-header h2 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.values-header h2 i {
    color: #e74c3c;
}

.values-header p {
    font-size: 1.8rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    color: white;
    font-size: 2.5rem;
}

.value-card h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1.6rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Company Philosophy Section */
.company-philosophy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  }

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

.philosophy-text h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.philosophy-text h2 i {
    color: #e74c3c;
}

.philosophy-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    color: #e74c3c;
    font-size: 2rem;
}

.highlight-item span {
    font-size: 1.6rem;
    font-weight: 600;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.8rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.5rem 3rem;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
  }

.cta-btn.secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #e74c3c;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.about-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-info p {
    font-size: 1.6rem;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.4rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info p i {
    color: #e74c3c;
    width: 20px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #bdc3c7;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 3.5rem;
    }
    
    .header-content p {
        font-size: 1.6rem;
    }
    
    .overview-text h2 {
        font-size: 2.8rem;
    }
    
    .company-description {
        font-size: 1.6rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .about-header {
        padding: 4rem 0;
    }
    
    .header-content h1 {
        font-size: 2.8rem;
    }
    
    .company-badge {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.8rem;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
  }