﻿.IntegratedImg {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .IntegratedImg:hover {
        transform: translateY(-5px);
    }

    .IntegratedImg img {
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

        .IntegratedImg img:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }


.Plitem {
    margin-top :30px;
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 25px;
    border: 3px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

    .Plitem:hover {
        background: #9eb0e6;
        box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
        -webkit-transition: all .5s ease 0;
        transition: all .5s ease 0;
        transition: all 0.5s ease 0s;
    }


/* for six cards features*/

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

.icon-wrapper {
    background: #f0f7ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon {
    width: 40px;
    height: 40px;
    color: #0d6efd;
}

h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hover-content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F4F6FF;
    color: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover .hover-content {
    opacity: 1;
}

.hover-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/*////////////////////////////////////////////////////////////*/
.SubCompTitle {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 1rem;
    text-align: start;
}
.floating-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}
.circlee {
    position: absolute;
    border-radius: 50%;
    background: #FBFBFB;
}

.circle-1 {

    width: 70px;
    height: 70px;
    top: 20%;
    left: 15%;
    animation: jump1 2s infinite ease-in-out;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation: jump2 2.5s infinite ease-in-out;
}

.circle-3 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 25%;
    animation: jump3 1.8s infinite ease-in-out;
}

.circle-4 {
    width: 50px;
    height: 50px;
    bottom: 25%;
    right: 25%;
    animation: jump4 2.2s infinite ease-in-out;
}

.circle-5 {
    width: 65px;
    height: 65px;
    top: 45%;
    left: 40%;
    animation: jump5 2.3s infinite ease-in-out;
}

.circle-6 {
    width: 55px;
    height: 55px;
    bottom: 40%;
    right: 35%;
    animation: jump6 1.9s infinite ease-in-out;
}

@keyframes jump1 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }
}

@keyframes jump2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes jump3 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

@keyframes jump4 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes jump5 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }
}

@keyframes jump6 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-45px);
    }
}
h3com, h1com {
    color: #1f2937;
    font-style: italic;
}

.lead {
    color: #4b5563;
}

/*For 16 cards*/


.icon-card {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 20px;
}

    .icon-card:hover {
        transform: translateY(-5px);
        border-color: #dee2e6;
    }

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

    .icon-circle i {
        font-size: 1.8rem;
        color: #FFD700;
    }

.icon-card:hover .icon-circle {
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.15);
    transform: scale(1.05);
    border-color: #FFC100;
}

.icon-card h5 {
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .icon-circle {
        width: 60px;
        height: 60px;
    }

        .icon-circle i {
            font-size: 1.4rem;
        }

    .icon-card h5 {
        font-size: 0.8rem;
    }
}


