.investment-philosophy {
    padding: 50px 0;
    background: #f6feff;
    position: relative;
}

.investment-philosophy .top-dot {
    top: 8%;
    right: 69%;
}

.investment-philosophy .dot {
    position: absolute;
    width: 147px;
    height: 51px;
    background-image: radial-gradient(#8d8f8f 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    z-index: 10;
}

.investment-philosophy .section-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.investment-philosophy .section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #ffffff;
    color: #002866;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.investment-philosophy .section-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    position: relative;
}

.investment-philosophy .section-heading h2::before {
    content: "";
    width: 67px;
    height: 2px;
    background: #2a6df5;
    position: absolute;
    right: 95px;
    top: 50%;
    transform: translateY(-50%);
}

.investment-philosophy .section-heading p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 18px;
}

.investment-philosophy .philosophy-card {
    background: #d6eff2;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 35px;
    align-items: flex-start;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    border-left: 6px solid #0d6efd;
}

.investment-philosophy .philosophy-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.investment-philosophy .philosophy-content p {
    color: #000b62;
    line-height: 1.5;
    margin-bottom: 5px;
    font-size: 20px;
}

.investment-philosophy .philosophy-content strong {
    color: #111827;
}

.investment-philosophy .philosophy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.investment-philosophy .point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 15px 18px;
    border-radius: 12px;
    transition: .3s;
}

.investment-philosophy .point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.investment-philosophy .point i {
    color: #0d6efd;
    font-size: 18px;
}

.investment-philosophy .point span {
    font-weight: 600;
    color: #1f2937;
}

@media (min-width:1200px) and (max-width:1399px) {
    .investment-philosophy .section-heading h2 {
        font-size: 30px;
    }

    .investment-philosophy .section-heading h2::before {
        right: 115px;
    }

    .investment-philosophy .section-tag {
        font-size: 14px;
    }

    .investment-philosophy .section-heading p {
        font-size: 16px;
    }

    .investment-philosophy .philosophy-content p {
        font-size: 17px;

    }

    .investment-philosophy .section-heading h2 {
        margin-bottom: 4px;
    }

    .investment-philosophy .philosophy-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
}
@media (min-width:1901px) and (max-width:3000px) {
        .investment-philosophy .section-heading h2 {
        font-size: 45px;
    }

    .investment-philosophy .section-heading h2::before {
        right: 50px;
    }

    .investment-philosophy .section-tag {
        font-size: 18px;
    }

    .investment-philosophy .section-heading p {
        font-size: 22px;
    }

    .investment-philosophy .philosophy-content p {
        font-size: 24px;

    }

    .investment-philosophy .section-heading h2 {
        margin-bottom: 4px;
    }

    .investment-philosophy .philosophy-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
}
@media(max-width:768px) {

    .investment-philosophy .philosophy-card {
        flex-direction: column;
        padding: 30px;
    }

    .investment-philosophy .section-heading h2 {
        font-size: 2rem;
    }

    .investment-philosophy .philosophy-points {
        grid-template-columns: 1fr;
    }

    .investment-philosophy .philosophy-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 28px;
    }

}