* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* fonts*/
    --fontlogo: "Satisfy", serif;
    --primaryfont: "Oleo Script Swash Caps", serif;
    --sendoryfont: "Roboto Serif", serif;
    --textfont: "Great Vibes", serif;
    --subheaderfront: "Time new roman";
    --subtextfont: "Calibri, sans-serif";


    /* Colors*/

    --logocolor: #551A8B;
    --spamcolor: rgb(3, 84, 95);
    --headercolor: rgb(12, 134, 49);
    --subheadercolor: green;
    --textcolor: #4c6763;
    --hovercolor: rgb(67, 185, 214);
    --bodycolor: rgb(235, 238, 182);
    --bodycolor2: radial-gradient(circle, rgba(235, 238, 182, 1) 0%, rgba(221, 240, 229, 1) 100%);
    --bordercolor: rgb(182, 171, 171);


}

.light-theme {
    --logocolor: #551A8B;
    --spamcolor: rgb(3, 84, 95);
    --headercolor: rgb(12, 134, 49);
    --subheadercolor: green;
    --textcolor: navy;
    --hovercolor: white;
    --bodycolor: rgb(188, 190, 145);
    --bodycolor2: radial-gradient(circle, rgb(188, 190, 145, 1) 0%, rgba(176, 192, 183, 1) 100%);
    --bordercolor: rgb(0, 0, 0);
}

body {
    width: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    transition: color 1s;
}


span {
    color: var(--spamcolor);
}

/*navbar*/

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 3%;
    width: 100%;
    height: 12vh;
    border-bottom: 1px solid var(--bordercolor);
    font-family: var(--sendoryfont);
}

.nav-logo {
    position: relative;
    width: 35px;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.nav-logo a h1 {
    color: #551A8B;
}

@keyframes showRight {
    100% {
        width: 0;
    }
}

.nav-logo a h1 {
    display: inline-block;
    text-decoration: none;
    font-size: 30px;
    font-family: var(--fontlogo);
    font-weight: 800;
    font-style: italic;
}

.nav-logo a h1:hover {
    transform: scale(1.1);
}


.nav-content {
    position: relative;
}

.nav-content a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-family: var(--sendoryfont);
    margin-left: 30px;
    color: var(--textcolor);
    transition: .3s ease-in-out;
}

.nav-content a::after {
    content: '';
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--spamcolor);
    position: absolute;
    bottom: -2px;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: right;
}

.nav-content a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-content a:hover {
    color: var(--hovercolor);
}

.nav-content a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 1s ease forwards;
    animation-delay: .6s;
}

.navmode {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: white;
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
}

.navmode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navmode::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 2s ease forwards;
    animation-delay: .8s;
}

.dark_mode {
    display: none;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 30px;
    display: none;
}

.menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leftnavbar {
    background-color: #828488;
    width: 40%;
    height: 50%;
    border-end-start-radius: 6rem;
    position: fixed;
    top: 0;
    right: -1000px;
    padding: 20px;
    color: white;
    z-index: 100;
    transition: 0.8s;
}

.leftnavlinks {
    display: flex;
    flex-direction: column;
}

.leftnavlinks a {
    font-size: 22px;
}

.leftnavlinks a:hover {
    color: lightyellow;
}

.closemark {
    font-size: 25px;
    margin-bottom: 20px;
}

.leftnavlinks a {
    text-decoration: none;
    color: white;
    margin-bottom: 30px;
}

.service-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 3%;
    width: 100%;
    height: 12vh;
    border-bottom: 1px solid rgb(182, 171, 171);
}

.header {
    padding: 0 4%;
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.header h1 {
    position: relative;
    font-size: 130px;
    font-style: normal;
    font-style: italic;
    font-family: 400;
    color: var(--headercolor);
    text-align: center;
}

.header h1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 2s ease forwards;
    animation-delay: .10s;
}

.header h2 {
    font-size: 100px;
    font-family: var(--primaryfont);
    font-style: italic;
    color: var(--subheadercolor);
    text-align: center;
    margin-bottom: 50px;
}

.typewritter-text {
    font-family: var(--primaryfont);

}

.header p {
    font-size: 22px;
    font-family: var(--sendoryfont);
    font-weight: 400;
    line-height: 1cm;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-left: 130px;
    width: 80%;
}

.header .btn {
    margin-bottom: 50px;
}

.btn button {
    padding: 10px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    outline: none;
    font-size: 20px;
    font-family: var(--primaryfont);
    font-style: italic;
    position: relative;
    color: white;
    margin-left: 30px;
    z-index: 0;
}

.btn button::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-color: #9e9393;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.btn button::before {
    content: "";
    background: linear-gradient(45deg,
            #FF0000, #FF7300, #FFFB00, #48FF00,
            #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.btn button:hover::before {
    opacity: 1;
}

.button::active::after {
    background: transparent;
}

.btn button:hover {
    background: transparent;
}

.btn button:active {
    color: #000;
    font-weight: bold;
}



.footer {
    border-top: 1px solid var(--bordercolor);
    margin-top: 10px;
}

.content {
    margin-top: 15px;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.footer-details p {
    font-family: var(--sendoryfont);
    font-weight: 400;
    font-size: 15px;
}

.footer-details img {
    font-size: 18px;

}

.footer-details p {
    font-size: 12px;
    display: inline-block;
}

.tags {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    text-decoration: none;
    font-family: var(--sendoryfont);
}

.tags h2 {
    font-family: var(--sendoryfont);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.tags .link {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.tags .link a {
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 13px;
    color: #551A8B;
}

.tags .link a:hover {
    color: var(--hovercolor);
}

.social-links {
    width: 23%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.social-links h2 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--sendoryfont);
}

.social-links a img {
    height: 35px;
    object-fit: cover;
    margin-left: 25px;
}

.social-links .link a img:hover {
    transform: scale(1.1);

}

.footer-details img {
    width: 15px;
    height: 13px;
    object-fit: cover;
}

/*about-page*/
.about-header {
    text-align: center;
}

.about-header h2 {
    font-size: 55px;
    font-family: var(--primaryfont);
    font-style: italic;
    color: var(--subheadercolor);
}

.about-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0 4%;
}

.content-image {
    width: 280px;
    height: 360px;
    object-fit: cover;
}

.content-image img {
    background-color: #D6EAF8;
    border-top-left-radius: 50%;
    border-top-right-radius: 5%;
    width: 100%;
    height: 100%;
}

.content-text {
    position: relative;
    width: 60%;
}


.content-text h2 {
    position: relative;
    font-size: 30px;
    font-style: italic;
    font-family: var(--sendoryfont);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--subheadercolor);
    margin-bottom: 50px;
}

.content-text h2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 2s ease forwards;
    animation-delay: .8s;
}


.content-text p {
    font-size: 14px;
    line-height: 2;
    font-family: var(--sendoryfont);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--textcolor);
}


.banner {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.banner h2 {
    font-size: 35px;
    font-family: var(--primaryfont);
    color: var(--subheadercolor);
    font-style: normal;
}

.banner .slider {
    position: absolute;
    width: 120px;
    height: 150px;
    top: 15%;
    bottom: 0%;
    left: calc(54% - 100px);
    margin-top: 50px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2;
}

@keyframes autoRun {
    from {
        transform: perspective(1000px) rotateX(-14deg) rotateY(0deg);
    }

    to {
        transform: perspective(1000px) rotateX(-14deg) rotateY(360deg);

    }
}

.banner .slider .item {
    position: absolute;
    inset: 0 0 0 0;
    transform:
        rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(450px);

}

.banner .slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


.image-gallery {
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-gallery1,
.img-gallery3 {
    border-radius: .5rem;
    width: 300px;
    height: 350px;
    object-fit: cover;
}

.img-gallery2 {
    border-radius: .5rem;
    width: 500px;
    height: 350px;
    object-fit: cover;
}

/*Services-page*/
.service-header {
    text-align: center;
}

.service-header h2 {
    font-size: 55px;
    font-family: var(--primaryfont);
    font-style: italic;
    color: var(--subheadercolor);
}

.service-box {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
}

.header-video {
    border-radius: .5rem;
    object-fit: cover;
}

.service-text h2 {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--sendoryfont);
    letter-spacing: 1px;
    color: var(--spamcolor);
}

.service-text h2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bodycolor);
    background: var(--bodycolor2);
    animation: showRight 2s ease forwards;
    animation-delay: .8s;
}

.service-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 0 4%;
    margin-top: 50px;
    cursor: -webkit-zoom-in;
    gap: 25px;
}

.service-content .ui-design {
    padding: 5px;
    box-shadow: 2px 2px 15px 4px rgb(14 55 54 / 25%);
    border-radius: 0.5rem;
}

.ui-design:hover {
    transform: scaley(1.1);
    opacity: 0.8;
}

.ui-design img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.ui-design h3 {
    font-size: 20px;
    display: inline;
    color: var(--subheadercolor);
}

.ui-design p {
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 13px;
}

.service-content .developer {
    padding: 10px;
    box-shadow: 2px 2px 15px 4px rgb(14 55 54 / 25%);
    border-radius: 0.5rem;
}

.developer:hover {
    transform: scaley(1.1);
    opacity: 0.6;
}

.developer img {
    width: 15px;
    height: 15px;
    object-fit: cover;
}

.developer h3 {
    font-size: 20px;
    display: inline;
    color: var(--subheadercolor);
}

.developer p {
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 13px;
}

.service-content .graphic-design {
    padding: 10px;
    box-shadow: 2px 2px 15px 4px rgb(14 55 54 / 25%);
    border-radius: 0.5rem;
}

.graphic-design:hover {
    transform: scaley(1.1);
    opacity: 0.6;
}

.graphic-design img {
    width: 15px;
    height: 15px;
    object-fit: cover;
}

.graphic-design h3 {
    font-size: 20px;
    display: inline;
    color: var(--subheadercolor);
}

.graphic-design p {
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 13px;
}

.service-content span {
    font-weight: 800;
}

.carousel-inner {
    margin-top: 50px;
    padding: 0 4%;
}

.carousel-item img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.carousel-item h5 {
    color: white;
}

.carousel-item span {
    color: white;
}

.carousel-item p {
    color: white;
}

/*Contact-Page*/
.contact-Hero {
    text-align: center;
}

.contact-Hero h2 {
    font-size: 55px;
    font-family: var(--primaryfont);
    font-style: italic;
    color: var(--subheadercolor);
}

.contact-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 0 4%;
    margin-bottom: 50px;
}

.contact-main-img {
    width: 400px;
    height: 350px;
}

.contact-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-main-text {
    width: 50%;
}

.contact-main-text h2 {
    position: relative;
    font-size: 35px;
    font-family: var(--sendoryfont);
    font-style: italic;
    color: var(--spamcolor);
    margin-bottom: 30px;
}

.contact-main-text h6 {
    position: relative;
    font-size: 18px;
    width: 85%;
    font-family: var(--subtextfont);
    letter-spacing: 1px;
    line-height: .8cm;
    color: var(--textcolor);
}

.contact-details {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 4%;
    margin-top: 50px;
}


.contact-links h2 {
    font-size: 30px;
    font-family: var(--sendoryfont);
    letter-spacing: 1px;
    color: var(--headercolor);
    margin-bottom: 20px;
}

.email-detail {
    display: flex;
    align-items: top;
    gap: 1.0rem;
    font-family: var(--sendoryfont);
}

.phone-detail {
    display: flex;
    align-items: top;
    gap: 1.0rem;
    font-family: var(--sendoryfont);
}

.contact-links span img {
    width: 22px;
}

.contact-links h4 {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--sendoryfont);
    margin-bottom: 20px;
}



.links a img {
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}

.links a img:hover {
    transform: scale(1.2);
}

.contact-form {
    width: 30vw;
    background: transparent;
    border-radius: 1.2rem;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3), 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem;
    margin: 1rem;
    font-family: var(--sendoryfont);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 1.2rem;
    border: 1px solid gray;
    background-color: transparent;
}

::placeholder {
    font-family: var(--sendoryfont);
    color: gray;
    font-weight: 400;
}

.submit-button {
    padding: 10px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--subheaderfront);
    font-style: italic;
    color: white;
    background-color: #9e9393;
}

.submit-button:hover {
    background-color: transparent;
    border: 1px solid #9e9393;
    color: black;
}

@media screen and (max-width:850px) {
    .menu {
        display: block;
    }

    .navmode {
        display: none;
    }

    .nav-content {
        display: none;
    }

    .header h1 {
        font-size: 180px;
    }

    .header p {
        margin-left: 0px;
        width: 100%;
    }

    .leftnavbar {
        width: 30%;
        height: 35%
    }

    .leftnavlinks a {
        margin-bottom: 50px;
    }

    .social-links {
        width: 100%;
    }

    .about-content {
        width: 100%;
        justify-content: center;
    }

    .content-image {
        align-items: center;
        margin-bottom: 50px;
    }

    .content-image img {
        border-top-left-radius: 5%;
        border-top-right-radius: 5%;
    }

    .content-text {
        text-align: center;
        width: 90%;
    }

    .banner {
        height: 60vh;
        margin-bottom: 50px;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img {
        margin-bottom: 20px;
    }

    .service-box {
        text-align: center;
        flex-wrap: wrap;
    }

    .service-video {
        margin-bottom: 50px;
    }

    .service-content {
        padding: 0 10%;
        flex-wrap: wrap;
    }

    .contact-main {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .contact-main-img {
        margin-bottom: 50px;
    }

    .contact-main-text h2 {
        margin-bottom: 10px;
    }

    .contact-main-text h6 {
        width: 100%;
        text-align: center;
    }

    .contact-main-text {
        width: 100%;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        align-content: center;
        text-align: center;
    }

    .contact-form {
        margin-top: 50px;
        width: 55vw;
    }

    ::placeholder {
        text-align: center;
    }

}

@media screen and (max-width:450px) {
    .menu {
        display: block;
    }

    .navmode {
        display: none;
    }

    .nav-content {
        display: none;
    }

    .leftnavbar {
        width: 45%;
        height: 50%;
    }

    .header h1 {
        font-size: 80px;
    }

    .header h2 {
        font-size: 60px;
    }

    .header p {
        font-size: 15px;
        width: 100%;
        margin-left: 0px;
    }

    .btn button {
        margin-bottom: 10px;
    }

    .footer-details {
        width: 100%;
    }

    .social-links {
        width: 70%;
    }

    .social-links a img {
        margin-left: 10px;
    }

    .about-content {
        width: 100%;
        justify-content: center;
    }

    .content-image {
        align-items: center;
        margin-bottom: 50px;
    }

    .content-image img {

        border-top-left-radius: 5%;
        border-top-right-radius: 5%;
    }

    .content-text {
        text-align: center;
        width: 90%;
    }

    .content-text h2 {
        font-size: 25px;
    }


    .banner {
        height: 80vh;
        margin-bottom: 50px;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img {
        width: 250px;
        height: 300px;
        margin-bottom: 10px;
    }

    .service-box {
        text-align: center;
        flex-wrap: wrap;
    }

    .service-video {
        margin-bottom: 50px;
    }

    .service-content {
        flex-wrap: wrap;
    }

    .contact-main {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .contact-main-img {
        margin-bottom: 50px;
    }

    .contact-main-text h2 {
        margin-bottom: 10px;
    }

    .contact-main-text {
        width: 100%;
        text-align: center;
    }

    .contact-main-text h6 {
        width: 100%;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        align-content: center;
        text-align: center;
    }

    .contact-form {
        width: 80vw;
    }

    ::placeholder {
        text-align: center;
    }

    .footer-details {
        margin-bottom: 20px;
        text-align: center;
    }
}