.investment-philosophy .text {
    font-size: calc(1.2vw + 0.1rem);
    line-height: calc(2vw + 0.1rem);
    color: #005881;
}

.fee-structure .content-container {
    border-radius: 20px;
    background-image: url('/img/bg-5.png');
    background-size: cover;
    background-position: center;
    height: 500px;
    align-content: center;
}

.fee-structure .inner-container {
    align-content: center;
    padding: 6%;
}

.fee-structure .sub-heading {
    margin-bottom: 1%;
    font-size: calc(3vw + 0.1rem);
    color: white;
}

.fee-structure .text {
    color: white;
    font-size: calc(1.1vw + 0.1rem);
    line-height: calc(2vw + 0.1rem);

}

/*  */

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

.process-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #d4af37);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.process-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.process-card:hover .process-icon::after {
    transform: translateX(100%);
}

.process-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.process-content {
    color: #4b5563;
    line-height: 1.6;
}

.stats-container {
    background: linear-gradient(135deg, #006039, #006039);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

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

@keyframes float {

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

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

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: wave 8s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* The Savax Advantage */

.the-savax-advantage .row {
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.the-savax-advantage .col1 {
    width: 45%;
}

.the-savax-advantage .col2 {
    width: 45%;
}


.the-savax-advantage .sub-heading {
    width: 100%;
    margin-bottom: 3%;
}

.the-savax-advantage .text,
.benefits-of-investing .text,
.our-strategic-process .text {
    font-size: calc(1vw + 0.1rem);
    margin-bottom: calc(1vw + 0.1rem);
    line-height: calc(1.3vw + 0.1rem);
}

.the-savax-advantage .title,
.benefits-of-investing .title,
.our-strategic-process .title {
    font-size: calc(1.3vw + 0.1rem);
    margin-bottom: calc(0.5vw + 0.1rem);
}

/* benefits-of-investing */
.benefits-of-investing .row {
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefits-of-investing .col1 {
    width: 45%;
}

.benefits-of-investing .col2 {
    width: 45%;
}


.benefits-of-investing .sub-heading {
    width: 100%;
    margin-bottom: 3%;
}

/* Our Strategic Process  */

.our-strategic-process .row {
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.our-strategic-process .col1 {
    width: 45%;
}

.our-strategic-process .col2 {
    width: 45%;
}


.our-strategic-process .sub-heading {
    width: 100%;
    margin-bottom: 3%;
}

@media screen and (max-width:900px) {
    .investment-philosophy .text {
        font-size: 1rem;
        line-height: 1.3;
        color: #005881;
    }

    .fee-structure .content-container {
        height: 199px;
        align-content: center;
    }

    .fee-structure .sub-heading {
        margin-bottom: 1%;
        font-size: 1.7rem;
        color: white;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .the-savax-advantage .row {
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    .the-savax-advantage .title,
    .benefits-of-investing .title,
    .our-strategic-process .title {
        font-size: 1rem;
    }

    .the-savax-advantage .text,
    .benefits-of-investing .text,
    .our-strategic-process .text {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .the-savax-advantage .col1 {
        width: 100%;
    }

    .the-savax-advantage .col2 {
        width: 100%;
    }

    .benefits-of-investing .row {
        flex-direction: column;
        row-gap: 20px;
    }

    .benefits-of-investing .col1,
    .benefits-of-investing .col2 {
        width: 100%;
    }

    .our-strategic-process .row {
        row-gap: 20px;
        flex-direction: column-reverse;
    }
    .our-strategic-process .col1{
        width: 100%;
    }
    .our-strategic-process .col2{
        width:100%;
    }
}