* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.section-content p {
	  width: 100%;
	  margin: 0 auto 1em 0;  /* left aligned */
      text-align: left;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(21, 57, 106, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #15396a;
}

.nav-link.active {
    color: #15396a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(21, 57, 106, 0.9) 0%, rgba(44, 90, 160, 0.85) 50%, rgba(174, 137, 89, 0.8) 100%),
                url('./bg.jpg') center/cover;
    /*
    EDIT HERO BACKGROUND IMAGE:
    Replace the URL above with your own image URL
    Current image: Financial/business office scene from Unsplash
    Recommended size: 2000px+ width for best quality
    */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(174, 137, 89, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(21, 57, 106, 0.3) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Prevent line breaks in key phrase on larger screens */
@media (min-width: 1366px) {
    .hero h1 .phrase-group {
        white-space: nowrap;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section {
    padding: 4rem 0 6rem 0;
    min-height: 50vh;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(21, 57, 106, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(21, 57, 106, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 50%, #ae8959 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(21, 57, 106, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    display: none;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(21, 57, 106, 0.1);
    border: 1px solid rgba(21, 57, 106, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #15396a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #15396a;
    background: white;
    box-shadow: 0 0 0 3px rgba(21, 57, 106, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(21, 57, 106, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(21, 57, 106, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #15396a 0%, #0f2a4c 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ae8959 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

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

.social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #ae8959 100%);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo-image {
        height: 40px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }
}

/* Section Banner Styles */
.section-banner {
    height: 125px;
    background: linear-gradient(135deg, rgba(21, 57, 106, 0.9) 0%, rgba(44, 90, 160, 0.85) 50%, rgba(174, 137, 89, 0.8) 100%),
                url('./bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(174, 137, 89, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(21, 57, 106, 0.3) 0%, transparent 50%);
}

.section-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

/* Asset Cards Styles */
.assets-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    border-radius: 20px;
    color: white;
}

.summary-item {
    text-align: center;
}

.summary-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.asset-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 57, 106, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(21, 57, 106, 0.08);
    cursor: pointer;
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(21, 57, 106, 0.15);
}

.asset-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid rgba(21, 57, 106, 0.1);
}

.asset-type {
    font-size: 0.85rem;
    color: #ae8959;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.asset-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #15396a;
    margin-bottom: 0.5rem;
}

.asset-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.asset-body {
    padding: 1.5rem;
}

.asset-details {
    display: grid;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
}

.asset-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-development {
    background: rgba(251, 146, 60, 0.1);
    color: #ea580c;
}

.status-available {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.asset-expanded {
    display: none;
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.asset-expanded.active {
    display: block;
}

.expand-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #15396a 100%);
}

/* Tabs Styles */
.tabs-container {
    max-width: 960px;
    margin: 3rem auto;
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    width: 100%;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #e5e7eb;
    border-bottom: 3px solid transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: -2px;
    overflow: hidden;
    flex: 1;
    text-align: center;
}

.tab-button:hover {
    color: #15396a;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(21, 57, 106, 0.05));
    border-color: rgba(21, 57, 106, 0.2);
}

.tab-button.active {
    color: #15396a;
    border-bottom-color: #15396a;
    background: linear-gradient(to bottom, white, rgba(21, 57, 106, 0.05));
    border-color: rgba(21, 57, 106, 0.2);
    border-bottom-color: #15396a;
}

.tabs-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(21, 57, 106, 0.1);
    border: 1px solid rgba(21, 57, 106, 0.08);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tab-panel p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tab-panel ul {
    list-style: none;
    padding: 0;
}

.tab-panel li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.tab-panel li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #15396a;
    font-weight: bold;
}

.tab-panel a {
    color: #15396a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-panel a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

.compliance-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    text-align: center;
}

.compliance-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #15396a;
}

.compliance-section p {
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tabs */
@media (max-width: 768px) {
    .tabs-nav {
        gap: 0.25rem;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .tabs-content {
        padding: 1.5rem;
    }

    .tab-panel h3 {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page sections */
.page-section {
    display: none;
    scroll-margin-top: 80px;
    padding-top: 80px;
}

.page-section.active {
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 2rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    color: white;
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
}

.modal-tab-button {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modal-tab-button:hover {
    color: #15396a;
    background: rgba(21, 57, 106, 0.05);
}

.modal-tab-button.active {
    color: #15396a;
    border-bottom-color: #15396a;
}

.modal-tab-panel {
    display: none;
}

.modal-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 57, 106, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(21, 57, 106, 0.15);
    border-color: rgba(21, 57, 106, 0.1);
}

.program-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    color: white;
}

.program-number {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.program-card-body {
    padding: 2rem;
}

.program-info {
    display: grid;
    gap: 1rem;
}

.program-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.program-info-label {
    color: #4a5568;
    font-size: 0.95rem;
}

.program-info-value {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.view-details-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #15396a 0%, #2c5aa0 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 57, 106, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }

    .program-cards {
        grid-template-columns: 1fr;
    }

    .modal-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .modal-tab-button {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}