.col-5 a {
  text-decoration: underline !important;
}
.techstacks{
  margin-top: 1.2em;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: .4em;
  color: #ff66cc;
  text-shadow: 0 0 10px rgba(255, 102, 204, 0.3);
  letter-spacing: 0.5px;
}
.glass-button {
  display: inline-block;
  padding: 16px 32px;
  margin-right: 1em;
  border: 0;
  text-decoration: none;
  border-radius: 15px;
  background-color: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.1);
  backdrop-filter: blur(30px);
  color: rgba(224, 247, 255, 0.9);
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
  transition: all 0.3s ease;
}

.glass-button:hover {
  background-color: rgba(255, 20, 147, 0.08);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.15);
  border-color: rgba(255, 20, 147, 0.08);
}

.Projects-title {
  /* text-align: center; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
  font-size: var(--fs-large);
  margin-top: 4.4rem;
}

.project {
  margin : 1em auto;
  text-align: center;
}

.cardsWrapper {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2em;
  margin: 2rem auto 4rem auto ;
  color : #ff1493;
}

.card1 {
  display: flex;
  flex-direction: column;
  width: 22em;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(45, 26, 61, 0.6), rgba(26, 10, 30, 0.8));
  backdrop-filter: blur(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;

  border: 2px solid transparent;
	background: linear-gradient(145deg, rgba(45, 26, 61, 0.6), rgba(26, 10, 30, 0.8))
			padding-box,
		linear-gradient(
				135deg,
				#ff1493 0%,
				#9d4edd 50%,
				#ff66cc 100%
			)
			border-box;
	border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(255, 20, 147, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card1::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255, 20, 147, 0.08), transparent);
  transform: rotate(45deg);
  animation: scanIntense 2s linear infinite;
}

@keyframes scan {
  0% {
    top: -50%;
  }
  100% {
    top: 150%;
  }
}

/* .card1:hover{
  transform: scale(1.001);
  box-shadow: 0 0 10px 0 #45ffc74b, 0 0 15px 0 #00ffd580, 0 0 18px 0 #87cfeb55;
} */

.card1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 20, 147, 0.2),
    0 0 50px rgba(157, 78, 221, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-width: 3px;
}

/* .card1:hover {
  transform: scale(1.005);
  filter: grayscale(0%) brightness(120%)
    drop-shadow(5px 5px 10px hsl(194, 100%, 24%));
} */
.card-left {
  width: 15em;
  background-color: #00070a;
  height: 16em;
  display: flex;
  flex-direction: column;
}

.card-img {
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 20, 147, 0.1), rgba(157, 78, 221, 0.05));
  height: 10em;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card1:hover .card-img::before {
  opacity: 1;
}

.card-img img {
  display: flex;
  width: 100%;
  height: 150%;
  object-fit: fill;
  object-position: center;
  border-radius: 15px;
  scale: 1.25;
}

/* Specific Image Adjustments */
.card-img img[src*="aerodb"],
.card-img img[src*="guardium"],
.card-img img[src*="campus_companion"],
.card-img img[src*="vertext"],
.card-img img[src*="routrix"] {
  object-fit: contain !important;
  padding: 0.8em;
  background: rgba(0, 0, 0, 0.2);
}

.txt-mentors {
  padding: 0.5em;
}

.card-mentors {
  font-size: 0.7em;
  display: flex;
  gap: 0.5em;
  padding-left: 0.5em;
  color: rgb(122, 207, 246);
  text-decoration: underline;
  flex-wrap: wrap;
}

.card-right {
  display: flex;
  padding: 2em 1em 2em 0em;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.diffculty-bar {
  --color1: #ff1493;
  --color2: #ff1493;
  --color3: #9d4edd;
  margin-top: 8px;
  width: 100%;
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(26, 10, 30, 0.6), rgba(45, 26, 61, 0.4));
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3),
              0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.1);
}

card1 h4 {
  text-align: center;
}

.diffculty-bar-progress1,
.diffculty-bar-progress2,
.diffculty-bar-progress3,
.diffculty-bar-progress4,
.diffculty-bar-progress5 {
  height: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.diffculty-bar-progress1 {
  width: 25%;
  background: linear-gradient(90deg, #CCCCCC, var(--color1), var(--color2), var(--color3));
  animation: progressAnimation1 3s linear infinite;
  transform-style: preserve-3d;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
}

.diffculty-bar-progress2 {
  width: 55%;
  background: linear-gradient(90deg, #CCCCCC, var(--color1), var(--color2), var(--color3));
  animation: progressAnimation2 3s linear infinite;
  transform: translateZ(10px);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
  /* Added 3D translation */
}

.diffculty-bar-progress3 {
  width: 25%;
  background: linear-gradient(90deg, #CCCCCC, var(--color1), var(--color2), var(--color3));
  animation: progressAnimation3 3s linear infinite;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
}

.diffculty-bar-progress4 {
  width: 40%;
  background: linear-gradient(90deg, #CCCCCC, var(--color1), var(--color2), var(--color3));
  animation: progressAnimation4 3s linear infinite;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
}

.diffculty-bar-progress5 {
  width: 80%;
  background: linear-gradient(90deg, #CCCCCC, var(--color1), var(--color2), var(--color3));
  animation: progressAnimation5 3s linear infinite;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.08);
}

@keyframes progressAnimation1 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes progressAnimation2 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes progressAnimation3 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes progressAnimation4 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes progressAnimation5 {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 0.8em;
  margin-bottom: .8em;


}

.card-tag {
  border-radius: 20px;
  border: 1px solid rgba(255, 20, 147, 0.2);

  background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(157, 78, 221, 0.1));
  font-size: 0.85em;
  padding: 0.5em 1em;
  color: #ff66cc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: 600;
}

.card-tag:hover {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.25), rgba(157, 78, 221, 0.2));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.1);
}


.col-5 {
  background-color: var(--card-blue-color);
  border-radius: 25px 0px 0px 25px;
  display: flex;
  align-items: center;
  height: 100%;
}

.col-7 {
  background-color: var(--background-color);
  border-radius: 0px 25px 25px 0px;
  display: flex;
  align-items: center;
}

.col-5 img {
  width: 150px;
  height: auto;
}

.col-5-wrapper {
  padding-left: 10px;
}

.card-body {
  height: 300px;
  width: auto;
}

.course {
  display: flex;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: 20px;
  overflow: hidden;
  width: 700px;
}

.course h6 {
  opacity: 0.6;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course h2 {
  letter-spacing: 1px;
  margin: 10px 0;
}

.course-preview {
  background-color: var(--primary-yellow-color) !important;
  padding: 30px;
  max-width: 250px;
}

.course-preview a {
  display: inline-block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 30px;
  text-decoration: none;
}

.course-info {
  padding: 30px;
  position: relative;
  width: 100%;
}

.social-icons {
  padding: 0;
  list-style: none;
  margin: 1em;
  margin-top: 0.25 em;
  color: var(--primary-blue-color);
}

.social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: 1.5em;
}

.social-icons i {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  color: var(--card-blue-color);
  transition: all 265ms ease-out;
}

.social-icons a {
  display: inline-block;
}

.social-icons a:before {
  transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  content: " ";
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: block;
  background: var(--primary-yellow-color);
  color: var(--primary-blue-color);
  transition: all 265ms ease-out;
}

.social-icons a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}

.social-icons a:hover i {
  transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  color: var(--primary-blue-color);
  background: var(--primary-blue-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 265ms ease-in;
}

.btn {
  background-color: var(--primary-yellow-color);
  border: 0;
  border-radius: 50px;
  box-shadow: 0 10px 10px rgba(250, 48, 48, 0.2);
  color: var(--primary-yellow-color);
  font-size: 16px;
  padding: 15px 25px;
  position: relative;
  bottom: auto;
  right: auto;
  letter-spacing: 1px;
}

.floating-btn {
  border-radius: 26.5px;
  background-color: var(--primary-yellow-color);
  border: 1px solid var(--primary-yellow-color);
  box-shadow: 0 16px 22px -17px #fd1c1cc0;
  color: var(--primary-blue-color);
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-btn:hover {
  background-color: #ffffff;
  color: #001f61;
}

.floating-btn:focus {
  outline: none;
}

.floating-text {
  background-color: var(--primary-yellow-color);
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 7px 15px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 998;
}

.floating-text a {
  color: #ff7500;
  text-decoration: none;
}

.links a {
  color: white;
  text-decoration: underline;
}

.links a:hover {
  color: white;
  text-decoration: underline;
}

.badge {
  background: var(--primary-yellow-color);
  color: black;
}

.col-12 {
  margin-bottom: 50px !important;
}

.background>.Register {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  width: 100%;
}

.RegisterWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100vw;
}

.RegisterWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  padding: 2px;
  z-index: -1;
  background: linear-gradient(to right, #4caed8, #c4e306);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.Register button {
  background-color: var(--card-blue-color);
  color: var(--text-color);
  border-radius: 18px;
  font-size: 20px;
  border-style: none;
  width: 200px;
  height: 50px;
  cursor: pointer;
}

.RegisterWrapper button:hover {
  background-color: var(--background-color);
  color: var(--primary-yellow-color);
}

@media only screen and (max-width: 767px) {
  #status {
    width: 150px;
    height: 150px;
    left: 45%;
    top: 40%;
  }

  .col-5 img {
    width: 90px;
    height: auto;
  }

  .bigImage {
    width: 120px !important;
  }

  .bigImage {
    width: 120px !important;
  }

  .col-7 p {
    font-size: 0.8em;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .col-md-6 {
    -ms-flex: 0 0 80% !important;
    flex: 0 0 80% !important;
    max-width: 90% !important;
  }
}

@media only screen and (max-width: 700px) {
  .card1 {
    width: 18rem;
    display: flex;
    flex-direction: column;
    transition: all 200ms ease;
    cursor: pointer;
  }

  .card-tags {
    display: flex;
    gap: 0.6em;
    margin-top: 25px;
  }

  .txt-mentors {
    padding: 0.5em;
    text-align: center;
  }

  .card-mentors {
    font-size: 0.7em;
    display: flex;
    justify-content: center;
    gap: 0.5em;
    padding-left: 0.5em;
    color: rgb(122, 207, 246);
    text-decoration: underline;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .card-left {
    width: 18em;
    background-color: #00070a;
    height: 21em;
    display: flex;
    flex-direction: column;
  }

  .card-img {
    background-color: #d9d9d9;
    height: 14em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-img img {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 360px) {
  .card1 {
    width: 16rem;
    background: rgba(255, 255, 255, 0.09);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 200ms ease;
    cursor: pointer;
  }

  .card-left {
    width: 16em;
    background-color: #00070a;
    height: 21em;
    display: flex;
    flex-direction: column;
  }

  .card-img {
    background-color: #d9d9d9;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-img img {
    height: 100%;
  }
}

@media only screen and (max-width: 480px) {
  #status {
    width: 150px;
    height: 150px;
    left: 45%;
    top: 40%;
  }

  .card-body {
    height: 350px;
    width: auto;
  }

  .bigImage {
    width: 120px !important;
  }
}