/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* About Section */
.hero-about-section {
    padding: 80px 0;
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.hero-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,53,141,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,53,141,0.015)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,53,141,0.018)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 53, 141, 0.25);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #00358d;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(0, 53, 141, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00358d;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(0, 53, 141, 0.7);
    font-weight: 500;
    margin-top: 8px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 53, 141, 0.04);
    border: 1px solid rgba(0, 53, 141, 0.08);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(0, 53, 141, 0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 53, 141, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 53, 141, 0.2);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00358d;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: rgba(0, 53, 141, 0.7);
    margin: 0;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(0, 53, 141, 0.8);
}

.highlight-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Hero Images */
.hero-images {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 53, 141, 0.15);
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 53, 141, 0.9) 100%);
    padding: 24px;
    color: white;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.secondary-image {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 53, 141, 0.2);
    border: 4px solid white;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 53, 141, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(0, 53, 141, 0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.floating-card .card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #00358d;
    margin-bottom: 2px;
}

.floating-card .card-content p {
    font-size: 0.8rem;
    color: rgba(0, 53, 141, 0.7);
    margin: 0;
}

/* VMV Section */
.vmv-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.vmv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.vmv-header {
    text-align: center;
    margin-bottom: 80px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 53, 141, 0.04);
    border: 1px solid rgba(0, 53, 141, 0.08);
    border-radius: 24px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.vmv-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.vmv-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 53, 141, 0.7);
    font-weight: 500;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 40px;
}

.vmv-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 53, 141, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 53, 141, 0.08);
    animation: fadeInUp 0.8s ease-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 53, 141, 0.15);
    border-color: rgba(0, 53, 141, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vmv-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 53, 141, 0.9) 100%);
    padding: 24px;
    color: white;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.75;
    line-height: 1;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 53, 141, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.content-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00358d;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.content-description {
    font-size: 1rem;
    color: rgba(0, 53, 141, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.content-stats {
    display: flex;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00358d;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(0, 53, 141, 0.6);
    font-weight: 500;
}

.vision-goals,
.mission-pillars {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.goal-item,
.pillar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 53, 141, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #00358d;
    font-weight: 500;
}

.goal-item i,
.pillar-item i {
    color: #00358d;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.value-item {
    background: rgba(0, 53, 141, 0.08);
    color: #00358d;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.leadership-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 53, 141, 0.04);
    border: 1px solid rgba(0, 53, 141, 0.08);
    border-radius: 24px;
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.leadership-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.leadership-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00358d;
    margin-bottom: 16px;
}

.leadership-description {
    font-size: 1.1rem;
    color: rgba(0, 53, 141, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.leader-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 53, 141, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 53, 141, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0, 53, 141, 0.15);
    border-color: rgba(0, 53, 141, 0.2);
}

.leader-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 53, 141, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    display: none;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.leader-content {
    padding: 24px;
}

.leader-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00358d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leader-position {
    font-size: 0.9rem;
    color: rgba(0, 53, 141, 0.7);
    font-weight: 500;
    margin-bottom: 16px;
}

.leader-bio {
    margin-bottom: 20px;
}

.leader-bio p {
    font-size: 0.9rem;
    color: rgba(0, 53, 141, 0.8);
    line-height: 1.5;
    margin: 0;
}

.leader-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00358d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leader-link:hover {
    color: #0066cc;
    transform: translateX(4px);
    text-decoration: none;
}

.leadership-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00358d 0%, #0066cc 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 53, 141, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0066cc 0%, #00358d 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 53, 141, 0.35);
    color: white;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-card {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 200px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-about-section,
    .vmv-section,
    .leadership-section {
        padding: 60px 0;
    }
    
    .about-container,
    .vmv-container,
    .leadership-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .vmv-title,
    .leadership-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .secondary-image {
        position: static;
        width: 100%;
        height: 150px;
        margin-top: 16px;
    }
    
    .floating-card {
        position: static;
        margin-top: 16px;
    }
    
    .vmv-header,
    .header-content {
        padding: 24px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .content-number {
        font-size: 3rem;
    }
    
    .content-title {
        font-size: 1.3rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .vmv-title,
    .leadership-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .vmv-header,
    .header-content {
        padding: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .content-stats {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Focus states for accessibility */
.leader-link:focus,
.cta-button:focus,
.social-link:focus {
    outline: 2px solid #00358d;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 53, 141, 0.08);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 53, 141, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 53, 141, 0.4);
}

/* Accent color for form elements */
input, button, select, textarea {
    accent-color: #00358d;
}

/* Print styles */
@media print {
    .hero-about-section,
    .vmv-section,
    .leadership-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .vmv-card,
    .leader-card {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
