/* <================= Google Font Link (Nunito) =================> */
@import url('ja-jp.ttf');

/* <================= CSS Reset =================> */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'ja-jp';
}
body{
    line-height: 1.7;
    background-color: rgb(51, 50, 50);

}
html{
    scroll-behavior: smooth;
}
::selection{
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}
/* <================= Scroll Bar =================> */
::-webkit-scrollbar{
    width: 10px;
    background-color: black;
}
::-webkit-scrollbar-thumb{
    background-color: #f1f1f1;
    border-radius: 10px;
}
/* <================= CSS Variables =================> */
:root{
    --font-large-color: white;
    --font-small-color: #ffffff;
    --main-color: #f5f5f5;
    --bg-color-1: #000000;
    --bg-color-2: #050505;
}
h1{
    font-size: 90px;
    color: var(--font-large-color);
}
h2{
    font-size: 46px;
    color: var(--font-large-color);
}
h3{
    font-size: 34px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 20px;
}
p,span{
    font-size: 17px;
    color: var(--font-small-color);
}

/* <================= Reusable Classes =================> */
.container{
    padding: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.btn{
    background-color: transparent;
    font-size: 17px;
    outline: none;
    border: 1px solid rgb(8, 8, 8);
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 20px;
    cursor: pointer;
}
.btn a{
    text-decoration: none;
}
.btn:hover{
    background-color: var(--bg-color-1-color);
    border-color: var(--main-color);
}
.heading-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.animate-bar{
    width: 15rem;
    height: 6px;
    background-color: var(--main-color);
    margin-top: 15px;
    position: relative;
}
.animate-bar::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-left: 5px solid white;
    border-right: 5px solid white;
    animation: animate 3s linear infinite;
}
@keyframes animate{
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}
.sub-heading{
    max-width: 40rem;
    text-align: center;
    margin-top: 30px;
    padding: 0 1rem;
}

/* <================= Navbar =================> */
#navbar{
    height: 6.1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    font-weight: 600;
}
#navbar.fixed{
    position: fixed;
    height: 6.1rem;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
#navbar .logo{
    width: 10.8rem;
    margin-left: 5rem;
    z-index: 5;
    opacity: 1;
    
    
}
#navbar .logo img{
    width: 200%;
    height: auto;
    opacity: 2;
    
    
}
#navbar .nav-items{
    display: flex;
    list-style: none;
    margin-right: 5rem;
    
}
#navbar .nav-items li{
    margin: 0 1rem;
    border-bottom: 3px solid rgb(255, 255, 255);
}
#navbar .nav-items li a{
    text-decoration: none;
    color: #fcfcfc;
    font-size: 17px;
    cursor: pointer;
}
#navbar .nav-items li a:hover{
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
}
#navbar .nav-items li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: rgb(214, 180, 69);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1.0s;

}
#navbar .nav-items li a:hover::after{
    width: 100%;
}
nav{
    height: 70px;
   
    box-shadow: 0 3px 15px rgba(255, 255, 255, 0.4);
  }
  nav ul{
    float: right;
    margin-right: 30px;
  }
  nav ul li{
    display: inline-block;
  }
  nav ul li a{
    color: white;
    display: block;
    padding: 0 20px;
    line-height: 70px;
    font-size: 20px;
    
    transition: .5s;
  }
  nav ul li a:hover,
  nav ul li a.active{
    color: #23dbdb;
  }
  nav ul ul{
    position: absolute;
    top: 85px;
    border-top: 3px solid #23dbdb;
    opacity: 0;
    visibility: hidden;
  }
  nav ul li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: .3s linear;
    background-color: #74e4b2;
  }
  nav ul ul li{
    width: 170px;
    display: list-item;
    position: relative;
    border: 1px solid #f6f9fa;
    border-top: none;
  }
  nav ul ul li a{
    line-height: 50px;
  }
  nav ul ul ul{
    border-top: none;
  }
  nav ul ul ul li{
    position: relative;
    top: -70px;
    left: 150px;
  }
  nav ul ul li a i{
    margin-left: 45px;
    color: rgb(253, 253, 253);
  }
.nav-items i{
    color: #ffffff;
}

/* <================= Home =================> */
#home{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#home .text-holder{
    z-index: 2;
      padding-bottom: 19%;
}
#home .text-holder img{
    width:88%;
    padding-left: 10%;
  
    
}
#home .text-holder h1 span{
    font-size: 90px;
    color: var(--main-color);
}
#home .text-holder h3{
    font-weight: 700;
    font-family: 'Georgia', serif;
    text-align: center;
}
#home .text-holder h3 span{
    display: block;
    width: 88%;
    padding-left: 10%;
    margin-bottom: 10px;
    font-size: 30px;
    color: var(--main-color);
    align-self: center;
}
#home .text-holder .button{
    display: block;
    text-align: center;
}
#home .hero-img{
    width: 20rem;
    height: 80%;
    position: absolute;
    z-index: 1;
    right: 10rem;
    bottom: -10px;
    pointer-events: none;
    opacity: 0.8;
}
#home .hero-img img{
    width: 130%;
    height: 98%;
}
#home .social-icons{
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    right: 5rem;
}
#home .social-icons a{
    text-decoration: none;
    width: 45px;
    height: 45px;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    line-height: 35px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease-in-out;
    cursor: pointer;
}
#home .social-icons a i{
    color: #000000;
}
#home .social-icons a:hover{
    transform: translateY(-10%);
    background-color: var(--main-color);
    
}
#home .social-icons a:hover i{
    color: rgb(138, 136, 136);
    
}

.showcase {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--primary-color);
        box-shadow: 0 25px 50px -12px var(--main-color);
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.video-container:after {
	content: '';
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0,);
	position: absolute;
}


/* <=================event vid=================> */
#services{
    background-color: var(--bg-color-2);
}
#services .animate-bar::before{
    border-color: var(--bg-color-2);
}
.service-card .card-content{
    width: 22em;
    height: 35rem;
    padding: 55px 40px;
    margin: 15px;
    background-color: #131416;
    box-shadow: 0 25px 50px -12px var(--main-color);
    transition: all 0.3s ease-in;
}
.service-card .card-content:hover{
    transform: translateY(-5%);
    background-color: #1a1a1a;
}
.service-card .card-content i{
    font-size: 50px;
    color: var(--main-color);
    margin-bottom: 20px;
}
.service-card .card-content h5{
    margin-bottom: 10px;
    color: var(--main-color);
    font-size: 25px;
}
.event-vid{
    overflow: hidden;
    border-style: inset;
    border-color: var(--main-color);
    border-width: 10px;
    box-shadow: 0 25px 50px -12px var(--main-color);
}


/* <================= Resume =================> */
#resume{
    background-color: var(--bg-color-1);
}


/* <=================Gallery =================> */
#Gallery{
    padding: 100px 0;
    background-color: var(--bg-color-2);
}
#Gallery .animate-bar::before{
    border-color: var(--bg-color-2);
}

.gallery-wrapper{
    max-width: 1670px;
    margin: auto;
    
}
.gallery-wrapper .gallery-nav{
    display: flex;
    flex-wrap: wrap;
}
.gallery-wrapper .gallery-nav .gallery-filter{
    padding: 0 15px;
    margin: 20px 0;
    text-align: center;
    width: 100%;
}
.gallery-wrapper .gallery-filter .filter-item{
    color: white;
    font-size: 17px;
    display: inline-block;
    cursor: pointer;
    margin: 8px 20px 8px 20px;
    line-height: 1.2;
    position: relative;
}
.gallery-wrapper .gallery-filter .filter-item::after{
    content: "";
    position: absolute;
    width: 0;
    bottom: -5px;
    left: 50%;
    height: 2px;
    display: block;
    background-color: var(--main-color);
    transition: all 0.3s ease;
    transform-origin: center;
}
.gallery-wrapper .gallery-filter .filter-item.active::after{
    width: 100%;
    left: 0;
}
.content-wrapper{
    display: flex;
    flex-wrap: wrap;
    min-height: 50vh;
}
.gallery-item{
    width: calc(100%/3);
    padding: 15px;
}
.gallery-item.show{
    animation: fade-in 0.5s ease;
}
@keyframes fade-in{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.gallery-item.hide{
    display: none;
}
.gallery-item .gallery-item-inner{
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 90%;
    margin-inline: 20px;
}
.gallery-item .gallery-item-inner:hover .overlay{
    opacity: 0.8;
}
.gallery-item .gallery-item-inner img{
    width: 100%;
    height: 100%;
    box-shadow: -2px 3px 15px var(--main-color);
    vertical-align: middle;
}
.gallery-item .gallery-item-inner .overlay{
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.1s ease-in;
}
.gallery-item .gallery-item-inner .overlay a{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    padding-top: 5px;
}

/* <=================  /features =================> */
#features{
    min-height: 100vh;
    background-color: var(--bg-color-2);
}
#features .animate-bar::before{
    border-color: var(--bg-color-2);
}
.features{
    width: 44%;
    box-shadow: 0 25px 50px -12px var(--main-color);
    margin: 40px;
    padding: 10px;
    background-color: #131416;
    position: relative;
}
.features .img-box{
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    padding-inline: 5px;
}
.features .img-box img{
    width: 100%;
    transition: all 0.3s ease-in;
}
.features .img-box img:hover{
    transform: scale(1.1);
}
.features h6{
    margin-top: 15px;
    font-size: 35px;
    line-height: normal;
    cursor: pointer;
}
.features p{
    margin-top: 10px;
    font-size: 18px;
    font-family:  'ja-jp';
}


.features::before{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 15px;
    color: white;
    background-color: var(--main-color);
    padding: 5px;
    z-index: 2;
}


/* <================= courasel =================> */
#reviews{
    padding: 0 7rem;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color-1);
}
.owl-carousel .item{
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.owl-carousel .item .img-box{
    width: 19rem;
    border-radius: 50%;
    border: 5px  solid var(--main-color);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px var(--main-color);
}
.owl-carousel .item .img-box img{
    width: 100%;
}
.owl-carousel .item .text-holder{
    padding-left: 30px;
}
.owl-carousel .item .text-holder .details{
    font-size: 20px;
}
.owl-carousel .item .text-holder .name{
    font-size: 15px;
    padding-top: 15px;
    line-height: 0.8;
}
.owl-carousel .item .text-holder .rating i{
    font-size: 12px;
    color: var(--main-color);
}
.owl-carousel .item .text-holder .rating span{
    font-size: 13px;
}
.owl-dot span{
    width: 12px !important;
    height: 12px !important;
    border: 1px solid var(--main-color);
    background-color: transparent !important;
}
.owl-dot.active span{
    background-color: var(--main-color) !important;
}
/* <================= wish =================> */
#wish{
    min-height: 120vh;
    background-color: var(--bg-color-2);
}
#wish .animate-bar::before{
    border-color: var(--bg-color-2);
}
.wish{
    width: 47%;
    box-shadow: 0 25px 50px -12px var(--main-color);
    margin: 10px;
    padding: 10px;
    background-color: #131416;
    position: relative;
}
.wish .img-box{
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}
.wish .img-box img{
    width: 100%;
    transition: all 0.3s ease-in;
}
.wish .img-box img:hover{
    transform: scale(1.1);
}
.wish h6{
    margin-top: 15px;
    font-size: 18px;
    line-height: normal;
    cursor: pointer;
}
.wish p{
    margin-top: 10px;
}
.wish button{
    margin-top: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.wish button a{
    text-decoration: none;
    font-size: 15px;
    color: #878e99;
}
.wish button:hover a{
    color: white;
}
.wish::before{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 15px;
    color: white;
    background-color: var(--main-color);
    padding: 5px;
    z-index: 2;
}

/*---------------services-------*/
#services2{
    padding: 30px 15px;
}
.services2-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap:40px;
    margin-top: 50px;
}
.services2-list div{
    background-color: #131416;
    padding: 40px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
}
.services2-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}
.services2-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px; 
}

.services2-list div:hover{
    background: rgb(39, 40, 34);
    transform: translate(-10px);
    
    
}
/* <================= Contact =================> */
#contact{
    background-color: var(--bg-color-1);
}
#contact .animate-bar::before{
    border-color: var(--bg-color-1);
}
#contact .container{
    align-items: flex-start;
    gap: 2.5rem;
}
#contact form{
    width: 50%;
}
form .form-row{
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.form-row .input-data{
    width: 50%;
    display: block;
}
.input-data input, textarea{
    background-color: #1c1d24;
    width: 100%;
    display: block;
    padding: 10px;
    border: none;
    outline: none;
    border-bottom: 2px solid transparent;
    font-size: 17px;
    margin-top: 20px;
    transition: border-bottom-color 0.3s ease;
}
.input-data textarea{
    padding: 10px 10px 120px;
}
.input-data input:focus, textarea:focus{
    border-bottom-color: var(--main-color);
}
#contact .contact-info{
    width: 30%;
}
#contact .contact-list{
    list-style: none;
    padding-top: 20px;
}
.contact-list .list-item{
    display: flex;
    align-items: center;
}
.contact-list .list-item .icon i{
    font-size: 30px;
    padding-right: 20px;
    color: var(--main-color);
}
.contact-list .list-item .details{
    padding: 15px;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    
    
    line-height: 22px;
}
.contact-list .list-item .details label{
    font-size: 30px;
    font-weight: 500;
    color: var(--main-color);
    
}
.contact-list .list-item .details a{
    box-shadow: 0 25px 50px -12px var(--main-color);
}
.contact-list .list-item .details p{
    font-size: 15px;
}
.social-icons{
    margin-top:30px ;
    margin-left: 5%;
    margin-bottom: auto;
    position: relative;
}
.social-icons a{
     text-decoration: none;
     font-size: 30px;
     margin-right: 15px;
     color: var(--main-color); ;
     display: inline-block;
     transition: transform 0.5s;
}
.social-icons a:hover{
    color: var(--main-color);
    transform:translateY(-5px);
}
/* <================= Footer =================> */
footer{
    background-color: black;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer i{ color: var(--main-color);
}

/* <================= Responsive =================> */

/* Hamburger */
#navbar .checkbox{
    position: absolute;
    width: 32px;
    height: 26px;
    right: 2.5rem;
    opacity: 0;
    display: none;
}
.hamburger-lines{
    position: absolute;
    width: 32px;
    height: 26px;
    right: 2.5rem;
    pointer-events: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    display: none;
}
.hamburger-lines .line{
    display: block;
    height: 4px;
    width: 100%;
    border: 10px;
    background-color: #f8f8f8;
}
.hamburger-lines .line1{
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}
.hamburger-lines .line2{
    transition: transform 0.2s ease-in-out;
}
.hamburger-lines .line3{
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}
input[type="checkbox"]:checked ~ .hamburger-lines .line1{
    transform: rotate(45deg);
}
input[type="checkbox"]:checked ~ .hamburger-lines .line2{
    transform: scale(0);
}
input[type="checkbox"]:checked ~ .hamburger-lines .line3{
    transform: rotate(-45deg);
}
#msg{color: var(--main-color);
}

/* Media Queries */
@media (max-width: 950px) {
    #navbar .nav-items{
        position: fixed;
        flex-direction: column;
        gap: 20px;
        top: 0;
        left: -100%;
        background-color: #131416;
        width: 300px;
        height: 100%;
        padding-top: 8rem;
        padding-left: 2rem;
        transition: all 0.5s ease-in-out;
    }
    input[type="checkbox"]:checked ~ .nav-items{
        left: 0% !important;
    }
    #navbar .checkbox{
        display: block;
    }
    .hamburger-lines{
        display: flex;
    }
    #navbar .logo{
        margin-left: 1.5rem;
    }
    #about .container .about-img{
        width: 20rem;
    }
}
@media (max-width: 850px){
    #navbar .checkbox{
        right: 2.5rem;
    }
    #home .text-holder{
        text-align: center;
    }
    #home .text-holder h1,
    #home .text-holder h1 span{
        font-size: 45px;
    }
    #home .text-holder h3,
    #home .text-holder h3 span{
        font-size: 20px;
    }
    #home .scroll-txt{
        display: none;
    }
    #home .social-icons{
        width: 100%;
        text-align: center;
        right: 0;
    }
    #about .container .text-wrapper{
        padding-left: 120px;
    }
    .service-card .card-content{
        width: 100%;
        margin: 15px 0;
    }
    #blogs .blog{
        width: 100%;
    }
    .container{
        padding: 0 80px;
    }
    #portfolio .gallery-item{
        width: 50%;
    }
    #contact .contact-info,
    #contact form{
        width: 40rem;
    }
}
@media (max-width: 700px){
    #portfolio .gallery-item{
        padding: 15px 1.5rem;
    }
}
@media (max-width: 600px){
    .container{
        padding: 0 20px;
    }
    #home .hero-img{
        display: none;
    }
    #about .container {
        padding: 100px 20px;
        justify-content: flex-start;
    }
    #about .container .text-wrapper{
        padding: 0;
    }
    #resume .container .resume-item{
        width: 100%;
    }
    #skills .container{
        padding: 0 1.5rem;
    }
    #skills .container .progress-item{
        width: 100%;
    }
    #skills .container .progress-item .progress-bar{
        width: 100%;
    }
    #reviews{
        padding: 0 20px;
        height: auto;
    }
    .owl-carousel .item{
        flex-direction: column;
        text-align: center;
    }
    .owl-carousel .item .img-box{
        width: 8rem;
        margin-bottom: 20px;
    }
    .owl-carousel .item .text-holder{
        padding: 0;
    }
    .owl-carousel .owl-dot{
        padding: 0 !important;
    }
}
@media (max-width: 467px){
    #portfolio .gallery-item{
        width: 100%;
    }
    #portfolio .gallery-filter .filter-item{
        margin-bottom: 10px;
    }
}