@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { 
    background-color: #050505; 
    color: #fff; 
    overflow-x: hidden; 
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at top, #111 0%, #000 100%);
}

.banner { padding: 180px 0 100px 0; min-height: 100vh; }

.tagline {
    background: linear-gradient(90deg, rgba(170, 54, 124, 0.6), rgba(74, 47, 189, 0.6));
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 4px;
}

h1 { font-size: 60px; font-weight: 700; margin-bottom: 20px; }

.header-img { 
    width: 100%; 
    animation: float 4s ease-in-out infinite alternate; 
}

@keyframes float {
    from { transform: translateY(0px) rotate(0deg); }
    to { transform: translateY(-30px) rotate(5deg); }
}

.btn-main {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 50px;
    cursor: pointer;
    transition: 0.3s;
}

.intro-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    pointer-events: none;
    background: radial-gradient(circle at top, #111 0%, #000 100%);
}

.intro-card {
    background: rgba(18, 18, 18, 0.85); 
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.profile-img-wrapper {
    position: relative;
    display: inline-block;
}

.profile-img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.name { font-size: 45px; font-weight: 700; color: #00d2ff; margin-bottom: 5px; }
.title { font-size: 22px; color: #fff; margin-bottom: 25px; font-weight: 400; }
.description { color: #b8b8b8; line-height: 1.6; margin-bottom: 30px; }

.info-boxes {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.info-box {
    flex: 1;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.info-box span { font-size: 12px; color: #888; display: block; margin-bottom: 5px; }
.info-box h5 { font-size: 16px; color: #fff; margin: 0; }

.intro-btns { display: flex; gap: 15px; }
.btn-cyan {
    background: #00d2ff; color: #000; border: none;
    padding: 12px 30px; border-radius: 50px; font-weight: 700; transition: 0.3s;
}
.btn-white {
    background: #fff; color: #000; border: none;
    padding: 12px 30px; border-radius: 50px; font-weight: 700; transition: 0.3s;
}

.experience-ticker-wrapper {
    height: 400px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    max-width: 600px;
}

.ticker-content {
    display: flex;
    flex-direction: column;
    animation: verticalScroll 15s linear infinite;
}

.exp-ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 150px;
}

.exp-ticker-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00d2ff;
}

.exp-text h5 {
    font-weight: 800;
    font-size: 24px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}
.exp-text h6 {
    font-weight: 800;
    font-size: 12px;
    margin: 0;
    color: #ccc9d5;
    
}
.exp-text span {
    color: #00d2ff;
    font-size: 18px;
    font-weight: 600;
}
.exp-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 2;
    padding-left: 40px;
}

.exp-date {
    color: #00d2ff;
    font-size: 14px;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.exp-text p {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

@keyframes verticalScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-450px); }
}

.experience-ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}
.skills-section {
    padding: 100px 0;
    background: transparent;
}

.skills-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.skills-track {
    display: flex;
    gap: 60px;
    animation: horizontalScroll 45s linear infinite;
    width: max-content;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-card i {
    font-size: 80px;
    margin-bottom: 20px;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.skill-card span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
}

.skill-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(0, 210, 255, 0.05);
    border-color: #00d2ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 210, 255, 0.3);
}

.skill-card:hover i {
    color: #00d2ff;
    filter: drop-shadow(0 0 20px #00d2ff);
}

.cpp-icon {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #00599C, #004482);
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

@keyframes horizontalScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.html-card i { color: #E34F26; filter: drop-shadow(0 0 15px rgba(227, 79, 38, 0.4)); }

.css-card i { color: #1572B6; filter: drop-shadow(0 0 15px rgba(21, 114, 182, 0.4)); }

.python-card i {
    background: linear-gradient(135deg, #3776AB 50%, #FFD43B 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(55, 118, 171, 0.5));
}

.mysql-card i { color: #00758F; filter: drop-shadow(0 0 15px rgba(0, 117, 143, 0.4)); }

.cpp-icon-box {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #00599C 0%, #004482 100%);
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 89, 156, 0.5);
}

.skill-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s ease;
}

.html-card:hover { border-color: #E34F26; box-shadow: 0 0 30px rgba(227, 79, 38, 0.2); }
.css-card:hover { border-color: #1572B6; box-shadow: 0 0 30px rgba(21, 114, 182, 0.2); }
.python-card:hover { border-color: #FFD43B; box-shadow: 0 0 30px rgba(255, 212, 59, 0.2); }
.mysql-card:hover { border-color: #00758F; box-shadow: 0 0 30px rgba(0, 117, 143, 0.2); }
.cpp-card:hover { border-color: #00599C; box-shadow: 0 0 30px rgba(0, 89, 156, 0.2); }

.skill-card:hover span {
    color: #fff;
    opacity: 1;
}

.btn-cyan:hover, .btn-white:hover { transform: scale(1.05); }

.btn-main:hover { background: #fff; color: #000; }

.projects-section {
    padding: 100px 0;
    background-color: #f0f0f0;
    color: #000;
}

.projects-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: #fff;
    border: 3px solid #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: 0.3s ease;
}

.large { grid-column: span 2; grid-row: span 2; background: #e0e0e0; }
.medium { grid-column: span 2; }
.wide { grid-column: span 2; background: #000; color: #fff; }

.sticker-effect {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
}

.sticker-effect:hover {
    transform: rotate(0deg) scale(1.05);
}

.bento-main-text h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.testimonial-card {
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


.bento-tag {
    font-family: monospace;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #000;
    display: inline-block;
    padding: 2px 8px;
    width: fit-content;
}

.projects-wrapper {
  position: relative;
  min-height: 50vh;
  padding: 0 4vw;
  background: transparent;
}

.bg-text {
  position: sticky;
  top: 15%;
  font-size: 18vw;
  font-weight: 800;
  color: white;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  
}
.bg-text.glow {
  opacity: 0.12;
  text-shadow:
    0 0 40px rgba(0, 255, 255, 0.4),
    0 0 80px rgba(0, 255, 255, 0.25);
  transition: opacity 0.8s ease, text-shadow 0.8s ease;
}

.projects {
  position: relative;
  z-index: 2;
  margin-top: 25vh;
}

.project-card {
  min-height: 80vh;
  display: flex;
  align-items: center;
  gap: 60px;

  opacity: 0.2;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s ease;
}

.project-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-content {
  flex: 1;
}

.project-content h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.project-content p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.project-content span {
  display: block;
  margin-top: 10px;
  opacity: 0.6;
}

.project-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.project-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: cyan;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.project-btn.outline {
  background: transparent;
  border: 1px solid cyan;
  color: cyan;
}

.project-image {
  flex: 1;
}

.project-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.15);
}


@media (max-width: 768px) {
  .bg-text {
    display: none;
  }

  .project-card {
    flex-direction: column;
    opacity: 1;
    transform: none;
    min-height: auto;
    margin-bottom: 80px;
  }
}
.project-problem,
.project-solution {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.project-points {
  margin: 12px 0;
  padding-left: 18px;
}

.project-points li {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 6px;
}

.tech-stack {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.contact-section {
  padding: 120px 0;
  background: #000;
  position: relative;
}

.contact-title {
  font-size: 2.5rem;
  color: cyan;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 40px;
}


.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}


.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  color: cyan;
  font-size: 1.5rem;
  text-decoration: none;

  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: cyan;
  color: #000;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.35);
}


@media (max-width: 768px) {
  .contact-icons {
    gap: 20px;
  }
}
