/* About Page Specific Styles */

/* Page Header */
.page-header {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(11, 30, 66, 0.95), rgba(27, 59, 111, 0.9)),
                url('img/about-header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15), transparent 70%);
}

.header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.breadcrumb span {
    color: var(--primary-color);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Company Overview */
.company-overview {
    padding: 8rem 2rem;
    background: white;
}

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

.overview-content {
    padding-right: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1.5rem;
}

.signature-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.signature-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 1.5rem;
}

.signature-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-blue);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.signature-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.overview-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}


/* New Company Overview with Sidebar */
.overview-grid-new {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    position: relative;
}

/* Vertical Line Between Content and Sidebar */
.overview-grid-new::after {
    content: '';
    position: absolute;
    left: calc(100% - 400px - 2rem);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent
    );
}

/* Content Wrapper */
.overview-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Overview Content */


/* Image Below Content */
.overview-image-bottom {
    margin-top: 2rem;
}

.overview-image-bottom .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.overview-image-bottom .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    padding: 2.5rem;
}

.image-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.badge-content {
    color: white;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.badge-text {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Company Info Sidebar */
.company-info-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Card (Company Details) */
.info-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-child {
    padding-top: 0;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.info-value {
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 600;
}

/* Mission Card */
.mission-card {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border: 2px solid #e3e8ff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(27, 59, 111, 0.08);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mission-icon i {
    font-size: 1.8rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Vision Card */
.vision-card {
    background: linear-gradient(135deg, #fff5f0, #ffffff);
    border: 2px solid #ffe8dc;
    border-left: 4px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.08);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vision-icon i {
    font-size: 1.8rem;
    color: white;
}

.vision-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.vision-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Contact Card */
.contact-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Hover Effects */
.info-card {
    transition: all 0.3s ease;
}

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

.mission-card, .vision-card {
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-grid-new::after {
        display: none;
    }

    .company-info-sidebar {
        position: relative;
        top: 0;
        border-top: 2px solid var(--primary-color);
        padding-top: 2rem;
    }

    .overview-image-bottom .image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .info-item i {
        margin-top: 0.2rem;
    }

    .mission-card, .vision-card {
        padding: 1.5rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .overview-image-bottom .image-wrapper {
        height: 300px;
    }

    .image-badge {
        flex-direction: row;
        gap: 1rem;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }
}


/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-blue));
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 50%);
    animation: rotate 20s linear infinite;
}

.stats-banner .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stats-banner .stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stats-banner .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Timeline */
.our-story {
    padding: 8rem 2rem;
    background: var(--light-gray);
}

.timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--light-gray);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Grid */
.our-values {
    padding: 8rem 2rem;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--light-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF8C42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Certifications */
.certifications {
    padding: 8rem 2rem;
    background: var(--light-gray);
}

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

.cert-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.cert-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Leadership Team */
.leadership {
    padding: 8rem 2rem;
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.leader-card {
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 0;
    overflow: hidden;
}

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

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

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

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

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

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.leader-bio {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-content {
        padding-right: 0;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}
