/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables */
:root{
   --white-color: #fff;
   --dark-color: #222;
   --body-bg-color: #1a1a1a;
   --section-bg-color: #1a1a1a;
   --navigation-item-hover-color: #3b5378;

   --text-shadow: 0 5px 25px rgba(0,0,0,0.1);
   --box-shadow: 0 5px 25px rgba(0 0 0 / 20%);

   --scroll-bar-color: #a1a1a1;
   --scrol-thumb-color: #1a1a1a;
   --scroll-thumb-hover-color: #3a3a3a;

}




/* Scroll bar */
::-webkit-scrollbar{
    width: 11px;
    background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb{
    width: 100%;
    background: var(--scrol-thumb-color);
    border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
    background: var(--scroll-thumb-hover-color);
}

html{
    scroll-behavior: smooth;
}





/* Main CSS */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: var(--body-bg-color);
}

section{
    position: relative;
}

.section{
    color: var(--white-color);
    background: var(--section-bg-color);
    padding: 35px 200px;
    transition: 0.3s ease;
}

a{
    text-decoration: none;
}






/* Header */

header{
  z-index: 999;
  position: fixed;
  width: 100%;
  height: calc(5rem + 1rem);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: 0.5s ease;
  transition-property: height, background;
}

header.sticky{
    height: calc(2.5rem + 1rem);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur (20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .nav-bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  transition: 0.3s ease;
}

.nav-close-btn, .nav-menu-button{
    display: none;
}

.nav-bar .logo{
    color: var(--white-color);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    margin-top: 10px;
}

.logo img{
    width: 1.8rem;
}
.navigation .nav-items a{
    color: var(--white-color);
    font-size: 1em;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}

.navigation .nav-items a i{
    display: none;
}

.navigation .nav-items a:not(:last-child){
    margin-right: 45px;
}






/* Home */

.home{
    min-height: 100vh;
}



/* Background slider */

.bg-slider{
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.bg-slider .swiper-slide{
    position: relative;
    width: 100%;
    height: 100vh;
}

.bg-slider .swiper-slide img, .bg-slider .swiper-slide video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.swiper-slide .text-content{
    position: absolute;
    top: 25%;
    color: var(--white-color);
    margin: 0 200px;
    transition: 0.3s ease;
}

.swiper-slide .text-content .title{
    font-size: 4em;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    margin-bottom: 20px;
    transform: translateY(-50px);
    opacity: 0;
}

.swiper-slide-active .text-content .title{
    transform: translateY(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}


.swiper-slide .text-content p{
    max-width: 700px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-shadow: var(--text-shadow);
    padding: 20px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
    transform: translateX(-80px);
    opacity: 0;
}


.swiper-slide-active .text-content p{
    transform: translateX(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn{
    border: none;
    outline: none;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 1em;
    font-weight: 500;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    margin-top: 40px;
    border-radius: 10px;
    cursor: pointer;
    transform: translateX(50px);
    opacity: 0;
}

.swiper-slide-active .text-content .read-btn{
    transform: translateX(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i{
    font-size: 1.6em;
    transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i{
    transform: translateX(5px);
}

.dark-layer:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.dark-layer-90:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 90vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-button-next, .swiper-button-prev{
    color: var(--white-color);
    opacity: 0.5;
}

.swiper-pagination-bullet{
    background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active{
    background: var(--white-color);
}





/* Media icons */

.media-icons{
    z-index: 999;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    margin: 90px;
}

.media-icons a{
    color: var(--white-color);
    font-size: 1.7em;
    margin: 10px 0;
}




/* About Section  */

.about h2 {
    font-size: 3em;
    font-weight: 600;
}

.about p{
    margin: 25px 0;
}






/* Contact */

.contact_bg{
    background-color: var(--section-bg-color);
    /*background-image: url("../images/home-cover_images/image1.jpg");*/
    min-height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    margin-bottom: 8em;
}  
 
form{
    top: 7em;
    color: var(--white-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin: 5em;
}

form input, form textarea{
    font-size: 1em;
    width: 30em;
    padding: 5px 15px;
    margin: 5px;
    text-shadow: var(--text-shadow);
    background: var(--da-color);
    border: 2px solid var(--white-color);
    border-radius: 20px;
    color: var(--white-color);
}


.white-button{
    border: none;
    outline: none;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 1em;
    font-weight: 500;
    padding: .5em 1.2em;
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.white-button i{
    font-size: 1.6em;
    transition: 0.3s ease;
}
.white-button:hover i{
    transform: translateX(5px);
}

::placeholder{
    color: rgba(255, 255, 255, 0.7);
}

.contact_bg h2{
    font-size: 4em;
}


/* THANK YOU */

.ty-wrap{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    margin-top: 20em;
}

.thank-you{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.thank-you h1{
    font-size: 100px;
    margin: -20px;
}

.thank-you p{
    font-weight: 300;
    margin-bottom: 10px;
}




/* Photoshop Gallery */


.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
  }
  .gallery:hover .gallery__image {
    filter: grayscale(1);
  }
  .gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
  }
  .gallery__link {
    margin: 2px;
    overflow: hidden;
  }
  .gallery__link:hover .gallery__image {
    filter: grayscale(0);
  }
  .gallery__link:hover .gallery__caption {
    opacity: 1;
  }
  .gallery__thumb {
    position: relative;
  }
  .gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  .gallery__image:hover {
    transform: scale(1.1);
  }
  .gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
  }

  .gallery__text {
    color: var(--white-color);
    margin: 2px;
    padding: 1.5em;
    display: block;
    width: 100%;
  }

  .gallery__cover img{
    width: 100%;
    height: 90vh;
    overflow: hidden;
    object-fit: cover;
    background-position: center;
    background-size: cover;
  }

  .gallery__cover .title{
    width: 100%;
    z-index: 777;
    position: absolute;
    text-shadow: var(--text-shadow);
    top: 35%;
    color: var(--white-color);
    text-align: center;
}

.gallery__cover h2{
    font-size: 5em;
    font-weight: 700;
}

.gallery__cover p{
    font-size: 1.5em;
    font-weight: 200;
}

.gallery iframe{
    height: 15em;
}







/* UIUX */
.uiux_projects{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.uiux_column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.uiux_thumb{
    position: relative;
    max-width: 100%;
    height: auto;
    margin: 10px;
}

.uiux_thumb img{
    width: 100%;
}

.hovercap {
    /* (C1) DIMENSIONS */
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 3em;
    position: absolute;
    bottom: 0; 
    left: 0;
    
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-color);

    visibility: none; 
    opacity: 0;
    transition: opacity 0.3s;
}

.uiux_thumb:hover .hovercap {
    visibility: visible; 
    opacity: 1;
}
   






.design_presentation{
    overflow: hidden;
    padding: 3em 13em;
}

.design_section{
    text-align: center;
    margin-bottom: 8em;
}


.design_presentation p, 
.design_presentation h1, 
.design_presentation li, 
.design_presentation h2,
.design_presentation h3{
    color: var(--white-color);
}

.design_presentation h2{
    font-size: 3em;
}

.design_presentation .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }

.proto_links a{
    font-size: 1.5em;
    border: 3px solid var(--white-color) ;
    border-radius: 100px;
    padding: 5px 10px;
    color: var(--white-color);
    cursor:pointer;
    text-decoration:none;
    margin: 0em 1em;
}

.proto_links a:hover{
    background-color: var(--white-color);
    color: var(--dark-color);
}



/* AR */

.ar-card{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 3em;
}

.ar-card img{
    height: 30em;
}

.details{
    color: var(--white-color);
    width: 35%;
    margin-left: 10em;
}





/* Media queries (max-width: 1100px) */
@media screen and (max-width:1100px){
    header .nav-bar{
        padding: 0px 75px;
      }

    .section{
        padding: 25px 50px;
    }

    .media-icons{
        right: 0;
        margin-right: 60px;
    }

    .swiper-slide .text-content{
        margin: 0px 120px 0 75px;
    }

    .ty-wrap{
        margin-top: 16em;
    }
    
    .thank-you h1{
        font-size: 80px;
    }

    /* Gallery */
    .dark-layer-90:before{
        height: 60vh;
    }

    .gallery__cover img{
        height: 60vh;
    }

    .gallery__cover h2{
        font-size: 4em;
        font-weight: 600;
    }
    
    .gallery__cover p{
        font-size: 1.2em;
        font-weight: 200;
    }

    .gallery__cover .title{
        top: 25%;
    }
    .gallery{
        display: block;
    }

    .gallery__column{
        width: 100%;
    }

    .gallery iframe{
        height: 30em;
    }

    /* UIUX */

    .design_presentation{
        padding: 2em 6em;
    }

    .design_presentation .center {
        width: 90%;
    }

    .uiux_projects{
        flex-direction: column;
    }

    .uiux_thumb{
        font-size: 1.5em;
    }

    
    /* AR */

    .ar-card{
        flex-direction: column;
    }
    
    .details{
        width: 65%;
        margin-left: 0em;
        text-align: center;
    }

    .details .white-button {
        display: block;
        margin: 0 auto;
        margin-top: 1em;
      }
    
    .details p, .details h2{
        padding-top: .5em;
    }
    

}

/* Media queries (max-width: 785px) */
@media screen and (max-width:785px){
    header .nav-bar{
        padding: 25px 50px;
      }
    
    .section{
        padding: 25px 20px;
    }

    .thank-you h1{
        font-size: 60px;
        margin: 0px;
    }


    .swiper-button-next, .swiper-button-prev{
        display: none;
    }

    .media-icons{
        margin-right: 30px;
    }

    .media-icons a{
        font-size: 1.5em;
    }

    .swiper-slide .text-content{
        margin: 0 80px 0 50px;
    }

    .swiper-slide .text-content .title{
        font-size: 3em;
    }

    .swiper-slide .text-content p{
        font-size: 0.9em;
    }

    .swiper-slide-active .text-content .read-btn{
        font-size: 0.9em;
        padding: 5px 15px;
    }

    /* Navigation Menu */
    .nav-menu-button{
        display: block;
        color: var(--white-color);
        font-size: 1.5em;
        cursor: pointer;
    }

    .nav-close-btn{
        display: block;
        color: var(--dark-color);
        position: absolute;
        top: 0;
        right: 0;
        font-size: 1.3em;
        margin: 10px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .navigation{
        z-index: 99999;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.25);
        display: flex;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease;
    }

    .navigation.active{
        visibility: visible;
        opacity: 1;
    }


    .navigation .nav-items{
        position: relative;
        background: var(--white-color);
        width: 400px;
        max-width: 400px;
        display: grid;
        place-content: center;
        margin: 20px;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        transform: translateY(-200px);
        transition: 0.3s ease;
    }


    .navigation.active .nav-items{
        transform: translateY(0);
    }

    .navigation .nav-items a{
        color:var(--dark-color);
        font-size: 1em;
        margin: 15px 50px;
        transition: 0.3s ease;
    }

    .navigation .nav-items a:hover{
        color: var(--navigation-item-hover-color);
    }

    .navigation .nav-items a i{
        display: inline-block;
        font-size: 1.3em;
        margin-right: 5px;
    }



    form{
        margin: 2em;
    }
    
    form input, form textarea{
        width: 20em;
    }

    /* About Section */
    .about h2{
        font-size: 2.5em;
    } 
    
    .about p{
        font-size: 0.9em;
     }

     /* Contact */


     /* UIUX */

     .proto_links a{
        font-size: 1em;
    }

    .design_presentation h2{
        font-size: 2.5em;
    }

    .uiux_thumb{
        font-size: .7em;
        margin: 5px 10px;
    }
     
}

@media screen and (max-width:480px){
    form{
        margin: 0em 0em;
    }

    form h2{
        font-size: 1em;
        text-align: center;
    }
    
    form input, form textarea{
        width: 100%;
        font-size: 1em;
    }

    .thank-you{
        margin-top: 0%;
    }
    .thank-you h1{
        font-size: 3em;
    }

    .thank-you p{
        font-size: .8em;
    }

    .swiper-slide .text-content{
        margin: 0 50px 0 30px;
        top: 15%;
    }


    .swiper-slide .text-content .title{
        font-size: 2em;
    }

    .swiper-slide .text-content p{
        font-size: 0.9em;
    }

    /* UIUX */

    .design_presentation{
        padding: 1em 2em;
    }

    /* Gallery */
    .gallery iframe{
        height: 15em;
    }

    .gallery__cover .title{
        top: 25%;
    }

    .gallery__cover h2{
        font-size: 2em;
    }

}