.serviceCardBox{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.serviceCard{
    aspect-ratio: 4 / 5;
    background-color: var(--pfiPurpleLite);
    border-radius: 32px;
    background: var(--pfiPurpleLite);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.serviceCard-dynislnd{
    width: 200px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.serviceCard-dynislnd:hover {
    padding: 0 45px 0 45px ;
}
.utilityLayer{
    display: flex;
}
.intServiceCardGrid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.profileCard{
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    overflow: hidden;
}
.profileBase img{
    width: 100%;
    border-radius: 32px 32px 0 0;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.258);
    border-bottom: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    object-fit: cover;
}
.profileBase img:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}
.profileNameBox{
    height: 170px;
    display: flex;
    flex-direction: column;
    background: var(--pfiPurpleLite30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-radius: 0 0 32px 32px;
    align-items: center;
    padding: 55px 0 0 0;
    box-sizing: border-box;
    gap: 13px;
}
.profileNameBox h4, .profileNameBox p{
    text-align: center;
}
.profileNameBox p{
    color: var(--pfiGray);
    font-weight: var(--fontWeightLite);
    padding: 0 10px;
    box-sizing: border-box;
}
.prflCrdUtilLyr{
    z-index: 1;
    height: fit-content !important;
    width: 100% !important;
    aspect-ratio: 5/4;
}
.socMedDynIslnd{
    position: absolute;
    border-radius: 80px;
    background-color: var(--pfiBlack);
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 11px;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    transition: 0.3s;
}
.prflCrdSocMedIcn{
    height: 55px;
    width: 55px;
}

.srvcNotchBtn{
    background-color: var(--pfiWhite);
    height: 50px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fontPrimary);
    border-radius: 25px;
    transition: 0.3s;
    color: var(--pfiBlack);
    text-decoration: none;
}
.srvcNotchBtn:hover{
    background-color: var(--pfiPurpleLite);
    width: 150px;
    color: var(--pfiWhite);
    cursor: pointer;
}
.srvcNotchBtn:active{
    scale: 0.9;
}







@media screen and (max-width: 1215px) {
    .intServiceCardGrid{
        grid-template-columns: repeat(1, 1fr);
    }
}



@media screen and (max-width: 1015px) {
    .serviceCardBox{
        grid-template-columns: repeat(2, 1fr);;
    }
}
@media screen and (max-width: 635px) {
    .serviceCardBox{
        grid-template-columns: 1fr;
    }
    .profileNameBox{
        height: fit-content;
        padding: 55px 10px 20px 10px;
    }
    .profileNameBox p{
        font-size: 16px;
    }
    .socMedDynIslnd{
        padding: 10px;
    }
    .profileNameBox{
        gap: 7px;
    }
    .profileNameBox h4{
        font-size: 25px;
    }
}

@media screen and (max-width: 411px) {
    .site-h1{
        font-size: 35px;
        line-height: 43px;
    }
    .notch-p{
        font-size: 16px;
    }
    .serviceCardBox{
        gap: 20px;
    }
    .serviceCard{
        border-radius: var(--borderRadiusSmallScreen);
    }
    .serviceCard-dynislnd{
        width: 150px;
    }
    .serviceCard-dynislnd:hover{
        padding: 0 40px 0 40px;
    }
    .notch-p:hover{
        font-size: 16px;
    }
}