html{
    scroll-behavior: smooth;
}
body{
    background-color: black;
        /* background-position: -1000px 90px; */
    font-family: "KoHo", sans-serif;
}
::-webkit-scrollbar {
    background-color: orangered;
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background:rgba(0, 0, 0, 0.655);
  }
* {
    margin: 0;
    padding: 0;
}
#background{
    margin-top: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.553) url(https://images.pexels.com/photos/1714341/pexels-photo-1714341.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
    background-blend-mode: darken;
    /* background-repeat: repeat-x; */
    background-size: cover;
    z-index: -1;
    background-attachment: fixed;
}

/* Navbar start */
.nav {
    /* font-size: 12px; */
    align-items: center;
    /* padding-bottom: 5px; */
    display: flex;
    /* max-height: max-content; */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 3;
    font-family: "KoHo", sans-serif;
    transition: all 0.5s ;
}
.nav-scrolled{
    backdrop-filter: blur(7px);
    background-color: rgba(0, 0, 0, 0.301);
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.817);

}
.navbar {
    /* width: 80%; */
    display: flex;

    align-items: center;
    justify-content: center;
}

.navbar .logo {
    width: fit-content;
    padding-top: 3px;
    object-fit: cover;
    margin-right: 23px;
}

.navbar .logo img {
    filter: grayscale(100%);
    border: 1.5px solid white;
    width: 50px;
    border-radius: 50%;
    transition: ease-in-out 0.3s;
    /* backdrop-filter: grow(23px); */
    /* filter: invert(7); */
}

.logo img:hover {
    filter: grayscale(0%);
    /* border: solid 2px red; */
    /* filter: drop-shadow(0px 0px 2px orangered); */
}

.navbar .list_items {
    align-items: center;
    display: flex;
    list-style-type: none;
}

.navbar .list_items li {
    margin: 0;
    padding: 2px 2px;
    justify-content: space-around;
}

.navbar a {
    padding: 5px 12px;
    /* gap: 280px; */
    align-items: center;
    text-decoration: none;
    color: white;
    transition: 0.4s;
}

.navbar a:hover {
    border-radius: 3px;
    align-items:safe;
    height: 10px;
    color: white;
    background-color: orangered;
    box-shadow: 0px 0px 12px orangered;
}
.dropbtn {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 6px;
    font-size: 16px;
    border: none;
    display: none;
    cursor: pointer;
    font-family: "KoHo", sans-serif;

    transition: 0.4s;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    font-family: "KoHo", sans-serif;

    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 10px;
    left: 60px;
    border-radius: 3px;
    text-align: center;
    background-color: rgb(97, 97, 97);
    min-width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: white;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.219);
    box-shadow: inset 0px 0px 2px white;
    height: fit-content;
}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    border-radius: 3px;
    background-color: orangered;
    box-shadow: 0px 0px 12px orangered;
  }
  .dropdown:hover > .dropbtn:not(:hover){
    backdrop-filter: blur(20px);
    transform: scale(0.9, 0.9);
  }
/* Navbar Ends */

/* SearchBar Starts */
.search_bar {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

#searchbar {
    background-color: rgba(255, 255, 255, 0.251);
    color: rgba(0, 0, 0, 0.708);
    text-align: center;
    border: none;
    box-shadow: 0px 0px 12px blac;
    border-radius: 45px;
}

.search {
    margin: 0px 10px;
    background-color: rgba(255, 255, 255, 0);
    background-image: url(../img/search.png);
    border: none;
    filter: invert(1);
    background-position: -4px -3px;
    background-size: 30px;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    transition: 0.3s;
}

.search:hover {
    filter: invert(1) drop-shadow(0px 0px 3px rgb(255, 255, 255));
    cursor:pointer;
}

.title {
    padding-left: 10%;
    display: block;
    /* color: rgba(255, 255, 255, 0.731); */
    color: white;
    width: 20%;
}

.title h1 {
    transition: 0.4s;
    font-size: 150%;
}

.title h2 {
    transition: 0.4s;
    font-size: 70%;
    color: orangered;
    /* color: rgba(255, 68, 0, 0.728); */
    margin-top: -19px;
}

/* Navbar start */

/* Section 02 starts here */
.section2 {
    display: flex;
    /* border: solid red; */
    /* width: vh; */
    height: 92vh;
}

/* section2 left part starts here */
.leftsection {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.5s;
    animation: fadeInUp 1s ease-out backwards; 
}

.leftsection h3 {
    margin-bottom: 1%;
    margin-left: 20%;
    margin-right: 10%;
    color: white;
    font-family: "Mina", sans-serif;
    font-size: 200%;
    text-shadow: 0px 0px 9px black;
    /* animation-name: bounce; */
}

#element {
    color: orangered;
}
.leftsection .bttn {
    margin-top: 6%;
    display: flex; 
    width: fit-content;
    gap: 10px;
    flex-direction: row;
}
.buttn{
    /* cursor: pointer; */
    padding: 15px;
    /* width: max-content; */
    /* height: max-content; */
    /* border-radius: 0px; */
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    /* margin: auto; */
    border: 1.5px orangered;
    /* text-shadow: 0.1px 0px 13px white; */
    border-style:  ridge ;
    /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "KoHo", sans-serif;
    
    color: rgb(198, 198, 198);
    /* border: Solid rgba(255, 255, 255, 0.338) 1px; */
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(15px);
    transition: all 0.25s;
}
.buttn:hover{
    background-color: orangered;
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-radius: 4px;
    box-shadow: 0px 0px 14px rgb(0, 0, 0);

}
#resume:hover{
    transform:scale(1.1) rotate(-5deg);
}
#resume{
    border-radius: 50px  0px 0px 50px ;
}
#contact{
    border-radius:   0px 50px 50px 0px  ;
}
.rightsection{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    /* filter: grayscale(5=0%); */
}
.rightsection img{
    z-index: 1;
    display:flex;
    opacity: 0.8;
    position:sticky;
    /* border-radius: 50%; */
    /* object-fit: cover; */
    filter: drop-shadow( 0px 0px 24px black);
    max-width:70%;
    max-height: 60%;
}
.section03{
    /* border: solid yellow; */
    max-width: 100%;
    /* margin-top:10% ; */
    padding: 3px;
    background-color: rgb(223, 223, 223);
    /* background-color: rgba(103, 77, 77, 0.587); */
    height: max-content;
    /* display:  flex; */
    /* flex-direction: column; */
    text-align: center;
    align-items: center;
}
.section03 #worktxt{
    /* text-align: center; */
    position:relative;
    font-size: 74px;
    font-weight: 400;
    color: orangered;
    /* max-width: fit-content; */
    letter-spacing: 23px;
    text-shadow: 0px 0px 2px black;
    /* border-bottom: solid black; */
    /* display: -ms-flexbox; */
    /* border: solid red; */
}
.projects{
    max-width: 100%;
    /* margin-top: 5%; */
    overflow-x: hidden;
    overflow-y: hidden;
    flex-direction: row;
    column-gap: 2px;
    height: 60vh;
    display: flex;
    flex-wrap: nowrap;
    /* grid-template-columns: repeat(auto-fit, minmax(150rem, 10rem)); */
    /* column-gap: 2px; */
    /* justify-content: space-evenly; */
    /* grid-row: auto; */
    /* grid-auto-flow: row; */
}
.project{
    display: flex;
    /* background-blend-mode: darken; */
    backdrop-filter: blur(10px);
    /* box-shadow: inset -30px -5px 30px 5px #000000a8 ;*/
    /* box-shadow: inset 0px 0px 13px 1px black; */
    justify-content:center;
    text-align: center;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.374) url(../img/project.png); */
    /* background-size: cover;   
    background-position: -200px;
    background-blend-mode:darken;
    background-attachment: local; */
    flex-direction: row;
    width: 23%;
    object-fit: contain;
    flex-wrap: wrap;
    border-radius: 12px 12px 12px 12px;
    /* background-color: rgba(240, 255, 255, 0.306); */
    /* height: 50VH; */
    /* border-style: orangered groove ; */
    backdrop-filter: blur(10px);
    border: solid orangered;
    transition: ease-in-out 0.5s;
    /* animation: fadeInUp 1s ease-out backwards;  */

}
.project:hover{
    background-blend-mode:exclusion;
    border-radius: 6px;
    box-shadow: inset -30px -5px 30px 5px #00000000 ;
    
    /* background: rgba(0, 0, 0, 0.427) url(../img/pexels-jakub-novacek-924824.jpg) ; */
    /* background-blend-mode:lighten;
    background-size: cover; */
    /* transform: scale(1.3); */
    /* z-index: 1; */
    /* background-repeat: no-repeat; */
    position:static;
    width:80%;
    height: 60VH;
} 
.project p{
    display: none;
    color: white;
    height: 20vh;
    padding: 5px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    /* text-shadow: 0px 0px 12px white; */
    /* border: solid red; */
    /* margin-top: 5%; */
    margin-top: auto;
    justify-self: end;
    transition: ease-in-out 0.5s;
}
.project:hover p{
    background-color: rgba(0, 0, 0, 0.646);
    box-shadow: -2px -5px 12px rgba(0, 0, 0, 0.459);
    display: block;
    width: fit-content;
}
#projecttile{
    position: absolute;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0);
    width: 14rem;
    height: fit-content;
    /* transform: scale(1.6); */
    /* display:inline; */
    font-weight: 300;
    border-radius: 50px;
    margin-left: 70%;
    /* padding-top: 20%; */
    /* padding-left: 40%; */
    /* padding-bottom: 60%; */
    color: white;
    border: 1.4px red;
    border-style: groove;
    backdrop-filter: blur(10px);
    /* box-shadow: 0px 0px 32 rgb(180, 131, 131); */
    /* text-shadow: 0px 0px 12px rgb(255, 255, 255); */
    rotate: 90deg;
    transition: all ease-in-out 0.5s;
}
.project{
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
}
.p1{
    background: rgba(0, 0, 0, 0.603) url(/img/My\ Virtual\ Library_page-0001.jpg);
    background-size: cover;
}
.p2{
    background: rgba(0, 0, 0, 0.603) url(https://kinsta.com/wp-content/uploads/2021/04/kinsta-home-page.png);
}
.project:hover #projecttile{
    display: block;
    text-decoration: underline;
    margin-left: 0%;
    margin-bottom: 50%;
    rotate: 0deg;
    /* margin-top: 23px; */
}
#seemoretxt{
    color: black;
    text-decoration: none;
    transition: 0.5s;
    margin-top: 23px;
}
#seemoretxt:hover{
    color: orangered;
}
.section02{
    width: 100%;
    height: max-content;
    margin: 0;

    padding: 0;
}
.container1{
    margin-top: 10%;
    max-width: 100%;
    padding: 23px;
    display: flex;
    flex-direction: row;
    color: black;
    background-color: rgb(223, 223, 223);
}

.container1 .textobj{
    width: 50%;
}
.textobj h2{
    font-size: 74px;
    font-weight: 400;
    color: orangered;
    width: fit-content;
    letter-spacing: 23px;
    text-shadow: 0px 0px 2px black;
    border-bottom: solid orangered;
}
.textobj p{
    font-size: 25px;
    letter-spacing: 2px;
    color: maroon;
    margin-top: 33px;
}
.container1 .imageobj{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.imageobj img{
    object-fit: contain;
    width:80%;
    filter: drop-shadow(0px 0px 2px rgb(0, 0, 0));
    /* border-radius: 22px; */
    /* border-radius: 22px; */
/* background: linear-gradient(145deg, #cacaca, #f0f0f0); */
/* box-shadow:  14px 14px 28px #464646, */
             /* -14px -14px 28px #ffffff; */
}
.hr{
    justify-content: center; 
    align-items: center; 
    /* color: ; */
    height: 30vh;
    display: flex; 
}
.container2{
    background-color: rgba(0, 0, 0, 0.379);
    backdrop-filter: blur(10px);
    margin-top: 0%;
    /* border:double red; */
}
.container2 .textobj p{
    color: white;
    font-size: 15px;
}
.container2 .imageobj img{
    filter: drop-shadow(0px 0px 2px white);
}
footer{
    padding: 23px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    position:relative;
    display: flex;
    flex-direction: column;
    font-size: smaller;
    /* margin-bottom: 10px; */
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.498);
    box-shadow: 0px -5px 12px rgba(0, 0, 0, 0.468);
    /* border: solid red; */
    align-items: center;
    height: 6vh;
    color: white;
}
