FeatureSection {
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    height: auto;
}
FeatureSection .head-name {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
.FJ-imp-card {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    /* color: black; */
    color: #383e45;
}
.FJ-pdf-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex-wrap: wrap; */
    width: 90%;
    height: auto;
    background: #ffffff08;
    border: none;
    border-radius: 8px;
    gap: 10px;
    padding: 20px;
    color: rgb(40, 37, 37);
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.FJ-pdf-description h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    /* padding: 0 20px; */
    color: #3a68b4;
}

.FJ-pdf-description p {
    line-height: 30px;
    font-size: 1.2rem;
    /* text-align: center; */
    padding: 0 20px 20px 20px;
}
.FJ-pdf-description .highlight {
    font-size: 3.5rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

/*cards style */
.detailed-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    justify-items: center;
    margin: 90px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 90px;
}

.card {
    /* flex: 1 1 300px; */
    /* width: 380px; */
    position: relative;
    /* overflow: hidden; */
    max-width: 500px;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff8040;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /* background: linear-gradient(135deg, var(--text-dark) 0%, #3b82f6 50%, #8b5cf6 100%); */
}

.card h2,
.card p,
.card ul {
    position: relative;
    z-index: 1;
}

.second-card,
.fourth-card,
.sixth-card {
    border: 2px solid #001bb7;
}

.card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}
.card h2 {
    color: #3a68b4;
    /* color: var(--text-dark); */
    font-weight: 700;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    /* background-color: black; */
}

.card li {
    /* color: black; */
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.card p {
    color: black;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    z-index: 2;
}

.card ul {
    list-style-type: none;
    padding: 0;
}

.features-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
    padding: 20px 10%;
}

.features-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-content li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.features-content .tick {
    color: green;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.features-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--text-dark) 0%, #3b82f6 50%, #8b5cf6 100%);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* secure-header */
.secure-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: auto;
    margin-top: 50px;
    padding: 20px;
}
.secure-heading h2 {
    font-size: 2rem;
    font-weight: 700;
}

.secure-heading h2 span {
    font-size: 3.2rem;
}

@media (max-width: 900px) {
    .features-section {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
    }

    .features-image img {
        max-width: 100%;
    }

    .secure-heading h2 {
        font-size: 4vw;
    }

    .FJ-pdf-description .highlight {
        font-size: 3rem;
        font-family: "Cormorant Garamond", serif;
        font-weight: 600;
    }
}

@media (max-width: 970px) {
    .detailed-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 750px) {
    .detailed-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .FJ-pdf-description h3 {
        font-size: 1.5rem;
        line-height: 50px;
    }
    .secure-heading {
        padding: 20px 40px 20px 40px;
    }
}
@media (max-width: 480px) {
    .detailed-cards {
        grid-template-columns: 1fr;
    }
    .FJ-pdf-description p {
        line-height: 25px;
        font-size: 1rem;
        /* text-align: center; */
        padding: 0;
    }
}

@media (max-width: 515px) {
    .secure-heading h2 {
        font-size: 1.3rem;
    }
    .FJ-pdf-description h3 {
        font-size: 1.5rem;
        line-height: 40px;
    }
}
