/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h1 {
    color: #1E3A8A;
    font-size: 2rem;
    font-weight: 600;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 3rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #1E3A8A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E3A8A;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-link i.rotated {
    transform: rotate(180deg);
}

.nav-link.active {
    color: #1E3A8A;
    font-weight: 600;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    display: none;
}

.dropdown-content.accordion-open {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Removed hover styles to prevent conflict with accordion functionality */

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #1E3A8A;
    padding-left: 1.25rem;
}

.dropdown-content a.selected {
    background: #1E3A8A;
    color: white;
    font-weight: 600;
    padding-left: 1.25rem;
}

.dropdown-content a.selected:hover {
    background: #1e40af;
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.search-btn:hover {
    background: #f3f4f6;
    color: #1E3A8A;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 300px;
    margin-top: 0.5rem;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-bottom-color: #1E3A8A;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.search-result-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 0.25rem;
}

.search-result-description {
    font-size: 0.9rem;
    color: #6b7280;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Image sharpness and rendering optimizations */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Force hardware acceleration for smoother rendering */
    will-change: transform;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Enhanced image sharpness and rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    /* Prevent image blur on scaling */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Smooth scaling and positioning */
    transition: transform 0.3s ease;
    /* Ensure image is visible by default */
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.3), rgba(30, 58, 138, 0.3));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Enhanced image quality for high-DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg-image {
        /* Ensure crisp rendering on high-DPI displays */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile optimizations for hero image */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-bg-image {
        /* Optimize for mobile rendering */
        image-rendering: auto;
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.04em;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
}


/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #F97316;
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1E3A8A;
    transform: translateY(-2px);
}

/* Tab Navigation */
.tab-navigation {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    margin-top: 130px;
    position: relative;
    z-index: 999;
}

.tab-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.tab-sidebar {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.tab-title {
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1E3A8A;
}

.tab-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-link {
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tab-link:hover {
    background: #f3f4f6;
    color: #1E3A8A;
    border-color: #1E3A8A;
}

.tab-link.active {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #dc2626;
}

.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    min-height: 500px;
}

.tab-content-section {
    display: none;
}

.tab-content-section.active {
    display: block;
}

.tab-content h2 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: left;
    font-weight: 600;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.tab-content h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.tab-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
}

.tab-content ul {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.5rem;
}

/* Enhanced Content Design Styles */
.content-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding: 0 20px 1rem 20px;
    border-bottom: 2px solid #e5e7eb;
}

.header-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.content-header h2 {
    color: #1E3A8A;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.content-intro, .history-intro, .overview-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.content-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header i {
    color: #1E3A8A;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.mission-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1E3A8A;
}

/* Focus Areas Grid */
.focus-areas {
    margin-bottom: 2rem;
}

.section-title {
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.focus-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.focus-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.focus-item h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.focus-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Timeline Styles */
.timeline-section {
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1E3A8A, #3B82F6);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-year {
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    background: #1E3A8A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 1.5rem;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline-content h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Vision & Values Styles */
.vision-section {
    margin-bottom: 2rem;
}

.vision-card {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vision-icon,
.vision-values .vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.vision-card h3,
.vision-values .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff !important;
}

.vision-text,
.vision-values .vision-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ffffff !important;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1E3A8A;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.value-card h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Leadership Styles */
.leadership-intro {
    margin-bottom: 2rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.leader-photo {
    height: 200px;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-info {
    padding: 1.5rem;
}

.leader-info h4 {
    color: #1E3A8A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-title {
    color: #3B82F6;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.leader-experience {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.leader-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f1f5f9;
    color: #1E3A8A;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-card.primary {
    border: 2px solid #1E3A8A;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.portfolio-card h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-status {
    margin-top: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #10b981;
    color: white;
}

.status-badge.exploration {
    background: #f59e0b;
    color: white;
}

.status-badge.future {
    background: #6b7280;
    color: white;
}

/* Technical Section */
.technical-section {
    margin-bottom: 2rem;
}

.technical-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E3A8A;
}

.tech-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1E3A8A;
    font-weight: 500;
}

.tech-item i {
    font-size: 1.1rem;
}

/* Company Highlights Styles */
.company-highlights {
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Legacy highlight-item styles - kept for backward compatibility */
.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.highlight-item h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

/* Timeline Images */
.timeline-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Objectives Styles */
.objectives-intro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.objectives-intro .intro-text {
    order: 1;
}

.objectives-intro .intro-image {
    order: 2;
    text-align: center;
}

.objectives-intro .intro-text .lead-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    font-weight: 500;
}

.objectives-intro .intro-text .lead-text:last-child {
    margin-bottom: 0;
}

.objectives-section {
    margin-bottom: 2rem;
}

.main-objective {
    margin-bottom: 2rem;
}

.objective-card {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.objective-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.objective-text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.objective-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.objective-item .objective-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.objective-item h4 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.objective-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.objective-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.objective-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.objective-item:hover .objective-img {
    transform: scale(1.05);
}

/* Values Section */
.values-section {
    margin-top: 3rem;
}

.values-section .section-title {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Values Intro */
.values-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.6;
}

/* Principles Highlight */
.principles-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.principle-item {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
    text-align: center;
}

.principle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.principle-item:nth-child(1) {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.principle-item:nth-child(2) {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
}

.principle-item:nth-child(3) {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

/* ESG Image */
.esg-image {
    text-align: center;
    margin-top: 2rem;
}

/* Executive Leadership Section */
.executive-leadership-section {
    margin-top: 3rem;
}

.company-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid #1E3A8A;
    padding-bottom: 0.5rem;
}

.leadership-company {
    margin-bottom: 3rem;
}

.leadership-company:last-child {
    margin-bottom: 0;
}

/* Structure Styles */
.structure-section {
    margin-bottom: 2rem;
}

.partnership-overview {
    margin-bottom: 2rem;
}

.overview-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1E3A8A;
}

.roles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.role-section {
    margin-bottom: 2rem;
}

.role-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.role-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.role-card h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.role-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Leadership Company Sections */
.leadership-company {
    margin-bottom: 3rem;
}

.leadership-company .section-title {
    color: #1E3A8A;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
}

.leadership-company .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 2px;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1E3A8A;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Download/Audio/Video Grid Styles */
.downloads-grid,
.audio-grid,
.video-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-item,
.audio-item,
.video-item,
.category-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover,
.audio-item:hover,
.video-item:hover,
.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-item h3,
.audio-item h3,
.video-item h3,
.category-item h3 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.download-item p,
.audio-item p,
.video-item p,
.category-item p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* FAQ Styles */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 130px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 3rem;
    color: #1E3A8A;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.bg-light {
    background-color: #f8fafc;
}

/* Content Card */
.content-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
    margin: 4rem 0;
}

.timeline h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F97316;
    min-width: 120px;
    text-align: center;
    padding: 0.5rem;
    background: #fef3c7;
    border-radius: 8px;
    height: fit-content;
}

.timeline-content {
    flex: 1;
}

.timeline-content p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.timeline-content img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Vision and Values */
.vision-values {
    margin: 4rem 0;
}

.vision-values h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: left;
}

.vision-text {
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff !important;
    margin-bottom: 3rem;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Leadership */
.leadership {
    margin: 4rem 0;
}

.leadership h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: left;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.leader-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-info {
    flex: 1;
}

.leader-info h4 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-title {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.leader-experience {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.leader-bio {
    color: #6b7280;
    line-height: 1.6;
}

/* Gas Blocks */
.blocks-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.blocks-overview h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
    text-align: left;
}

.blocks-overview p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.block-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.block-card h4 {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
}

.block-stats {
    display: grid;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

.stat-value {
    color: #1E3A8A;
    font-weight: 700;
}

.block-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

.geological-excellence {
    text-align: center;
}

.geological-excellence h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.geological-excellence p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.geological-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* PSA Section */
.psa-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.psa-overview h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
    text-align: left;
}

.psa-overview p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.psa-status {
    margin-bottom: 3rem;
}

.psa-status h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    text-align: left;
}

.status-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.status-icon {
    flex-shrink: 0;
}

.status-icon i {
    font-size: 3rem;
    color: #10B981;
}

.status-content h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.status-content p {
    color: #6b7280;
    line-height: 1.6;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.key-point {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.point-icon i {
    font-size: 1.5rem;
    color: white;
}

.key-point h4 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.key-point p {
    color: #6b7280;
    line-height: 1.6;
}

/* LNG Project */
.project-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.project-overview h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
    text-align: left;
}

.project-overview p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.project-image {
    margin: 2rem 0;
}

.project-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #6b7280;
}

.project-objectives {
    margin-bottom: 3rem;
}

.project-objectives h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    text-align: left;
}

.objectives-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.objectives-list li {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 3rem;
}

.objectives-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-card h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.cost-breakdown {
    display: grid;
    gap: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.cost-label {
    color: #6b7280;
    font-weight: 500;
}

.cost-value {
    color: #1E3A8A;
    font-weight: 700;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-card h4 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Partnership */
.partnership-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.partnership-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-types {
    margin-bottom: 3rem;
}

.partnership-types h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: left;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partnership-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.partnership-icon i {
    font-size: 1.5rem;
    color: white;
}

.partnership-card h4 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: #6b7280;
    line-height: 1.6;
}

.financial-highlights {
    margin-bottom: 3rem;
}

.financial-highlights h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: left;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.financial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-5px);
}

.financial-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.financial-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.disclaimer {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #F97316;
}

.disclaimer p {
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Growth Strategy */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.strategy-icon i {
    font-size: 1.5rem;
    color: white;
}

.strategy-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-item i {
    color: #1E3A8A;
    font-size: 1.2rem;
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon i {
    font-size: 1.5rem;
    color: white;
}

.download-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.download-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Additional Styles for New Components */

/* Block Detail */
.block-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.block-info h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.block-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Geological Content */
.geological-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.geological-text h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.geological-text p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.geological-features {
    list-style: none;
    padding: 0;
}

.geological-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.geological-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Status Timeline */
.status-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.status-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #1E3A8A;
    color: white;
}

.step-content h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Project Facilities */
.project-facilities {
    margin-top: 3rem;
}

.project-facilities h3 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 2rem;
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-card h4 {
    padding: 1rem 1.5rem 0.5rem;
    color: #1E3A8A;
    font-size: 1.2rem;
}

.facility-card p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.objective-icon i {
    font-size: 1.5rem;
    color: white;
}

.objective-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.objective-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Partnership Features */
.partnership-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.partnership-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-weight: bold;
}

/* Financial Chart */
.financial-chart {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.financial-chart h3 {
    text-align: center;
    color: #1E3A8A;
    margin-bottom: 2rem;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 300px;
    padding: 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #1E3A8A, #3B82F6);
    border-radius: 4px 4px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    min-height: 60px;
}

.chart-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.chart-value {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ESG Pillars */
.esg-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.esg-pillar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.esg-pillar h4 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.esg-pillar ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.esg-pillar li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.esg-pillar li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Synergy Strategies */
.synergy-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Diversification Grid */
.diversification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.diversification-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.diversification-item h4 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.diversification-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Strategy Features */
.strategy-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.strategy-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1E3A8A;
    font-weight: bold;
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1E3A8A;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #1E3A8A;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.location-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: #1E3A8A;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.download-icon i {
    font-size: 1.5rem;
    color: white;
}

.download-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.download-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.file-size,
.file-type {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Audio Grid */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audio-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.audio-card:hover {
    transform: translateY(-5px);
}

.audio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audio-icon i {
    font-size: 1.5rem;
    color: white;
}

.audio-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.audio-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.audio-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.duration,
.language {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: rgba(30, 58, 138, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: #1E3A8A;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.video-info {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1.5rem 1.5rem;
}

.quality {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.category-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1E3A8A;
    font-weight: 600;
}

/* Instructions */
.instructions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.instruction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F97316, #FB923C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.instruction-icon i {
    font-size: 1.5rem;
    color: white;
}

.instruction-card h3 {
    font-size: 1.3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.instruction-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1E3A8A;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-weight: 600;
    font-family: sans-serif, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial;
    letter-spacing: -0.02em;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #F97316;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        min-width: auto;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .leader-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .leader-info h4 {
        font-size: 1.3rem;
    }
    
    .leader-title {
        font-size: 1rem;
    }
    
    .leader-experience {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 2rem 6rem 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-left: 0;
    }
    
    .search-dropdown {
        min-width: 280px;
        right: -50px;
    }
    
    .tab-navigation {
        margin-top: 110px;
    }
    
    .tab-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tab-sidebar {
        padding: 1rem;
    }
    
    .tab-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .tab-links {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .tab-link {
        white-space: nowrap;
        min-width: 120px;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .tab-content {
        padding: 1.5rem;
        min-height: 400px;
    }
    
    /* Enhanced Content Mobile Styles */
    .content-intro, .history-intro, .overview-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .objectives-intro {
        gap: 1.5rem;
    }
    
    .objectives-intro .intro-text .lead-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .content-img {
        height: 200px;
        max-width: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* General responsive images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile responsive adjustments for new card design */
    .card-content {
        padding: 1rem;
    }
    
    .menu-summary-card h3 {
        font-size: 1.2rem;
    }
    
    .menu-summary-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Menu summary card highlight items - mobile responsive */
    .menu-highlight-item {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }
    
    .menu-highlight-item i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .menu-highlight-item span {
        font-size: 0.8rem;
    }
    
    /* Specific image classes for mobile */
    .project-image img,
    .geological-image img,
    .contact-image img,
    .facility-card img,
    .video-thumbnail img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .focus-grid, .values-grid, .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Company Highlights mobile responsive */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .highlight-item {
        min-height: 160px;
        padding: 1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-year {
        left: -1rem;
        top: -0.3rem;
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    .tech-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Enhanced Content Mobile Styles */
    .highlights-grid, .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .objective-item {
        padding: 1.5rem;
    }
    
    .objective-item .objective-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .objective-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .objective-item p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .objective-img {
        height: 120px;
    }
    
    .vision-card {
        padding: 1.5rem;
    }
    
    .vision-card h3,
    .vision-values .vision-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: #ffffff !important;
    }
    
    .vision-text,
    .vision-values .vision-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ffffff !important;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile responsive for principles */
    .principles-highlight {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .principle-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 250px;
    }
    
    .values-section {
        margin-top: 2rem;
    }
    
    .values-section .section-title {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-images {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-img {
        width: 150px;
        height: 100px;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown-content.accordion-open {
        display: block !important;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .dropdown-content a {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .blocks-grid {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Mobile scroll down icon styles */
    .mobile-scroll-down {
        display: flex;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: transparent;
        border-radius: 0;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: none;
        transition: all 0.3s ease;
        animation: scrollPulse 2s infinite;
    }
    
    .mobile-scroll-down:hover {
        background: transparent;
        transform: translateX(-50%) scale(1.1);
        box-shadow: none;
    }
    
    .mobile-scroll-down i {
        font-size: 20px;
        color: #ffffff;
        animation: scrollBounce 2s infinite;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding: 1rem;
    }
    
    .value-card,
    .leader-card,
    .block-card,
    .partnership-card,
    .strategy-card,
    .download-card {
        padding: 1.5rem;
    }
}

/* ========================================
   MOBILE MENU SUMMARY STYLES
   ======================================== */

.mobile-menu-summary {
    padding: 3rem 0;
    background: #f8fafc;
    display: block; /* Always visible on all screens */
}

.summary-title {
    text-align: center;
    color: #1E3A8A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.menu-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Desktop layout for menu summary */
@media (min-width: 769px) {
    .menu-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
    }
}

.menu-summary-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.menu-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card internal image sections */
.lng-plant-section,
.gas-site-section,
.psa-section,
.lng-tan-section,
.partnership-section {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

.lng-plant-image,
.gas-site-image,
.psa-image,
.lng-tan-image,
.partnership-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    max-height: 200px;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.summary-icon i {
    color: white;
    font-size: 1.5rem;
}

.menu-summary-card h3 {
    color: #1E3A8A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.menu-summary-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.key-facts {
    margin-bottom: 1.5rem;
}

.fact-item {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.fact-item strong {
    color: #1E3A8A;
    font-weight: 600;
}

.card-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

/* Menu summary card highlight items */
.menu-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.menu-highlight-item:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateX(4px);
}

.menu-highlight-item i {
    color: #1E3A8A;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.menu-highlight-item span {
    color: #1E3A8A;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
}

.highlight-item-with-image {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item-with-image:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateX(4px);
}

.highlight-image {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-image i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item-with-image span {
    color: #1E3A8A;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
}

/* LNG Plant Section Styles */
.lng-plant-section {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.lng-plant-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.lng-plant-image:hover {
    transform: scale(1.02);
}


/* Gas Site Section Styles */
.gas-site-section {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.gas-site-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gas-site-image:hover {
    transform: scale(1.02);
}


/* PSA Section Styles */
.psa-section {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.psa-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.psa-image:hover {
    transform: scale(1.02);
}


/* LNG Tanzania Section Styles */
.lng-tan-section {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.lng-tan-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.lng-tan-image:hover {
    transform: scale(1.02);
}


/* ========================================
   CONTENT VIEW STYLES
   ======================================== */

.content-view {
    padding: 2rem 0;
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    z-index: 999; /* Higher z-index to appear above other elements */
    margin-top: 130px; /* Account for fixed header */
}


.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1E3A8A;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    margin-left: auto;
}

.back-button:hover {
    background: #f8fafc;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.back-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #1E3A8A;
}

.back-button:hover i {
    transform: translateX(-2px);
    color: #1e40af;
}

.content-body {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
}

/* Content View Responsive Styles */
@media (max-width: 768px) {
    .content-view {
        padding: 1rem 0;
        margin-top: 110px; /* Smaller margin for mobile */
    }
    
    .content-header {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .content-body {
        padding: 1.5rem;
        margin: 0 10px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .content-view {
        margin-top: 100px; /* Even smaller margin for very small screens */
    }
    
    .content-body {
        padding: 1rem;
        margin: 0 5px;
    }
    
    .back-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .back-button span {
        display: none;
    }
    
    .back-button i {
        font-size: 1rem;
    }
    
    /* Ensure images are responsive on very small screens */
    .content-img {
        height: 150px;
        max-width: 100%;
        width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile Scroll Down Icon - Only visible on mobile */
.mobile-scroll-down {
    display: none;
}

/* Scroll down animations - moved to main styles */
@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}