/* SSIA Website Custom Styles */

:root {
    --ssia-primary: #1e3a5f;
    --ssia-secondary: #dc3545;
    --ssia-text-dark: #333333;
    --ssia-text-light: #666666;
    --ssia-white: #ffffff;
    --ssia-gray: #f5f5f5;
}

/* Top Header Styles */
.top-header {
    background-color: var(--ssia-primary);
    padding: 0.75rem 0;
    color: var(--ssia-white);
    font-size: 0.875rem;
}

.top-header-left {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: var(--ssia-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
    color: var(--ssia-white);
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-contact-us {
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-contact-us:hover {
    background-color: #c82333;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ssia-white);
    font-size: 0.875rem;
    white-space: nowrap;
}

.contact-item svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.125rem;
}

.language-switcher-btn {
    background-color: transparent;
    border: none;
    color: var(--ssia-white);
    padding: 0.375rem 0.75rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-switcher-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--ssia-white);
}

.language-switcher-btn.active {
    background-color: var(--ssia-white);
    color: var(--ssia-primary);
}

.language-switcher-btn:focus {
    outline: 2px solid var(--ssia-white);
    outline-offset: 2px;
}

.language-code {
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Main Navigation Bar Styles */
.main-navbar {
    background-color: var(--ssia-white);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar-brand-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 280px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.logo-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ssia-primary);
    line-height: 1;
    white-space: nowrap;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex-shrink: 0;
}

.brand-name-arabic {
    font-size: 0.8rem;
    color: var(--ssia-primary);
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.brand-name-english {
    font-size: 0.85rem;
    color: var(--ssia-primary);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 1rem;
}

.navbar-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--ssia-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--ssia-primary);
}

.nav-link.active {
    color: var(--ssia-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 3px;
    background-color: var(--ssia-secondary);
}

.nav-link svg {
    width: 8px;
    height: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.navbar-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: 40px;
}

.search-button {
    background: none;
    border: none;
    color: var(--ssia-text-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-button:hover {
    color: var(--ssia-primary);
}

.search-button svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Mobile Menu Collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .navbar-search {
        margin-top: 1rem;
        justify-content: flex-start;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-image: url('../images/s1.jpg');
    min-height: 500px;
   
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-accent {
    color: var(--ssia-secondary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--ssia-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.btn-explore {
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-explore:hover {
    background-color: #c82333;
}

/* Areas of Work Section Styles 
.areas-of-work-section {
    padding: 4rem 0;
    background-color: var(--ssia-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--ssia-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.section-header:hover .section-title {
    color: var(--ssia-primary);
}

.section-underline {
    width: 60px;
    height: 3px;
    background-color: var(--ssia-secondary);
    margin: 0 auto;
    transition: width 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
}

.section-header:hover .section-underline {
    width: 80px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.areas-carousel-container {
    position: relative;
}

.carousel-controls {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: var(--ssia-white);
    color: var(--ssia-text-dark);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    border-color: var(--ssia-primary);
}

.areas-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.area-card {
    background-color: var(--ssia-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.area-card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.area-card-content {
    padding: 1.5rem;
}

.area-card-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--ssia-gray);
    color: var(--ssia-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.area-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1rem;
}

.area-card-description {
    font-size: 0.95rem;
    color: var(--ssia-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.area-card-link {
    color: var(--ssia-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.area-card-link:hover {
    text-decoration: underline;
}
    */
/* Helping Businesses Section Styles */
.helping-businesses-section {
    position: relative;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    margin: 4rem 0;
}

.helping-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.75));
}

.helping-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.helping-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ssia-white);
    margin-bottom: 1.5rem;
}

.helping-description {
    font-size: 1.1rem;
    color: var(--ssia-white);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
}

.helping-cards-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .helping-cards-container {
        min-height: 400px;
    }
}

.helping-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: transform 0.5s ease;
}

@media (max-width: 991.98px) {
    .helping-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .helping-cards {
        grid-template-columns: 1fr;
        display: flex;
        gap: 0;
        position: relative;
    }

    .helping-card {
        flex: 0 0 100%;
        min-width: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
        position: absolute;
        width: 100%;
    }

    .helping-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        position: relative;
    }

    .helping-card.prev {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
    }

    .helping-card.next {
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
    }
}

.helping-card {
    background-color: var(--ssia-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .helping-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
}

.helping-card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.helping-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.helping-card-description {
    font-size: 0.95rem;
    color: var(--ssia-text-light);
    line-height: 1.6;
    text-align: center;
}

.helping-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
    outline: none;
}

.pagination-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.pagination-dot:focus {
    outline: 2px solid var(--ssia-white);
    outline-offset: 2px;
}

.pagination-dot.active {
    background-color: var(--ssia-secondary);
    width: 50px;
}

/* Who We Are Section Styles */
.who-we-are-section {
    padding: 4rem 0;
    background-color: var(--ssia-white);
}

.who-we-are-image {
    padding-inline-end: 2rem;
}

.image-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.who-we-are-content {
    padding-inline-start: 2rem;
}

.who-we-are-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1.5rem;
}

.who-we-are-description {
    font-size: 1rem;
    color: var(--ssia-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    background-color: var(--ssia-gray);
    border: none;
    padding: 1rem 1.5rem;
    text-align: start;
    font-weight: 600;
    color: var(--ssia-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s;
}

.accordion-button:hover {
    background-color: #e9e9e9;
}

.accordion-button.active {
    background-color: var(--ssia-gray);
}

.accordion-icon {
    color: var(--ssia-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    padding: 1.5rem;
    background-color: var(--ssia-white);
    color: var(--ssia-text-light);
    line-height: 1.6;
}

/* Footer Styles */
.site-footer {
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    margin-top: 4rem;
}

.footer-top {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-white);
}

.footer-nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: var(--ssia-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav-links a:hover {
    color: var(--ssia-secondary);
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--ssia-white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--ssia-white);
}

.footer-middle {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-description p:last-child {
    margin-bottom: 0;
}

.subscribe-container {
    display: flex;
    gap: 0.5rem;
}

.subscribe-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--ssia-white);
    border-radius: 4px;
    font-size: 0.95rem;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-button {
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #c82333;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Main Layout */
.main-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-layout main {
    flex: 1;
}

/* Z-index Management - Ensure proper layering */
:root {
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

/* Ensure navbar stays on top */
.navbar {
    z-index: var(--z-index-sticky);
    position: relative;
}

/* Responsive Design */
@media (max-width: 992px) {
    .areas-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-we-are-image {
        padding-inline-end: 0;
        margin-bottom: 2rem;
    }

    .who-we-are-content {
        padding-inline-start: 0;
    }
}

@media (max-width: 768px) {
    .top-header-right {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-end;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }

    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

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

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

    .footer-nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .subscribe-container {
        flex-direction: column;
    }
}

/* About Us Page */
.about-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
    scroll-behavior: smooth;
}

/* Smooth scroll for all pages */
html {
    scroll-behavior: smooth;
}

/* Unified Section Styles - Used across all pages */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--ssia-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.section-header:hover .section-title {
    color: var(--ssia-primary);
}

.section-underline {
    width: 60px;
    height: 3px;
    background-color: var(--ssia-secondary);
    margin: 0 auto;
    transition: width 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
}

.section-header:hover .section-underline {
    width: 80px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.about-main-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-decree-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--ssia-primary) 0%, #365b82 100%);
    border-inline-end: 6px solid var(--ssia-secondary);
    color: var(--ssia-white);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    margin-bottom: 4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-decree-box::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-decree-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.about-decree-box:hover::before {
    opacity: 1;
}

.about-decree-icon {
    flex-shrink: 0;
}

.about-decree-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-decree-box:hover .about-decree-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-decree-icon svg {
    width: 60px;
    height: 60px;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.about-decree-content {
    flex: 1;
}

.about-decree-title {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.about-decree-date {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.about-decree-text {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.92;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ssia-primary), var(--ssia-secondary));
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-card:hover::before {
    opacity: 1;
    width: 6px;
}

.about-card:focus-within {
    outline: 2px solid var(--ssia-primary);
    outline-offset: 4px;
    border-radius: 1.5rem;
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--ssia-primary), #ffd700);
    border-radius: 999px;
    margin-bottom: 1rem;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover .about-section-divider {
    width: 100px;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.3);
}

.about-highlight-box {
    background-color: #e6f0ff;
    border-inline-end: 4px solid var(--ssia-primary);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-highlight-box:hover {
    background-color: #d6e8ff;
    transform: translateX(4px);
}

.about-highlight-box:hover::before {
    opacity: 1;
}

.about-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ssia-primary);
}

.timeline-item {
    position: relative;
    padding-inline-end: 2rem;
    margin-bottom: 1.75rem;
    border-inline-end: 2px solid var(--ssia-secondary);
    transition: padding-inline-end 0.3s ease, border-inline-end-width 0.3s ease;
}

.about-card:hover .timeline-item {
    border-inline-end-width: 3px;
    padding-inline-end: 2.25rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--ssia-secondary);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.about-mission {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 4rem;
}

.about-mission-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, var(--ssia-primary), #ffd700);
    border-radius: 999px;
    margin: 0 auto 2rem;
}

.about-mission-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.about-mission-card {
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #1a202c;
    line-height: 1.8;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-mission-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-mission-card:hover::after {
    opacity: 1;
}

.about-mission-card:focus-within {
    outline: 2px solid var(--ssia-primary);
    outline-offset: 4px;
    border-radius: 1rem;
}

.about-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin: 0;
}

.about-mission-card-primary {
    background-color: #ecfdf3;
    border-inline-end: 4px solid #4caf50;
}

.about-mission-card-secondary {
    background-color: #fffbea;
    border-inline-end: 4px solid #ffd700;
}

.about-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-achievement-card {
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--ssia-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    inset-inline-start: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.6s ease;
    transform: scale(0);
}

.about-achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-achievement-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-achievement-card:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

.about-achievement-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffd700;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-achievement-card:hover .about-achievement-value {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-achievement-blue {
    background: linear-gradient(135deg, #0f3d91, #2254b0);
}

.about-achievement-green {
    background: linear-gradient(135deg, #1c7c49, #0f5d2f);
}

.about-achievement-yellow {
    background: linear-gradient(135deg, #d39e02, #f0b429);
}

.about-achievement-card p {
    margin: 0;
    font-size: 1.1rem;
}

.text-primary {
    color: var(--ssia-primary) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* Responsive styles for About Us page */
@media (max-width: 992px) {
    .about-decree-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-container {
        padding: 0 1.125rem;
    }

    .about-card,
    .about-mission {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 4.5rem 1rem;
    }

    .about-main-section {
        padding: 3rem 0;
    }

    .about-container {
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .about-decree-box {
        padding: 2rem;
    }

    .about-card,
    .about-mission {
        padding: 1.75rem;
    }

    .about-achievement-card {
        padding: 2rem 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-item {
        padding-inline-end: 1.25rem;
    }
}

@media (max-width: 576px) {
    .about-card,
    .about-mission,
    .about-decree-box {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

.about-hero-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #002d62 0%, #003875 50%, #004688 100%);
    color: var(--ssia-white);
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 215, 0, 0.3) 1px, transparent 0);
    background-size: 40px 40px;
}

.about-hero-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    z-index: 1;
}

.about-hero-title {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

.about-hero-divider {
    width: 96px;
    height: 4px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(to right, #ffd700, #ffffff);
    border-radius: 999px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 800px;
    margin: 0 auto;
}

.about-main-section {
    padding: 5rem 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.about-decree-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--ssia-primary) 0%, #365b82 100%);
    border-inline-end: 6px solid var(--ssia-secondary);
    color: var(--ssia-white);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.about-decree-icon svg {
    width: 3.5rem;
    height: 3.5rem;
    color: #ffd700;
}

.about-decree-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #002d62;
    margin-bottom: 1rem;
}

.section-title-small {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.timeline-content {
    gap: 1.75rem !important;
}

.about-decree-title {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.about-decree-date {
    font-size: 1rem;
    opacity: 0.9;
}

.about-decree-text {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.92;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #002d62, #ffd700);
    border-radius: 999px;
    margin-bottom: 1rem;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover .about-section-divider {
    width: 100px;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.3);
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-highlight-box {
    background-color: #e6f0ff;
    border-inline-end: 4px solid #002d62;
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002d62;
}

.timeline-item {
    position: relative;
    padding-inline-end: 2rem;
    margin-bottom: 1.75rem;
    border-inline-end: 2px solid var(--ssia-secondary);
    transition: padding-inline-end 0.3s ease, border-inline-end-width 0.3s ease;
}

.about-card:hover .timeline-item {
    border-inline-end-width: 3px;
    padding-inline-end: 2.25rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--ssia-secondary);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.about-mission {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-mission-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, #002d62, #ffd700);
    border-radius: 999px;
    margin: 0 auto;
}

.about-mission-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
}

.about-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.about-mission-card {
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #1a202c;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-mission-card-primary {
    background-color: #ecfdf3;
    border-inline-end: 4px solid #4caf50;
}

.about-mission-card-secondary {
    background-color: #fffbea;
    border-inline-end: 4px solid #ffd700;
}

.about-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.about-achievement-card {
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--ssia-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-achievement-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffd700;
}

.about-achievement-blue {
    background: linear-gradient(135deg, #0f3d91, #2254b0);
}

.about-achievement-green {
    background: linear-gradient(135deg, #1c7c49, #0f5d2f);
}

.about-achievement-yellow {
    background: linear-gradient(135deg, #d39e02, #f0b429);
}

.breadcrumb-bar {
    background-color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(15, 61, 145, 0.1);
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    font-size: 0.95rem;
    color: #475569;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link {
    color: var(--ssia-primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-link:hover {
    color: var(--ssia-secondary);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #0f172a;
}

@media (max-width: 992px) {
    .about-decree-box,
    .about-card,
    .about-mission {
        padding: 2rem;
    }

    .about-container {
        padding: 0 1.125rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 4.5rem 1rem;
    }

    .about-decree-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-container {
        gap: 2.5rem;
    }

    .timeline-item {
        padding-inline-end: 1.25rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-list {
        padding: 0 1rem;
        font-size: 0.85rem;
    }

    .about-card,
    .about-mission,
    .about-decree-box {
        padding: 1.75rem;
    }

    .about-achievement-card {
        padding: 2rem 1.25rem;
    }
}

/* Investment Philosophy Page Styles */
.investment-philosophy-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.philosophy-overview-box {
    background: linear-gradient(135deg, #e6f0ff 0%, #fffbea 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.philosophy-overview-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 2rem;
}

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

.philosophy-info-card {
    background-color: var(--ssia-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.philosophy-info-card-accent {
    border-inline-end: 4px solid #ffd700;
}

.philosophy-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 0.75rem;
}

.philosophy-info-text {
    font-size: 1rem;
    color: var(--ssia-text-light);
    line-height: 1.6;
    margin: 0;
}

.philosophy-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.philosophy-goal-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-inline-start: 4px solid transparent;
}

.philosophy-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ssia-secondary), #4caf50);
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.philosophy-goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-inline-start-color: var(--ssia-secondary);
}

.philosophy-goal-card:hover::before {
    opacity: 1;
    width: 6px;
}

.philosophy-goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ssia-primary), var(--ssia-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--ssia-white);
    transition: transform 0.3s ease;
}

.philosophy-goal-card:hover .philosophy-goal-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-goal-icon svg {
    width: 30px;
    height: 30px;
}

.philosophy-goal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.philosophy-goal-text {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.8;
    margin: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-inline-end: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border-inline-end-color: var(--ssia-secondary);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--ssia-white);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pillar-icon-blue {
    background: linear-gradient(135deg, #002d62, #004688);
}

.pillar-icon-yellow {
    background: linear-gradient(135deg, #ffd700, #ffc107);
}

.pillar-icon-green {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.pillar-icon-purple {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.pillar-icon-orange {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.pillar-icon-red {
    background: linear-gradient(135deg, #f44336, #ef5350);
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin: 0;
}

.pillar-description {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-list li {
    position: relative;
    padding-inline-start: 1.5rem;
    color: var(--ssia-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.pillar-list li::before {
    content: '•';
    position: absolute;
    inset-inline-start: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.5rem;
}

.pillar-highlight {
    background-color: #f5f5f5;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border-inline-start: 3px solid var(--ssia-primary);
}

.pillar-highlight-text {
    font-size: 0.95rem;
    color: var(--ssia-text-light);
    line-height: 1.6;
    margin: 0;
}

.pillar-highlight strong {
    color: var(--ssia-primary);
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--ssia-text-light);
    margin-top: 1rem;
    max-width: 700px;
    margin-inline-start: auto;
    margin-inline-end: auto;
}

.risk-management-box {
    background: linear-gradient(135deg, #e6f0ff 0%, var(--ssia-white) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-inline-end: 4px solid var(--ssia-primary);
    margin-bottom: 4rem;
}

.risk-management-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 2rem;
}

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

.risk-management-card {
    background-color: var(--ssia-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-management-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.risk-management-card-accent {
    border-inline-end: 4px solid #ffd700;
}

.risk-management-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.risk-management-card-text {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive styles for Investment Philosophy page */
@media (max-width: 992px) {
    .philosophy-overview-box,
    .risk-management-box {
        padding: 2rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .philosophy-goals-grid,
    .pillars-grid,
    .risk-management-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-overview-box,
    .risk-management-box {
        padding: 1.75rem;
    }

    .pillar-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .philosophy-overview-box,
    .risk-management-box,
    .pillar-card,
    .philosophy-goal-card {
        padding: 1.5rem;
    }

    .pillar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Investment Areas Page Styles */
.investment-areas-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.investment-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.investment-area-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-inline-end: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.investment-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.investment-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-inline-end-color: var(--ssia-secondary);
}

.investment-area-card:hover::before {
    opacity: 1;
}

.investment-area-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--ssia-white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.investment-area-card:hover .investment-area-icon {
    transform: scale(1.1) rotate(5deg);
}

.investment-area-icon svg {
    width: 40px;
    height: 40px;
}

.investment-area-icon-blue {
    background: linear-gradient(135deg, var(--ssia-primary), #004688);
}

.investment-area-icon-green {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.investment-area-icon-yellow {
    background: linear-gradient(135deg, #ffd700, #ffc107);
}

.investment-area-icon-purple {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.investment-area-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.investment-area-card:hover .investment-area-title {
    color: var(--ssia-primary);
}

.investment-area-description {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.investment-area-button {
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-inline-start: auto;
    margin-inline-end: auto;
    white-space: nowrap;
}

.investment-area-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.investment-area-button:focus {
    outline: 2px solid var(--ssia-primary);
    outline-offset: 2px;
}

.investment-area-button svg {
    transition: transform 0.3s ease;
}

.investment-area-button:hover svg {
    transform: translateX(4px);
}

/* Investment Area Modal Styles */
.investment-modal-overlay {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-index-modal);
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.investment-modal {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

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

.investment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.investment-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ssia-text-dark);
    margin: 0;
}

.investment-modal-close {
    background: none;
    border: none;
    color: var(--ssia-text-dark);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 40px;
    height: 40px;
}

.investment-modal-close:hover {
    background-color: var(--ssia-gray);
    color: var(--ssia-secondary);
}

.investment-modal-close:focus {
    outline: 2px solid var(--ssia-primary);
    outline-offset: 2px;
}

.investment-modal-body {
    padding: 2rem;
}

.investment-modal-icon-large {
    display: flex;
    justify-content: center;
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ssia-primary), var(--ssia-secondary));
    color: var(--ssia-white);
}

.investment-modal-icon-large svg {
    width: 50px;
    height: 50px;
}

.investment-modal-description {
    font-size: 1.1rem;
    color: var(--ssia-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.investment-modal-achievements {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    border-inline-start: 4px solid var(--ssia-primary);
}

.investment-modal-achievements-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1.5rem;
}

.investment-modal-achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investment-modal-achievements-list li {
    position: relative;
    padding-inline-start: 2rem;
    color: var(--ssia-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.investment-modal-achievements-list li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--ssia-primary), var(--ssia-secondary));
    color: var(--ssia-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.investment-modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

/* Responsive styles for Investment Areas page */
@media (max-width: 992px) {
    .investment-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .investment-modal {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .investment-areas-grid {
        grid-template-columns: 1fr;
    }

    .investment-area-card {
        padding: 2rem;
    }

    .investment-modal-header,
    .investment-modal-body,
    .investment-modal-footer {
        padding-inline-start: 1.5rem;
        padding-inline-end: 1.5rem;
    }

    .investment-modal-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .investment-area-card {
        padding: 1.5rem;
    }

    .investment-area-icon {
        width: 70px;
        height: 70px;
    }

    .investment-area-icon svg {
        width: 35px;
        height: 35px;
    }

    .investment-area-title {
        font-size: 1.3rem;
    }

    .investment-modal {
        max-width: 95%;
        max-height: 95vh;
    }

    .investment-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .investment-modal-body {
        padding: 1.5rem;
    }

    .investment-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .investment-modal-title {
        font-size: 1.5rem;
    }

    .investment-modal-icon-large {
        width: 80px;
        height: 80px;
    }

    .investment-modal-icon-large svg {
        width: 40px;
        height: 40px;
    }
}

/* Area Details Page Styles */
.area-details-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.area-details-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.area-details-hero-background {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.area-details-hero-overlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(74, 123, 200, 0.75) 100%);
}

.area-details-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--ssia-white);
    padding: 2rem;
    max-width: 900px;
}

.area-details-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.area-details-hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ssia-secondary), var(--ssia-primary));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.area-details-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.area-details-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-top: 3rem;
}

.area-details-main {
    min-width: 0;
}

.company-cards-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.company-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-card:hover .company-card-image img {
    transform: scale(1.05);
}

.company-card-overlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.company-card-content {
    padding: 2rem;
}

.company-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ssia-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.company-card-location svg {
    width: 16px;
    height: 16px;
    color: var(--ssia-secondary);
}

.company-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.company-card-description {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-card-achievements {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    border-inline-start: 4px solid var(--ssia-primary);
}

.achievements-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievements-list li {
    position: relative;
    padding-inline-start: 1.75rem;
    color: var(--ssia-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    inset-inline-start: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--ssia-primary), var(--ssia-secondary));
    color: var(--ssia-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Sidebar Styles */
.area-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--ssia-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sidebar-nav-link:hover {
    background-color: #f8fafc;
    border-color: var(--ssia-primary);
    color: var(--ssia-primary);
    transform: translateX(4px);
}

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

.sidebar-nav-link.active .sidebar-nav-icon {
    color: var(--ssia-white);
}

.sidebar-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ssia-secondary);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.sidebar-nav-link:hover .sidebar-nav-icon {
    color: var(--ssia-primary);
}

.sidebar-nav-text {
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
}

.error-state {
    text-align: center;
    padding: 4rem 2rem;
}

.error-state h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.error-state p {
    font-size: 1.1rem;
    color: var(--ssia-text-light);
    margin-bottom: 2rem;
}

/* Responsive Styles for Area Details */
@media (max-width: 992px) {
    .area-details-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .area-details-sidebar {
        order: -1;
    }

    .sidebar-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .area-details-hero-title {
        font-size: 2.5rem;
    }

    .area-details-hero-description {
        font-size: 1.1rem;
    }

    .company-card-content {
        padding: 1.5rem;
    }

    .company-card-title {
        font-size: 1.5rem;
    }

    .sidebar-nav-link {
        padding: 0.875rem;
    }
}

@media (max-width: 576px) {
    .area-details-hero {
        min-height: 300px;
    }

    .area-details-hero-title {
        font-size: 2rem;
    }

    .area-details-hero-description {
        font-size: 1rem;
    }

    .company-card-image {
        height: 220px;
    }

    .company-card-content {
        padding: 1.25rem;
    }

    .company-card-title {
        font-size: 1.3rem;
    }

    .company-card-achievements {
        padding: 1.25rem;
    }

    .sidebar-card {
        padding: 1.25rem;
    }

    .sidebar-title {
        font-size: 1.3rem;
    }
}

/* Projects Page Styles */
.projects-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.projects-filter-section {
    background-color: var(--ssia-white);
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--ssia-primary);
    background-color: transparent;
    color: var(--ssia-primary);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.filter-btn.active {
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-stat-badge {
    background: linear-gradient(135deg, var(--ssia-secondary), var(--ssia-primary));
    color: var(--ssia-white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category-badge {
    display: inline-block;
    background-color: #f0f4f8;
    color: var(--ssia-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.project-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ssia-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.project-location svg {
    width: 16px;
    height: 16px;
    color: var(--ssia-secondary);
    flex-shrink: 0;
}

.project-card-description {
    font-size: 1.05rem;
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-specs {
    background-color: #f8fafc;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-inline-start: 4px solid var(--ssia-primary);
}

.specs-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ssia-primary);
    margin-bottom: 0.75rem;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.specs-list li {
    position: relative;
    padding-inline-start: 1.5rem;
    color: var(--ssia-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.specs-list li::before {
    content: '•';
    position: absolute;
    inset-inline-start: 0;
    color: var(--ssia-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.project-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-inline-start: auto;
    margin-inline-end: auto;
}

.project-learn-more-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.project-learn-more-btn svg {
    transition: transform 0.3s ease;
}

.project-learn-more-btn:hover svg {
    transform: translateX(4px);
}

.no-projects-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ssia-text-light);
    font-size: 1.1rem;
}

/* Gallery Page Styles */
.gallery-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.gallery-filter-section {
    background-color: var(--ssia-white);
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    color: var(--ssia-white);
}

.gallery-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-item-project {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUp 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    inset-inline-end: 0;
    background: none;
    border: none;
    color: var(--ssia-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    color: var(--ssia-white);
    max-width: 800px;
}

.lightbox-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.lightbox-project {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lightbox-project strong {
    color: var(--ssia-secondary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--ssia-white);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    inset-inline-start: -3rem;
}

.lightbox-next {
    inset-inline-end: -3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles for Projects and Gallery */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .projects-filter-section,
    .gallery-filter-section {
        padding: 1.5rem 0;
    }

    .filter-bar {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .project-card-content {
        padding: 1.5rem;
    }

    .project-card-title {
        font-size: 1.5rem;
    }

    .lightbox-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .lightbox-close {
        top: -2.5rem;
    }

    .lightbox-prev {
        inset-inline-start: -2.5rem;
    }

    .lightbox-next {
        inset-inline-end: -2.5rem;
    }

    .lightbox-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        padding: 0.75rem;
    }

    .lightbox-prev {
        inset-inline-start: 0.5rem;
    }

    .lightbox-next {
        inset-inline-end: 0.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        inset-inline-end: 0.5rem;
    }
}

/* Admin Dashboard Styles */
.admin-dashboard {
    min-height: 100vh;
    background-color: #f8fafc;
    padding: 2rem 0;
}

.admin-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 2rem;
}

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

.admin-tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--ssia-text-light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.admin-tab:hover {
    color: var(--ssia-primary);
}

.admin-tab.active {
    color: var(--ssia-primary);
    border-bottom-color: var(--ssia-primary);
}

.admin-section {
    background-color: var(--ssia-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin: 0;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background-color: #f8fafc;
}

.admin-table th {
    padding: 1rem;
    text-align: start;
    font-weight: 600;
    color: var(--ssia-primary);
    border-bottom: 2px solid #e5e7eb;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table tbody tr:hover {
    background-color: #f8fafc;
}

.table-title {
    font-weight: 600;
    color: var(--ssia-text-dark);
}

.table-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.published {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.draft {
    background-color: #fee2e2;
    color: #991b1b;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-edit {
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    border: none;
}

.btn-edit:hover {
    background-color: #1a2f4a;
}

.btn-delete {
    background-color: var(--ssia-secondary);
    color: var(--ssia-white);
    border: none;
}

.btn-delete:hover {
    background-color: #c82333;
}

/* Modal Styles for Admin */
.modal-overlay {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.modal-content {
    background-color: var(--ssia-white);
    border-radius: 1rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content.modal-large {
    max-width: 1000px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--ssia-text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: var(--ssia-secondary);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--ssia-text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--ssia-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* Careers Page Styles */
.careers-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

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

.job-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.job-card-header {
    margin-bottom: 1.5rem;
}

.job-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.job-card-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.job-badge {
    padding: 0.375rem 0.875rem;
    background-color: #f0f4f8;
    color: var(--ssia-primary);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.job-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ssia-text-light);
    font-size: 0.95rem;
}

.job-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--ssia-secondary);
    flex-shrink: 0;
}

.job-card-description {
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin: 1rem 0;
}

.job-card-actions {
    margin-top: auto;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-details-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
}

.job-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-details-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
}

.job-details-content p {
    color: var(--ssia-text-light);
    line-height: 1.8;
    white-space: pre-wrap;
}

.job-details-actions {
    margin-top: 2rem;
}

.no-jobs-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--ssia-text-light);
    font-size: 1.1rem;
}

/* News Page Styles */
.news-page {
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
}

.featured-news-section {
    background-color: var(--ssia-white);
    padding: 4rem 0;
}

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

.featured-news-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.05);
}

.featured-news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-news-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-news-summary {
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.featured-news-date {
    color: var(--ssia-text-light);
    font-size: 0.9rem;
}

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

.news-card {
    background-color: var(--ssia-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #f0f4f8;
    color: var(--ssia-primary);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ssia-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-card-summary {
    color: var(--ssia-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.news-card-date {
    color: var(--ssia-text-light);
    font-size: 0.9rem;
}

.news-card-read-more {
    color: var(--ssia-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-details-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.news-details-category {
    padding: 0.5rem 1rem;
    background-color: var(--ssia-primary);
    color: var(--ssia-white);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.news-details-date {
    color: var(--ssia-text-light);
    font-size: 0.95rem;
}

.news-details-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 1rem;
}

.news-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-details-content {
    color: var(--ssia-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    white-space: pre-wrap;
}

/* Responsive Styles for Admin, Careers, and News */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .jobs-grid,
    .news-grid,
    .featured-news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-tabs {
        flex-direction: column;
    }

    .admin-tab {
        width: 100%;
        text-align: start;
    }

    .modal-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .jobs-grid,
    .news-grid,
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .admin-dashboard {
        padding: 1rem 0;
    }

    .admin-section {
        padding: 1.5rem;
    }

    .admin-table {
        font-size: 0.875rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    .table-actions {
        flex-direction: column;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .job-card,
    .news-card,
    .featured-news-card {
        padding: 1.5rem;
    }
}
