/* About Page Custom CSS */

.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #00204a 0%, #005792 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #00204a;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #005792;
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.company-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.service-category {
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-category h3 {
    color: #005792;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-category h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.service-list li {
    padding: 5px 0;
    display: flex;
    align-items: start;
}

.service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 5px;
}

.methodology-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.methodology-card:hover {
    transform: scale(1.03);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: #eef5ff;
    color: #005792;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.methodology-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #00204a;
}

.vision-section {
    background: #f0f4f8;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.vision-content blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #00204a;
    font-weight: 500;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.premium-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-content blockquote {
        font-size: 1.5rem;
    }
    
    .about-section {
        padding: 50px 0;
    }
}
