@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Caprasimo&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+NO:wght@100..400&family=Sevillana&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Caprasimo&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Headland+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+NO:wght@100..400&family=Sevillana&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Caprasimo&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Headland+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=M+PLUS+Rounded+1c&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+NO:wght@100..400&family=Sevillana&display=swap");

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
  cursor: none;
  background: whitesmoke;
}
.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid #070707; 
    border-radius: 50%;
    position: fixed;
    pointer-events: none; 
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out; 
    z-index: 9999;
}
html {
    scroll-behavior:smooth;
    scroll-padding-top: 5rem; /* Adjust this value based on the height of your nav bar */
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
    width: 100%;
    background: white;
    border-bottom: 1px solid #ddd;
}

.VenkatHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 80px;
}

#NAME {
  font-family: "Playwrite NO", cursive;
  font-optical-sizing: auto;
  font-weight: 700; /* ← removed the duplicate 500 */
  font-style: normal;
  font-size: 1.8rem;
  color: #111;
  letter-spacing: -0.01em;
}
#more{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
#more a{
  cursor: pointer;
  color: #5b21b6;
}
#more p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}
#more #aboutMe{
    font-family: "Josefin Sans", sans-serif;
    font-size: larger;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
#more #aboutMe::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background:linear-gradient(90deg,transparent, #7032d4,transparent );
    transition: width 0.3s ease;
}
#more #aboutMe:hover {
    color: #812bbb;
    padding-left: 5px;
}
#more #aboutMe:hover::after{
  width: 100%;
}

.VenkatHero {
  margin-top: 100px;
  min-height: 100vh;
  align-items: center;
  padding: 0 50px;
}
.Land_container{
    /* background-color: antiquewhite; */
    min-height: 100vh;
    padding: 50px;
}
.Land_container h1{
    font-family: "Headland One", serif;
    font-size: 10rem;
    letter-spacing: 10px;
    text-align: center;
    transition: transform 0.5s;
    color: #000000; /* Main text color */
    text-shadow: 
      1px 1px 0px #b02aee,
      2px 2px 0px #ea49ff,
      3px 3px 0px #5efaff,
      4px 4px 0px hsl(281, 57%, 51%),
      5px 5px 0px #ffa0ff,
      6px 6px 10px rgba(0,0,0,0.4);
    opacity: 0;
    animation: zoom-up 1s ease-in-out forwards;
}
@keyframes zoom-up {
  from{
    opacity: 0;
    transform: scale(0.5);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}


.venkat_Contents{
    margin-top: -70px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-around;
}
#goal h3{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 1.5rem;

}
#goal p{
    font-family: "Josefin Sans", sans-serif;
    font-size: large;
    line-height: 1.6;
}
.intro-box{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.intro-box p{
    font-family: "Josefin Sans", sans-serif;
    font-size: larger;
    line-height: 1.6;
}
.intro-box a{
    display: inline-block;
    text-decoration: none;
    background: black;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    transition: all 0.2s ease-in-out;
}
.intro-box a:hover{
    background: rgb(127, 33, 189);
    color: rgb(255, 255, 255);
    border-radius: 3px;
}
#Venkatimage img{
    height: auto;
    width:380px;
    object-fit: cover;
    border-radius: 16px;
    border-top: 3px double white;
    border-bottom: 5px double rgb(0, 0, 0);
    border-left: 3px double rgb(0, 0, 0);
    border-right: 3px double rgb(3, 3, 3);
    rotate: 10deg;
    opacity: 0;
    transform: translateY(30px) rotate(0deg);
    transition: all 0.3s ease;
    animation: fade-up 0.8s ease-out forwards; 
    transition: transform 0.4s ease, rotate 0.4s ease;
}
#Venkatimage img:hover{
    rotate: 0deg;
}
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0px) rotate(0deg);
    }
}

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {
  #more p {
    display: none; /* hide the quote, keep About link */
  }

  .VenkatHeader {
    padding: 0 1.5rem;
    height: 60px;
  }

  .VenkatHero {
    margin-top: 60px;
  }

  .Land_container h1 {
    text-align: center;
    font-size: clamp(3rem, 15vw, 6rem);
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  .venkat_Contents {
    flex-direction: column;
    align-items: center;
    margin-top: -20px;
    gap: 2rem;
    text-align: center;
  }

  #Venkatimage img {
    width: clamp(200px, 50vw, 280px);
    rotate: 8deg;
  }

  #goal, .intro-box {
    min-width: unset;
    width: 100%;
    max-width: 420px;
  }
}

/* ── MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .VenkatHeader {
    padding: 0 1rem;
  }

  #more {
    gap: 12px;
  }
  .Land_container {
    padding: 16px;
  }

  .Land_container h1 {
    font-size: clamp(1.5rem, 1vw, 4rem);
    letter-spacing: 1px;
  }

  .venkat_Contents {
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    gap: 1.5rem;
  }

  #Venkatimage img {
    width: 220px;
    rotate: 5deg;
  }
}

/* About section */

#about {
  /* top | right/left | bottom */
  margin: -50px auto 0 auto; 
  padding: 40px 30px;
  max-width: 1300px;
  background: rgb(255, 255, 255);
  border-radius: 10px;
}
#about h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  font-family: "Headland One", serif;
  margin-bottom: 8px;
}

#about > hr {
  border: none;
  border-top: 3px solid #ac39f8b9;
  width: 60px;
  margin-bottom: 12px;
}

#about h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

#about_sec {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

#about_para p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

#tech_stack_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech_grid {
  background: #fff;
  border: 2px solid #111;
  padding: 18px 14px;
  border-radius: 4px;
  box-shadow: 4px 4px 0px #ac39f8b9;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tech_grid:hover {
  box-shadow: 6px 6px 0px #ac39f8b9;
  transform: translate(-2px, -2px);
}
.tech_grid img{
  height: 70px;
  width: auto;
}
.tech_grid h4 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 6px;
}

.tech_grid hr {
  border: none;
  border-top: 2px solid #ac39f8b9;
  margin-bottom: 8px;
  width: 30px;
}

.tech_grid p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

#contact_ways {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#connect-way {
  flex: 1;
  min-width: 180px;
  border: 2px solid #111;
  padding: 16px 18px;
  box-shadow: 4px 4px 0px #ac39f8b9;
  background: #fff;
}

#connect-way h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

#connect-way a {
  font-size: 0.88rem;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

#connect-way a:hover {
  color: #b89800;
  text-decoration: underline;
}
/* ── Starting (hidden) state ── */
#about h2,
#about h3,
#about > hr,
#about_para p,
.tech_grid,
#connect-way {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* ── Triggered state (JS adds this class) ── */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  #about {
    padding: 48px 28px;
  }
  #about h2 {
    font-size: 2.2rem;
  }
  #about_sec {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #tech_stack_grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {
  #about {
    padding: 36px 18px;
  }
  #about h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  #about h3 {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  #about_sec {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  #tech_stack_grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tech_grid {
    padding: 14px 10px;
  }
  .tech_grid img{
    height: 40px;
    width: auto;
  }
  .tech_grid h4 {
    font-size: 0.75rem;
  }
  .tech_grid p {
    font-size: 0.75rem;
  }
  #contact_ways {
    flex-direction: column;
    gap: 12px;
  }
  #connect-way {
    min-width: unset;
    width: 100%;
  }
}

/* ── Very small (≤ 380px) ── */
@media (max-width: 380px) {
  #about {
    padding: 28px 14px;
  }
  #tech_stack_grid {
    grid-template-columns: 1fr;
  }
}

#projects {
  font-family: "Headland One", serif;
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

#projects h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  font-family: "Headland One", serif;
  margin-bottom: 8px;
}

#projects > hr {
  border: none;
  border-top: 3px solid #ac39f8b9;
  width: 60px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 36px;
}

/* Filter buttons */
.projects-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #111;
  background: #fff;
  cursor: pointer;
  box-shadow: 3px 3px 0 #ac39f8b9;
  transition: all 0.15s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #111;
  color: #ac39f8b9;
  box-shadow: none;
  transform: translate(2px, 2px);
}

.projects-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;
}

.projects-scroll-wrapper:active {
  cursor: grabbing;
}

/* hide scrollbar but keep scroll */
.projects-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}
.projects-scroll-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.projects-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #0a0a0ab9;
  border-radius: 0;
}

.projects-scroll {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 4px 4px;
}

.project-card {
  width: 400px;         
  flex-shrink: 0;    
  border: 2px solid #111;
  background: #fff;
  box-shadow: 5px 5px 0 #ac39f8b9;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s, transform 0.2s;
}
.project-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover .project-thumb-icon img {
  transform: scale(1.1);
}

.project-thumb-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #111;
  overflow: hidden;
}
.project-thumb-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-body {
  padding: 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #ac39f8b9;
  color: #111;
  padding: 3px 8px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.project-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #111;
  font-family: Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.stack-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 1.5px solid #111;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-links {
  display: flex;
  gap: 10px;
  border-top: 2px solid #111;
  padding-top: 14px;
}

.project-link {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #111;
  color: #111;
  background: #fff;
  transition: all 0.15s;
}

.project-link:hover {
  background: #111;
  color: #ac39f8b9;
}

.project-link.primary {
  background: #111;
  color: white;
}

.project-link.primary:hover {
  background: #ac39f8b9;
  color: #111;
}
#projects h2,
#projects > hr,
.section-sub,
.filter-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#projects h2.in-view,
#projects > hr.in-view,
.section-sub.in-view,
.filter-btn.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive */
@media (max-width: 900px) {
  #projects { padding: 48px 28px; }
  .projects-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 600px) {
  #projects { padding: 36px 18px; }
  #projects h2 { font-size: 1.8rem; }
  .projects-grid { grid-template-columns: 1fr; }
} 

.scroll-arrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #111;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 3px 3px 0 #ac39f8b9;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: #111;
  color: #ac39f8b9;
  box-shadow: none;
  transform: translate(2px, 2px);
}

.arrow-btn:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* EXPERIENCE SECTION */
#experience {
  background: white;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  height: max-content;
}

.exp-heading {
  font-family: "Headland One", serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 6px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.exp-underline {
  width: 60px;
  height: 2px;
  background: #7c5cbf;
  margin-bottom: 10px;
  width: 0;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.exp-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s
}
.exp-heading.in-view { opacity: 1; transform: translateY(0); }
.exp-underline.in-view { width: 120px; } /* adjust to taste */
.exp-sub.in-view    { opacity: 1; transform: translateY(0); }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 12px; bottom: 0;
  width: 1px;
  background: #1e1e2e;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline.in-view::before { transform: scaleY(1); }
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid #ddd;
}

.exp-card {
  position: relative;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.exp-card.in-view { opacity: 1; transform: translateX(0); }
.exp-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7c5cbf;
  border: 2px solid #fff;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease 0.4s,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}
.exp-card.in-view .exp-dot { opacity: 1; transform: scale(1); }

.exp-card-inner {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.exp-card-inner:hover {
  border-color: #7c5cbf;
}

.exp-role {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  font-family: Georgia, serif;
}

.exp-company-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.exp-company {
  font-size: 16px;
  font-weight: 500;
  color: #7c5cbf;
}

.exp-badge {
  font-size: 15px;
  background: #f0eaff;
  color: #4a2a8a;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #c9b8f0;
}

.exp-date {
  font-size: 12px;
  color: #888;
  margin-left: auto;
}

.exp-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 12px;
}

.exp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
    opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.exp-card.in-view .exp-tag:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.exp-card.in-view .exp-tag:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.63s; }
.exp-card.in-view .exp-tag:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.71s; }
.exp-card.in-view .exp-tag:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.79s; }


.exp-tag {
  font-size: 11px;
  background: #f5f5f5;
  color: #555;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* SECTION */
.skills-section {
  padding: 80px 5%;
  background: #f0ece4;
}

.skills-section > .section-title {
    font-family: "Headland One", serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #111;
  margin-bottom: 10px;
}

.skills-section > hr {
  border: none;
  border-top: 1.5px solid #ccc;
  margin-bottom: 40px;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skill-card {
  background: #faf8f4;
  border: 1px solid #e2ddd5;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #ac39f8b9;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(48px) scale(0.97);
  transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Staggered delays */
  .skill-card:nth-child(1) { transition-delay: 0.05s; }
  .skill-card:nth-child(2) { transition-delay: 0.18s; }
  .skill-card:nth-child(3) { transition-delay: 0.31s; }

  /* Triggered state */
  .skill-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.skill-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #111;
  margin: 0;
}

.skill-card hr {
  border: none;
  border-top: 1px solid #e2ddd5;
  margin: 0;
}

.skill-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #5b21b6;
  background: #ede9fe;
  border: 1px solid #c4b5fd;
  border-radius: 20px;
  padding: 4px 12px;
}

@media (max-width: 900px) {
  .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .skills-container {
    grid-template-columns: 1fr;
  }
}
.Hireme{
  width: 100%;
  margin-top: 180px;
  margin-bottom: 180px;
}
.Hireme p{
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  color: #555;
  font-size: 1rem;
}
.Hireme h1{
  font-size: 7rem;
  font-family: "Headland One", serif;
  text-shadow: 
    1px 1px 0px #b02aee,
    2px 2px 0px #ea49ff,
    3px 3px 0px #5efaff,
    4px 4px 0px hsl(281, 57%, 51%),
    5px 5px 0px #ffa0ff,
    6px 6px 10px rgba(0,0,0,0.4);
  text-align: center;
}

/* ===== FOOTER BASE ===== */
footer {
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: 50px 8% 20px;
  font-family: 'Poppins', sans-serif;
}

/* ===== GRID LAYOUT ===== */
.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  /* align-items: start; */
}

/* ===== LEFT ===== */
.footer-left h3 {
  font-family: "Playwrite NO", cursive;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 1200;
}

.footer-left p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 17px;
  color: #555;
}

#venkat_logo {
  width: 120px;
  opacity: 0.85;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              filter 0.5s ease;
  will-change: transform;
}

#venkat_logo:hover {
  opacity: 1;
  transform: perspective(500px) rotateX(10deg) rotateY(8deg)
             translateY(-6px) scale(1.08);
  filter: drop-shadow(2px 12px 18px rgba(0,0,0,0.2))
          drop-shadow(0px 4px 6px rgba(0,0,0,0.15));
}

/* ===== CENTER LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: "Josefin Sans", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.footer-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #8b5cf6;
  left: 0;
  bottom: -2px;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===== RIGHT SOCIAL ===== */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons img {
  width: 30px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.social-icons img:hover {
  transform: translateY(-4px) scale(1.1);
  opacity: 1;
}

/* ===== CONTACT ===== */
#contact_wayss a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
  width: 200px;
  transition: 0.3s;
}

#contact_wayss a:hover {
  color: #8b5cf6;
}

/* ===== DIVIDER ===== */
.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  #contact_wayss {
    text-align: center;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;
  background: #8b5cf6;
  color: white;
  font-size: 18px;
  cursor: pointer;

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

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);

  transition: all 0.3s ease;
}

/* SHOW STATE */
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* HOVER */
#scrollTopBtn:hover {
  background: #6d28d9;
  transform: translateY(-3px) scale(1.1);
}

.AboutPage-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  inset: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  overflow-y: auto;
  justify-content: center;
  backdrop-filter: blur(5px);
  z-index: 2000;
}
.about-overlay.active {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      backdrop-filter: blur(0px);
  }
  to {
      opacity: 1;
      backdrop-filter: blur(2px);
  }
}
.aboutPageContent{
  max-height:95vh;
  max-width: 80vw;
  background: hsl(0, 0%, 100%, 0.9);
  padding: 25px;
  border-radius: 15px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: popup 0.3s ease;
}
@keyframes popup{
    from{
        opacity: 0;
        transform: scale(0.8);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
.topRow{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.topRow h2{
  font-family: "Playwrite NO", cursive;
  font-size: 1.4rem;
}
.topRow a{
  font-size: 2rem;
  border: transparent;
  cursor: pointer;
}
.about-section-profile-section{
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.about-section-profile-section #NameAndStack{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
#NameAndStack{
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.about-section-profile-section .profile-photo-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.profile-photo-container img:first-child{
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: rotate(6deg);
}
.profile-photo-container img:first-child:hover{
  transform: rotate(0);
}
.profile-photo-container img:nth-child(2){
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: rotate(-6deg);
}
.profile-photo-container img:nth-child(2):hover{
  transform: rotate(0);
}
.profile-photo-container img:last-child{
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: rotate(6deg);
}
.profile-photo-container img:last-child:hover{
  transform: rotate(0);
}
.about-section {
  /* margin: 1rem auto; */
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.section-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1.25rem;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.highlight {
  color: #8137f8;
  font-weight: 600;
  background: linear-gradient(120deg, #7b25eb, #a25cfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.education-item {
  border-radius: 18px;
  background: rgba(140, 66, 224, 0.185);
  position: relative;
  padding: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #e5e7eb;
  transition: all 0.34s ease;
}

.education-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background-color: #8125eb;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #8b25eb;
}
.education-item:hover{
  transform: translateX(10px);
} 

.education-item:last-child {
  border-left-color: transparent;
}
.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
}

.hobby-item {
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background-color: hsl(278, 100%, 66%, 0.3);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow:visible;
}

.hobby-item:hover::before {
  left: 100%;
}

/* For better mobile spacing */
@media (max-width: 600px) {
  .hobbies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hobby-item {
    padding: 1rem 0.75rem;
  }

  .hobby-icon {
    font-size: 2rem;
  }

  .hobby-name {
    font-size: 0.8rem;
  }
}

.hobby-item:hover {
  background-color: hsl(278, 100%, 66%, 0.4);
  border-color: #bd25eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.hobby-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s ease;
}

.hobby-item:hover .hobby-icon {
  transform: scale(1.3);
}

.hobby-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a4a4a;
  text-align: center;
  transition: color 0.3s ease;
}

.hobby-item:hover .hobby-name {
  color: #000000;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #a855f7;
  border-radius: 2px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background-color: hsl(278, 100%, 66%, 0.3);
  color: #1a1a1a;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.skill-tag:hover {
  background-color: #a855f7;
  color: #fff;
  border-color: #a855f7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
}

@media (max-width: 600px) {
  .skill-tags {
    gap: 0.6rem;
  }

  .skill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
/* Smooth scrollbar */
.aboutPageContent::-webkit-scrollbar {
  width: 6px;
}
 
.aboutPageContent::-webkit-scrollbar-track {
  background: rgba(168, 85, 247, 0.05);
}
 
.aboutPageContent::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
 
.aboutPageContent::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

hr{
  margin: 15px;
  height: 3px;
  background-color: #5b21b6;
  border-radius: 20px;
}
/* ========================= */
/* Responsive Design */
/* ========================= */

@media (max-width: 1024px){

    .aboutPageContent{
        width: 90%;
        height: 90vh;
        padding: 20px;
        overflow-y: auto;
    }

    .profile-photo-container{
        flex-wrap: wrap;
        justify-content: center;
    }

    .profile-photo-container img{
        width: 220px;
        height: auto;
    }

    .skill-tags{
        justify-content: center;
    }
}


@media (max-width: 768px){

    .topRow{
        flex-direction: row;
        align-items: center;
    }

    .topRow h2{
        font-size: 1.5rem;
    }

    .aboutPageContent{
        width: 95%;
        height: 95vh;
        border-radius: 15px;
        padding: 18px;
    }

    .about-page-content{
        gap: 20px;
    }

    .about-section-profile-section{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo-container{
        flex-direction: column;
        align-items: center;
    }

    .profile-photo-container img{
        width: 100%;
        max-width: 280px;
        border-radius: 15px;
    }

    .profile-title{
        font-size: 1rem;
    }

    .about-text{
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .education-degree{
        font-size: 1rem;
    }

    .education-university,
    .education-year{
        font-size: 0.9rem;
    }

    .hobbies-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hobby-item{
        padding: 12px;
    }

    .skill-tags{
        gap: 10px;
    }

    .skill-tag{
        font-size: 0.85rem;
        padding: 8px 14px;
    }
}


@media (max-width: 480px){

    .aboutPageContent{
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 15px;
    }

    .topRow h2{
        font-size: 1.2rem;
    }

    #AboutOverlayClose{
        font-size: 2rem;
    }

    .section-title{
        font-size: 1.1rem;
    }

    .about-text{
        font-size: 0.9rem;
    }

    .hobbies-grid{
        grid-template-columns: 1fr;
    }

    .hobby-item{
        justify-content: center;
    }

    .skill-tags{
        justify-content: center;
    }

    .skill-tag{
        font-size: 0.8rem;
    }

    .profile-photo-container img{
        max-width: 240px;
    }
}