/* ========================================
   CORPORATE PAGE STYLES
   ======================================== */

:root {
    --primary-color: #0C359E;
    --secondary-color: #00224d;
    --accent-color: #4A90E2;
    --gradient-blue: linear-gradient(135deg, #0C359E 0%, #4A90E2 100%);
}

/* Corporate Hero Section */
.corporate-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0C359E 0%, #1a4bb8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/low-angle-view-skyscrapers-min.jpg') center/cover no-repeat;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.corporate-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.corporate-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.corporate-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature Cards */
.feature-grid {
    padding: 80px 0;
    background: #f8faff;
}

.corporate-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.corporate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.1);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(12, 53, 158, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.corporate-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: white;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-wrapper img {
    width: 100%;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.impact-content {
    padding-left: 40px;
}

.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.vision-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .corporate-hero-title {
        font-size: 2.8rem;
    }
    
    .impact-content {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .corporate-hero-title {
        font-size: 2.2rem;
    }
    
    .intro-section, .feature-grid, .impact-section {
        padding: 60px 0;
    }
}
