/* Banner Box */
.bannerBox {
    height: 430px;
    width: 100%;
    background-color: var(--pfiPurpleLite);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--borderRadiusWideScreen);
    margin-bottom: 30px;
}

.notchBox {
    height: 100%;
    width: 100%;
    position: relative;
}

.bannerTextBox {
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
}
#siteBannerTitle{
    text-align: center;
    line-height: 53px;
    margin-bottom: 20px;
}
#siteBannerSubtitle{
    text-align: center;
}


.siteTextBox {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 100px;
}


/* Social Media Presence Strip */
.socMedPresenceStrip {
    height: 130px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url("/img/page-media/action-strip-background.png") center/cover no-repeat;
    border-radius: var(--borderRadiusWideScreen);
    padding: 0 30px 0 30px;
    box-sizing: border-box;
}
.userMsgBox{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* Metrics Box */

.metricsBox {
    display: flex;
    margin-bottom: 30px;
}
.metricH3{
    bottom: 70px;
    font-size: 100px;
    font-family: var(--fontFancy);
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.metricCardsBox {
    width: 100%;
    display: flex;
    gap: 30px;
}

.metricCardsBox-left {
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.metricCard {
    height: 250px;
    border-radius: var(--borderRadiusWideScreen);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("/img/page-media/metrics-background.png") center/cover no-repeat;
}

.metricCard-layover {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

.metricCardsBox-right {
    width: 100%;
    display: flex;
}

.newsBox {
    height: 100%;
    width: 100%;
    border-radius: var(--borderRadiusWideScreen);
    background-color: var(--pfiPurpleLite);
    display: flex;
    margin-bottom: 30px;
}

.newsBox-layover {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.newImgBox {
    border-radius: 22px;
    background-color: black;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    margin: 0 0 30px 0;
}

.fancyRadioButtonBox {
    display: flex;
    gap: 30px;
}

.siteRadiobtn {
    height: 57px;
    width: 57px;
    border-radius: 50%;
    background-color: var(--pfiBlack);
    outline: 10px solid var(--pfiBlack);
    cursor: pointer;
    transition: 0.3s;
}

.activeRadioBtn {
    background-color: var(--pfiWhite);
}

.siteRadiobtn:hover {
    background-color: var(--pfiWhite);
    scale: 1.1;
}

.siteRadiobtn:active {
    scale: 1;
}
#newsTitle{
    margin-bottom: 20px;
}



/* Cliets Box */

.clientsBox {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.clientCard{
    border-radius: 22px;
    transition: 0.3s;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(215, 25, 215, 0.08);
    overflow: hidden;
}
.clientCard:hover img{
    scale: 1.1;
    filter: none;
}
.clientCard img{
    height: 100%;
    width: 100%;
    transition: 0.3s;
    /*filter: grayscale(1);*/
}





/* UNIVERSALS */


/* Responsiveness */
@media screen and (max-width:1360px) {
    .clientCardBox{
        grid-template-columns: repeat(4, 1fr);
    }
    .metricCardsBox{
        flex-direction: column;
    }
    .newsBox{
        height: 500px;
    }
    .socMedPresenceStrip{
        flex-direction: column;
        height: fit-content;
        padding: 30px;
        gap: 40px;
    }
    .socMedPresenceStrip h3, .socMedPresenceStrip p{
        text-align: center;
    }
    .userMsgBox h3, .userMsgBox h5{
        text-align: center;
    }
    .newsBox-layover h3, .newsBox-layover h5{
        text-align: center;
    }
}
@media screen and (max-width:1260px) {
    .whyCardBox{
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 30px;
    }
    .servicesBox{
        grid-template-columns: repeat(1, 1fr);
    }
    .clientsBox{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:1060px) {
    .site-h1, .site-h2{
        font-size: 45px;
        line-height: 47px;
    }
}
@media screen and (max-width:780px) {
    main{
        padding-top: 0 !important;
    }
    .leftControlNotch, .rightControlNotch{
        width: 35px;
    }
    .metricCardsBox-left{
        grid-template-columns: repeat(1, 1fr);
    }
    .clientCardBox{
        grid-template-columns: repeat(2, 1fr);
    }
    .whyCardBox{
        grid-template-columns: repeat(1, 1fr);
    }
    .indicators{
        height: 16px;
        width: 16px;
    }
    #siteBannerTitle{
        text-align: left;
        font-size: 35px;
        line-height: 37px;
    }
    #siteBannerSubtitle{
        font-size: 19px;
        text-align: left;
    }
    #userMsgSubTitle{
        font-size: 19px;
    }
    #userMsgTitle{
        font-size: 35px;
        line-height: 41px;
    }
    .userMsgBox h3{
        font-size: 35px;
        line-height: 41px;
    }
    .userMsgBox h5{

    }
    .secTitleBox h2, #newsTitle{
        font-size: 35px;
        line-height: 37px;
    }
    .bannerBox{
        margin-bottom: 20px;
    }
    .servicesBox, .metricCardsBox-left, .clientCardBox, .metricCardsBox, .clientsBox{
        gap: 20px;
    }
    .whyCardBox{
        gap: 72px 0;
    }
    .newsBox{
        margin-bottom: 20px;
    }
    .siteRadiobtn{
        height: 41px;
        width: 41px;
    }
    .siteRadiobtn{
        outline-width: 8px;
    }
    .fancyRadioButtonBox{
        gap: 25px;
    }
}






















/* Responsive control */
@media (max-width: 1024px) {
    .carousel-slide { min-width: 33.33%; } /* 3 */
}
@media (max-width: 768px) {
    .carousel-slide { min-width: 50%; } /* 2 */
}
@media (max-width: 480px) {
    .carousel-slide { min-width: 100%; } /* 1 */
}

/* Infinite loop animation */
@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}