:root {
  --bg-color: rgb(26, 26, 26);
  --section-bg: #1a1a1a;
  --secondary-bg: #333333;
  --main-text: #f5f5f5;
  --muted-text: #c7c7c7;
  --border-color: #f2f2f2;
  --accent-color: #9b51e0;
  --shadow-dark: rgba(214, 214, 214, 0.17);
  --shadow-medium: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(255, 255, 255, 0.39);
  --gradient-blue: rgba(58, 129, 191, 0.08);
  --gradient-purple: rgba(65, 48, 90, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.095);
  --shadow-dark-ver: rgba(0, 0, 0, 0.5); 
  --shadow-medium-ver: rgba(0, 0, 0, 0.3); 
  --shadow-light-ver: rgba(0, 0, 0, 0.19);
}


.light-mode {
  --bg-color: #e7e7e7;          
  --section-bg: #f0f0f0;          
  --secondary-bg: #dcdcdc;        
  --main-text: #1f1f1f;         
  --muted-text: #5a5a5a;         
  --border-color: #bdbdbd;      
  --accent-color: #8b5cf6;        
  --shadow-dark: rgba(150, 150, 150, 0.2);   
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-light: rgba(0, 0, 0, 0.06);
  --gradient-blue: rgba(58, 129, 191, 0.06);
  --gradient-purple: rgba(139, 92, 246, 0.06);
  --glass-bg: rgba(0, 0, 0, 0.05);
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, fill 0.3s ease;
}

body {
  margin: 0;
  background-color: var(--section-bg);

}

html {
  scroll-behavior: smooth;
}

.page-transition {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-transition.fade-in {
  opacity: 1;
}


.hidden {
  display: none;
}

.navlinkwrap {
  display: flex;              /* always visible on desktop */
  flex-direction: row;        /* horizontal layout */
  position: static;           /* no absolute positioning */
  width: auto;
  background: none;
  gap: 20px;
  align-items: center;
  text-align: left;
}


.navlinkwrap a{
  text-decoration: none;
}

.landingpage {
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    max-width: 1100px;
    background-color: var(--section-bg);
}


.landingpage::before {
  content: "";
  position: absolute;
  width: 123px;
  height: 123px;
  left: 60%;
  top: 138px;
  filter: blur(90px);
  background-color: var(--secondary-bg);
}

.landingpage::after {
  content: "";
  position: absolute;
  width: 123px;
  height: 123px;
  left: 80%;
  top: 550px;
  background-color: var( --secondary-bg);
  filter: blur(80px);
}

.landingpage .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}

.landingpage .box {
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landingpage .auction {
  margin-top: 100px;
}
.landingpage .discover {
  display: flex;
  flex-direction: column;
}
.landingpage .footer {
  margin: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landingpage .footer2 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-top: 1px solid var(--border-color);
}

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

.navbar {
  background-color:var(--section-bg);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px; 
  transition: none;
  z-index: 9999;  
  padding: 0px 30px;
  will-change: auto;  
}



.navbar .hamburger {
  display: none;
  color: var(--muted-text);
  background-color: var(--section-bg);
  border: none;
  margin-right: 10px;
}
.navbar .createbtn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 126px;
  height: 45px;
  color: var(--muted-text);
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
}
.navbar .createbtn.selectedbtn {
  border: 1px solid var(--muted-text);
  border-radius: 10px;
}
.navbar .navlogo {
  height: 100%;
  background: linear-gradient(93.51deg, var(--main-text) 2.84%, var(--muted-text) 99.18%);
  -webkit-background-clip: text;
  cursor: pointer;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
}

.navlogo img{
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
}

.navbar .navlink {
  position: relative; 
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted-text);
  text-decoration: none;
  display: inline-block;
}

.navbar .navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; 
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.navbar .navlink:hover {
  background: linear-gradient(93.51deg, var(--main-text) 2.84%, var(--muted-text) 99.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar .navlink:hover::after {
  transform: scaleX(1);
}

.navbar .navlink:not(:last-child) {
  margin-right: 32px;
}

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


.box .infobox {
  animation-name: leftslide;
  animation-duration: 0.8s;
  max-height: 500px;
  max-width: 55%;
  overflow: hidden;
}
.box .infobox-boldtext {
  margin: 0;
  font-family: Poppins;
  color: var(--main-text);
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  text-shadow: 1px 1px 3px var(--shadow-dark); 
}

.box .infobox-not-bold{
  margin: 0;
  font-family: Poppins;
  color: var(--main-text);
  font-size: 33px;
  font-weight: 500;
  line-height: 50px;
  text-align: left;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px var(--shadow-dark); 
}

.box .infobox-slimtext {
  margin: 24px 0;
  font-family: Poppins;
  color: var(--main-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-align: left;
}
.infobox-btnwrapper {
  display: flex;
  
}

.infobox-createbtn.selected {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 8px 30px;
  border: 1px solid var(--muted-text);
  border-radius: 16px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--main-text);
  margin-top: 15px;
}

.infobox-createbtn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 8px 20px;
  border: 1px solid var(--muted-text);
  border-radius: 16px;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--main-text);
  transition: all 0.4s ease;
}

.infobox-createbtn:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0,0.3), 
              0 12px 12px rgba(0, 0, 0, 0.23);
  background-color:var(--secondary-bg);
}

.infobox-btnwrapper{
  display: inline-block;
  border-radius: 16px;
  overflow: hidden; 
}

.infobox-btnwrapper a{
  text-decoration: none;
}


.box .display {
    width: 100%;
    animation-name: rightslide;
    animation-duration: 0.8s;
    padding: 14px;
    border: 1px solid;
    background: linear-gradient(169.44deg, var(--shadow-dark) 1.85%, var(--gradient-purple) 98.72%);
    border-radius: 35px;
    max-height: 450px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.box .display:hover{
  transform: translateY(-5px);
}


.box .display-nft {
  object-fit: cover;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 20px;
}

.display-nft img{
    width: 370px;
    height: 350px;
    border-radius: 20px;
}

.card {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 20px var(--shadow-light-ver), 0 6px 6px rgba(0, 0, 0, 0.23);
  box-sizing: border-box;
  padding: 48px;
  text-align: center;
}

.products {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 348px;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
}

.product {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}
.product.active {
  opacity: 1;
  visibility: visible;
}

.thumbnail {
  margin: 0 0 48px;

}

.description {
  margin: 0 0 48px;
}


.card .btn {
  border-radius: 2px;
  padding: 8px 12px;
  color: var(--main-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s ease;
  border-radius:50px ;
}

.card .btn:hover{
    background-color: #121212;
}

[ripple] {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
[ripple] .ripple {
  position: absolute;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transform: scale(0);
  -webkit-animation: ripple 2s;
    animation: ripple 2s;
}

@-webkit-keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.2;
  }
  100% {
    transform: scale(20);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.2;
  }
  100% {
    transform: scale(20);
    opacity: 0;
  }
}

.box .display .infowrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.box .display .info {
  display: flex;
  align-items: center;
  font-family: "Poppins";
  font-style: normal;
  color: var(--main-text);
  font-weight: 600;
  font-size: 12px;
}
.box .display .info p {
  margin: 0;
}
.box .display .info-img {
  object-fit: cover;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.box .display .info2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Poppins";
  color: var(--main-text);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
}
.box .display .info2 p {
  margin: 0;
}
.box .display .info2 .iconwrapper {
  display: flex;
  align-items: center;
}
.box .display .info2 .iconwrapper svg {
  margin-right: 5px;
}


.started {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}

.started-boldtext {
  margin: 0;
  align-self: center;
  font-family: "Poppins";
  font-style: normal;
  color: var(--main-text);
  font-weight: 500;
  font-size: 40px;
  line-height: 72px;
}
.started-slimtext {
  margin: 0;
  align-self: center;
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 36px;
  letter-spacing: 0.5px;
  color: var(--muted-text);
}
.started-items {
  padding: 60px 80px;
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: space-between;
}
.started-items:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: 80px;
  filter: blur(80px);
  background: linear-gradient(93.51deg, var(--accent-color) 2.84%, #3081ed 99.18%);
}

.started-items .itemwrapper p {
  width: 100px;
  margin: 0;
  margin-top: 10px;
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--main-text);
}
.started-items-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: inset 2.01px -2.01px 20px var(--shadow-dark), inset -3.01333px 3.01333px 3.01333px var(--shadow-light);
  backdrop-filter: blur(74.4293px);
}

.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;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
}
section .img {
  position: relative;
  width: min(80vw, 900px);
  padding: 10vw 3vw;
}

section .img-container {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 400px;
}

section .img-container img {
  width: 100%;
  height: 100%;
  transform: none; 
  object-fit: cover;   
  object-position: center; 
}



.projects{
  margin-top: 100px;
  display: block;
}

.project-heading {
  display: flex;
  justify-content: center;
  font-size: 40px;
  color: var(--main-text);
  font-family: "Poppins", sans-serif;
}

.projects-wrapper {
  display: flex;
  flex-direction: column;  
  gap: 50px;
  margin-top: 20px;
}

.project-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 3vw;
}

.projects-wrapper h3 {
  color: var(--main-text);
  font-size: 24px;
}

.projects-wrapper p {
  color: var(--muted-text);
  font-size: 17px;
  text-align: start;
}




.project-button{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color: transparent;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--main-text);
}

.project-descriptions{
  max-width:900px;
  text-align: left;
}

.view-link{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.view-link:hover{
  color:var(--muted-text);
}

.projects-page-link a{
  align-items: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.infobox-view-projects{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 8px 20px;
  border: 1px solid var(--muted-text);
  border-radius: 16px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--main-text);
}

.infobox-view-projects:hover{
  background-color: var(--secondary-bg);
}

.discover-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.discover-title p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--main-text);
}
.discover-items {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  justify-content: space-between;
}
.discover-loadbtn {
  cursor: pointer;
  margin-top: 20px;
  align-self: center;
  width: 161px;
  height: 40px;
  border: 1px solid var(--muted-text);
  border-radius: 10px;
  background-color: transparent;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--main-text);
}

.footer-main {
  max-width: 40%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: var(--main-text);
}
.footer-navigate {
  display: flex;
}

.footer a{
  text-decoration: none;
}
.footer-navigate .nav {
  margin-left: 60px;
  flex-direction: column;
}
.footer-navigate .nav h5 {
  margin: 1rem 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--main-text);
}
.footer-navigate .nav p a {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.03em;
  color: var(--muted-text);
}

.footer2 p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 36px;
  margin-top: 25px;
  color: #828282;
}

.item {
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.item-img {
  object-fit: cover;
  flex-shrink: 0;
  width: 200px;
  height: 220px;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}
.item-img:hover {
  transform: scale(1.05);
}
.item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid white;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: var(--main-text);
}
.item-date {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  margin-top: 1rem;
  line-height: 24px;
  color: var(--muted-text);
}


@media screen and (max-width: 1500px) {
  .landingpage {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1040px) {
  .box {
    flex-direction: column;
  }
  .box .infobox {
    max-height: 450px;
    max-width: none;
    margin-bottom: 50px;
  }
  .box .display {
    display: none;
    max-height: none;
    max-width: none;
  }

  .auction .nft {
    grid-template-columns: auto auto;
    justify-content: space-around;
  }

  .discover-items {
    grid-template-columns: auto auto auto;
    justify-content: space-around;
  }

  .footer {
    flex-direction: column;
  }
  .footer-main {
    max-width: 80%;
    margin-bottom: 50px;
    text-align: center;
  }
  .footer-navigate .nav:first-child {
    margin: 0;
  }
}
@media screen and (max-width: 925px) {
  .navlinkwrap {
    display: none;
  }

  .buttonwrap {
    display: none;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
  }

  .started-slimtext {
    text-align: center;
  }
}
@media screen and (max-width: 825px) {
  .started-items {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-evenly;
    padding: 50px 0;
  }
  .started-items:before {
    height: 200px;
    top: 90px;
    filter: blur(120px);
  }

  .discover-items {
    grid-template-columns: auto auto;
    justify-content: space-around;
  }
}
@media screen and (max-width: 700px) {
  .box {
    flex-direction: column;
  }
  .box .infobox {
    max-height: none;
    max-width: none;
    margin-bottom: 50px;
  }
  .box .display {
    display: block;
    width: 400px;
    max-height: none;
    max-width: none;
  }

  .img-container{
    display: none;
  }

  .discover-title {
    justify-content: center;
  }
  .discover-title .filters {
    display: none;
  }

}
@media screen and (max-width: 600px) {
  .landingpage {
    padding-right: 0;
    padding-left: 40px;

  }

  .box .infobox-boldtext {
    font-size: 45px;
    line-height: 50px;
  }
  .box .infobox-slimtext {
    font-size: 12px;
    line-height: 16px;
  }

  .discover-items {
    grid-template-columns: auto;
    justify-content: space-around;
  }

  .footer-main {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }

  .footer-navigate {
    justify-content: space-between;
    width: 100%;
  }
  .footer-navigate .nav {
    margin-left: 20px;
  }
  .footer-navigate .nav h5 {
    font-size: 15px;
    line-height: 30px;
  }
  .footer-navigate .nav p {
    font-size: 10px;
    line-height: 18px;
  }
}
@media screen and (max-width: 480px) {
  .landingpage .box .infobox-boldtext {
    font-size: 32px;
    line-height: 1.4em;
    text-align: center;
  }
  .landingpage .box .infobox-slimtext {
    text-align: center;
  }
  .landingpage .box .infobox-btnwrapper {
    justify-content: center;
  }
}
@keyframes leftslide {
  from {
    transform: translateX(-700px);
  }
  to {
    transform: translateX(0px);
  }
}
@keyframes rightslide {
  from {
    transform: translateX(550px);
  }
  to {
    transform: translateX(0px);
  }
}

/* About Section */
.about-section {
  padding: 60px 20px;
  text-align: center;
  background: var(--section-bg);
}

.about-section h1 {
  color: var(--muted-text);
  font-size: 32px;
  margin-bottom: 20px;
}

.about-section .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #dddada;
}

.about-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.about-item {
  background: linear-gradient(169.44deg, var(--gradient-blue) 1.85%, var(--gradient-purple) 98.72%);;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px); 
}

.about-item h3 {
  margin-bottom: 10px;
  color: var(--muted-text);
}

.about-item p {
  color: #b5acac;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-columns {
    flex-direction: column;
    align-items: center;
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

#contact {
  margin-top: 100px;
  width: 100%;
  padding: 50px 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 80%;
}

/* Left column: Form */
.contact-form {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--muted-text);
  border-radius: 10px;
  background: var(--section-bg);
  color: var(--main-text);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--accent-color);
  background: #222;
}

.submit-btn {
  background-color: transparent;
  border: 1px solid var(--muted-text);
  border-radius: 16px;
  color: var(--main-text);
  padding: 10px;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background:var(--secondary-bg);
  border-color: var(--accent-color);
  color: #fff;
}

/* Right column: Social Links */
.contact-links {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: var(--accent-color);
}

.contact-links i {
  font-size: 20px;
}

#about-page {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  margin: 150px auto;
  padding: 0 50px;
  max-width: 1400px;
  align-items: stretch;
}



.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.about-container {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.about-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-section {
  background: rgba(155, 81, 224, 0.05); /* light purple tint */
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(155, 81, 224, 0.3);
  transition: all 0.3s ease;
  min-height: 100vh;
}

.about-section:hover {
  background: rgba(155, 81, 224, 0.1);
  transform: translateY(-5px);
}

.about-section p {
  color: var(--muted-text);
  font-size: 17px;
  text-align: center;
}

.skills-list{
  margin-top: 50px;
}

.skills-list span {
  display: inline-block;
  background: #41305A;
  color: #fff;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.exp-image-wrapper {
  position: relative;
  flex: 0 0 400px;
  height: auto;
}

.exp-image-container {
  position: sticky;
  top: 100px; 
  width: 100%;
  height: calc(100vh - 150px);
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-medium);
  margin-top: 80px;
}


.exp-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: all 0.3s ease;
}



.exp-image-container:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.exp-image-container .exp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 1s ease;
}

.exp-image-container .exp-img.active {
  opacity: 1;
  z-index: 2;
}

.edu{
  margin: 0;
  margin-bottom: 1rem;
  align-self: center;
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.5px;
  color: var(--main-text);

}

.edu-info{
  color:var(--main-text);
}

.edu-info  .degree{
  font-size: 20px;
}

.edu-info .date{
  margin-bottom: 2rem;
}

.about-title{
  margin-bottom: 2rem;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40%; 
  height: 4px; 
  background: linear-gradient(90deg, #680d56, #141485);
  background-size: 200% auto;
  animation: shine 3s linear infinite;
  border-radius: 15px;
}

@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}




.edu-info .institution{
  font-size: 18px;
}

.edu-info p{
  margin-bottom: 3rem;
  line-height:2rem;
}

.experience-details .job-title{
  color:var(--main-text);
  font-size: 20px;
}

.experience-details .company{
  font-size: 18px;
  color: var(--main-text);
}

.experience-details .date{
  margin-bottom: 1rem;
  color:var(--main-text);
}

.experience-details p{
  margin-bottom: 3rem;
  line-height:2rem;
}

#skills p{
  margin-bottom: 3rem;
  line-height:2rem;

}

.project-page{
  margin-top: 150px;
  padding: 0 50px;
  max-width: 1400px;
}

.project-page .project-heading{
  margin-bottom: 80px;
  text-align: center;
  padding-bottom:20px ;
}

.project-page .project-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 25%; 
  height: 4px; 
  background: linear-gradient(90deg, #680d56, #141485);
  background-size: 200% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: shine 3s linear infinite;
  border-radius: 15px;
}

@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}


/* === Carousel Layout === */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 867px;
  margin: 50px auto; 
  overflow: hidden;
  text-align: center;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* === Arrows === */
.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

.arrow {
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-text);
  transition: color 0.5s ease, transform 0.5s ease;
}

.arrow:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}


.project-page .view-project{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.project-page .view-link{
  color: var(--main-text);
  font-weight: 400;
}

.project-page .view-link:hover{
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide img {
    height: 250px;
  }
}

.wp{
  padding-left:0px ;
  margin-left: 0px;
  width:50px;
}

@media (min-width:350px) and (max-width: 600px) {
  .navlinkwrap {
    display: none;            
    flex-direction: column;  
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    background: var(--bg-color);
    z-index: 999;
    align-items: left;
    text-align: left;
    gap: 20px;
  }

  .navlinkwrap.show {
    display: flex;            
  }

  .navlinkwrap a:hover {
    background-color: initial;
  }
  .infobox-btnwrapper .infobox-createbtn{
    border: none;
    padding-left:0px ;
  }
  .infobox-btnwrapper .infobox-createbtn:hover{
    background-color: initial;
  }

  .project-page{
    padding-left: 0px;
    padding-right: 0px;
  }

  .exp-image-wrapper{
    display: none;
  }

  #about-page{
    padding-left: 0px;
    padding-right: 0px;
  }

  #contact{
    padding-left: 0px;
    padding-right: 0px;
  }

  .contact-container{
    width: 100%;
  }
}

