#Hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 10px 100px 10px;
    margin: 0 -10px;
    background-image: url(/Assets/Images/BGDot.webp);
    background-size: 300px 300px;
    background-position: bottom;
    background-repeat: repeat-x;
}


/* --------------------------------------Trust Badges */

.trustBadge{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.viewsCount{
    display: flex;
    align-items: center;
}
.viewsCount p{
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: var(--Text-Secondary);
}
.number{
    background: linear-gradient(270deg, var(--secondary), var(--Text-Primary), var(--secondary));
    background-size: 1000% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2rem;
}



/* --------------------------------------Hero Tag */

.mainTag{
    padding: 40px 0;
    pointer-events: none;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4rem;
    line-height: 4rem;
    font-style: normal;
    text-align: center;
    color: var(--Text-Primary);
}
.highlight{
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4rem;
    line-height: 4rem;
    font-style: normal;
}
.highlight {
  background: linear-gradient(270deg, var(--secondary), var(--Text-Primary), var(--secondary));
  background-size: 1000% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* --------------------------------------Book a call BTN */

.bookAcall{
    display: flex;
    align-items: center;
    gap: 16px;
    margin: -8px 4px 0 0;
    padding: 15px 60px;
    border-radius: 999px;
    border: 1px solid var(--secondary-accent);
    box-shadow: 3px 7px 0 var(--secondary-dark), 4px 8px 0 var(--secondary-accent); 
    background: radial-gradient(circle, rgb(255, 255, 255), rgb(204, 222, 255));
}

.bookAcall p{
    font-weight: 400;
    font-size: 2rem;
    line-height: 2rem;
    font-style: normal;
    color: var(--secondary);
}

.bookAcall:hover > :last-child {
    transform: translateX(20px);
}
.bookAcall:hover{
    transform: translate(2px, 4px);
    box-shadow: 1px 3px 0 var(--secondary-dark), 2px 4px 0 var(--secondary-accent); 
}

/* --------------------------------------One Stop Shop */

.onsStopShop{
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.shopFor p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 1rem;
    font-style: normal;
    color: var(--Text-Primary);
}

.services{
    display: flex;
    gap: 40px;
}
.serviceBox{
    cursor: none;
    padding: 10px;
    position: relative;
}
.serviceName{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2rem;
    font-style: normal;
    color: var(--secondary);
}

.serviceDetails{
    pointer-events: none;
    z-index: 2;
    position: absolute;
    background-color: var(--Text-Primary);
    transform: translate(-50%, -50%);
    height: 240px;
    width: 200px;
    padding: 20px;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0s ease;
}
.serviceDetails p{
    color: var(--Background);
    font-size: 1rem;
    font-weight: 300;
}


.serviceBox:hover .serviceDetails{
    display: flex;
}





@media (max-width: 1200px) {
    .trustBadge{
        gap: 7px;
    }
    .viewsCount p{
        font-size: 1rem;
        line-height: 1rem;
    }
    .number{
        font-size: 1rem;
        line-height: 1rem;
    }

    .mainTag{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .highlight{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }

    .bookAcall{
        padding: 10px 50px;
    }
    .bookAcall p{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .bookAcall:hover > :last-child {
        transform: translateX(10px);
    }

    .onsStopShop{
        padding-top: 60px;
    }
    .services{
        gap: 30px;
    }
    .serviceName{
        font-size: 1.7rem;
        line-height: 1.7rem;
    }
}


@media (max-width: 1000px) {
    #Hero{
        padding: 50px 10px 70px 10px;
    }
    .trustBadge{
        gap: 5px;
    }
    .viewsCount p{
        font-size: 0.8rem;
        line-height: 0.8rem;
    }
    .number{
        font-size: 0.8rem;
        line-height: 0.8rem;
    }

    .mainTag{
        font-size: 3rem;
        line-height: 3rem;
    }
    .highlight{
        font-size: 3rem;
        line-height: 3rem;
    }

    .bookAcall{
        padding: 10px 40px;
    }

    .services{
        gap: 20px;
    }
    .serviceBox{
        cursor: default;
    }
    .serviceName{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .serviceBox:hover .serviceDetails{
        display: none;
    }
}


@media (max-width: 800px) {
    .mainTag{
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
    .highlight{
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .services{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
    }
    .serviceName{
        font-size: 2rem;
        line-height: 2rem;
    }
}



@media (max-width: 650px) {
    .mainTag{
        font-size: 2rem;
        line-height: 2rem;
    }
    .highlight{
        font-size: 2rem;
        line-height: 2rem;
    }
    .serviceName{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 550px) {
    #Hero{
        padding: 40px 10px;
    }
    .mainTag{
        padding: 30px 0;
        font-size: 1.4rem;
        line-height: 1.4rem;
    }
    .highlight{
        font-size: 1.4rem;
        line-height: 1.4rem;
    }
    .onsStopShop{
        padding-top: 40px;
    }

    .bookAcall{
        padding: 10px 40px;
    }
    .bookAcall p{
        font-size: 1.2rem;
        line-height: 1.2rem;
    }

    .services{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
    }
    .serviceName{
        font-size: 1rem;
        line-height: 1rem;
    }
}