* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  @font-face {
    font-family: "acorn";
    src: url("/assets/fonts/acorn.ttf");
  }
  scroll-behavior: smooth;
}

/* Basic implementation */
body {
  cursor: url('./assets/cursor-default.png'), auto;
}

/* Different cursors for different states */
a:hover {
  cursor: url('./assets/cursor-pointer.png'), pointer;
}

/* .draggable {
  cursor: url('grab-cursor.png'), grab;
}

.dragging {
  cursor: url('grabbing-cursor.png'), grabbing;
} */

body {
  background-color: #111827;
  place-items: center;
  color: white;
  font-family: "acorn";
  overflow-x: hidden;
  width: 100%;
}

.circular-text {
  fill: white;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  animation: rotate 25s linear infinite;
  transform-origin: 250px 250px;
}

.circular-text {
  fill: white;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  animation: reverseRotate 10s linear infinite;
  transform-origin: 250px 250px;
}

.circular-text-small {
  fill: white;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  animation: rotate 10s linear infinite;
  transform-origin: 250px 250px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes reverseRotate {
  to {
    transform: rotate(-360deg);
  }
}

.large-svg {
  position: relative;
}

.small-svg {
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
}

.textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

/* svg:hover .textcircle {
    transform: scale(1.2) rotate(45deg);
} */

.circular-Marquee-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner-svg-absolute {
  position: absolute;
}

/* Disable scrolling while Loader Loads */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ! Loader Ends */

.p-header {
  color: white;
}

.status {
  &.open:before {
    background-color: #2bff00;
    border-color: #2bff00;
    box-shadow: 0px 0px 6px 1px #94e185;
  }

  &:before {
    content: " ";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    margin-bottom: 4px;
    border: 1px solid #000;
    border-radius: 7px;
  }
}

.technology-known {
  z-index: 444;
}

/* !Header Ends */

.marquee {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  display: flex;
  align-items: center;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

@media screen and (max-width: 400px) {
  .hero-text {
    font-size: xxx-large !important;
  }
  .text-xl.font-medium.mt-2.text-zinc-200.mb-5.special-class {
    line-height: initial;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 480px) {
  .circular-Marquee-container.absolute.z-50 {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 405px) {
  .circular-Marquee-container.absolute.z-50 {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 352px) {
  .circular-Marquee-container.absolute.z-50 {
    width: 200px;
    height: 200px;
  }
}

/* ! Marquee Ends */

div#main\ mt-6 {
  z-index: -100;
  position: relative;
}

#main {
  background-color: #1f2937;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 400px) {
  #main {
    background-color: #111827;
  }
}

.svg1,
.svg2 {
  width: 100%;
  height: 100vh;
  mask-image: url(./assets/rounded-star.svg);
  mask-size: 0%;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  z-index: 50;
}

.img1 {
  width: 100%;
  height: 100%;
  background-image: url(./assets/Cynthia.png);
  background-size: 130%;
  background-position: center;
}

.img2 {
  width: 100%;
  height: 100%;
  background-image: url(./assets/Holiday100.png);
  background-size: 130%;
  background-position: center;
}

.website-visit-link {
  text-align: center;
  font-size: 50px;
  z-index: 30;
  text-decoration: none;
}

/* Common styles for the link containers */
.link-cont {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  background-color: #64ffda;
  color: black;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 4px 40px;
}

/* Styles for the first link container */
.one {
  z-index: 30;
}

/* Styles for the second link container */
.two {
  z-index: 20;
  color: rgb(238, 255, 0);
  background-color: red;
}

/* Additional styles for the arrow icon */
i.fa-solid.fa-arrow-right {
  font-size: 35px;
  margin-left: 7px;
  transform: rotate(320deg);
}

.tech-done {
  background: linear-gradient(90deg, #1cd8d2 0%, #93edc7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-done {
  background: linear-gradient(90deg, #1cd8d2 0%, #93edc7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: xxx-large;
}

.special-class .tech-done {
  font-size: xxx-large;
}

.technologies {
  background: linear-gradient(90deg, #4776e6 0%, #8e54e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.special-class .technologies {
  font-size: xxx-large;
}

.hero-android-text {
  background: linear-gradient(90deg, #fc4a1a 0%, #f7b733 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.special-class .hero-android-text {
  font-size: xxx-large;
}

.hero-api-text {
  /* background: linear-gradient(90deg, #00c9ff 0%, #92fe9d 100%); */
  background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.special-class .hero-api-text {
  font-size: xxx-large;
}

.underline {
  text-decoration: underline;
}

/* ! Main Effect Ends*/

.resume-card:hover .star {
  animation: spin 2s linear infinite;
  /* animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; */
  transition: ease all 3s;
}
.resume-card .star {
  /* animation: spin 1s linear infinite; */
  /* animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; */
  transition: ease all 3s;
}

.resume-card:hover .resume-Mline {
  color: #ffc459 !important;
  transition: ease all 1s;
  width: 50px;
}
.resume-card .resume-Mline {
  transition: ease all 0.5s;
}

/* ! Show-case Start */

.showcase-container {
  padding: 4rem 2rem;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

.title-section {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.title-section h1 {
  font-size: 3rem;
  margin: 0;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
}

.tag-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
}

.tag {
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: white;
}

.android-text{
  color: white;
}

.tag.web {
  background: linear-gradient(45deg, #2196F3, #03A9F4);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.project-card-2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card.figma {
  background: linear-gradient(45deg, #d094e5, #9b51e0);
}

.project-card.figma4 {
  background: linear-gradient(45deg, #94bbe5, #51d6e0);
}

.project-card.figma3 {
  background: linear-gradient(45deg, #e594d6, #e051c6);
}

.project-card.android {
  background: linear-gradient(45deg, #bddff9, #2196F3);
}

.project-card.amazon {
  background: linear-gradient(45deg, #a3dcd4, #009688);
}

.project-card.ecommerce {
  background: linear-gradient(45deg, #e8b89c, #ff9800);
}

.project-card.interview-1 {
  background: linear-gradient(45deg, #aaff83, #23f245);
}

.project-card.interview-2 {
  background: linear-gradient(45deg, #a3bfdc, #430096);
}

.project-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.project-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.project-category {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.project-image {
  position: absolute;
  bottom: -10%;
  left: 68%;
  transform: translateX(-50%);
  width: auto;
  height: 70%;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.project-card:hover .project-image {
  transform: translateX(-50%) translateY(-30px);
}

.project-image-android {
  position: absolute;
  bottom: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 90%;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.project-card:hover .project-image-android {
  transform: translateX(-50%) translateY(-30px);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.view-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.view-link svg {
  width: 20px;
  height: 20px;
  color: white;
}

.project-card:hover .view-link {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ! About Section Start */
.about-sec {
  text-align: center;
  font-size: 70px;
  padding: 20px 0;
  font-family: "acorn";
}
.testimonial__block-wrapper {
  position: relative;
}
.testimonial__block-wrapper blockquote {
  position: relative;
  z-index: 1;
}
.testimonial__block-wrapper .icon {
  position: absolute;
  top: -2.5em;
  left: -5.5em;
}

@media (min-width: 1024px) {
  .lg\:py-32 {
    padding-bottom: 8rem;
  }
}
/* ! About Section Ends */

/* ! Marquee */

.resume-card {
  position: relative;
  transition: all ease 1s;
}
@media (max-width: 500px) {
  .resume-greet {
    display: none;
  }
}

.marquee {
  display: none;
}

.resume-card:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 250px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}

.work:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 20px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}
.about:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 20px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}
.cont2:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 20px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}

.cont2:hover span {
  color: white;
}
.cont2 {
  color: white;
  transition: all ease 1s;
}
.work:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 20px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}
.work {
  color: white;
  transition: all ease 1s;
}
.work:hover {
  transition: all ease 1s;
  color: white;
  /* background-color: rgba(0, 232, 70, 0.742); */
  background: radial-gradient(
    circle at center center,
    #bc4e9c 0%,
    #f80759 100%
  );
}
.about:hover .marquee {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  left: 20px;
  background-color: transparent;
  transform: translateY(-50%);
  transform: rotate(75deg);
  display: block;
}
.about {
  color: black;
  transition: all ease 1s;
}
.about:hover {
  transition: all ease 1s;
  color: black;
  background-color: #ff7f7f;
  background: linear-gradient(90deg, #1cd8d2 0%, #93edc7 100%);
}

.resume-card:hover {
  /* background-color: rgba(32, 32, 32, 0.719); */
  color: linear-gradient(90deg, #ed213a 0%, #93291e 100%);
  transition: all ease 1s;
  background: linear-gradient(90deg, #4776e6 0%, #8e54e9 100%);
}
.resume-card:hover .resume-text {
  color: linear-gradient(90deg, #ed213a 0%, #93291e 100%);
  transition: all ease 1s;
}
.cont2:hover {
  /* background-color: rgb(59 130 246 / 0.6); */
  transition: all ease 1s;
  color: white;
  background: radial-gradient(
    circle at center center,
    #bc4e4e 0%,
    #fea455 100%
  );
}

.resume-card:hover #marquee1 {
  transform: translateY(50%);
  transform: rotate(90deg);
  transition: all ease 1s;
}

.resume-card:hover .rev-marquee {
  right: 7%;
  transform: translateY(-50%);
  transform: rotate(255deg);
  transition: all ease 1s;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 6s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  transition: all ease 1s;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: rgb(47, 47, 47);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  transition: all ease 1s;

  /* Position the tooltip */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition: all ease 1s;
}

/* ! FOOTER Ends */

.social-media-footer {
  background-color: black;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  padding: 20px 40px 20px 40px;
}

.social-media-footer .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .social-media-footer .time {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 530px) {
  .social-media-footer .social-links {
    flex-direction: column;
    gap: 0;
  }
}

.wrapyear {
  display: flex;
}

.social-media-footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social-media-footer .social-links a {
  text-decoration: none;
}

.social-media-footer .time-container {
  display: flex;
  gap: 5px;
}



/* Hover glow effect */
.footer .resume-card:hover,
.footer .work:hover,
.footer .about:hover,
.footer .cont2:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(0, 102, 255, 0.3);
    transform: scale(1.02);
    z-index: 5;
}


  .portfolio-blockquote {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    letter-spacing: .08em;
  }

  /* Highlight style — tweak colors to match your site */
  .hl {
    background: linear-gradient(90deg, rgba(255,251,145,0.95), rgba(255,241,150,0.85));
    color: #0a0a0a;
    padding: .12rem .28rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
  }

  /* Optional smaller emphasis for the skill list */
  .skill-list {
    display: inline-block;
    margin-top: .25rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .04em;
  }

  ::selection {
  background: #ffbb66; /* light orange */
  color: #000; /* text color on selection */
}

::-moz-selection {
  background: #ffbb66; 
  color: #000;
}

::selection {
  background: #b9f6ca;
  color: #000;
}
::-moz-selection {
  background: #b9f6ca;
  color: #000;
}
