.landingSection {
  
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  
  
  z-index: 1;
}
.timeline-right{
  display: flex;
  flex-direction: column;
  gap : 10px;

}
.project-description{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timelinestart{
  margin-left: 2.6px;
  margin-bottom: -8px;
  display: flex;
  justify-content: center;
}
.timelinestart img{
  scale: 0.9;
}
.timelineend img{
  scale: 0.9;
}
.timelineend{
  margin-left: 4px;
  margin-top: -5px;
  display: flex;
  justify-content: center;
}
.timelinemobile{
  display: none;
}
.timelinebottommobile{
  display: none;
}
#landingSection{
  width: 80%;
  margin: 2rem auto 0rem auto;

}
.list-item{
  font-size: 1.2rem;
 
}
.projectDetailsWrapper a {
  z-index: 30;
}
.landingSectionRightWrapper{
  gap:60px;
  display: flex;
  flex-direction: column;
}
.landingSectionWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
  padding: 10px;
}
.landingSectionHeading {
  /* // TEN DAYS OF CODE */
  color: white;
  font-size: 2em;
  font-weight: 700;
  line-height: 69.3px;
  word-wrap: break-word;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.6),
               0 0 40px rgba(255, 20, 147, 0.3);
  animation: headingPulse 3s ease-in-out infinite;
}

@keyframes headingPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.6),
                 0 0 40px rgba(255, 20, 147, 0.4),
                 0 0 60px rgba(255, 20, 147, 0.2);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.9),
                 0 0 50px rgba(255, 20, 147, 0.6),
                 0 0 70px rgba(255, 20, 147, 0.4),
                 0 0 90px rgba(255, 20, 147, 0.2);
  }
}
.landingSectionSubHeading {
  /* // Organised By GLUG,NIT Durgapur */
  line-height: 1.2;
  font-size: 40px;
  
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #ff1493 0%,
    #9d4edd 50%,
    #ff66cc 100%
  );
  margin: 1em 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.4))
          drop-shadow(0 0 20px rgba(255, 20, 147, 0.2));
}

.landingSectionLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}
@media screen and (max-width: 930px) {
  .landingSectionLeft {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.landingSectionLeft p {
  color: #FFF;
  
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.landingSectionLeft img {
  width: 20em;
  height: auto;
}
.Activities {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff1493 0%, #9d4edd 50%, #ff66cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.6))
          drop-shadow(0 0 30px rgba(255, 20, 147, 0.4))
          drop-shadow(0 0 45px rgba(255, 20, 147, 0.2));
  animation: activityGlow 2.5s ease-in-out infinite alternate;
}

@keyframes activityGlow {
  from {
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.6))
            drop-shadow(0 0 30px rgba(255, 20, 147, 0.4))
            drop-shadow(0 0 45px rgba(255, 20, 147, 0.2));
  }
  to {
    filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.8))
            drop-shadow(0 0 40px rgba(255, 20, 147, 0.6))
            drop-shadow(0 0 60px rgba(255, 20, 147, 0.3));
  }
}

.landingSectionRight {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-left: 3em; */
}
.landingSection{
  margin-top: 8rem;
}
.landingSectionRight h1 {
  font-size: var(--fs-large);
  font-weight: 700;
}
.listDetails {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
}
.list-itemday{
  font-weight: 600;
}
.list-item {
  list-style: none;
  line-height: 1rem;
}
.listitem {
  width: 45%;
  height: 3.6em;
  border: 2px solid rgba(255, 20, 147, 0.4);
  border-radius: 12px;
  display: flex;
  gap : 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1em;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2),
              0 0 25px rgba(255, 20, 147, 0.15),
              inset 0 0 15px rgba(255, 20, 147, 0.05);
  /* rounded: 15px; */

  /* Background with linear gradient */
  background: linear-gradient(
    rgba(45, 26, 61, 0.6) 0%,
    rgba(255, 20, 147, 0.15) 100%
  );
  transition: all 0.3s ease;
}

.listitem:hover {
  border-color: rgba(255, 20, 147, 0.8);
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.5),
              0 0 40px rgba(255, 20, 147, 0.3),
              inset 0 0 20px rgba(255, 20, 147, 0.15);
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(
    rgba(45, 26, 61, 0.8) 0%,
    rgba(255, 20, 147, 0.1) 50%,
    rgba(255, 20, 147, 0.3) 100%
  );
}
.listitem-text {
  font-size: 1.2rem;

  font-weight: bold;
}
.listitem-image {
  height: 2.4em;
  width: 2.4em;
}

@media screen and (max-width: 795px){
  .listDetails{
    flex-direction: column;
    width: 100%;
  }
  .listitem{
    width: 100% !important;

  }
}
@media screen and (max-width: 1400px) {
  .listitem {
    width: 45%;
    /* height: 4em; */
    border: 1px solid rgba(47, 53, 58, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 1em;
    /* rounded: 15px; */

    /* Background with linear gradient */
    /* background: linear-gradient(rgba(47, 53, 58, 0.4), rgba(0, 0, 0, 0.1)); */
  }

  .listitem-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: "Inter";
  }
  .listitem-image {
    height: 2em;
    width: 2em;
}
}
.projecttitle{
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff1493 0%, #9d4edd 50%, #ff66cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.5))
          drop-shadow(0 0 30px rgba(255, 20, 147, 0.3));
}
.Projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 2em auto  0;
}
.Projects h1 {
  text-align: center;
  font-size: var(--fs-large);
  margin-bottom: 1em;
}
.projectDiv {

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  gap:50px;
}
.projectDetails {
  margin: 2em auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  filter: grayscale(20%);
  cursor: pointer;
  transition: all 200ms ease;
  /* gap: 40em; */
}
.projectDetails:hover {
  transform: scale(1.01);
  filter: grayscale(0%) brightness(110%)
    drop-shadow(5px 5px 15px #ff1493)
    drop-shadow(0 0 20px rgba(255, 20, 147, 0.4));
}
.projectDetailsWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project-image {
  width: 14em;
  height: 11em;
  background-color: #d7d5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.project-image img{
  border-radius: 8px;
  width: 14em !important;
  height: 11em !important;
  object-fit: cover;
}


.b {
  height: 60px;
  margin: 20px;
  margin-bottom: 60px;
  width: 180px;
  background: #2d1a3d;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Inter", monospace;
  border: solid #ff1493 1px;
  font-size: 18px;
  color: rgb(224, 247, 255);
  -webkit-transition: 500ms;
  transition: 500ms;
  border-radius: 15px;
  background: linear-gradient(145deg, #2d1a3d, #1a0a1e);
  -webkit-box-shadow: -1px -5px 15px rgba(255, 20, 147, 0.3), 5px 5px 15px rgba(255, 20, 147, 0.3),
  inset 5px 5px 10px rgba(255, 102, 204, 0.2), inset -5px -5px 10px rgba(255, 102, 204, 0.2);
box-shadow: -1px -5px 15px rgba(255, 20, 147, 0.3), 5px 5px 15px rgba(255, 20, 147, 0.3),
  inset 5px 5px 10px rgba(255, 102, 204, 0.2), inset -5px -5px 10px rgba(255, 102, 204, 0.2);
}

.b:hover {
  -webkit-box-shadow: 1px 1px 20px rgba(255, 20, 147, 0.6), -1px -1px 20px rgba(255, 20, 147, 0.6);
  box-shadow: 1px 1px 20px rgba(255, 20, 147, 0.6), -1px -1px 20px rgba(255, 20, 147, 0.6); 
  color: #ff66cc;
  -webkit-transition: 500ms;
  transition: 500ms;
}

button:active {
  -webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
  box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
  color: #d6d6d6;
  -webkit-transition: 100ms;
  transition: 100ms;
}
.project-description {
  width: 14em;
  height: 5em;
  text-align: center;
  margin: auto;
  padding: 0.6em auto;
  background-color: #2d1a3d;
  text-align: center;
  color: var(--fc-primary);
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(255, 20, 147, 0.3);
}
.project-description h2 {
  font-size: 1.1rem;
}
.knowMore {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 2em;
  width: 95%;
}
.knowMoreWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}
.knowMore button {
  background: var(--bg);
  background: var(--bg-grad);
  color: var(--fc-primary);
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  border-style: none;
  width: 10em;
  height: 2.8em;
  cursor: pointer;
  transition: all 200ms ease;
}
.knowMore img {
  height: 1.5em;
}
.knowMoreWrapper button:hover {
  filter: brightness(120%) drop-shadow(5px 5px 15px #ff1493)
          drop-shadow(0 0 20px rgba(255, 20, 147, 0.5));
}
.Register {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 2em;
  width: 90%;
}
.RegisterWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
}
.reg-btn {
  display: flex;
  justify-content: space-between;
  padding: 0 1em 0 1em;
  align-items: center;
}
/* .Register button {
  background: var(--bg);
  background: var(--bg-grad);
  color: var(--fc-primary);
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  border-style: none;
  width: 9em;
  height: 2.6em;
  cursor: pointer;
  transition: all 200ms ease;
} */
.reg-btn {
  flex: 1 1 auto;
  margin: 5px 20px;
  padding: 15px 30px;
  text-align: center;
  scale: 1.1;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #ff1493 0%,
    #9d4edd 50%,
    #ff66cc 100%
  );
  color: white;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.8),
               0 0 20px rgba(255, 20, 147, 0.5);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6),
              0 0 30px rgba(255, 20, 147, 0.4),
              0 0 45px rgba(255, 20, 147, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 20, 147, 0.5);
  animation: regBtnPulse 2s ease-in-out infinite;
}

@keyframes regBtnPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6),
                0 0 30px rgba(255, 20, 147, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.9),
                0 0 50px rgba(255, 20, 147, 0.6),
                0 0 75px rgba(255, 20, 147, 0.3);
  }
}

/* Demo Stuff End -> */

/* <- Magic Stuff Start */
.Register button:hover {
  background-position: right center; /* change the direction of the change here */
}

.Register_ button:hover {
  background-position: right center; /* change the direction of the change here */
}

/* .btn-1 {
  background-image: linear-gradient(to right, #f6d365 0%, #fda085 51%, #f6d365 100%);
} */
.RegisterWrapper button:hover {
  background-image: linear-gradient(
    to right,
    #ff1493 0%,
    #ff1493 51%,
    #ff66cc 100%
  );
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6),
              0 0 40px rgba(255, 20, 147, 0.4);
}

.Register_Wrapper button:hover {
  background-image: linear-gradient(
    to right,
    #ff1493 0%,
    #ff1493 51%,
    #ff66cc 100%
  );
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6),
              0 0 40px rgba(255, 20, 147, 0.4);
}
/* .Register button:hover{
  filter: brightness(150%) drop-shadow(5px 5px 10px #00d9d2);  
} */
/* .RegisterWrapper button:hover {
  background-color: var(--background-color);
  color: var(--primary-yellow-color);
} */
@media only screen and (min-width: 936px) and (max-width: 1150px) {
  .landingSectionLeft img {
    width: 400px;
    height: auto;
  }
  .knowMore {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (max-width: 935px) {
  .Register {
    left: 0;
    width: none;
    justify-content: center;
    margin-bottom: 15px;
    margin-left: 0px;
  }
  .landingSection {
    margin-left:auto;
    margin-right: auto;
    margin-top: 4em;
  }
  .landingSection::before {
    border-radius: 30px;
    padding: 3px;
  }
  .landingSectionWrapper {
    display: block;
    padding: 5px;
    border-radius: 30px;

  }
  .landingSectionRight {
    margin: 2.4rem auto;
  }
  .landingSectionLeft img {
    width: 300px;
    height: auto;
  }
  .landingSectionRight h1 {
    font-size: 43px;
    text-align: center;
  }
  .landingSectionRight p {
    font-size: 15px;
    text-align: center;
  }
  .landingSectionRight li {
    font-size: 15px;
  }
  .listDetails {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .landingSectionRight {
    align-items: center;
    justify-content: center;
  }
  .landingSectionRight ul {
    width: 90%;
  }
  .project-image {
    background-color: #d7d5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  .project-description {
    height: 7em;
    padding: 0.6em;
    test-align: center;
    background-color: #2d1a3d;
    color: var(--fc-primary);
    border-radius: 0 0 5px 5px;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
  }
  .project-description h2 {
    font-size: 1rem;
    line-height: 25px;
  }
  .knowMore {
    width: 100%;
    justify-content: center;
  }
  .landingSectionRightWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:30px;
  }
}
.sponsor {
  max-width: 1380px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sponsor h1 {
  text-align: center;
  font-size: 70px;
}
.logoMarqueeSection {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}

#logoMarqueeSection {
  margin: 0 auto;
}

.default-content-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  min-height: 100vh;
}

div.marquee > a > img {
  height: 80px;
}

.logoMarqueeSection > div > div {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
}

.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}
.timeline-svgdivm{
  display: none;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@media only screen and (max-width: 500px) {
  .timelinemobile{
    display: block;
    margin-left: -10px;
    margin-bottom: -2px ;
  }
  .landingSectionSubHeading{
    font-size: 2em;
  }
  .landingSectionWrapper{
    margin-top:2em;
  }
  .tagline{
    font-size: .8em !important;
  }
  .timeline-item{
    grid-template-columns: 30% 10% 60%;
  }
  .list-item{
    font-size: 1rem;

  }
  .Activities {
    width: 100%;
  }
  .landingSectionRightWrapper{
    margin-top: 2em !important;
  }
  .project {
    width: 100%;
  }
  .landingSection::before {
    background: none;
  }
  .landingSectionLeft img {
    width: 250px;
    height: auto;
    margin-top: 20px;
  }
  .landingSectionRight h1 {
    font-size: 38px;
  }
  .listitem-text {
    font-size: 1rem;
  }
  .listitem-image {
    height: 2em;
    width: 2em;
  }
}
.timelineDate span{
  font-size: 1.6em;
  font-weight: 600;
  
  background-image: linear-gradient(90deg, #ff1493, #9d4edd, #ff1493, #ff66cc, #ff66cc, #9d4edd, #ff1493, #ff1493);
  background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
filter: drop-shadow(0 0 5px rgba(255, 20, 147, 0.3));
}
.timelinetitle{
  font-size: 4rem;
  font-weight: 700;
  /* background-image: url("../assets/Images/timeline.svg")  !important; */
  background-image: linear-gradient(90deg, #ff1493, #9d4edd, #ff1493, #ff66cc, #ff66cc, #9d4edd, #ff1493, #ff1493);
  /* background: linear-gradient(30deg, #f9d751, #ffad53, #f7875f, #e5686b, #cc5075, #ae3f7a, #8e3479, #6c2d72);  */
  background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.5))
        drop-shadow(0 0 30px rgba(255, 20, 147, 0.3));
}
.timeline {
  margin: 4em auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timelinewrapper{
  margin: auto;
  width : 80% !important;
}
.timeline-starts{
  display: flex;
  justify-content: center;
}

.timeline-svg{

  object-fit: cover;
}
.listDetails .listitem .listitem-text{
  text-align: start;

}
.timelinem{
  width: 100%;
  display: grid;
  grid-template-columns: 50% 10% 40%;
  align-items: center;
  justify-content: center;

}


.test {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.content {
  margin-left: 10vw;
  display: flex;
  flex-direction: column;
  width: 27rem;
  align-items: flex-start;
  justify-content: center;
font-size: 1em;
}
.middle-border {
  width: 5px;
  background-color: var(--fc-blue);
  height: 110px;
  display: block;
}
.starting-border {
  display: none;
  width: 3px;
  background-color: var(--fc-blue);
  height: 200px;
}
@media screen and (max-width: 920px) {
  .content {
    width: 20rem;
  }
  .date-wrapper {
    width: 20rem;
  }
}
@media screen and (max-width: 800px) {
  .timelinestart,.timelineend{
    display: none;
  }
  .timelinemobile{
    display: block;
    margin-left: -10px;
    margin-bottom: -3px;
  }
  .timelinebottommobile{
    display: block;
    margin-left: -9px;
    margin-top: -2px;

  }
  .date-content-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 30px;
  }
  .middle-border {
    display: none;
  }
  .timelinem{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-item{
    justify-content: flex-start;
  }
  .timelineDate{
    font-size: 1em;
  }
  /* .timeline-svg{
    object-fit: unset;
    height: 360px !important;
  } */
  .timeline-item{
    display: flex;
    flex-direction: row;
  }
  .timeline-svgdivm{
    display: block;
  }

  .timeline-svgdiv{
    display: none;


  }
  .date-wrapper {
    flex-direction: row;
    width: 100%;
    margin-bottom: 2rem;
    justify-content: flex-start;
  }

  .content {
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .starting-border {
    display: block;
  }
  .month {
    margin-right: 10px;
  }
  .test {
    margin-left: 20px;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  #landingSection{
    width: 100%;
  }
  .date-wrapper {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .timeline-heading {
    font-size: 1.3rem;
  }
  .listDetails{
    flex-direction: column;
    margin : auto;
  }
  .listDetails .listitem{
    width: 100%;

  }
  .listDetails .listitem .listitem-text{
    font-size: 1em;
    

  }
  
  
  .timeline-item{
    grid-template-columns: 47% 16% 37%;
  }
  .content {
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .time {
    font-size: 3rem;
  }
}
@media screen and (max-width: 400px) {
  .date-wrapper {
    font-size: 1.5rem;
  }
  .timelineDate span{
    font-size: 1.2em !important;

  }
  .listitem {
    font-size: .8em;
    

  }
  .timeline-heading {
    font-size: 1rem;
  }
  .content {
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    width: 200px;
    text-align: left;
  }
}
@media screen and (max-width: 350px) {
  .date-wrapper {
    font-size: 1.3rem;
  }
  .timeline-heading {
    font-size: 1rem;
  }
  .timelineDate span{
    font-size: 1em !important;

  }
}



.card {
  /* margin-right: 4em; */
  position: relative;
  background-color: rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
  gap: 12px;
  border-radius: 12px;
  backdrop-filter: blur(27px);
  cursor: pointer;
  align-items: center;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 200px;
  height: 254px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff1493 0%, #9d4edd 50%, #ff66cc 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.3),
              0 0 45px rgba(255, 20, 147, 0.2);
}

.card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #2d1a3d 0%, #ff1493 33%, #9d4edd 67%, #ff66cc 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}


.heading {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  background: linear-gradient(135deg, #ff1493 0%, #9d4edd 50%, #ff66cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.4));
}

.card p:not(.heading) {
  font-size: 14px;
}

.card p:last-child {
  background: linear-gradient(90deg, #ff1493 0%, #9d4edd 50%, #ff66cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  filter: drop-shadow(0 0 5px rgba(255, 20, 147, 0.5));
}

.card:hover::after {
  filter: blur(30px);
}

.card:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.9);
}

.glass-button {
  display: inline-block;
  padding: 8px 28px;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 20, 147, 0.6);
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 20, 147, 0.15) 50%, rgba(255, 20, 147, 0.2) 100%);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.3),
              inset 0 0 10px rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3),
                inset 0 0 10px rgba(255, 20, 147, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.5),
                inset 0 0 15px rgba(255, 20, 147, 0.2);
  }
}

.glass-button:hover {
  border: 2px solid rgba(255, 20, 147, 1);
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.3) 0%, rgba(157, 78, 221, 0.3) 50%, rgba(255, 102, 204, 0.4) 100%);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.8),
              0 0 50px rgba(255, 20, 147, 0.5),
              inset 0 0 20px rgba(255, 20, 147, 0.3);
  transform: scale(1.05);
  animation: none;
}

