/* Investment page specific styles */

/*
.hero-investment {
    
}
*/

.hero-investment {
    background: linear-gradient(rgba(10, 25, 40, 0.55), rgba(10, 25, 40, 0.55)), url('/assets/images/hero-investment.webp') center/cover;
    padding: 120px 20px;
    max-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

 

    .hero-investment .container.hero-inner {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-investment h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        letter-spacing: -0.5px;
    }

    .hero-investment p {
        font-size: 1.5rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
        position: relative;
        padding-bottom: 1.5rem;
    }

        .hero-investment p::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            border-radius: 3px;
        }

    .hero-investment .hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

    }

    .hero-investment .btn-primary {
        background-color: #eb1616;
        color: white;
        text-decoration: none;
        font-weight: 700;
        border-radius: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        border: 2px solid #eb1616;
        cursor: pointer;
        display: inline-block;
        box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
        padding: 12px 30px;
        font-size: 18px;
    }



        .hero-investment .btn-primary:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

          

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.hero-investment::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 20s infinite ease-in-out;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-investment h1 {
        font-size: 2.8rem;
    }

    .hero-investment p {
        font-size: 1.3rem;
    }

    .hero-investment {
        padding: 120px 20px;
        min-height: 75vh;
    }
}

@media (max-width: 768px) {
    .hero-investment h1 {
        font-size: 2.2rem;
    }

    .hero-investment p {
        font-size: 1.1rem;
        padding: 0 1rem 1.5rem;
    }

        .hero-investment p::after {
            width: 80px;
        }

    .hero-investment .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .hero-investment {
        padding: 100px 20px;
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-investment h1 {
        font-size: 1.8rem;
    }

    .hero-investment p {
        font-size: 1rem;
    }

    .hero-investment .btn-primary {
        padding: 0.500rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-investment .hero-buttons {
        gap: 1rem;
    }

    .hero-investment {
        padding: 80px 20px;
        min-height: 65vh;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Opening Section Styles */
.opening-section {
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

   /* .opening-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(26, 95, 180, 0.1) 0%, transparent 50%);
        z-index: 1;
    }*/


.opening-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.opening-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.opening-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.opening-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.opening-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

    .opening-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        background: white;
    }

    .opening-card:nth-child(1):hover {
        border-top: 4px solid #1a5fb4;
    }

    .opening-card:nth-child(2):hover {
        border-top: 4px solid #ff0000;
    }

    .opening-card:nth-child(3):hover {
        border-top: 4px solid #20c997;
    }

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.opening-card:hover .card-icon {
    transform: scale(1.2);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0d3b7c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

    .card-text p {
        margin: 0;
    }

.opening-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .opening-cta .cta-button {
        background: linear-gradient(135deg, #ff0000 0%, #e55a2b 100%);
        color: white;
        padding: 18px 45px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
        border: none;
        cursor: pointer;
    }

        .opening-cta .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
            background: linear-gradient(135deg, #e55a2b 0%, #ff0000 100%);
        }

        .opening-cta .cta-button svg {
            transition: transform 0.3s ease;
        }

        .opening-cta .cta-button:hover svg {
            transform: translateX(5px);
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .opening-content {
        gap: 30px;
    }

    .opening-card {
        padding: 35px 25px;
    }

    .opening-title {
        font-size: 42px;
    }

    .opening-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .opening-section {
        padding: 80px 0;
    }

    .opening-hero {
        margin-bottom: 60px;
    }

    .opening-content {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
        gap: 30px;
    }

    .opening-title {
        font-size: 36px;
    }

    .opening-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .opening-icon {
        width: 80px;
        height: 80px;
    }

        .opening-icon svg {
            width: 60px;
            height: 60px;
        }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .opening-section {
        padding: 60px 0;
    }

    .opening-hero {
        margin-bottom: 50px;
    }

    .opening-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .opening-subtitle {
        font-size: 16px;
    }

    .opening-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .opening-cta .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Animation for cards on load */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.opening-card {
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
}

    .opening-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .opening-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .opening-card:nth-child(3) {
        animation-delay: 0.3s;
    }


/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 80px 20px;
    background: #e8ebf1;
    position: relative;
    overflow: hidden;
}

    
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b7c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #1a5fb4, #ff0000);
        border-radius: 2px;
    }

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.mv-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.mv-card {
    flex: 1;
    max-width: 500px;
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(26, 95, 180, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mission-card {
    border-top: 5px solid #1a5fb4;
}

.vision-card {
    border-top: 5px solid #ff0000;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a5fb4, #ff0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(26, 95, 180, 0.15);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mv-header {
    text-align: center;
    margin-bottom: 30px;
}

.mv-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #1a5fb4 0%, #0d3b7c 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-card .mv-label {
    background: linear-gradient(135deg, #ff0000 0%, #e55a2b 100%);
}

.mv-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d3b7c;
    line-height: 1.3;
    margin-bottom: 10px;
}

.mv-content {
    text-align: center;
    margin-bottom: 40px;
}

    .mv-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        font-weight: 500;
    }

.mv-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(26, 95, 180, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mv-card:hover .feature-item {
    transform: translateX(10px);
    background: rgba(26, 95, 180, 0.1);
}

.vision-card .feature-item {
    background: rgba(255, 0, 0, 0.05);
}

.vision-card:hover .feature-item {
    background: rgba(255, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.mv-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 60px;
}

.divider-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, #1a5fb4, #ff0000, #1a5fb4);
    border-radius: 1px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5fb4 0%, #ff0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(26, 95, 180, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.divider-icon svg {
    fill: white;
}

.mv-bottom {
    max-width: 800px;
    margin: 0 auto;
}

.mv-quote {
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.05) 0%, rgba(255, 0, 0, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border-left: 4px solid #1a5fb4;
    border-right: 4px solid #ff0000;
}

    .mv-quote svg {
        margin-bottom: 20px;
        opacity: 0.8;
    }

.quote-text {
    font-size: 20px;
    font-weight: 600;
    color: #0d3b7c;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

    .quote-text::before,
    .quote-text::after {
        content: '"';
        font-size: 32px;
        color: #ff0000;
        opacity: 0.3;
        font-weight: 900;
    }

.quote-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .mv-container {
        gap: 40px;
    }

    .mv-card {
        padding: 40px 30px;
    }

    .mv-title {
        font-size: 24px;
    }

    .mv-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .mv-container {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 60px;
    }

    .mv-card {
        max-width: 100%;
        width: 100%;
    }

    .mv-divider {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        justify-content: center;
        gap: 30px;
    }

    .divider-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, #1a5fb4, #ff0000);
    }

    .divider-icon {
        transform: rotate(90deg);
    }

    .mv-quote {
        padding: 30px 25px;
    }

    .quote-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
    }

        .mv-icon svg {
            width: 50px;
            height: 50px;
        }

    .mv-title {
        font-size: 22px;
    }

    .feature-item {
        padding: 10px 15px;
    }

    .feature-icon {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }

    .feature-text {
        font-size: 14px;
    }

    .mv-quote {
        padding: 25px 20px;
    }

    .quote-text {
        font-size: 16px;
    }

    .quote-author {
        font-size: 14px;
    }
}

/* Animation for cards on load */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mission-card {
    animation: slideInFromLeft 0.6s ease-out forwards;
    opacity: 0;
}

.vision-card {
    animation: slideInFromRight 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}


/* Features & Tools Section Styles */
.features-tools-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

    .features-tools-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(26, 95, 180, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

    .features-tools-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0d3b7c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .main-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #1a5fb4, #ff0000);
        margin: 20px auto 0;
        border-radius: 2px;
    }

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.features-intro {
    text-align: center;
    margin-bottom: 50px;
}

.features-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d3b7c;
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(26, 95, 180, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid rgba(26, 95, 180, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1a5fb4, #ff0000);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(26, 95, 180, 0.15);
        border-color: rgba(26, 95, 180, 0.1);
    }

        .feature-item:hover::before {
            opacity: 1;
        }

.feature-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 46px;
    }

    .subtitle {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-tools-section {
        padding: 80px 0;
    }

    .main-title {
        font-size: 38px;
        padding: 0 20px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .features-title {
        font-size: 24px;
        padding: 10px 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }

    .feature-item {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 85px;
        height: 85px;
        font-size: 48px;
    }

    .feature-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .features-tools-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 20px;
        padding: 8px 20px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .feature-text {
        font-size: 17px;
    }
}

/* Animation for feature items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

    .feature-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .feature-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .feature-item:nth-child(6) {
        animation-delay: 0.6s;
    }

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.solutions-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 28px;
}

.solutions-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 30, 50, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(15, 30, 50, 0.2);
}

.solutions-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solutions-grid {
    display: none;
}

.solution-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(15, 30, 50, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 30, 50, 0.12);
}

.solution-card-content {
    padding: 0;
}

.solution-card h3 {
    font-size: 20px;
    color: #163a7a;
    margin-bottom: 12px;
}

.solution-card .quote {
    font-style: italic;
    color: #334155;
    margin-bottom: 12px;
}

.solution-card p {
    color: #556677;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .solutions-image-wrapper {
        flex: 1;
        width: 100%;
    }

    .solutions-content {
        flex: 1;
        width: 100%;
    }

    .solution-card {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: 0 20px;
    }
}

/* Let's Get Started Section */
.get-started-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 25, 40, 0.65), rgba(10, 25, 40, 0.65)),
                url('/assets/images/card-background.webp') no-repeat center/cover;
    background-attachment: fixed;
    color: #fff;
}

.get-started-header {
    text-align: center;
    margin-bottom: 50px;
}

.get-started-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 800;
}

.get-started-header p {
    font-size: 18px;
    color: #e6eefc;
    max-width: 700px;
    margin: 0 auto;
}

.get-started-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.get-started-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    color: #333;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.get-started-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.get-started-card:hover .card-image img {
    transform: scale(1.08);
}

.get-started-card h3 {
    font-size: 22px;
    color: #163a7a;
    margin-bottom: 14px;
    font-weight: 700;
}

.get-started-card p {
    font-size: 15px;
    color: #556677;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 480px) {
    .investment-hero h1 {
        font-size: 24px;
    }

    .hero-inner {
        padding: 0 20px;
    }
    
    .get-started-section {
        padding: 60px 0;
    }
    
    .get-started-header h2 {
        font-size: 28px;
    }
    
    .get-started-card {
        padding: 24px;
    }
}

/* Client Feedback styles */
.clients-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#ffffff 0%, #f6f9fc 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 28px;
    align-items: stretch;
}

.testimonial {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 28px 26px;
    border-radius: 12px;
    border-left: 6px solid rgba(26,95,180,0.12);
    box-shadow: 0 10px 30px rgba(15,30,60,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15,30,60,0.12);
}

.testimonial:before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 44px;
    color: rgba(26,95,180,0.08);
    font-weight: 700;
    line-height: 1;
}

.testimonial .text {
    font-style: normal;
    font-size: 16px;
    line-height: 1.75;
    color: #273344;
    margin: 6px 0 14px 0;
}

.testimonial .author {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #0f4bb7;
    font-weight: 700;
}

.testimonial .meta {
    display: inline-block;
    margin-left: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

