/* ============================================
   ABOUT US PAGE STYLES
   line-height: 1.4, letter-spacing: 0.001em, word-spacing: 0.02em
   ============================================ */

/* Variables - Inherit from global but can override */
:root {
    --primary-blue: #1E65A5;
    --primary-red: #E02A2A;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   PAGE HEADER / HERO SECTION WITH BACKGROUND IMAGE
   ============================================ */
.page-header {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

/* Dark overlay for better text readability */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25em;
}

/* Heading */
.page-header h1 {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    text-transform: uppercase;
}

/* Paragraph text (MAIN CHANGE) */
.page-header p {
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Breadcrumb */
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-red);
}

.page-header .breadcrumb-item.active {
    color: var(--text-light);
    font-weight: 600;
}

.page-header .breadcrumb-item + .breadcrumb-item:before {
    color: rgba(255, 255, 255, 0.5);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875em);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {

    .page-header {
        height: 420px;
        background-attachment: scroll;
    }

    .page-header h1 {
        font-size: 3em;
    }

    .page-header p {
        font-size: 1.05em;
        max-width: 40em;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .page-header {
        height: 360px;
        padding: 0 1em;
    }

    .page-header h1 {
        font-size: 2.2em;
    }

    .page-header p {
        font-size: 0.95em;
        max-width: 32em;
    }

}

/* Small Mobile */
@media (max-width: 480px) {

    .page-header {
        height: 320px;
    }

    .page-header h1 {
        font-size: 1.8em;
    }

    .page-header p {
        font-size: 0.9em;
        max-width: 28em;
    }

}

/* ============================================
   COMPANY OVERVIEW SECTION
   ============================================ */
.company-overview {
    padding: 80px 0;
    background: white;
    position: relative;
}

.company-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.company-overview-content {
    padding-right: 30px;
}

.company-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(224, 42, 42, 0.3);
    line-height: 1.4;
    word-spacing: 0.02em;
}

.company-overview-content h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.company-overview-content h2 span {
    color: var(--primary-red);
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.company-overview-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.company-stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-mini-item {
    text-align: center;
}

.stat-mini-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.4;
    margin-bottom: 5px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.stat-mini-label {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.company-overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.company-overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.company-overview-image:hover img {
    transform: scale(1.05);
}

.company-overview-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.company-overview-image:hover:before {
    opacity: 1;
}

/* ============================================
   FOUNDER'S MESSAGE SECTION
   ============================================ */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.founder-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 101, 165, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(224, 42, 42, 0.05) 0%, transparent 30%);
}

.founder-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.founder-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.founder-image:hover img {
    transform: scale(1.03);
}

.founder-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 101, 165, 0.95), transparent);
    padding: 30px 20px 20px;
    color: var(--text-light);
    text-align: center;
}

.founder-image-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-image-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-message {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.founder-message:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-blue);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.founder-message h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-message h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.founder-message .subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-message .message-content {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-message .message-content p {
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-signature {
    margin-top: 30px;
    border-top: 1px solid rgba(30, 101, 165, 0.2);
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.signature-img {
    max-height: 60px;
    width: auto;
}

.founder-signature h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.founder-signature p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

/* ============================================
   KEY MANAGEMENT TEAM
   ============================================ */
.management-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.management-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

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

.management-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(30, 101, 165, 0.1);
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-blue);
}
/* Management Card Image Container */
.management-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 12px 12px 0 0;
}

/* Image Styling */
.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* keeps face centered */
    transition: transform 0.6s ease;
    display: block;
}

/* Hover Zoom Effect */
.management-card:hover .management-image img {
    transform: scale(1.08);
}
.management-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(to top, rgba(30, 101, 165, 0.95), transparent);
    transition: bottom 0.3s ease;
}

.management-card:hover .management-social {
    bottom: 0;
}

.management-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.management-social a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.management-info {
    padding: 25px 20px;
    text-align: center;
}

.management-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.management-info .position {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    word-spacing: 0.02em;
}

.management-info .bio {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

/* ============================================
   VISION MISSION VALUES SECTION
   ============================================ */
.vmv-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background image as HTML img tag */
.vmv-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay over the background image */
.vmv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

/* Gradient overlays */
.vmv-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 42, 42, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(224, 42, 42, 0.25) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

/* Shimmer effect - added as a separate div */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 8s infinite linear;
    z-index: 3;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vmv-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    width: 100%;
}

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

/* ============================================
   CARD STYLES
   ============================================ */
.vmv-card {
    background: transparent; /* Removed background image from CSS */
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Dark overlay inside each card for better text readability */
.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 101, 165, 0.85), rgba(13, 74, 122, 0.85));
    z-index: -1;
    transition: var(--transition);
}


.vmv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Hover effect for card overlay */
.vmv-card:hover::before {
    background: linear-gradient(135deg, rgba(224, 42, 42, 0.85), rgba(180, 30, 30, 0.85));
}

.vmv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), #b71c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 20px rgba(224, 42, 42, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.vmv-card:hover .vmv-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-blue), #0d4a7a);
}

.vmv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    z-index: 2;
}

.vmv-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.vmv-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    z-index: 2;
    position: relative;
}


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .vmv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vmv-section {
        padding: 60px 0;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vmv-card {
        padding: 30px 20px;
    }
    
    .vmv-card h3 {
        font-size: 1.8rem;
    }
    
    .vmv-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .vmv-section {
        padding: 40px 0;
    }
    
    .vmv-card {
        padding: 25px 15px;
    }
    
    .vmv-card h3 {
        font-size: 1.5rem;
    }
    
    .vmv-card p {
        font-size: 1rem;
    }
}

/* ============================================
   VALUES DETAILS SECTION - ATTRACTIVE CARDS
   ============================================ */
.values-details {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
}

.values-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-details .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-details .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 800;
}

.values-details .section-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Individual Value Card */
.value-item {
    position: relative;
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 101, 165, 0.1);
}

/* Card Hover Effects */
.value-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 35px rgba(30, 101, 165, 0.2);
}

/* Decorative background glow on hover */
.value-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(30,101,165,0.1), rgba(224,42,42,0.1));
    transform: rotate(45deg);
    transition: all 0.7s ease;
    border-radius: 50%;
    z-index: 0;
}

.value-item:hover::before {
    top: -10%;
    left: -10%;
}

/* Icon Container */
.value-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-blue), #0d4a7a);
    transition: all 0.5s ease;
}

/* Icon Hover Animation */
.value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-red), #b71c1c);
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 20px rgba(224, 42, 42, 0.4);
}

/* Card Title */
.value-item h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover h4 {
    color: var(--primary-red);
}

/* Card Description */
.value-item p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Fade-in animations for items */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .values-details {
        padding: 60px 15px;
    }
    .values-grid {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.certifications-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certifications-section h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.certifications-section h3:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

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

.cert-item {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(30, 101, 165, 0.1);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-blue);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.cert-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.cert-item small {
    color: var(--primary-red);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .company-overview-content h2 {
        font-size: 2.4rem;
    }
    
    .management-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .vmv-grid {
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .page-header {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .company-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-overview-content {
        padding-right: 0;
        text-align: center;
    }
    
    .company-stats-mini {
        justify-content: center;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmv-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 350px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .company-overview,
    .founder-section,
    .management-section,
    .vmv-section,
    .values-details,
    .certifications-section {
        padding: 50px 0;
    }
    
    .company-overview-content h2 {
        font-size: 2rem;
    }
    
    .company-overview-content h2 span {
        font-size: 1.6rem;
    }
    
    .company-stats-mini {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-mini-number {
        font-size: 2rem;
    }
    
    .founder-message {
        padding: 35px 25px;
    }
    
    .founder-message h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .management-image {
        height: 250px;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-card:last-child {
        grid-column: span 1;
    }
    
    .vmv-card {
        padding: 30px 20px;
    }
    
    .vmv-card h3 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certifications-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cert-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 300px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 0.9rem;
    }
    
    .company-overview-content h2 {
        font-size: 1.8rem;
    }
    
    .company-stats-mini {
        flex-direction: column;
        gap: 15px;
    }
    
    .founder-message {
        padding: 25px 20px;
    }
    
    .founder-message h2 {
        font-size: 1.6rem;
    }
    
    .founder-message .message-content {
        font-size: 1rem;
    }
    
    .founder-signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .vmv-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .vmv-card h3 {
        font-size: 1.6rem;
    }
    
    .vmv-card p {
        font-size: 1rem;
    }
    
    .cert-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cert-item i {
        margin-bottom: 10px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}