:root {
    --corp-primary: #0B2A3B;
    --corp-secondary: #1a4d66;
    --corp-accent: #FF6B35;
    --corp-light: #f8f9fa;
    --corp-dark: #121212;
    --corp-text: #333;
    --corp-text-light: #666;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--corp-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--corp-primary);
    font-weight: 700;
}

/* Utility Classes */
.hover-primary {
    transition: color 0.3s ease;
}
.hover-primary:hover {
    color: var(--corp-accent) !important;
}

.hover-white {
    transition: color 0.3s ease;
}
.hover-white:hover {
    color: #fff !important;
}

/* Corporate Header */
.corp-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.corp-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.corp-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--corp-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.corp-brand span {
    color: var(--corp-accent);
}

.corp-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.corp-nav-link {
    text-decoration: none;
    color: var(--corp-primary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corp-nav-link:hover,
.corp-nav-link.active {
    color: var(--corp-accent);
}

.btn-back-home {
    padding: 8px 20px;
    border: 1px solid var(--corp-primary);
    border-radius: 4px;
    color: var(--corp-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background-color: var(--corp-primary);
    color: #fff;
}

/* Hero Section */
.corp-hero {
    background-color: var(--corp-primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(11, 42, 59, 0.9), rgba(11, 42, 59, 0.8)), url('../../../assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.corp-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* Corporate Footer */
.corp-footer {
    background-color: var(--corp-primary);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.corp-footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.corp-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--corp-accent);
}

.corp-footer-links {
    list-style: none;
    padding: 0;
}

.corp-footer-links li {
    margin-bottom: 10px;
}

.corp-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.corp-footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.corp-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Components */
.corp-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.corp-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--corp-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .corp-navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .corp-nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .corp-hero h1 {
        font-size: 2rem;
    }
}

/* Executive Card */
.executive-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.executive-card:hover {
    transform: translateY(-5px);
}

.executive-icon {
    width: 80px;
    height: 80px;
    background: var(--corp-light);
    color: var(--corp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

/* Corporate Tabs */
.corp-tabs .nav-link {
    color: var(--corp-primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #fff;
}

.corp-tabs .nav-link.active {
    background-color: var(--corp-primary);
    color: white;
    border-color: var(--corp-primary);
}

.corp-tab-content {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

/* Enhanced Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--corp-light);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--corp-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--corp-text-light);
    font-weight: 500;
}

/* Feature Cards (Vision/Mission) */
.feature-card {
    padding: 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--corp-accent);
}

.feature-icon {
    font-size: 3rem;
    color: var(--corp-accent);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(11, 42, 59, 0.1); /* Lighter primary */
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-content {
    background: #fff;
    padding: 0; /* Remove padding here, move to inner */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 45%;
    position: relative;
    overflow: hidden; /* For image */
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.timeline-content:hover .timeline-img-container img {
    transform: scale(1.05);
}

.timeline-body {
    padding: 25px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right; /* Align text for even items */
}

.timeline-item:nth-child(even) .timeline-content .timeline-body {
    text-align: right;
}

/* Fix text align for even items if they have images */
.timeline-item:nth-child(even) .timeline-content {
    text-align: left; /* Reset text align */
}
.timeline-item:nth-child(even) .timeline-content .timeline-body {
    text-align: left; /* Reset text align */
}


.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--corp-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    z-index: 10;
}

.timeline-date {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--corp-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
    margin-top: -40px; /* Move above dot */
    white-space: nowrap;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-date {
        left: 20px;
        margin-top: -50px;
    }
}

/* Modern Tabs */
.modern-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    color: var(--corp-text-light);
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    background: transparent;
    transition: all 0.3s;
}

.modern-tabs .nav-link:hover {
    color: var(--corp-primary);
}

.modern-tabs .nav-link.active {
    color: var(--corp-primary);
    border-bottom-color: var(--corp-accent);
    background: transparent;
}

/* Enhanced Hero */
.corp-hero-large {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.hero-overlay {
    background: rgba(11, 42, 59, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}