@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

body {
    font-family: "Poiret One", sans-serif;
    background: linear-gradient(to bottom, #1a0033, #f0f0f0);
    color: white;
    /*font-family: 'Segoe UI', sans-serif;*/
}

.hero {
    text-align: center;
    position: relative;
    height: 100vh;
}
.hero .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 1014px;
    transform: translateY(-50%);
    margin: 0 auto;
    opacity: 0.2;
    z-index: 8;
}
.hero .heroeText{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 1014px;
    left: 0;
    right: 0;
    z-index: 9;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}
h2{
    font-size: 35px;
}
h5{
    font-weight: 800;
    font-size: 25px;
}
.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
}
p{
    font-size: 18px;
}
.btn-pink {
    background-color: #ff3399;
    color: white;
}
.btn-pink:hover{
    color: #ff3399;
    border: 1px solid #ff3399;
}
.btn-dark {
    background-color: #222;
    color: white;
}
.service-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 51, 153, 0.4);
}
.about, .reviews, .pricing {
    padding: 80px 0;
}
.footer {
    padding: 40px 0;
    text-align: center;
    background-color: #0a0a0a;
    font-size: 0.9rem;
}
a.text-light:hover {
    color: #ff3399;
}
.footer .company a{
    color: white;
    border-bottom: 1px dotted;
    text-decoration: none;
}
.pricing .form-control:focus,
.pricing .form-select:focus{
    border-color: #ff3399;
    outline: #ff3399;
    box-shadow:0 0 0 .25rem rgba(255, 51, 153, 0.56)
}
.modal-content{
    background: linear-gradient(to bottom right, #424141, #880cff);
}
.modal img{
    height: 290px;
    width: 100%;
    object-fit: cover;
}
.nav-link{
    color: white;
}
.nav-link.active{
    border: 1px solid #ff3399;
    color: #ff3399!important;
    background-color: transparent!important;
}
.nav-link:hover{
    color: #ff3399!important;
}
.mfp-bg {
    z-index: 1060 !important;
}
.mfp-wrap {
    z-index: 1061 !important;
}

@media (max-width: 1024px) {
    .hero{
        padding: 190px 0;
    }
}
@media (max-width: 844px){
    .hero{
        padding: 100px 0;
    }
    .hero .heroeText{
        width: 390px;
       
    }
}
@media (max-width: 430px){
    .hero{
        background:none;
    }
    .hero h1{
        font-size: 45px;
    }
}
@media (max-width: 390px){
    .hero .heroeText {
        width: 380px;
        left: 0px;
        right: 0px;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0014;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #ff3399;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
