/* Modern Typography and Layout */
.page-header {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)), url('../images/banner1.webp') center/cover no-repeat;
    padding: 8rem 0 6rem;
    text-align: center;
    color: #ffffff;
}
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.page-breadcrumb {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
}
.page-breadcrumb a {
    color: #ef4444;
    text-decoration: none;
}
.page-breadcrumb a:hover {
    color: #f87171;
    text-decoration: underline;
}

/* About Main Section */
.about-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text-content {
    padding-right: 1rem;
}
.about-subtitle {
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.about-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #ef4444;
    margin-right: 15px;
    border-radius: 2px;
}
.about-main-title {
    font-size: 2.8rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.about-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-description.highlight {
    color: #0f172a;
    font-weight: 500;
    font-size: 1.15rem;
}

/* Image and Badge */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* To allow badge to overflow */
}
.about-image-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2);
    border: 4px solid #ffffff;
}
.about-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ef4444;
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid #f8fafc;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
    text-align: center;
    z-index: 2;
}
.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.experience-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* The Motto Highlight Card */
.motto-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 3.5rem;
    color: white;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}
.motto-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}
.motto-text {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}
.motto-highlight {
    color: #ef4444;
    font-weight: 800;
}

/* Quality Commitment Section */
.quality-section {
    padding: 6rem 0;
    background-color: #ffffff;
}
.quality-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.quality-title {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1rem;
}
.quality-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.quality-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-color: #ef4444;
}
.quality-icon {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}
.quality-card:hover .quality-icon {
    color: var(--color-accent);
}
.quality-card h4 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
}
.quality-card p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* CTA Banner */
.cta-section {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    border-radius: 0;
    margin: 0;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.cta-btn-primary {
    background: white;
    color: #ef4444;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.cta-btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}
.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        margin-top: 3rem;
        margin-left: 30px; /* Space for badge */
        max-width: 600px;
    }
}
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    .page-header {
        padding: 6rem 0 3rem;
    }
    .about-main-title {
        font-size: 2rem;
    }
    .motto-text {
        font-size: 1.5rem;
    }
    .cta-section {
        border-radius: 0;
        margin: 0;
        padding: 4rem 1rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
}
