* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;

  }
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: #64ffda;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #0a192f;
  }
  .contact-item a {
    text-decoration: none;
    color: inherit; /* optional: yeh text ka color bhi normal kardega */
  }
  
  body {
    background-color: #0a192f;
    color: #ffffff;
    font-family: 'Helvetica Neue', sans-serif;
    width: 100%;
    overflow-x: hidden; /* Prevent side scrolling */
    margin: 0;
    padding: 0;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64ffda;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav li {
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.95rem;
    color: #ffffff;
  }
  
  nav .active,
  nav li:hover {
    color: #64ffda;
  }
  nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0.5rem 0;
}

nav a {
  color: white;
  text-decoration: none;
}

/* Toggle button hidden by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #64ffda;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
  width: 100%;
    position: absolute;
    top: 70px; /* 👈 Set this equal to or just below header height */
    left: 0;
    z-index: 999;
  }

  nav ul {
    flex-direction: column;
    background-color: #0a192f;
    width: 100%;
    padding: 0 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.10s ease;
  }
nav ul.show {
  max-height: 300px; /* or more depending on content */
}

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64ffda;
    cursor: pointer;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1rem; /* Optional: spacing left-right */
}

  
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px; /* Reduced padding for better full width */
    background-color: #0a192f; /* Background color match */
    color: #ffffff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    
  }
  
  
  .left {
    flex: 1;
    z-index: 2;
  }
  
  .left .iam {
    font-size: 18px;
    color: #64ffda; /* Accent color */
    margin-bottom: 10px;
  }
  
  .left h1 {
    font-size: 48px;
    margin: 0;
  }
  
  .left h2.title {
    font-size: 28px;
    margin-top: 10px;
    color: #ccd6f6;
  }
  
  .left .description {
    font-size: 16px;
    margin: 20px 0;
    max-width: 500px;
    line-height: 1.6;
  }
  
  .left .btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 10px;
    background-color: transparent;
    border: 1px solid #64ffda;
    color: #64ffda;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .left .btn:hover {
    background-color: #64ffda;
    color: #0a192f;
  }
  
  .stats {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    font-size: 16px;
  }
  
  .stats strong {
    display: block;
    font-size: 24px;
    color: #64ffda;
  }
  
  .right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  }
  
  .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1);
    transition: 0.3s ease;
  }
  
  .social-vertical {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .social-vertical a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-vertical a:hover {
    color: #64ffda;
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .right {
      margin-top: 40px;
      justify-content: center;
    }
  
    .social-vertical {
      position: static;
      flex-direction: row;
      justify-content: center;
      margin-top: 20px;
      transform: none;
    }
  }
  
#about {
  background-color: #0a192f;
  padding: 5rem 2rem;
  color: #ffffff;
}

.about-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-left, .about-right {
  flex: 1 1 300px;
}

.about-left h2 {
  font-size: 2.5rem;
  color: #64ffda;
  margin-bottom: 1.5rem;
}

.about-left p {
  color: #8892b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-right {
  text-align: center;
}
  @media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, .about-right {
    width: 100%;
  }

  .about-left h2 {
    font-size: 2rem;
  }

  .about-left p {
    font-size: 0.95rem;
  }
}
/* Section title styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #44ffd2;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  /* Service container styling */
  .services-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;                /* equal space between cards */
    margin-top:40px;

  }
  .service-link{
    text-decoration:none;    /* remove underline */
    display:block;           /* let it behave like a block */
    transition:transform .25s ease;
  }
  .service-link:focus-visible{
    outline:2px solid #64ffda;
    outline-offset:4px;
  }
  
  
  /* Each service box */
  .service-box {
    width: 300px;
    padding: 35px 28px;
    background: #0f1a2b;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,255,213,0.18);
    box-shadow: 0 0 12px rgba(0,255,213,0.08);
    transition: all 0.4s ease;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-box{
    min-height: 230px;     /* tune until it fits the tallest card */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .service-box h3 {
    color: #00ffd5;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
  .service-box p {
    color:#ccd6f6;
    font-size:.95rem;
    line-height:1.55;
  }
.service-link:hover .service-box,
.service-link:focus .service-box{
  transform: translateY(-12px) scale(1.02);
  border-color: #00ffd5;
  box-shadow: 0 0 20px rgba(0,255,213,0.4), 0 0 40px rgba(0,255,213,0.2);
  background: linear-gradient(145deg, #0f1a2b, #112240);
}
  
  .service-box:hover {
    background: linear-gradient(145deg, #112240, #0f1a2b);
  }
  
  @media (min-width:1200px){
    .service-box{
      backdrop-filter:blur(2px);
    }
  }
  
  /* stack vertically on small screens */
  @media (max-width:600px){
    .service-box{
      width:100%;
    }
  }  
  
  .nav-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #00ffd5; /* or your primary accent color */
  }
  /* Education & Certification Shared Styling */
#education, #certifications {
    padding: 80px 20px;
    background-color: #0b1120;
    color: #fff;
    text-align: center;
  }


  .edu-cert-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .edu-cert-box {
    background-color: #11192f;
    padding: 25px;
    border-radius: 12px;
    max-width: 300px;
    width: 100%;
    border: 1px solid #1f2a40;
    box-shadow: 0 0 10px rgba(0, 255, 213, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .edu-cert-box:hover {
    transform: translateY(-5px);
  }
  
  .edu-cert-box h3 {
    color: #00ffd5;
    font-size: 1.2rem;
    margin-bottom: 10px;
     text-align: center;
  }
  
  .edu-cert-box p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 8px;
    text-align:center;
  }
  .edu-cert-box a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
  }
  
  
  .about-content {
    display: block;
    text-align: left;
    padding: 1rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
  }
  
  .modal-content {
    position: relative;
    background: #0e1a2b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 30px #00fff7;
    max-width: 90%;
    max-height: 90%;
  }
  
  .image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #00fff7;
    cursor: pointer;
  }
  
  .image-controls {
    position: absolute;
    top: 10px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .image-controls button,
  .image-controls a {
    background-color: #0f2439;
    border: none;
    color: #64ffda;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .image-controls button:hover,
  .image-controls a:hover {
    background-color: #1e3c56;
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #64ffda;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    display: none;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  /* Enhanced Modal Styling */
.modal .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.arrow-btn {
  background: none;
  border: none;
  color: #64ffda;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.arrow-btn:hover {
  transform: scale(1.1);
}

.modal-actions {
  text-align: center;
  margin-top: 15px;
}

#download-btn {
  padding: 10px 20px;
  background-color: #64ffda;
  border: none;
  border-radius: 5px;
  color: #0a192f;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#download-btn:hover {
  background-color: #52c2af;
}

.loader-spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #64ffda;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


#skills {
  background-color: #0b1120;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.8)), url('01.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.skills-wrapper {
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px;
}

.skill {
  text-align: left;
}
.skills-section {
  padding: 80px 20px;
  background-color: #0b1120;
  color: #fff;
}

.skills-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.skill-bar span {
  font-size: 0.95rem;
  color: #64ffda;
  font-weight: 500;
}

/* Category Title */
.category-title {
  font-size: 1.5rem;
  color: #64ffda;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px;
}

/* Skill Bar Styling */
.skill-bar {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.skill-bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.skill-bar i {
  color: #64ffda;
  font-size: 1.1rem;
}

/* On Hover */
.skill-bar:hover {
  transform: scale(1.02);
}

.progress {
  background-color: #1a2638;
  height: 14px;
  border-radius: 20px;
  overflow: hidden;
}


  .skills-category h3 {
    color: #64ffda;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .skill-bar {
    position: relative;
    margin-bottom: 20px;
    background-color: #0f1a2b;
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 4px solid #64ffda;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  
  .skill-bar i {
    font-size: 20px;
    color: #64ffda;
    width: 25px;
  }
  
  .skill-bar span {
    flex: 1;
    color: #ccd6f6;
  }
  
  .progress {
    background-color: #1c263b;
    height: 8px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    margin-top: 8px;
  }
  
  .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #64ffda, #44ffd2);
    transition: width 0.6s ease-out;
    border-radius: 8px 0 0 8px;
    opacity: 0;
  }
  
  .skill-bar:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -28px;
    left: 0;
    background-color: #1f2d45;
    color: #64ffda;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }
  .experience-section {
    padding: 80px 20px;
    background-color: #0b1120;
    color: #fff;
  }
  
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #64ffda;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
  }
  
  .timeline-item.left {
    left: 0;
  }
  
  .timeline-item.right {
    left: 50%;
  }
  
  .timeline-item .content {
    background-color: #112240;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.1);
    transition: transform 0.3s;
  }
  
  .timeline-item .content:hover {
    transform: scale(1.03);
  }
  
  .timeline-item .icon {
    font-size: 24px;
    color: #64ffda;
    margin-bottom: 10px;
  }
  
  .timeline-item .duration {
    font-size: 0.85rem;
    color: #8892b0;
    display: block;
    margin-bottom: 10px;
  }
  
  .timeline-item h3 {
    color: #00ffd5;
    margin-bottom: 5px;
  }
  
  .timeline-item p {
    font-size: 0.95rem;
    color: #ccd6f6;
  }
  
  @media (max-width: 768px) {
    .timeline::after {
      left: 10px;
    }
  
    .timeline-item {
      width: 100%;
      padding-left: 30px;
      padding-right: 20px;
    }
  
    .timeline-item.right {
      left: 0%;
    }
  }
  .stats-section {
    background-color: #0b1120;
    padding: 80px 20px;
    color: white;
    text-align: center;

  }
  
  .stats-counters {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .counter-box {
    background-color: #11192f;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.1);
    min-width: 200px;
  }
  
  .counter-box h3 {
    color: #64ffda;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .counter-box p {
    font-size: 1rem;
    color: #ccc;
  }
  
  .chart-container {
    max-width: 480px;
    margin: 50px auto 0;
  }
  .tech-stack-section {
    padding: 60px 20px;
    background-color: #0a192f;
    text-align: center;
    background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.8)), url('05.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .tech-category {
    margin-top: 40px;
  }
  
  .tech-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .tech-item {
    background: #112240;
    border-radius: 12px;
    padding: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 12px rgba(0,255,213,0.2);
    animation: pulseGlow 2s infinite alternate;
    cursor: pointer;
  }
  
  .tech-item i {
    font-size: 2.8rem;
    color: #64ffda;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0,255,213,0.6);
  }
  
  .tech-item p {
    font-size: 1rem;
    color: #ccd6f6;
    margin: 0;
  }
  
  .tech-item:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 0 25px rgba(100,255,218,0.7), 0 0 40px rgba(100,255,218,0.5);
  }
  
  @keyframes pulseGlow {
    0% { box-shadow: 0 0 12px rgba(0,255,213,0.2); }
    100% { box-shadow: 0 0 20px rgba(0,255,213,0.5); }
  }
  
  /* Fade-in Scroll Effect */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .tech-item {
    animation: fadeInUp 1s ease both, pulseGlow 2s infinite alternate;
  }
  
  .career-section {
    padding: 80px 20px;
    background: #0a192f;
    color: #ccd6f6;

  }
  
  .career-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  .career-card {
    padding: 20px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }
  
  .career-card.left {
    left: 0;
    text-align: left;
  }
  
  .career-card.right {
    left: 50%;
    text-align: left;
  }
  
  .career-card .card-content {
    background: #112240;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.1);
    border-left: 4px solid #64ffda;
  }
  
  .career-card.right .card-content {
    border-left: none;
    border-right: 4px solid #64ffda;
  }
  
  .year {
    font-size: 0.9rem;
    color: #00ffc3;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
  }
  
  @media (max-width: 768px) {
    .career-card, .career-card.right {
      left: 0 !important;
      width: 100%;
      text-align: left;
    }
  
    .career-card.right .card-content {
      border-left: 4px solid #64ffda;
      border-right: none;
    }
  }
  .goals-section {
    background-color: #0b1120;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
  }
  
  .goals-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .goal-card {
    background: #11192f;
    border: 1px solid #1f2a40;
    padding: 30px 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
  }
  
  .goal-card i {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 15px;
  }
  
  .goal-card h3 {
    color: #44ffd2;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .goal-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
  }
  .goals-section {
    background-color: #0a192f;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
  }
  
  .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-inline: auto;
  }
  
  .goal-box {
    background: #0f1a2b;
    border: 1px solid #1f2a40;
    padding: 30px 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 255, 213, 0.04);
  }
  
  .goal-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0, 255, 213, 0.08);
  }
  
  .goal-box .icon {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 15px;
  }
  
  .goal-box h3 {
    color: #44ffd2;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .goal-box p {
    color: #ccd6f6;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .modal-content {
    background: #0f1a2b;
    padding: 30px;
    border-radius: 8px;
    color: #fff;
    max-width: 500px;
    text-align: left;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #64ffda;
    cursor: pointer;
  }
  .contact-section {
    background-color: #0a192f;
    padding: 80px 20px;
    text-align: center;
    color: #ccd6f6;
    width: 100%;
    box-sizing: border-box;
  }
  
  
  .contact-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .contact-item {
    background: #0f1a2b;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,255,213,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: slideUp 1s ease forwards;
    opacity: 0;
  }
  
  .contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0,255,213,0.4);
  }
  
  .contact-item i {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 15px;
  }
  
  .contact-item p {
    font-size: 1.1rem;
    color: #ccd6f6;
  }
  
  /* Animation when scroll */
  @keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
/* each card */
.dash-card{
  display:inline-block;
  margin:0 0 25px;
  position:relative;
  cursor:pointer;
  transition:transform .25s;
}
.dash-card img{
  width:100%;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,255,213,.07);
}
.dash-card:hover{ transform:translateY(-6px); }

/* overlay */
.dash-card figcaption{
  position:absolute; inset:0;
  background:rgba(0,0,0,.65);
  color:#fff;
  border-radius:12px;
  opacity:0; display:flex;
  flex-direction:column;
  justify-content:center; align-items:center;
  gap:8px; text-align:center;
  transition:opacity .3s;
}
.dash-card:hover figcaption{ opacity:1; }

.badge{
  padding:4px 10px; border-radius:20px;
  font-size:.75rem; font-weight:600;
}
.powerbi{ background:#F2C811; color:#151515; }
.streamlit{ background:#FF4B4B; }

figcaption h3{ font-size:1rem; }

/* Lightbox modal */
#lightModal{
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.85); z-index:999;
  justify-content:center; align-items:center;
}
#lightModal img{
  max-width:90vw; max-height:90vh;
  border-radius:10px;
}
#lightModal.close-area{ cursor:pointer; }
/* Filter buttons */
.dash-filters{
  display:flex; justify-content:center; gap:15px; margin:30px 0 10px;
}
.filter-btn{
  background:#0f1a2b; color:#64ffda; border:none; padding:8px 18px;
  border-radius:8px; cursor:pointer; font-weight:600; transition:.3s;
}
.filter-btn.active, .filter-btn:hover{ background:#64ffda; color:#0a192f; }

/* Lightbox */
.modal{
  display:none; position:fixed; inset:0; background:rgba(0,0,0,.85);
  justify-content:center; align-items:center; flex-direction:column;
  z-index:9999;
}
.modal img{
  max-width:90vw; max-height:80vh; border-radius:10px; margin:10px 0;
}
.close-btn{
  position:absolute; top:20px; right:30px; font-size:32px;
  color:#64ffda; cursor:pointer;
}
.arrow-btn{
  background:none; border:none; font-size:40px; color:#64ffda;
  cursor:pointer; padding:0 20px;
}
.code-btn{
  background:#64ffda; color:#0a192f; padding:10px 20px;
  border-radius:6px; font-weight:700; text-decoration:none;
  transition:.3s;
}
.code-btn:hover{ background:#52e0c4; }
.dash-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);  /* 3 per row */
  gap:30px;
  max-width:1100px;
  margin:auto;
  padding:0 15px;
}

/* each card fills its grid cell */
.dash-card{
  width:100%;               /* no fixed pixel width */
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .25s, box-shadow .25s;
  box-shadow:0 4px 12px rgba(0,255,213,.08);
}
.dash-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 24px rgba(0,255,213,.14);
}
.dash-card img{width:100%;height:auto;display:block;}

/* overlay (kept same) */
/* overlay on hover */
.dash-card figcaption{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  background:rgba(0,0,0,.65);
  opacity:0; transition:.3s;
  text-align:center; color:#fff;
}
.dash-card:hover figcaption{ opacity:1; }


/* ---------- responsive breakpoints ---------- */
@media(max-width:1024px){ .dash-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:600px ){ .dash-grid{grid-template-columns:1fr;} }

.dash-card:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:0 14px 30px rgba(0,255,213,.18);
}
.skills-section {
  padding: 60px 20px;
  text-align: center;
  background: #0a192f;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #64ffda;
}

.skills-section {
  padding: 60px 20px;
  text-align: center;
  background: #0a192f;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #64ffda;
}

.skills-container {
  max-width: 1000px;
  margin: 0 auto;
}

.skills-category {
  margin-bottom: 50px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.circular-skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease;
}

.circular-skill:hover {
  transform: scale(1.15);
}

.circle {
  width: 90px; /* was 120px, reduced */
  height: 90px; /* was 120px, reduced */
  border-radius: 50%;
  background: conic-gradient(#112240 0deg, #112240 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulseGlow 2s infinite;
  box-shadow: 0 0 8px rgba(0,255,213,0.3);
  transition: background 1s ease, box-shadow 0.5s ease;
}

.circle:hover {
  box-shadow: 0 0 20px rgba(0,255,213,0.7), 0 0 30px rgba(0,255,213,0.4);
}

.inner-circle {
  width: 65px; /* was 90px, reduced */
  height: 65px; /* was 90px, reduced */
  background-color: #0a192f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem; /* was 1.3rem, reduced */
  color: #64ffda;
  animation: fadeIn 1s ease forwards;
}

.circular-skill p {
  margin-top: 8px;
  font-size: 0.9rem; /* thoda compact font */
  color: #ccd6f6;
}

/* Glow + Breathing Pulse */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(0,255,213,0.2); }
  50% { box-shadow: 0 0 18px rgba(0,255,213,0.5); }
  100% { box-shadow: 0 0 8px rgba(0,255,213,0.2); }
}

/* Fade-in numbers */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .skills-grid {
    flex-direction: column;
    align-items: center;
  }
}
.site-footer {
  background-color: #0a192f;
  color: #ccd6f6;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #1f2a40;
  margin: 0; /* Remove margin */
  width: 100%; /* Make sure full width */
  box-sizing: border-box;
}

.site-footer p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #8892b0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-socials a {
  color: #8892b0;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #64ffda;
  transform: translateY(-5px);
}
section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}
.coming-soon {
  background-color: #ff4b4b;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 10px;
  vertical-align: middle;
}
.stats-counters {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.counter-box {
  background-color: #11192f;
  padding: 30px;
  border-radius: 14px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,255,213,0.2);
  transition: all 0.4s ease;
  animation: pulseGlow 2s infinite alternate;
}

.counter-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 30px rgba(100,255,218,0.7), 0 0 40px rgba(100,255,218,0.5);
}

.counter-box h3 {
  color: #64ffda;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1rem;
  color: #ccd6f6;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(0,255,213,0.2); }
  100% { box-shadow: 0 0 20px rgba(0,255,213,0.4); }
}
.knowledge-sharing-section {
  padding: 60px 20px;
  background-color: #0a192f;
  text-align: center;
  color: #ccd6f6;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #8892b0;
}

.blog-slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.blog-slider {
  display: flex;
  gap: 30px;
  animation: scrollBlogs 60s linear infinite;
}

.blog-card {
  position: relative;
  background-color: #112240;
  border-radius: 15px;
  padding: 25px;
  width: 280px;
  flex: 0 0 auto;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,255,213,0.15);
  transition: all 0.4s ease;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(100,255,218,0.25) 0%, transparent 40%);
  animation: glowMove 6s linear infinite;
  z-index: 0;
}

.blog-card h3, .blog-card p, .blog-card a {
  position: relative;
  z-index: 1;
}

.blog-card h3 {
  font-size: 1.4rem;
  color: #64ffda;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.blog-card a {
  color: #64ffda;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(100,255,218,0.7), 0 0 40px rgba(100,255,218,0.5);
}

/* Blog Auto Scroll Animation */
@keyframes scrollBlogs {
  0% { transform: translateX(0); }
  100% { transform: translateX(-60%); }
}

/* Glow Animation Moving */
@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.blog-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.95); /* dark background */
  justify-content: center;
  align-items: center;
}

.blog-modal-content {
  background-color: #112240;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 30px rgba(100,255,218,0.7), 0 0 40px rgba(100,255,218,0.5);
  animation: fadeIn 0.4s ease forwards;
}

.blog-modal-content img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}


.blog-modal-content h3 {
  color: #64ffda;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.blog-modal-content p {
  color: #ccd6f6;
  font-size: 1rem;
}

.blog-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #64ffda;
  cursor: pointer;
}
#blogModalImage{
  height: 10%;
}

.blog-close-btn:hover {
  color: #44ffd2;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #64ffda;
  color: #0a192f;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #44ffd2;
  box-shadow: 0 0 15px rgba(100,255,218,0.6);
}


/* Fix badge colors */
.badge.fullstack {
  background: #ff8c00; /* Dark orange */
  color: #0a192f;
}

.badge.wordpress {
  background: #00bfff; /* DeepSkyBlue */
  color: #0a192f;
}
.fyp-video-wrapper {
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInZoom 1.2s ease forwards;
  transform: scale(0.96);
  opacity: 0;
}

.fyp-video-wrapper:hover {
  transform: scale(1);
  box-shadow: 0 0 45px rgba(0, 255, 213, 0.35);
}

.fyp-video {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000;
  border: none;
}


/* Animation */
@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 🖼️ Images appear below video, full row */
.fyp-images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#fyp .edu-cert-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,255,213,0.1);
  transition: transform 0.3s;
}

#fyp .edu-cert-box img:hover {
  transform: scale(1.03);
}

#fyp .edu-cert-box p {
  color: #ccd6f6;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}
.popup-desc {
  color: #ccc;
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
}

  /* Base styles */
    
     

