/* About Us Page Specific Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 122, 0.8)), url('../public/media/Visa-Embossed-card-front.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Company History Section */
.company-history {
    padding: 80px 0;
    background-color: #fff;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-image {
    flex: 0 0 40%;
    text-align: center;
}

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

.history-text {
    flex: 0 0 60%;
}

.history-text h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 20px;
    position: relative;
}

.history-text h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    bottom: -10px;
    left: 0;
}

.history-text p {
    margin-bottom: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 20px;
}

.info-card ul li {
    margin-bottom: 8px;
    color: #6c757d;
    position: relative;
    list-style-type: none;
}

.info-card ul li::before {
    content: '\2022';
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #6c757d;
    font-size: 1.1rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .history-content {
        flex-direction: column;
    }
    
    .history-image, .history-text {
        flex: 0 0 100%;
    }
    
    .history-image {
        margin-bottom: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .company-history, .company-info, .values-section, .partners-section {
        padding: 60px 0;
    }
    
    .history-text h2 {
        font-size: 1.8rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .history-text h2 {
        font-size: 1.6rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        flex: 0 0 150px;
        height: 80px;
    }
}