*{
    margin: 0;
    padding: 0;
}
.body{
    width: 100%;
    height: 100%;
    background: black;
}
.gradient-svg-file{
    width: 25%;
    height: auto;
    aspect-ratio: 1 / 1;
    filter: brightness(.3);
    position: absolute;
    z-index: 2;
}
.top-left-svg-gradient{
    position: absolute;
    top: 0%;
    left: 0%;
}
.top-right-svg-gradient{
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.custom-cursor{
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid gray;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.1s ease;
    z-index: 1000;
    top: 0;
    left: 0;
    will-change: transform;
}
.custom-cursor.fade-out{
    opacity: 0;
}
.navigation-bar-top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s ease-in-out all;
    box-sizing: border-box;
    padding: 2%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: transparent;
    border-bottom: 1px solid transparent;
}
.navigation-bar-top.fill{
    background: #0f0f0f;
    border-bottom: 1px solid grey;
}
.navigation-bar-name{
    font-family: 'Inter';
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    font-size: 125%;
    text-decoration: none;
}
.ul-navigation-bar li{
    list-style: none;
    gap: 50px;
    text-transform: uppercase;
    transition: .5s ease-in-out all;
    color: white;
    display: flex;
    flex: 2;
    justify-content: flex-end;
    font-family: 'Inter';
    text-decoration: uppercase;
    font-size: 100%;
}
.ul-navigation-bar li a{
    color: white;
    text-decoration: none;
    transition: .2s ease-in-out all;
    font-size: 100%;
}
.ul-navigation-bar li a:hover,
.ul-navigation-bar li a:active{
    color: #e34a14;
}
.hero-section-ac{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-family: 'Inter';
    text-align: center;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}
.hero-section-header{
    font-size: 700%;
    letter-spacing: 5px;
    width: 80%;
    color: #d5d5d5;
    z-index: 9;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-section-subtext{
    font-size: 115%;
    color: #d5d5d5;
    font-family: 'Inter';
}
.hero-section-button{
    padding: 1% 2%;
    font-size: 100%;
    margin-top: 10px;
    background: #ee4818;
    color: #d5d5d5;
    text-transform: capitalize;
    border: 1px solid transparent;
    transition: .3s ease-in-out all;
    cursor: pointer;
}
.hero-section-button:hover,
.hero-section-button:active{
    background: black;
    border: 1px solid #d5d5d5;
}
.floating-pfp-user{
    position: absolute;
    width: 8%;
    height: auto;
    top: 20%;
    right: 21%;
    border-radius: 100%;
    z-index: 8;
}

@keyframes slide{
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.logos{
    overflow: hidden;
    padding: 60px 0;
    background: black;
    white-space: nowrap;
    position: relative;
}
.logos:before,
.logos:after{
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.logos:before{
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), black);
}
.logos:after{
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), black);
}
.logos-slide{
    animation: 25s slide infinite linear;
    display: inline-block;
}
.logos-slide img{
    height: 50px;
    margin: 0 40px;
    filter: grayscale(100%);
}

.services-outer-container{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background: black;
    position: relative;
    gap: 30px;
    overflow: hidden;
    padding-bottom: 5%;
}
.floating-gradient{
    position: absolute;
    top: 10%;
    right: -15%;
    width: 45%;
    z-index: 1;
}
.services-header-upper{
    color: white;
    font-family: 'Inter';
    font-size: 300%;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d5d5d5;
}
.grid-container-two-rows{
    width: 95%;
    height: auto;
    min-height: 300px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto; 
}
.upper-side-services-cont,
.bottom-side-services-cont{
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 10px;
}
.bottom-side-services-cont{
    grid-template-columns: 40% 60%;
}
.services-template-container{
    background: #0f0f0f;
    color: white;
    font-family: 'Inter';
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-radius: 8px;
    border: 1px solid #1c1c1c;
}
.flex-container-inner-services{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter';
    font-size: 200%;
}
.service-indicator-sec{
    padding: 8px 10px;
    aspect-ratio: 1 / 1;
    background: #e34a14;
    color: black;
    font-weight: 600;
    border-radius: 8px;
}
.service-indicator-arrow{
    transform: rotate(-45deg);
    color: white;
    transition: .3s ease-in-out all;
}
.service-indicator-arrow:active,
.service-indicator-arrow:hover{
    color: #ef4718;
    transform: rotate(0deg);
}
.flex-column-container-services{
    display: flex;
    flex-direction: column;
    font-family: 'Inter';
    color: white;
    align-items: flex-start;
    gap: 20px;
}
.service-headers-ac{
    text-transform: uppercase;
    font-weight: 500;
    color: #d5d5d5;
    line-height: 44px;
    font-size: 225%;
}
.recent-work-outer-container{
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0f0f0f;
    padding-bottom: 5%;
}
.work-grid-container-two-cols{
    width: 98%;
    height: auto;
    min-height: 500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 2% 0;
    max-width: 1800px;
    margin: 0 auto; 
}
.recent-work-grid-row-container-template{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}
.test{
    background: red;
}
.recent-work-img-button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    outline: none;
    transition: transform 0.3s ease;
    border: 2px solid #0f0f0f;
}
.recent-work-img-button img{
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
    border: none;
    outline: none;
    object-fit: cover;
}
.recent-work-img-button:hover img{
    filter: blur(2px);
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    padding: 2%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    font-family: 'Inter';
    font-size: 300%;
    text-transform: uppercase;
    font-weight: 500;
}
.recent-work-img-button:hover .overlay{
    opacity: 1;
}
.testimonial-container{
    width: 100%;
    height: auto;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    padding-bottom: 5%;
}
.outer-grid-container-test{
    width: 90%;
    height: auto;
    min-height: 400px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
    max-width: 2000px;
    margin: 0 auto; 
    
}
.two-grid-cont,
.three-grid-cont{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.three-grid-cont{
    grid-template-columns: repeat(3, 1fr);
}
.testimonial-template-cont{
    background: #0f0f0f;
    border: 1px solid #222222;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
}
.testimonial-ac-text{
    margin: 0;
    line-height: 1.6;
}
.testimonial-header{
    display: flex;
    align-items: center;
    gap: 15px;
}
.pfp-testimonials{
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}
.testimonial-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #d5d5d5;
}
.testimonial-name{
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
.testimonial-title{
    margin: 0;
    font-size: 0.9rem;
}
.about-us-container{
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    gap: 20px;
}
.grid-container-about{
    width: 90%;
    height: auto;
    min-height: 100px;
    display: grid;
    grid-template-columns: 19% 79%;
    gap: 2%;
    max-width: 1800px;
    margin: 0 auto; 
}
.about-image-full{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.right-side-info-cont-abt{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.statistics-flex-cont{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-containers-about-sec{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-header{
    font-family: 'Inter';
    font-size: 2rem;
    color: white;
    font-weight: 500;
}
.statistic-main,
.statistic-sub{
    font-family: 'Inter';
    font-size: 5rem;
    color: #d5d5d5;
    font-weight: 800;
}
.statistic-sub{
    font-size: 115%;
    font-weight: 400;
}
.contact-form-container{
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    padding-bottom: 5%;
    position: relative;
    overflow: hidden;
}
.contact-grid-container{
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;
    max-width: 1800px;
    margin: 0 auto;
    margin-top: 4%;
}
.flex-container-social-media{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-media-styling{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #141414;
    padding: 1%;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}
.fb-icon{
    width: 100%;
    height: 100%;
}
.social-media-styling:hover img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(98%) saturate(2089%) hue-rotate(353deg) brightness(96%) contrast(100%);
}
.left-side-info{
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #d5d5d5;
    font-family: 'Inter';
}
.hc-pfp-contact-sec{
    width: 10%;
    height: auto;
    border-radius: 100%;
}
.ready-sub{
    font-size: 110%;
}
.ready-header{
    font-size: 300%;
    text-transform: uppercase;
}
.ready-sub-two{
    font-size: 115%;
}
.floating-gradient-contact{
    position: absolute;
    width: 30%;
    top: 10%;
    right: -15%;
}
.right-side-info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.form-wrapper{
    width: auto;
    height: 100%;
    background: #0f0f0f;
    box-sizing: border-box;
    padding: 8%;
    border-radius: 8px;
    border: 1px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 60%;
}
.contact-labels{
    color: #d5d5d5;
    text-transform: uppercase;
    font-family: 'Inter';
}
.flex-containers{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}
.flex-column-containers{
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    gap: 15px;
}
.inputs-outer-container{
    position: relative;
}
.inputs-outer-container input,
.inputs-outer-container textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 20px 25px;
    padding-right: 40px;
    background: #0f0f0f;
    border: 1px solid #222222;
    border-radius: 4px;
    resize: vertical;
    max-height: 300px;
}
.input-icons{
    position: absolute;
    top: 50%;
    right: 10px;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    pointer-events: none;
}
.send-message-contact{
    width: fit-content;
    height: auto;
    padding: 5% 8%;
    background: #e34a14;
    border: 1px solid transparent;
    color: white;
    font-family: 'Inter';
    transition: .3s ease-in-out all;
    cursor: pointer;
    border-radius: 2px;
}
.send-message-contact:hover,
.send-message-contact:active{
    border: 1px solid #d5d5d5;
    color: #d5d5d5;
    background: transparent;
}
.footer-outer-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 1% 0;
}
.footer-inner-cont{
    width: 80%;
    max-width: 1600px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    font-family: 'Inter';
}
.footer-email-styling{
    color: #d5d5d5;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 550%;
    transition: .3s ease-in-out all;
}
.footer-email-styling:hover,
.footer-email-styling:active{
    color: #e34a14;
}
.flex-justify-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter';
}
.mobile-menu-ac{
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 0%;
    z-index: 10000000;
    background-color: rgb(0, 0, 0, .8);
    top: 0;
    left: 0;
    transition: .3s ease-in-out all;
}
.mobile-menu-navigation{
    display: none;
    border: none;
    background: transparent;
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .custom-cursor{
        display: none;
    }
    .ul-navigation-bar{
        display: none;
    }
    .navigation-bar-top{
        padding: 20px 5px;
        position: fixed;
        display: flex;
        align-items: center;
    }
    .navigation-bar-name{
        flex: 1;
        text-align: center;
    }
    .mobile-menu-navigation{
        display: flex;
        margin-left: auto;
    }
    .hero-section-ac{
        min-height: 400px;
    }
    .hero-section-header{
        font-size: 2.5rem;
    }
    .floating-pfp-user{
        width: 20px;
        height: 20px;
        position: absolute;
        top: 20%;
        transition: .3s ease-in-out all;
        right: 8%;
    }
    .hero-section-subtext{
        font-size: 100%;
        width: 90%;
    }
    .hero-section-button{
        font-size: 115%;
    }
    .logos:before,
    .logos:after{
        width: 45px;
    }
    .upper-side-services-cont,
    .bottom-side-services-cont{
        display: grid;
        grid-template-columns: 1fr;
    }
    .services-header-upper{
        font-size: 2rem;
        text-align: center;
    }
    .work-grid-container-two-cols{
        grid-template-columns: 1fr;
        width: 90%;
    }
    .outer-grid-container-test{
        display: flex;
        overflow-x: scroll;
        gap: 20px;
    }
    .two-grid-cont,
    .three-grid-cont{
        grid-template-columns: 1fr;
        display: flex;
        gap: 20px
    }
    .testimonial-template-cont{
        min-width: 200px;
    }
    .testimonial-ac-text{
        font-size: .7rem;
    }
    .grid-container-about,
    .contact-grid-container{
        grid-template-columns: 1fr;
    }
    .statistics-flex-cont{
        flex-direction: column;
    }
    .about-header{
        display: none;
    }
    .statistic-main{
        font-size: 2rem;
    }
    .contact-labels{
        font-size: .8rem;
    }
    .flex-containers{
        flex-direction: column;
    }
    .form-wrapper{
        width: 100%;
    }
    .footer-inner-cont{
        width: 95%;
    }
    .footer-email-styling{
        font-size: 1.4rem;
    }
    .footer-outer-container{
        padding: 40px 0;
    }
    @media screen and (max-width: 349px)
    {
        .hero-section-ac{
            min-height: unset;
        }
        .navigation-bar-name{
            font-size: 100%;
        }
        .hero-section-header{
            font-size: 125%;
        }
        .hero-section-subtext{
            font-size: 90%;
            width: 90%;
        }
        .floating-pfp-user{
            top: 0vh;
            right: 0;
        }
        .logos-slide img{
            height: 20px;
        }
        .services-outer-container{
            padding: 20px 0;
        }
        .services-header-upper{
            font-size: 1rem;
        }
        .service-headers-ac{
            font-size: 1.25rem;
        }
        .floating-gradient{
            width: 70%;
        }
        .left-side-info{
            gap: 20px;
        }
        .ready-header{
            font-size: 1.4rem;
            width: 90%;
        }
        .ready-sub-two{
            font-size: .9rem;
            width: 90%;
        }
        .social-media-styling{
            aspect-ratio: 1 / 1;
        }
        .social-media-styling{
            width: 20px;
            height: 20px;
        }
        .input-icons{
            display: none;
        }
        .footer-email-styling{
            font-size: .8rem;
        }
        .footer-inner-cont{
            width: 100%;
        }
    }
}
@media screen and (min-width: 901px) and (max-width: 1250px)
{
    .footer-email-styling{
        font-size: 3.8rem;
    }
}

/* Logging In Design */
.not-loggedin-cont{
    width: 100%;
    height: 100vh;
    background-image: url('assets/sky.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    color: white;
    font-size: 150%;
    gap: 10px;
}
.not-loggedin-cont input{
    padding: 10px;
}