/*===============
  global styles
===============*/

* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Helvetica,
    Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-fg);
  background-color: var(--clr-bg);
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -999;
  pointer-events: none;
}



.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: float 25s infinite;
  background: rgba(255, 255, 255, 0.2);
}


.circlePosition {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff0e56, #ff4081, #ff79a8);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 4%;
  transform: translate(-50%, -150%);
  filter: blur(100px);
  animation: pulseAndRotate 10s ease-in-out infinite, floatInSpace 15s ease-in-out infinite alternate;
  box-shadow: 0 0 50px rgba(255, 14, 86, 0.5);
}

@keyframes pulseAndRotate {
  0%, 100% {
    transform: translate(-50%, -150%) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -150%) scale(1.2) rotate(180deg);
    opacity: 1;
  }
}

@keyframes floatInSpace {
  0%, 100% {
    transform: translate(-50%, -150%) translateZ(0);
  }
  25% {
    transform: translate(-40%, -140%) translateZ(50px);
  }
  50% {
    transform: translate(-60%, -160%) translateZ(-50px);
  }
  75% {
    transform: translate(-45%, -155%) translateZ(25px);
  }
}

.light {
  --clr-bg: #fcfcfc;
  --clr-bg-alt: #fff;
  --clr-fg: #555;
  --clr-fg-alt: #444;
  --clr-primary: #DB0042;
  --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --clr-secondary:#346112;
  --clr--bar: linear-gradient(135deg, rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0)) ;
  --clr-header-text: #000;
  --clr-bg-container: rgba(255, 255, 255, 0.8);
}

.dark {
  --clr-bg: #131313;
  --clr-bg-alt: #252525;
  --clr-fg: rgba(233, 233, 233, 0.808) ;
  --clr-fg-alt: #ffffff;
  --clr-primary: #ff185d;
  --clr-secondary:#89FF31;
  --shadow: rgb(255 24 93) 0px 0px 10px 0px, rgb(186 38 43 / 3%) 0px 0px 0px 1px;
  --clr--bar: linear-gradient(135deg,rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 0)) ;
  --clr-header-text: #fff;
  --clr-bg-container: rgba(255, 255, 255, 0.1);
}

::-moz-selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

::-webkit-selection,
::selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

h1,
h2,
h3,
h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Helvetica,
    Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-fg-alt);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

button {
  cursor: pointer;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.6rem;
  }
}

/*===================
  buttons and links
===================*/

.link {
  color: var(--clr-header-text);
  padding: 0 0 0.3em 0;
  position: relative;
  transition: 0.5s;
}

.link:hover {
  color: var(--clr-primary);
}

.link::before {
  content: "";
  display: inline;
  width: 0%;
  height: 0.2em;
  position: absolute;
  bottom: 0;
  background-color: var(--clr-primary);
  transition: width 0.2s ease-in;
}

.link:hover::before,
.link:focus::before {
  width: 100%;
}

.link--nav {
  color: var(--clr-fg); 
  text-transform: lowercase;
  font-weight: 500;
}

.link--icon {
  color: var(--clr-fg);
  font-size: 1.2rem;
}

.btn {
  display: block;
  padding: 0.8em 1.4em;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: lowercase;
  transition: transform 0.2s ease-in-out;
}

.btn--outline {
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--outline:focus,
.btn--outline:hover {
  color: var(--clr-bg);
}

.btn--outline:before {
  content: "";
  position: absolute;
  background-color: var(--clr-primary);
  right: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  transition: right 0.2s ease-in-out;
}

.btn--outline:hover::before,
.btn--outline:focus::before {
  right: 0;
}

.btn--plain {
  text-transform: initial;
  background-color: var(--clr-bg-alt);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  border: 0;
}

.btn--plain:hover {
  transform: translateY(-4px);
}

.btn--icon {
  padding: 0;
  font-size: 1.2rem;
}

.btn--icon:hover,
.btn--icon:focus {
  color: var(--clr-primary);
}

.btn--icon:active {
  transform: translateY(-5px);
}

.btn__outline__projects{
  position: absolute;
  padding: 0.8em 1.1em;
  justify-content: center;
 
  text-align: center;
}
.btn__outline__projects{
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn__outline__projects:focus,
.btn__outline__projects:hover{
 color: var(--clr-bg);
}
.btn__outline__projects:before {
  content: "";
  position: absolute;
  background-color: var(--clr-primary);
  right: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  transition: right 0.2s ease-in-out;
}
.btn__outline__projects:hover::before ,
.btn__outline__projects:focus::before{
right:0;
}
/*========
  layout
========*/

.center {
  display: flex;
  align-items: center;
}

.header {
  height: 8em;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  background:transparent;
  justify-content: space-between;
  
}

main {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  background: transparent;
}

.section {
  margin-top: 6em;
}

.section__title {
  text-align: center;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.section__title.Portfolio{
  padding-top: 100px;
  margin-top: 200px;
}
.section_skills{
  text-align: center;
  margin-bottom: 2em;
  top: 150px;
  text-transform: uppercase;
}
/* .section_contact{
  text-align: center;
  margin-bottom: 1em;
  text-transform: uppercase;
  top: 200px;
  left: 5%;
  display: flex;
  justify-content: center;
}
.section__title_Contact{
  text-align: center;
  margin-bottom: 5em;
  text-transform: uppercase;
}
.contactBTN{
  position: relative;
  top: 50%;
  left: -75px;
  transform: translate(-50%, 50%);
  text-align: center;
} */

.section_contact {
  display: flex;
  flex-direction: column; /* Align children vertically */
  justify-content: center; /* Center children vertically */
  align-items: center; /* Center children horizontally */
  text-align: center;
  position: relative;
  top:200px;
  margin-bottom: 2em;
  text-transform: uppercase;
  height: 10vh; /* Full viewport height for demonstration, adjust as needed */
}

.section__title_Contact {
  margin-bottom: 1em;
  text-transform: uppercase;
}

.contactBTN {
  text-align: center;
  /* Remove or adjust these properties if needed */
  position: static;
  top: auto;
  left: auto;
  transform: none;
}
.nav__list {
  margin-right: 1.5em;
  display: flex;
}

.nav__list-item {
  margin-left: 1.5em;
}

.nav__hamburger {
  display: none;
  width: 1em;
}

.about {
  flex-direction: column;
  margin-top: 3em;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__name {
  color: var(--clr-primary);
  transition: color 0.3s ease;
  animation: colorPulse 3s infinite alternate;
}

@keyframes colorPulse {
  from { color: var(--clr-primary); }
  to { color: #ff185d; }
}

.about__name:hover {
  color: #ff185d;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.about__role__more {
  margin-top: 1em;
  font-weight: 600;
  font-size: 1.8rem;
  background-image: linear-gradient(43deg, #ff185d 0%, #189EFF 40%, #18FF9E 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-container {
  overflow: hidden;
  position: relative;
}

.about-container .text {
  position: relative;
  color: #ff185d;
  font-size: 40px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeIn 0.5s ease-out forwards, floatText 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes textFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-container .text.first-text {
  color: var(--clr-fg-alt);
}

/*===============
  global styles
===============*/

* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Helvetica,
    Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-fg);
  background-color: var(--clr-bg);
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -999;
  pointer-events: none;
}



.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: float 25s infinite;
  background: rgba(255, 255, 255, 0.2);
}


.circlePosition {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff0e56, #ff4081, #ff79a8);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 4%;
  transform: translate(-50%, -150%);
  filter: blur(100px);
  animation: pulseAndRotate 10s ease-in-out infinite, floatInSpace 15s ease-in-out infinite alternate;
  box-shadow: 0 0 50px rgba(255, 14, 86, 0.5);
}

@keyframes pulseAndRotate {
  0%, 100% {
    transform: translate(-50%, -150%) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -150%) scale(1.2) rotate(180deg);
    opacity: 1;
  }
}

@keyframes floatInSpace {
  0%, 100% {
    transform: translate(-50%, -150%) translateZ(0);
  }
  25% {
    transform: translate(-40%, -140%) translateZ(50px);
  }
  50% {
    transform: translate(-60%, -160%) translateZ(-50px);
  }
  75% {
    transform: translate(-45%, -155%) translateZ(25px);
  }
}

.light {
  --clr-bg: #fcfcfc;
  --clr-bg-alt: #fff;
  --clr-fg: #555;
  --clr-fg-alt: #444;
  --clr-primary: #DB0042;
  --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --clr-secondary:#346112;
  --clr--bar: linear-gradient(135deg, rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0)) ;
  --clr-header-text: #000;
}

.dark {
  --clr-bg: #131313;
  --clr-bg-alt: #252525;
  --clr-fg: rgba(233, 233, 233, 0.808) ;
  --clr-fg-alt: #ffffff;
  --clr-primary: #ff185d;
  --clr-secondary:#89FF31;
  --shadow: rgb(255 24 93) 0px 0px 10px 0px, rgb(186 38 43 / 3%) 0px 0px 0px 1px;
  --clr--bar: linear-gradient(135deg,rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 0)) ;
  --clr-header-text: #fff;
}

::-moz-selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

::-webkit-selection,
::selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

h1,
h2,
h3,
h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Helvetica,
    Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-fg-alt);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

button {
  cursor: pointer;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.6rem;
  }
}

/*===================
  buttons and links
===================*/

.link {
  color: var(--clr-header-text);
  padding: 0 0 0.3em 0;
  position: relative;
  transition: 0.5s;
}

.link:hover {
  color: var(--clr-primary);
}

.link::before {
  content: "";
  display: inline;
  width: 0%;
  height: 0.2em;
  position: absolute;
  bottom: 0;
  background-color: var(--clr-primary);
  transition: width 0.2s ease-in;
}

.link:hover::before,
.link:focus::before {
  width: 100%;
}

.link--nav {
  color: var(--clr-fg); 
  text-transform: lowercase;
  font-weight: 500;
}

.link--icon {
  color: var(--clr-fg);
  font-size: 1.2rem;
}

.btn {
  display: block;
  padding: 0.8em 1.4em;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: lowercase;
  transition: transform 0.2s ease-in-out;
}

.btn--outline {
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--outline:focus,
.btn--outline:hover {
  color: var(--clr-bg);
}

.btn--outline:before {
  content: "";
  position: absolute;
  background-color: var(--clr-primary);
  right: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  transition: right 0.2s ease-in-out;
}

.btn--outline:hover::before,
.btn--outline:focus::before {
  right: 0;
}

.btn--plain {
  text-transform: initial;
  background-color: var(--clr-bg-alt);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  border: 0;
}

.btn--plain:hover {
  transform: translateY(-4px);
}

.btn--icon {
  padding: 0;
  font-size: 1.2rem;
}

.btn--icon:hover,
.btn--icon:focus {
  color: var(--clr-primary);
}

.btn--icon:active {
  transform: translateY(-5px);
}

.btn__outline__projects{
  position: absolute;
  padding: 0.8em 1.1em;
  justify-content: center;
 
  text-align: center;
}
.btn__outline__projects{
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn__outline__projects:focus,
.btn__outline__projects:hover{
 color: var(--clr-bg);
}
.btn__outline__projects:before {
  content: "";
  position: absolute;
  background-color: var(--clr-primary);
  right: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  transition: right 0.2s ease-in-out;
}
.btn__outline__projects:hover::before ,
.btn__outline__projects:focus::before{
right:0;
}
/*========
  layout
========*/

.center {
  display: flex;
  align-items: center;
}

.header {
  height: 8em;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  background:transparent;
  justify-content: space-between;
  
}

main {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  background: transparent;
}

.section {
  margin-top: 6em;
}

.section__title {
  text-align: center;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.section__title.Portfolio{
  padding-top: 100px;
  margin-top: 200px;
}
.section_skills{
  text-align: center;
  margin-bottom: 2em;
  top: 150px;
  text-transform: uppercase;
}
/* .section_contact{
  text-align: center;
  margin-bottom: 1em;
  text-transform: uppercase;
  top: 200px;
  left: 5%;
  display: flex;
  justify-content: center;
}
.section__title_Contact{
  text-align: center;
  margin-bottom: 5em;
  text-transform: uppercase;
}
.contactBTN{
  position: relative;
  top: 50%;
  left: -75px;
  transform: translate(-50%, 50%);
  text-align: center;
} */

.section_contact {
  display: flex;
  flex-direction: column; /* Align children vertically */
  justify-content: center; /* Center children vertically */
  align-items: center; /* Center children horizontally */
  text-align: center;
  position: relative;
  top:200px;
  margin-bottom: 2em;
  text-transform: uppercase;
  height: 10vh; /* Full viewport height for demonstration, adjust as needed */
}

.section__title_Contact {
  margin-bottom: 1em;
  text-transform: uppercase;
}

.contactBTN {
  text-align: center;
  /* Remove or adjust these properties if needed */
  position: static;
  top: auto;
  left: auto;
  transform: none;
}
.nav__list {
  margin-right: 1.5em;
  display: flex;
}

.nav__list-item {
  margin-left: 1.5em;
}

.nav__hamburger {
  display: none;
  width: 1em;
}

.about {
  flex-direction: column;
  margin-top: 3em;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__name {
  color: var(--clr-primary);
  transition: color 0.3s ease;
  animation: colorPulse 3s infinite alternate;
}

@keyframes colorPulse {
  from { color: var(--clr-primary); }
  to { color: #ff185d; }
}

.about__name:hover {
  color: #ff185d;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.about__role__more {
  margin-top: 1em;
  font-weight: 600;
  font-size: 1.8rem;
  background-image: linear-gradient(43deg, #ff185d 0%, #189EFF 40%, #18FF9E 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-container {
  overflow: hidden;
  position: relative;
}

.about-container .text {
  position: relative;
  color: #ff185d;
  font-size: 40px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeIn 0.5s ease-out forwards, floatText 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes textFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-container .text.first-text {
  color: var(--clr-fg-alt);
}

.text.second-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--clr-bg);
  border-left: 2px solid #00DBB4;
  animation: typing 4s steps(12) infinite;
}

@keyframes typing {
  40%, 60% { left: calc(100% + 4px); }
  100% { left: 0%; }
}

.about__desc {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 800px;
  color: var(--clr-fg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards, slideIn 1s ease-out;
  animation-delay: 0.5s;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.about_line {
  font-size: 1rem;
  margin-top: 2.5em;
  max-width: 630px;
  color: var(--clr-fg-alt);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards, rotateIn 1s ease-out;
  animation-delay: 0.7s;
}

@keyframes rotateIn {
  from { transform: rotateX(90deg); }
  to { transform: rotateX(0); }
}

.about__desc,
.about__contact {
  margin-top: 2.2em;
}

.about .link--icon {
  margin-right: 0.8em;
  transition: transform 0.3s ease;
  animation: popIn 0.5s ease-out;
}

@keyframes popIn {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.about .link--icon:hover {
  transform: translateY(-3px) rotate(15deg);
}

.about .btn--outline {
  margin-right: 1em;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.about .btn--outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-bg);
  transform: scale(1.05);
}

/* BAR */

.bar-container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto;
  background: var(--clr-bg-container);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(4px);
}

.light .bar-container:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(4px);
}

.dark .bar-container:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 32px rgba(255, 24, 93, 0.2);
  backdrop-filter: blur(4px);
}

.dark .bar-container::after {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.dark .text-bar {
  background-image: linear-gradient(43deg, #ff185d 0%, #189EFF 40%, #89FF31 100%);
}

.dark .text-bar:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.bar-container:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(4px);
}

.text-bar {
  background-image: linear-gradient(43deg, #ff185d 0%, #189EFF 40%, #18FF9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  transition: all 0.3s ease;
}

.bar-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #ff185d, #189EFF, #18FF9E);
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.bar-container:hover::before {
  transform: scale(1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-bar:hover {
  letter-spacing: 1px;
  /* text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); */
}

.bar-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.bar-container:hover::after {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-200%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

.bar-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #ff185d, #189EFF, #18FF9E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.bar-container:hover::before {
  transform: scaleX(1);
}

.image-bg{
  position: absolute;
  height: 600px;
  width: 1200px;
  top: 500px;
  display: flex;
  justify-content: center;
  z-index: 0;
  opacity: 1;
  
  
}
@media (max-width: 700px){
  .text-bar{
    font-size: 18px;
  }
}


/************** PROJECTS***************** */




.btn--outline {
  border: 2px solid #ff0e56;
  color: #ff0e56;
  background: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: #ff0e56;
  color: #fff;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#modalImage, #modalVideo {
  max-width: 100%;
  max-height: 100%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

.projects__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
  grid-gap: 2em;
}

.project {
  padding: 2em;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s linear;
}

.project:hover {
  transform: translateY(-7px);
}

.project__description {
  margin-top: 1em;
}

.project__stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.2em 0;
}

.project__stack-item {
  margin: 0.5em;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--clr-fg-alt);
}

.project .link--icon {
  margin-left: 0.5em;
}

.btnbtn__outline__projects{
  transition: 0.5s;
}
.projects__more__BTN{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,50%);
  text-align: center;
}
.btn1{
  background:none;
    border: 2px solid var(--clr-primary);
  text-transform: lowercase;
  padding: 12px 20px;
  min-width: 200px;
  margin: 10px;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
}
.btn1:hover{
  color: #fff;
}
.btn1::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-primary);
  z-index: -1;
  transition: transform 0.5s;
  transform-origin:0 0;
  transition-timing-function:cubic-bezier(0.5,1.6,0.4,0.7) ;
}
.more_btn::before{
  transform: scaleX(0);
}
.btn1:hover::before{
  transform: scaleX(1);
}

/*More BTNs*/
.more_BTN{
  position: relative;
  top: 20px;
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: flex-start;
}
.more_BTN a{
  align-items: center;
  position: relative;
  left: 485px;
  top: 0px;
}
.more_BTN_projects {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 50px;
 
}
/* .more_BTN_projects a{
  align-items: center;
  position: relative;
  left: 485px;
  top: 0px;
} */
.more_BTN_portfolio{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 100px;
  /* left: 46%; */
}

/* .more_BTN_portfolio a{
  align-items: center;
  position: relative;
  left: 485px;
  top: 0px;
} */





/* -----------------------------BENTO BOX----------------------------- */


/* Bento Box Styles */
.bento-box {
  padding: 20px;
  position: relative;
  top: 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.bento-item {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.bento-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(255, 255, 255, 0.1);
}

.bento-item:hover::before {
  opacity: 1;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.bento-item.wide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item.wide:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.bento-item.wide h2 {
  font-size: 3rem;
  color: #00f5a0;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.bento-item.wide .skills-icons {
  display: flex;
  gap: 20px;
  background: #73ceff3f;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 75px rgba(0, 140, 219, 0.2);
}

.bento-item.wide .skills-icons img , .bento-item.wide .skills-icons svg {
  width: 40px;
  height: 40px;
  background: transparent;
  transition: filter 0.3s ease, transform 0.5s ease;
  animation: scroll-left-right 5s linear infinite;
}

@keyframes scroll-left-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
}
}
.container--0- {
  position: absolute;
  left: 1046px;
  top: 560px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  justify-content: start;
  align-items: start;
}
.bento-item.wide .skills-icons img {
  width: 40px;
  height: 40px;
  background: transparent;
  transition: filter 0.3s ease;
}

.bento-item.wide .skills-icons img:hover {
  filter: brightness(1) invert(0);
}

.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item.wide {
  grid-column: span 2;
}

.bento-item h2{
  font-weight: 700;
  color: #dbc4e9;
  font-size: 3.25rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.bento-item h3{
  font-weight: 700;

  background: linear-gradient(to right, #00F5A0, #00D9F5);

    transition: background 0.5s ease;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.bento-item p {
  font-size: 1rem;
  color: #b0bec5;
}

.bento-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin-top: 0px;
  object-fit: contain;
}

.bento-item:hover h2 {
  background: linear-gradient(45deg, #ff79c6, #bd93f9, #8be9fd, #50fa7b);
  background-size: 300% 300%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bento-item:hover h3{
  color: #ff79c6;
}
.projects-completed-title {
  background-color: transparent;
  font-size: 5rem;
}
.resume-cv-title{
  font-size: 2rem !important; /* Use !important to override the .bento-item h3 rule */
  color: #ff79c6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 121, 197, 0.1);
}

/* Add a more specific selector to override .bento-item h3 */
.bento-item h3.resume-cv-title {
  font-size: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bento-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 30px;
  }
  
  .bento-item h2, .bento-item h3 {
    font-size: 2.5rem;
  }
  
  .projects-completed-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    padding: 20px;
  }
  
  .bento-item.large,
  .bento-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .bento-item h2, .bento-item h3 {
    font-size: 2rem;
  }
  
  .projects-completed-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 1fr);
    padding: 10px;
  }
  
  .bento-item {
    min-height: 150px;
  }
  
  .bento-item h2, .bento-item h3 {
    font-size: 1.75rem;
  }
  
  .projects-completed-title {
    font-size: 3rem;
  }
}



/*-----------Portfolio------*/
.portfolio_background {
  position: relative;
  top: 50px;
  background: linear-gradient(180deg, #ff0e56 0%, rgba(20, 20, 20, 0.795) 100%);
  filter: drop-shadow(0 0 0.75rem crimson);
  padding: 20px 0;
}

/* General styling for the carousel and its items */
/* General styling for the carousel and its items */
.image-carousel {
  width: 100%;
  margin: 0 auto;
  position: relative; /* Ensures the titles can be positioned absolutely within the carousel */
}

.image-carousel img, .image-carousel video {
  width: 100%; /* Full width for all slides */
  height: 400px; /* Ensures consistent height for all items */
  object-fit: cover;
  transition: 0.5s all ease-in-out;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
  transform-style: preserve-3d; /* Enable 3D transformations */
  z-index: 1; /* Ensure all slides start at the same z-index level */
}
.slick-slide {
  transform-style: preserve-3d; /* Preserve 3D transformations */
  transition: transform 0.5s ease;
  margin: 0 10px; /* Adjust margin to create equal spacing between slides */
}

.slick-center img, .slick-center video {
  transform: scale(1); /* Larger scale for the centered slide */
  z-index: 2; /* Higher z-index to bring it forward */
}

/* Adjust z-index for other slides to ensure they are behind the centered slide */
.slick-slide:not(.slick-center) img, .slick-slide:not(.slick-center) video {
  transform: scale(0.8); /* Smaller scale for non-centered slides */
  z-index: 1; /* Ensure other slides are behind the centered slide */
}

/* Adjustments for hover effect */
.image-carousel img:hover, .image-carousel video:hover {
  transform: scale(1) rotateY(0deg); /* Apply rotation on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  cursor:pointer;
  z-index: 2; /* Ensure the image is on top */
}

/* Additional styling for the carousel navigation arrows */
.slick-prev, .slick-next {
  font-size: 50px; /* Increase arrow button size */
  color: #ff0e56; /* Arrow button color */
  z-index: 3; /* Ensure arrows are above slides */
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.5); /* Optional: Add a background */
  padding: 20px; /* Adjust padding around the arrows */
  margin-top: 0px; /* Adjust vertical alignment if needed */
  
}
.slick-next{
  right: 0px !important;
}
.slick-prev{
  left: 0px !important; 
}
.image-carousel .h3{
  position: relative;
}
@media (max-width: 600px){
  .slick-prev{
    left: -10px !important; 
  }
  .slick-next{
    right: -10px !important;
  }
}
.slick-prev:hover, .slick-next:hover {
  color: #fff; /* Arrow button hover color */
}

.slick-prev:before, .slick-next:before {
  font-size: 40px !important; /* Arrow icon size */
}

/* Styling for the outline button */
.btn--outline {
  border: 2px solid #ff0e56;
  color: #ff0e56;
  background: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--outline:hover {
  background: #ff0e56;
  color: #fff;
}

.image-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-weight: 200;
  font-size: 20px;
  background: rgba(27, 27, 27, 0.250);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    color: white;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  width: calc(100% - 150px);
  transition: opacity 0.3s ease-in-out;
  opacity: 1; /* Ensure the title is visible by default */
  z-index: 3; /* Ensure the title is above the image/video */
}

/* Image Zoom on Click */
.modal {
  display: none;
  position: fixed; /* Stays in the same place even when scrolling */
  z-index: 2;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.342); /* Semi-transparent black */
    backdrop-filter: blur(10px); 
    border-radius: 1px; /* Optional: adds rounded corners */
    padding: 0px; /* top right bottom left */

    color: white; 
  width: 100%;
  height: 100%;
  overflow: hidden; 
  
}
.portfolio_popup{
  display: none;
  position: fixed; /* Stays in the same place even when scrolling */
  z-index: 2;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25); /* Semi-transparent black */
    backdrop-filter: blur(10px); 
    border-radius: 1px; /* Optional: adds rounded corners */
    padding: 0px; /* Optional: adds some padding */
    color: white; 
  width: 100%;
  height: 100%;
  overflow: hidden; 
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: none;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#modalImage, #modalVideo {
  max-width: 100%;
  max-height: 100%;
}


/* Modal Content (image and video) */
.modal-content img, .modal-content video {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  z-index: 2;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  background: none;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .close {
    top: 10px;
    right: 20px;
    font-size: 50px;
  }

  .modal-content img, .modal-content video {
    width: 100%;
    max-height: 100%;
  }
}
s



/* .zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.9);
}
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
} */
/* .image-paragraph{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  background: rgba(27, 27, 27, 0.334);
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  width: calc(100% - 150px);
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  z-index: 3; 
} */
.slick-slide:not(.slick-center) img +.image-title, .slick-slide:not(.slick-center) video + .image-title{
  position: absolute;
  bottom: 55px;
}
.carousel-item:hover .image-title  {
  opacity: 0; /* Hide the title on hover */
}

.section__photoshop{
  text-align: center;
  color: #DB0042;
  font-weight: 500;
  

}


.portfolio_background{
  position: relative;
  top: 50px;
  background: linear-gradient(180deg, #ff0e56 0%, rgba(20, 20, 20, 0.795) 100%);
  filter: drop-shadow(0 0 0.75rem crimson);
  

}

.image-grid{
  --gap:16px;
  --num-cols:3;
  --row-height:300px;


  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-cols),1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);


}


.image-grid>img{
 height: 100%;
 width: 100%;

  object-fit: cover;
}

.image-grid-col2{
  grid-column: span 2;
}
.image-grid-row2{
  grid-row: span 1;
}
.image-grid-col1{
  grid-column: span 1;
  
}
.image-grid-row1{
  grid-row: span 1;
}
.image-grid-col3{
  grid-column: span 1;
}
.image-grid-row3{
  grid-row: span 1;
}
.section__photoshop{
  text-align: center;
  font-weight: 500;
}
.image-grid video{

  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;

}



/* hover */

.portfolio_background .image-grid img{
  margin-bottom: 5px;
  width: 100%;

  transition: 0.5s all ease-in-out;
}
.portfolio_background .image-grid img:hover{
  transform: scale(1.04);
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  z-index: 1;
 
}
.portfolio_background .image-grid video{
  margin-bottom: 5px;
  width: 100%;

  transition: 0.5s all ease-in-out;
}
.portfolio_background .image-grid video:hover{
  transform: scale(1.04);
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.games__background .Images {
  display: flex;
  gap: 15px;
 
  height: 300px;
  width: 300px;
  object-fit: cover;
  transition: .2s linear;
}

.games__background .Images img{
  display: inline-block;
  object-fit: cover;
  transition: .2s linear;
}
.games__background .Images img:hover{
  transform: scale(1.1);
}

.games-grid iframe{
  filter: drop-shadow(0 0 0.75rem rgba(255, 55, 5, 0.192));
}


/* ------------------VIDEO-GALLERY------------------- */

/* .video-grid{
  position: relative;
  top: 100px;
  display: flex;
  flex-wrap: wrap;
  background-color: #00DBB4;
  

}
.video-grid .video{
justify-content: center;
display: block;
}
.video-grid .video video{
  width: auto;
  height: 50%;
}
.video-grid .video2{
  justify-content: center;
}
.video2 video{
  width: 100%;
height: auto;
}

@media (max-width: 600px){
  .video-grid{
    flex-direction: column;
  }
  .video-grid .video video{
    width:100%
   
  }
} */





@media screen and(max-width:1024px) {
  .about__contact center{
    align-items: center;
    text-align: center;
  }
  .image-grid{
    --num-cols:2;
    --row-height:300px
  }
  .games-grid{
    --num-cols:2;
    --row-height:300px
  }

}


.portfolio_img{

  transition: 1s;
  


}

.skills__list {
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background-color: var(--clr-bg);
  border-radius: 15px;

}

.skills__list-item {
  background-color: var(--clr-bg-alt);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.skills__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 24, 93, 0.3);
  color: #ff185d;
  cursor: pointer;
}

.contact {
  flex-direction: column;
}

.footer {
  padding: 3em 0;
  margin-top: 20em;
  text-align: center;
}

.footer__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-fg);
}

.scroll-top {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 2em;
  background-color: transparent;
  font-size: 1.8rem;
  transition: transform 0.2s ease-in-out;
}
.projects__more__BTN1{
  position: relative;
  top: 40px;
  left: 50%;
  transform: translate(-50%,50%);
  text-align: center;
}

@media (max-width: 600px) {
  .header {
    height: 6em;
    background: transparent;
  }
  .circlePosition{
    width: 10px;
    height: 10px;
    background: rgb(255, 14, 86);
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 4%;
    transform: translate(-50%, -150%);
    filter: blur(250px);
  }
  .section {
    margin-top: 6em;
  }

  .nav__list {
    flex-direction: column;
    padding: 4em 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 5em;
    z-index: 1;
    background-color: var(--clr-bg);
    width: 0;
    overflow: hidden;
    transition: width 0.2s ease-in-out;
  }

  .display-nav-list {
    width: 100%;
  }

  .nav__list-item {
    margin: 0.5em 0;
  }

  .nav__hamburger {
    display: flex;
    margin-left: 0.8em;
  }

  .about {
    align-items: flex-start;
    margin-top: 2em;
  }
  .about-container .text{
    position: relative;
    top: 10px;
    color: #ff185d;
    font-size: 30px;
    font-weight: 600;
  }
  .section_contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 5em;
    text-transform: uppercase;
    height: auto; /* Adjust height for smaller screens if needed */
  }

  .section__title_Contact {
    margin-bottom: 1em; /* Adjust margin for smaller screens */
    text-transform: uppercase;
    left: auto; /* Reset left position */
  }

  .contactBTN {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 100%; /* Full width */
    position: relative;
  }
  .about__contact center{
    align-items: center;
    text-align: center;
    position: relative;
  }
  .footer {
    padding: 2em;
    margin-top: 3em;
  }
  .image-grid{
    --num-cols:2;
    --row-height:200px
  }
 
  .games-grid{
    --num-cols:2;
    --row-height:300px
  }
  .games__container .popup_video video{
    width: 50%;
    height: 50%;
    
  }
  .games__background .Images{
    display: flex;
    justify-content: space-between;
    gap: 15px;
   
    height: 300px;
    width: 300px;
    object-fit: cover;
    transition: .2s linear;
  }
  .vid-grid-col2{
    grid-column: span 2;
  }
  .vid-grid-row2{
    grid-row: span 1;
  }
  .scroll-container {
    display: none;
  }
  .img-grid{
    --num-cols:2;
    --row-height:300px;
  }

  /******************** PROJECTS MOBILE RESOLUTION************ */
  .projects{
    margin-top: 2em;
  }
  .description {
      display: block;
      margin-top: 2em;
      gap: 20px;
      font-size: 1rem;
      max-width: 400px;
    }
    .more_BTN_projects{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      position: relative;
      top: 50px;
      
    }


/*moreBTNs*/

.more_BTN{
  top: 25px;
}
.more_BTN a{
  position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    text-align: center;
}
.more_BTN_portfolio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 100px;
  /* left: 40%; */
}

/* .more_BTN_portfolio a {
  position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,50%);
    text-align: center;
} */

.img-grid .video-landscape{
  width: 100%;
    height: 300px;
    object-fit: cover;
}



}



/* Second Page*/
*{
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  box-sizing: border-box;
}
.projects{
  flex-direction: column;
  margin-top: 3em;
  align-items: center;
}
.projects__heading h1{
  text-align: center;
  padding:0.7em; 
  position: relative;
  

}
#project1{
 color: #ff185d;
}
.project_use{
  margin-top: 1em;
  text-align: center;
  color: #00DBB4;
}
.project__stack-item:hover{
  color: #DB0042;
 
}
.project__stack-item::after:hover{
  transition: 2s;
}
.projects_list{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 1em;

  
}

.description{
  display: block;
  margin-top: 2em;
  gap: 20px;
  font-size: 1rem;
  max-width: 1000px;
  text-align:-webkit-auto;
  padding-left: 10px;
  
}

.description_pts{
  justify-content: space-between;
  text-align: justify;
  max-width: 600px;
}
.img-grid{
  --gap:16px;
  --num-cols:3;
  --row-height:300px;

  box-sizing: border-box;
  padding: var(--gap);
  display: grid;
  grid-template-columns: repeat(var(--num-cols),1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
  background: linear-gradient(rgb(255, 15, 35),rgb(27, 27, 27));
  box-shadow: #DB0042;
}
.img-grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-grid1{
  --gap:16px;
  --num-cols:3;
  --row-height:300px;

  box-sizing: border-box;
  padding: var(--gap);
  display: flex;
  width: 300px;
  position: relative;
  left: 350px;
  grid-template-columns: repeat(var(--num-cols),1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
  background: linear-gradient(rgb(255, 15, 35),rgb(27, 27, 27));
  box-shadow: #DB0042;


}
.img-grid1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  align-items: center;
}
.img-grid video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-grid .video-landscape{
  width: 330px;
  height: 300px;
  object-fit: cover;
}
.p1 {
  margin: 0;
  padding: 0;
  text-align: center;
  

  
 
}
  
.p1 li{
  text-align: start;   
  padding-left: 150px;

}
.p2{
  margin: 0;
  padding: 0;
  position:relative;
  top: 30px;
  text-align: center;
}
.p2 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
}
.p3{
  margin: 0;
  padding: 0;
  position:relative;
  top: 60px;
  text-align: center;
}

.p4{
   margin: 0;
  padding: 0;
  position:relative;
  top: 90px;
  text-align: center;
}
.p3 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
  
}
.p5{
  margin: 0;
  padding: 0;
  position:relative;
  top: 120px;
  text-align: center;
}
.p5 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
}
.p6{
  margin: 0;
  padding: 0;
  position:relative;
  top: 12px;
  text-align: center;
}
.p6 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
}

.p7{
  margin: 0;
  padding: 0;
  position:relative;
  top: 30px;
  text-align: center;
}
.p7 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
}
.p8{
  margin: 0;
  padding: 0;
  position:relative;
  top: 50px;
  text-align: center;
}
.p8 li{
  text-align: start;
  padding-left: 40px;
  max-width: 1000px;
}


.scroll-top{
  display: none;
  position: fixed;
  bottom: 1em;
  right: 2em;
  background-color: transparent;
  font-size: 1.8rem;
  transition: transform 0.2s ease-in-out;
}
.project_use_items{
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
}









@media (max-width: 600px) {
.img-grid{
  --num-cols:1;
}

.p1 li{
  text-align: start;
  padding-left: 20px;
}
.p3 li{
 text-align: start;
 padding-left: 20px;
}

.footer {
  padding: 3em 0;
  margin-top: 20em;
  text-align: center;
}
.img-grid .video-landscape{
  width: 100%;
    height: 300px;
    object-fit: cover;
}
}










/* Portfolio Page */

*{
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  box-sizing: border-box;
}

.Portfolio_heading h1{
text-align: center;
padding: 0.7em;
position: relative;
}

.Portfolio_heading h6{
  text-align: center;
  font-weight: 400;
  position: relative;
  top: -40px;
  opacity: 50%;
}
.container{
  max-width: 85%;
  margin: 20px auto;
  
}
.container .image-container{
  columns: 4 250px;
  gap: 10px;
  background: var(--clr-bg);
  
}
.container .image-container img{
  margin-bottom: 5px;
  width: 100%;

  transition: 0.5s all ease-in-out;
}
.container .image-container img:hover{
  transform: scale(1.04);
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  z-index: 1;
 
}
.container .image-container video{
  margin-bottom: 5px;
  width: 100%;

  transition: 0.5s all ease-in-out;
}
.container .image-container video:hover{
  transform: scale(1.04);
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.link{

    padding: 0 0 0.1em 0;
    position: relative;
}

/*scroll animation text*/
.reveal{
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 2s ease;
}
.reveal.active{
  transform: translateY(0px);
  opacity: 1;
}

/* MORE BUTTON */


@media (max-width:600px) {
  

  .Portfolio_heading h6{
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    top: -20px;
    opacity: 50%;
  }

}









/* test */

