* {
  font-family: 'Mulish', sans-serif;
}

.logo{
    margin-left: 20px;
    margin-bottom: 40px;
    width: 250px;
    /* height: 80px; */
}

.fixed-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between icons */
    z-index: 9999;
}

/* Styling for the fixed icons */
.fixed-button {
    font-size: 24px;
    display: flex;
    cursor: pointer;
    color: #20a7d8;
    
}
.fixed-container a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits text color from the parent */
}

.fixed-button:hover {
  color: #cd3b44; /* Change color on hover (optional) */
}

#line{
    transform: translateX(-1%) rotate(90deg);
    margin-top: 50px;
}
.h1-name{
    font-size: 100px;
    color: rgb(90, 89, 89);
}
.para{
    font-size: 20px;
    width: 100%;
}

.home-section{
  display: flex;
  justify-content: space-between;
  padding: 0px 60px;
}


.animation-container {
  color: #010101;
  font-size: 2.26rem;
  text-transform: uppercase;
  margin-top: -80px;
  margin-bottom:-18px;
  display: flex;
  align-items: center;
}

.animation {
  height:50px;
  overflow:hidden;
  margin-left: 1rem;
}

.animation > div > div {
  padding: 0.25rem 0.75rem;
  height:2.81rem;
  margin-bottom: 2.81rem;
  display:inline-block;
}

.animation div:first-child {
  animation: text-animation 8s infinite;
}

.first div {
  background-color:#20a7d8;
}
.second div {
  background-color:#CD921E;
}
.third div {
  background-color:#c10528;
}

@keyframes text-animation {
  0% {margin-top: 0;}
  10% {margin-top: 0;}
  20% {margin-top: -5.62rem;}
  30% {margin-top: -5.62rem;}
  40% {margin-top: -11.24rem;}
  60% {margin-top: -11.24rem;}
  70% {margin-top: -5.62rem;}
  80% {margin-top: -5.62rem;}
  90% {margin-top: 0;}
  100% {margin-top: 0;}
}


/* soda can */
.banner{
  /* margin-top: -50px; */
  height: 100vh;
  /* overflow: hidden; */
  position: relative;
}
.product{
  position: absolute;
  /* left: 10%; */
  transform: translateX(-50%);
  bottom: 170px;
  width: 500px;
  transition: 0.7s;
}
.product .soda{
  position: absolute;
  bottom: 0;
  left: calc(100%);
  transform: translateX(-50%);
}
.soda{
  --left: 0px;
  background: 
      var(--url) var(--left),
      url(assets/mockup.png) 0 0;
  background-size: auto 100%;
  width: 280px;
  aspect-ratio: 2 / 4;
  background-blend-mode: multiply;
  transition: 0.8s;
  mask-image: url(assets/mockup.png);
  mask-size: auto 100%;
}
.soda:nth-child(2){
  opacity: 0;
}
.product:hover{
  bottom: 300px;
}
.product:hover .soda:nth-child(2){
  opacity: 1;
  --left: 500px;
}
.product:hover .soda:nth-child(1){
  opacity: 0;
  --left: 500px;
}
@media screen and (max-width: 1023px) {
  
  .soda{
      width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .soda{
      width: 250px;
  }
  header img{
      display: none;
  }
  header .author{
      width: 100%;
  }

}

.home-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures responsiveness */
}

.left, .right {
  width: 50%; /* Adjust width to make room for both sections */
  /* padding: 10px; */
}

@media (max-width: 768px) {
  .home-section {
      flex-direction: column-reverse; /* Switch order of left and right sections on mobile */
  }

  .left, .right {
      width: 100%; /* Ensure both sections take full width on smaller screens */
  }
  .right{
    margin-left: -280px;
    margin-top: -70px;
  }
  .left{
    margin-top: -100px;
  }
  .h1-name{
    font-size: 50px;
    text-align: center;
    padding-bottom: 40px;
  }
  .para{
    text-align: center;
    font-size: 20px;
    width: fit-content;
  }
  .animation-container{
    width: fit-content;
  }
  .wrap{
    width: 768px;
    height: 468px;
  }

}



/* ABOUT MYSELFT */
.self-section{
  padding-top: 100px;
  background-color: #131b1e;
  padding-bottom: 100px;
}
.h1-text {
	font-size: 7.25vmin;
	text-align: center;
	color: green;
}
.p-text {
	font-size: max(10pt, 2.5vmin);
	line-height: 1.4;
	color: #0e390e;
	margin-bottom: 1.5rem;
}

.wrap {
  
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 1000px;
	height: 518px;
	margin: 2rem auto;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
  box-shadow: 10px 10px 20px lightblue;
}
.overlay {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 1rem 0.75rem;
	background: white;
	transition: 0.4s ease-in-out;
	z-index: 1;
}
.overlay-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 15vmin;
	height: 100%;
	padding: 0.5rem 0 0 0.5rem;
	border: 3px solid;
	border-image: linear-gradient(
			to bottom,
			#aea724 5%,
			forestgreen 35% 65%,
			#aea724 95%
		)
		0 0 0 100%;
	transition: 0.3s ease-in-out 0.2s;
	z-index: 1;
}
.image-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 60vmin;
	height: 100%;
	background-image: url("assets/borno.jpg");
	background-size: cover;
	transition: 0.3s ease-in-out;
	/* border: 1px solid green; */
}

.inset {
	max-width: 50%;
	margin: 0.25em 1em 1em 0;
	border-radius: 0.25em;
	float: left;
}

.dots {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 55px;
	height: 4vmin;
	transition: 0.3s ease-in-out 0.3s;
}
.dot {
	width: 14px;
	height: 14px;
	background: yellow;
	border: 1px solid indigo;
	border-radius: 50%;
	transition: 0.3s ease-in-out 0.3s;
}

.text {
	position: absolute;
	top: 0;
	right: 0;
	width: 70vmin;
	height: 100%;
	padding: 3vmin 4vmin;
	background: #fff;
	box-shadow: inset 1px 1px 15px 0 rgba(0 0 0 / 0.4);
	overflow-y: scroll;
}

.wrap:hover .overlay {
	transform: translateX(-78vmin);
}
.wrap:hover .image-content {
	width: 50vmin;
}
.wrap:hover .overlay-content {
	border: none;
	transition-delay: 0.2s;
	transform: translateX(76vmin);
}
.wrap:hover .dots {
	transform: translateX(1rem);
}
.wrap:hover .dots .dot {
	background: white;
}

/* Animations and timing delays */
.animate {
	animation-duration: 0.7s;
	animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
	animation-fill-mode: backwards;
}
/* Pop In */
.pop {
	animation-name: pop;
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

/* Slide In */
.slide {
	animation-name: slide;
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translate(4em, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

/* Slide Left */
.slide-left {
	animation-name: slide-left;
}
@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translate(-40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

.slide-up {
	animation-name: slide-up;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(3em);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.6s;
}
.delay-3 {
	animation-delay: 0.9s;
}
.delay-4 {
	animation-delay: 1.2s;
}
.delay-5 {
	animation-delay: 1.5s;
}
.delay-6 {
	animation-delay: 1.8s;
}
.delay-7 {
	animation-delay: 2.1s;
}
.delay-8 {
	animation-delay: 2.4s;
}

@media (max-width: 768px) {
  .wrap{
    width: 350px;
    height: 238px;
  }
  .image-content {
    width: 150px;
    height: 100%;
    background-image: url("/assets/borno.jpg");
    background-size: cover;
    transition: 0.3s ease-in-out;
    /* border: 1px solid green; */
  }


}

section{
  margin-left: -10px;
  margin-right: -8.3px;
}
/*Resume----------  */
.resume-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color:#ffffff;
  background-color: #131b1e;
  
  padding-bottom: 100px;
}
.tab-title{
  display: flex;
  margin:20px 0 40px;
  
}
.tab-links{
  margin-right: 50px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}
.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  background: #ff3c78;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}
.tab-links.active-link::after{
  width:50%;
}
.tab-contents ul li{
  list-style: none;
  margin: 10px 0;
  
}
.tab-contents ul li {
  color:#66c5cb;
  border: solid #66c5cb;
  padding: 3px;
  font-size: 18px;
}
.tab-contents div li {
  color:#66c5cb;
  font-size: 18px;
}
.tab-contents ul{
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tab-contents{
  display: none;
}
.tab-contents.active-tab{
  display: block;
}


/* title */


/* === BASE HEADING === */ 

.h1-title {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}


/* Style 8   ----------------------------- */

.eight .h1-title {
  text-align:center; 
  text-transform:uppercase;
  font-size:26px; letter-spacing:1px;
  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 22px;
  color: #67cbd1;
  font-weight: bold;
}

.eight h1:after,.eight h1:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #ccc;
  background-color:#f8f8f8;
}


/* ------- Helper Styles -------------*/
.eight {
  position: relative;
  width: 90%;
  max-width: 800px;
  padding: 2em;
  margin: 1.5em auto;

}
.title-div{
  background-color:#131b1e ;
  margin-left: -10px;
  margin-right: -8.3px;
  height: 100px;
  margin-top: -35px;
}

/* The thing i have been work */
/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
  margin: 0;
} */

.card {
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 15px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card:hover {
  transform: perspective(1000px) rotateY(10deg) scale(1.05);
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
}

.card img {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: -100px;
  transition: bottom 0.5s ease;
}

.card:hover img {
  bottom: 20px;
}


/*----------------Work with ME-----------------*/
.footer{
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh; /* Makes the section take up the full viewport height */
    padding: 20px;
    background-color: #434343;
    color:#f7c873;
}
.footer-para{
  width: fit-content;
  font-size: 30px;
}

/* Prevent horizontal scroll */
body, html {
  overflow-x: hidden;
}

/* Scroll animation */
.scroll-left, .scroll-right {
  opacity: 0;
  position: relative;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.scroll-left {
  transform: translateX(-100vw); /* Start off-screen but without causing overflow */
}

.scroll-right {
  transform: translateX(100vw); /* Start off-screen but without causing overflow */
}

.scroll-left.visible, .scroll-right.visible {
  transform: translateX(0);
  opacity: 1;
}
