
/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.overview-stats .stat {
    text-align: center;
}

.overview-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.overview-stats .stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.overview-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 75, 90, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.overview-image:hover .image-overlay {
    opacity: 1;
}

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

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--background-light);
}

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

.mission-card,
.vision-card,
.values-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Certification Section */
.certification-section {
    padding: 80px 0;
    background: var(--white);
}

.certification-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.certificate-document {
    background: var(--white);
    border: 2px solid #1B4B5A;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.certificate-document::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #1B4B5A;
    border-radius: 10px;
    pointer-events: none;
}

.certificate-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #1B4B5A;
}

.treasury-seal img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.header-text h3 {
    color: #1B4B5A;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header-text h4 {
    color: #1B4B5A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.header-text p {
    color: #666;
    font-size: 0.9rem;
}

.certificate-title {
    text-align: center;
    margin-bottom: 2rem;
}

.certificate-title h2 {
    color: #1B4B5A;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: underline;
}

.certificate-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cert-info {
    display: flex;
    flex-direction: column;
}

.cert-info .label {
    font-weight: 600;
    color: #1B4B5A;
    font-size: 0.9rem;
}

.cert-info .value {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.certificate-body {
    line-height: 1.6;
    color: #333;
}

.cert-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.company-name {
    text-align: center;
    color: #1B4B5A;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    text-decoration: underline;
}

.cert-description {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.compliance-list {
    margin: 1.5rem 0;
}

.list-title {
    font-weight: 600;
    color: #1B4B5A;
    margin-bottom: 1rem;
}

.compliance-list ul {
    list-style: none;
    padding-left: 0;
}

.compliance-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.compliance-list li::before {
    content: '•';
    color: #3A8B9A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.authorization-text,
.validity-text {
    margin: 1.5rem 0;
    text-align: justify;
}

.certificate-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.signature-line {
    text-align: center;
}

.auth-by {
    font-weight: 600;
    color: #1B4B5A;
    margin-bottom: 1rem;
}

.signature img {
    height: 60px;
    margin: 1rem 0;
}

.signatory-name {
    font-weight: 700;
    color: #1B4B5A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.signatory-title {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Certification Info */
.certification-info {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 15px;
    height: fit-content;
}

.certification-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.certification-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.compliance-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compliance-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compliance-features .feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.compliance-features .feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.compliance-features .feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 75, 90, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: var(--white);
}

.award-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.award-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-btn.primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certificate-document {
        padding: 2rem;
    }
    
    .certificate-header {
        flex-direction: column;
        text-align: center;
    }
    
    .certificate-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .certificate-document {
        padding: 1.5rem;
    }
    
    .certificate-title h2 {
        font-size: 1.4rem;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .award-item {
        padding: 1.5rem;
    }
}