@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Krona+One&family=Poppins:wght@300;600;700&family=Schibsted+Grotesk:wght@400;700&family=Space+Grotesk:wght@300;600;700&family=Syne:wght@400;600;700&display=swap");


@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Thin.otf') format('opentype');
  font-weight: 100;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-Black.otf') format('opentype');
  font-weight: 900;
}

@font-face {
  font-family: 'Aeonik Pro';
  src: url('fonts/AeonikPro-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

:root {
  --pf: "Aeonik Pro", sans-serif;
  --sf: "Space Grotesk", sans-serif;

  --pc: #d5fd40;
  --sc: #020202;
  --txt: #ffffff;
  --sc-text: #777777;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #0c0c0c;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: #000000;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

a {
  -webkit-tap-highlight-color: transparent !important; /* Disable tap highlight on WebKit browsers (e.g., Chrome, Safari) */
  tap-highlight-color: transparent !important; /* Disable tap highlight on some other browsers */
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--sc);
  color: var(--txt);
  font-family: var(--sf);
  padding-top: 1rem;
}

.logo {
  text-decoration: none;
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: center;
  align-self: center;
}

.gridbox {
  display: grid;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 1080px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 15px;
}

.navbar {
  display: grid;
  margin: 0 auto;
  margin-bottom: 5%;
  margin-top: 1%;
  max-width: 1300px;
  grid-template-columns: repeat(9, 1fr);
  grid-auto-rows: minmax(50px, auto);
  grid-gap: 15px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.connect {
  display: grid;
  margin: 0 auto;
  margin-top: 5rem;
  max-width: 1300px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 15px;
}

.divider {
  border-bottom: 2px solid rgb(57, 57, 57);
  max-width: 1300px;
  margin: 0% auto;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  align-items: center;
  font-family: var(--sf);
}

.connect1 {
  grid-column: 1/4;
  padding-left: 2%;
}

.connect1 h1 {
  font-family: var(--pf);
  color: var(--txt);
  font-size: 4.2rem;
  font-weight: 300;
}

.connect2 {
  grid-column: 5/6;
  grid-row: 1/3;
}

.round-btn {
  background-color: var(--pc);
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.connect3 {
  grid-column: 1/2;
}

.connect4 {
  grid-column: 2/4;
}

.round-btn a {
  color: var(--sc);
  font-family: var(--pf);
  font-weight: 500;
}

.round-btn a:hover {
  color: purple;
}

.tab1 {
  grid-column: 1/3;
  grid-row: 1/2;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos img {
  height: 56px;
  width: 56px;
  object-fit: cover;
}

.tab2 {
  display: none;
}

.tab3 {
  grid-column: 3/5;
}

.tab3 p {
  font-family: var(--pf);
  font-weight: 300;
  padding: 5%;
}

.tab4 {
  display: none;
}

.tab5 {
}

.tab6 {
}

.tab7 {
}

.tab8 {
}

.tab-link {
  font-family: var(--pf);
  padding: 5%;
}

a {
  font-weight: 300;
  color: var(--txt);
  text-decoration: none;
}

a:hover {
  color: var(--pc);
}

.tab9 {
}

.navbar div {
  border-radius: 12px;
}

.landing {
  display: grid;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 1300px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 25px;
}

.landing1 {
  grid-column: 1/3;
}

.landing1 h1 {
  font-family: var(--pf);
  font-weight: 300;
  font-size: 3.5rem;
}

.landing2 {
  grid-column: 1/3;
  grid-row: 2/4;
  margin-bottom: 5%;
  margin-top: 5%;
}

.landing3 h1 {
  font-family: var(--pf);
  font-weight: 300;
  font-size: 1.5rem;
  width: 75%;
}

.landing3 {
  grid-column: 1/3;
  grid-row: 4/6;
  margin-bottom: 5%;
}

button{
  font-family: var(--pf) !important;
  font-weight: 300;
}

.filter-btns{
  display: grid;
  margin: 0 auto;
  margin-top: 5%;
  max-width: 1300px;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 10px;
}

.filter-btns .active{
  color: var(--sc);
  background-color: var(--pc);
}

.landing3 h1{
  font-size: 4rem;
  color: white;
}

.works .hide{
  display: none;
}

.landing4 {
  grid-column: 1/3;
  display: none;
}

.links {
  display: flex;
  flex-direction: column;
}

.links a {
  color: var(--txt);
  text-decoration: none;
  font-size: 3.6rem;
  text-align: left;
  font-family: var(--pf);
}

.links a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--txt);
  display: block;
  transition: 1s;
}

.links a:hover::after {
  width: 100%;
}

.works {
  display: grid;
  margin: 0 auto;
  max-width: 1300px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 15px;
  margin: 0% auto;
  margin-bottom: 5%;
}

.be {
  display: grid;
  margin: 0 auto;
  max-width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 15px;
}

.be-img {
  grid-column: 1/2;
  padding-bottom: 50%;
}

.be-txt {
  padding: 3%;
  grid-column: 2/4;
  margin-top: 3%;
}

.be-txt h1 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
}

.be-txt p {
}

nav {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  height: 2rem;
  margin: 0 auto;
  padding: 2% 5%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: -1rem;
}

.projects {
  display: grid;
  margin: 0 auto;
  max-width: 1080px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 20px;
}

.stats {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding-top: 10%;
}

.contactme {
  display: grid;
  margin: 0 auto;
  max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(200px, auto);
  grid-gap: 10px;
  padding-top: 2%;
}

.gridbox div {
  border-radius: 12px;
}

.grid1 {
  grid-column: 1/2;
  padding: 3% 0%;
}

.grid1 h1 {
  font-family: var(--pf);
  color: var(--txt);
  font-size: 1.8rem;
}

.grid2 {
  grid-column: 2/4;
  padding: 1% 0%;
}
.grid3 {
  grid-column: 1/2;
  grid-row: 2/4;
}
.grid4 {
  grid-column: 2/3;
  grid-row: 2/4;
}
.grid5 {
  grid-column: 3/4;
  grid-row: 2/4;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.img-container {
  overflow-y: scroll;
}

.port .img-container {
  height: 300px;
  width: auto;
  overflow-y: scroll !important;
  padding: 0rem;
  margin: 0rem;
  border-radius: 12px !important;
  border: solid 1px var(--black-300);
}

.port .img-container::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.port .img-container::-webkit-scrollbar-track {
  border: 1px solid black;
  background-color: #000000;
  border-radius: 12px;
}

.port .img-container::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
}

.port img {
  object-fit: cover;
  height: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .cursor-dot {
    display: none;
  }

  .cursor-outline {
    display: none;
  }

  .port .img-container {
    height: 300px;
    width: 100%;
    overflow-y: scroll;
    padding: 0rem;
    margin: 0rem;
    /* border-radius: 10px;*/
    border: solid 1px var(--black-300);
  }
  .port .o2 {
    margin-top: 1rem;
  }
}

.title-txt {
  font-family: var(--pf);
  color: var(--txt);
  font-size: 1.8rem;
  color: var(--pc);
}

.sec-txt {
  font-family: var(--sf);
  color: var(--sc-text);
  margin-top: 0.4rem;
}

.pc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.txt {
  font-family: var(--sf);
  padding: 2% 5%;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (max-width: 1500px) {
  .landing {
    max-width: calc(100% - 15%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 4%;
  }

  .filter-btns{
    max-width: calc(100% - 15%);
  }

  .divider {
    max-width: calc(100% - 15%);
  }

  .works {
    max-width: calc(100% - 15%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 8%;
  }

  .connect {
    max-width: calc(100% - 15%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
  }

  .navbar {
    max-width: calc(100% - 15%);
  }
}

button{
  -webkit-tap-highlight-color: transparent !important; /* Disable tap highlight on WebKit browsers (e.g., Chrome, Safari) */
  tap-highlight-color: transparent !important; /* Disable tap highlight on some other browsers */
}

@media screen and (max-width: 1200px) {
  .landing {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 4%;
  }

  .filter-btns{
    max-width: calc(100% - 20%);
  }

  .divider {
    max-width: calc(100% - 20%);
  }

  .works {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 8%;
  }

  .connect {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
  }

  .navbar {
    max-width: calc(100% - 20%);
  }

  
  .stats .title-txt{
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 960px) {
  .landing {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 4%;
  }

  .filter-btns{
    max-width: calc(100% - 20%);
  }

  .divider {
    max-width: calc(100% - 20%);
  }

  .works {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 8%;
  }

  .connect {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
  }

  .navbar {
    max-width: calc(100% - 20%);
  }

  .stats{
    flex-grow: 1;
    flex-wrap: wrap;
  }

  .title-txt{
    font-size: 3rem !important;
  }

  .stats .title-txt{
    font-size: 2.5rem;
  }


}

@media screen and (max-width: 918px) {
  .landing1 h1 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .gridbox {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
  }

  .landing {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 5%;
  }

  .filter-btns{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(30px, auto);
    max-width: calc(100% - 20%);
  }

  .filter-btns .btn{
    margin: 0;
    padding: 0;
  }

  .divider {
    max-width: calc(100% - 20%);
    margin-top: 0;
    padding-top: 0;
  }

  .filter-btns{
    margin-top: 10%;
  }

  .connect {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(80px, auto);
  }

  .connect1 h1 {
    font-size: 4rem;
  }

  .connect4 {
    display: none;
  }

  .connect2 {
    margin: auto auto;
    padding-bottom: 40%;
  }

  .connect3 {
    padding-top: 10%;
  }

  .landing1 h1 {
    font-size: 2rem;
  }

  .landing2 {
  }
  .landing3 h1 {
    font-size: 1rem;
  }

  .landing4 a {
    font-size: 2rem;
  }

  .landing3 {
    grid-row: 4/5;
  }

  .landing4 {
    grid-row: 4/5;
  }

  .navbar {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(40px, auto);
  }
  .tab1 {
    grid-column: 1/2;
  }

  .tab1 .tab-link {
    padding-left: 2%;
  }

  .tab2 {
    display: none;
  }

  .tab3 {
    display: none;
  }

  .tab4 {
    display: none;
  }

  .tab5 {
    display: none;
  }

  .tab6 {
    display: none;
  }

  .tab7 {
    display: none;
  }

  .tab8 {
    display: none;
  }

  .works {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: minmax(100px, auto);
    margin-bottom: 12%;
  }

  nav {
    margin-bottom: 10%;
  }


  .grid1 {
    grid-column: 1/3;
    display: none;
  }
  .grid2 {
    grid-column: 1/3;
    display: none;
  }
  .grid3 {
    grid-column: 1/3;
    grid-row: 1/2;
    margin-bottom: 3rem;
  }
  .grid4 {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .grid5 {
    grid-column: 1/3;
    grid-row: 3/5;
  }

  .projects {
    max-width: calc(100% - 20%);
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: minmax(200px, auto);
    padding: 2%;
    padding-top: 8%;
  }

  .contactme {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: minmax(200px, auto);
  }

  .stats {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    padding-bottom: 5%;
  }

  .title-txt{
    font-size: 2.5rem !important;
  }

  .stats .title-txt {
    font-size: 2rem !important;
  }

  .stats .sec-txt {
    font-size: 0.9rem !important;
  }

  .project1 {
  }

  .project2 {
  }

  .project3 {
  }

}

@media screen and (max-width: 550px) {
  .landing1 h1 {
    font-size: 1.8rem;
  }

  .landing2{
    grid-row: 2/3;
  }

  .landing3{
    grid-row: 3/5;
  }

  .landing4 {
    display: none;
  }

  .connect1 h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 475px) {
  .landing1 h1 {
    font-size: 1.5rem;
  }

  .landing2 {
    margin-top: 2% !important;
  }
  .connect h1{
    font-size: 2.6rem;
  }

  .stats {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    padding-bottom: 5%;
  }

  .title-txt{
    font-size: 1.8rem !important;
  }

  .sec-txt{
    font-size: 0.8rem;
  }

  .stats .title-txt {
    font-size: 2rem;
  }

  .stats .sec-txt {
    font-size: 0.9rem !important;
  }

}

@media screen and (max-width: 408px) {
  .landing1 h1 {
    font-size: 1.2rem;
  }

  .connect2 {
    display: none;
  }

  .landing2 {
    margin-top: -8% !important;
    margin-bottom: 0;
    padding: 0;
    grid-row: 2/3;
    
  }
  .title-txt{
    font-size: 1.5rem !important;
  }

  .stats .title-txt{
    font-size: 1.6rem !important;
  }
  .stats{
    gap: 1rem;
  }
  
}


.slider-right {
  overflow: hidden;
  white-space: nowrap;
}

.slider-right-items {
  display: inline-block;
  animation: marquee-animation 10s linear infinite;
}

.slider-right-items img {
  display: inline-block;
  width: 500px;
  height: auto;
  margin-right: 10px;
}

@keyframes marquee-animation {
  100% {
    transform: translateX(0);
  }
  0% {
    transform: translateX(-100%);
  }
}
.button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  width: 170px;
  height: 60px;
  font-size: 20px;
  background: var(--sc);
  border: solid 1px var(--sc-text);
  border-radius: 50px;
  color: var(--txt);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 5rem;
  font-family: var(--pf);
  font-weight: 300;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.button span {
  display: inline-block;
}

.flexd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  background: var(--txt);
  color: var(--sc);
  border: 1px solid var(--sc-text);
}

.btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  width: 100%;
  height: 60px;
  font-size: 20px;
  background: var(--sc);
  border: solid 1px var(--sc-text);
  border-radius: 50px;
  color: var(--txt);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 5rem;
  font-family: "Archivo", sans-serif;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.btn span {
  display: inline-block;
}

.btn:hover {
  background: var(--txt);
  color: var(--sc);
  border: 1px solid var(--sc-text);
}

.slider-right-items img {
  height: 20em;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#nav {
  height: 66px;
  width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  left: 50%;
  bottom: 5%;
  background-color: #303030;
  border-radius: 20px;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
#nav a {
  text-decoration: none;
  padding: 0.4rem;
  color: white;
  font-family: "Poppins";
  font-size: 0.95rem;
  transition: color 0.5s ease-in-out;
}
#nav .active {
  color: rgb(255, 250, 105);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  mix-blend-mode: difference;
  transition: transform 0.3s ease;
  z-index: 10;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1.5px solid hsla(0, 0%, 100%, 0.5);
  mix-blend-mode: difference;
  z-index: 10;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.btn-s1 {
  border: 1px solid #d5fd40 !important;
  padding: 10%;
}

h1:hover + .cursor-dot {
  transform: scale(5);
}

html {
  cursor: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  width: 100%;
  height: 100vh;
}
.page-transition {
  position: absolute;
  bottom: 0;
  background-color: var(--sc);
  width: 100%;
  height: 0%;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  width: auto;
}

.loader h1 {
  font-family: var(--pf);
  font-weight: 300;
  color: var(--txt);
}

.filter-btns .btn:hover{
  background-color: var(--pc) !important;
  border: var(--sc) !important;
}

@media screen and (max-width: 450px) {
  .filter-btns .btn button{
    font-size: 0.6rem !important;
  }
}