:root {
  /* Main Colors */
  --pink: #FF6BBE;
  --purple: #8A6DFF;
  --navy-blue: #000080;
  
  /* Accent Colors */
  --light-gray: #F7F7F7;
  --soft-pink: #ecdefc;
  --soft-blue: #7a24ff;
  --dark-gray: #333333;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #000000;
}

body {
  color: var(--black);
  background:
    linear-gradient(var(--light-gray),
      var(--soft-pink));
      height: 100%;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  backdrop-filter: blur(20px);
  height: 400vh;
}

.container {
  position: relative;
  width: 100%;
}

.container .logo {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 20px auto;
  border: 14px solid var(--soft-pink);
}

/* .container .logo::before {
  content: '';
  background: url("../img/bg1.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(40px);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
} */

.name,
.title,
.dis {
  position: relative;
  margin: 5px;
}

.name span {
  background: var(--BLUE-RED--GRD, linear-gradient(93deg, #B141FF 4.88%, #FA39A0 43.69%, #FF2428 63.1%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logos {
  background: linear-gradient(var(--navy-blue),var(--soft-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 30px 0;
  font-size: 55px;
  display: flex;
  gap: 20px;
}

.logos a i {
  /* Ensure icons inherit gradient text fill */
  background: linear-gradient(var(--navy-blue), var(--soft-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* necessary for background-clip on inline elements */
}


.btns {
  display: flex;
  gap: 18px;
}
.projects {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}
.pone,.ptwo {
  width: 48%;
  height: auto;
  background: var(--white);
  border-radius: 15px;
}
.pone img,.ptwo img {
   width: 100%;
   border-radius: 15px 15px 0 0;
   aspect-ratio: 1 / 1;
   object-fit: cover;
}
.pone h3,.ptwo h3 {
  position: relative;
  left: 10px;
  font-size: 16px;
  margin: 0;
}
.pone p,.ptwo p {
  position: relative;
  left: 10px;
  font-weight: bold;
  font-size: 12px;
  margin: 0 0 10px 0;
}
.pone::before,
.ptwo::before {
  content: "Featured";
  color: var(--white);
  position: absolute;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 15px;
  background: var(--soft-blue);
  border-radius: 50px;
}
.skills h3{
  display: flex;
  justify-content: center;
  margin: 0;
}
.skills {
  margin: 0 0 30px 0;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}

.icons img {
  flex: 0 1 calc(25% - 10px); /* 4 per row */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  width: 30px;
  padding: 10px;
  height: auto;
  box-sizing: border-box;
}

.experience h3{
  display: flex;
  justify-content: center;
  margin: 0;
}


a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* Removes tap highlight on mobile */
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


/* Hover effect for all anchor links */
a:hover {
  color: var(--purple);
  transition: color 0.3s ease;
  text-decoration: none;
}

/* Hover effect for social icons */
.logos a i {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logos a:hover i {
  transform: scale(1.2);
  filter: brightness(1.5);
}

/* Optional: hover effect for project cards */
.pone:hover,
.ptwo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.icons img,
.projects .pone,
.projects .ptwo {
  will-change: transform, opacity;
}

.section-title {
  padding-top: 20px;
}

