body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafc;
  color: #222;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(120deg, #f7fafc 0%, #e3f0ff 100%);
  background-size: 200% 200%;
  animation: professionalGradientMove 16s ease-in-out infinite;
}

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

.animated-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7); /* subtle overlay for readability */
  z-index: 1;
  pointer-events: none;
}

/* Remove Matrix canvas styles */
#matrix-canvas {
  display: none;
}

.header-container {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 110px auto 0 auto;
  padding: 48px 36px 40px 36px;
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(30, 80, 180, 0.08);
  text-align: center;
  backdrop-filter: blur(2px);
}

.main-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 2px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  gap: 0.15em;
  flex-wrap: wrap;
  color: #1976d2;
}

.main-title .word {
  display: inline-block;
  position: relative;
}

.main-title .letter {
  opacity: 0;
  display: inline-block;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1976d2;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  filter: none;
  text-shadow: none;
  border-radius: 6px;
  padding: 0 2px;
  font-size: 1.1em;
  transition:
    opacity 0.4s cubic-bezier(.68,-0.55,.27,1.55),
    transform 0.4s cubic-bezier(.68,-0.55,.27,1.55),
    box-shadow 0.3s, color 0.3s;
}

.main-title .letter.from-top {
  transform: translateY(-60px) scale(0.8);
}
.main-title .letter.from-bottom {
  transform: translateY(60px) scale(0.8);
}
.main-title .letter.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Coding hover effect */
.main-title .letter.coding-hover {
  box-shadow: 0 0 18px 4px #5bc0be, 0 0 32px 8px #3a506b;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  transform: scale(1.2) rotate(-6deg);
  transition: box-shadow 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  z-index: 2;
}

.intro {
  font-size: 1.18rem;
  color: #222;
  margin: 28px 0 36px 0;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.cta-btn {
  padding: 14px 32px;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #1976d2, #64b5f6);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(30, 80, 180, 0.08);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

.cta-btn.secondary {
  background: #f7fafc;
  color: #1976d2;
  border: 2px solid #64b5f6;
}

.cta-btn.secondary:hover {
  background: #64b5f6;
  color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 12px rgba(30, 80, 180, 0.06);
  padding: 0 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 60px;
  gap: 36px;
}

.nav-list li {
  display: inline-block;
}

.nav-list a {
  color: #1976d2;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover, .nav-list a:focus {
  background: linear-gradient(90deg, #e3f0ff, #64b5f6);
  color: #1976d2;
}

@media (max-width: 800px) {
  .header-container {
    padding: 32px 10px 28px 10px;
  }
  .main-title {
    font-size: 2.1rem;
  }
  .nav-list {
    gap: 16px;
    font-size: 0.98rem;
  }
}

body, * {
  cursor: none !important; /* Hide default cursor everywhere */
}

.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 38px;
  height: 38px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(25, 118, 210, 0.10);
  border: 2px solid #1976d2;
  box-shadow: 0 0 16px 4px #e3f0ff55, 0 0 2px 1px #64b5f6;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
  transition: background 0.2s, border 0.2s, box-shadow 0.2s, transform 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor .cursor-icon {
  font-size: 1.1rem;
  color: #1976d2;
  opacity: 0.85;
  transition: transform 0.18s;
  pointer-events: none;
}

.custom-cursor.pulse {
  background: rgba(25, 118, 210, 0.18);
  border: 2.5px solid #64b5f6;
  box-shadow: 0 0 32px 8px #64b5f699, 0 0 2px 1px #fff;
  transform: translate(-50%, -50%) scale(1.25);
}

@media (max-width: 800px) {
  .custom-cursor {
    display: none;
  }
}
.about-section {
  max-width: 700px;
  margin: 60px auto 0 auto;
  padding: 0 0 40px 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.about-bg-bubbles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(2px);
  animation: floatBubble 16s linear infinite;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(1);}
  50% { transform: translateY(-40px) scale(1.08);}
  100% { transform: translateY(0) scale(1);}
}

.about-accent-bar {
  position: absolute;
  left: -24px;
  top: 0;
  height: 100%;
  width: 6px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1976d2, #64b5f6, #43cea2, #ffd200);
  background-size: 100% 200%;
  animation: accentBarMove 3s linear infinite alternate;
  z-index: 1;
}

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

.about-title {
  color: #1976d2;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.7s 0.2s both;
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1976d2, #64b5f6);
  border-radius: 2px;
  margin-top: 8px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.6s 0.7s both;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.about-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #222;
  opacity: 0;
  animation: fadeInStagger 0.7s 0.5s both;
}

.about-skills, .about-hobbies {
  opacity: 0;
  animation: fadeInStagger 0.7s both;
}

.about-skills { animation-delay: 0.8s; }
.about-hobbies { animation-delay: 1.1s; }

@keyframes fadeInStagger {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

.about-keyskills-label, .about-hobbies-label {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1976d2;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #64b5f6, #ffd200);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: labelGradient 2.5s 1.2s both;
}

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

.about-keyskills {
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #e3f0ff44;
  animation: glowIn 1.2s 1.1s both;
}

@keyframes glowIn {
  0% { text-shadow: none; }
  100% { text-shadow: 0 2px 8px #e3f0ff44; }
}

.about-hobbies-desc {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0;
  animation: fadeInHobbies 1.2s 1.3s both;
}

@keyframes fadeInHobbies {
  from { opacity: 0; transform: translateX(-30px);}
  to { opacity: 1; transform: translateX(0);}
}

.about-edu {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #333;
}

.about-link {
  color: #1976d2;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.about-link:hover {
  color: #1565c0;
}

.about-cgpa {
  color: #388e3c;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

.about-keyskills-badges, .about-hobbies-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  margin-top: 8px;
}

.skill-badge, .hobby-badge {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #e3f0ff 60%, #f7fafc 100%);
  color: #1976d2;
  border-radius: 999px;
  padding: 7px 18px 7px 12px;
  font-size: 1.01rem;
  font-weight: 500;
  box-shadow: 0 2px 8px #e3f0ff44;
  border: 1.5px solid #e3f0ff;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: badgeIn 0.7s forwards;
}

.skill-badge { animation-delay: 1.0s; }
.skill-badge:nth-child(2) { animation-delay: 1.1s; }
.skill-badge:nth-child(3) { animation-delay: 1.2s; }
.skill-badge:nth-child(4) { animation-delay: 1.3s; }

.hobby-badge { animation-delay: 1.4s; }
.hobby-badge:nth-child(2) { animation-delay: 1.5s; }
.hobby-badge:nth-child(3) { animation-delay: 1.6s; }
.hobby-badge:nth-child(4) { animation-delay: 1.7s; }
.hobby-badge:nth-child(5) { animation-delay: 1.8s; }
.hobby-badge:nth-child(6) { animation-delay: 1.9s; }

@keyframes badgeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge-icon {
  margin-right: 7px;
  font-size: 1.15em;
}

.about-icon {
  margin-right: 7px;
  font-size: 1.2em;
  vertical-align: -2px;
}

.about-keyskills-note {
  margin-top: 4px;
  margin-bottom: 12px;
}
.skills-section {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skills-title {
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 2.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skills-cards {
  z-index: 1;
}

.skills-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skills-card.tech-card {
  animation: slideInLeft 1s cubic-bezier(.68,-0.55,.27,1.55) forwards;
  animation-delay: 0.2s;
}
.skills-card.soft-card {
  animation: slideInRight 1s cubic-bezier(.68,-0.55,.27,1.55) forwards;
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(0.96);
  }
  80% {
    opacity: 1;
    transform: translateX(8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px) scale(0.96);
  }
  80% {
    opacity: 1;
    transform: translateX(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.skills-icon {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skills-list {
  margin-top: 0.5rem;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skill-pill {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #e3f0ff 60%, #f7fafc 100%);
  color: #1976d2;
  border-radius: 999px;
  padding: 7px 18px 7px 12px;
  font-size: 1.01rem;
  font-weight: 500;
  box-shadow: 0 2px 8px #e3f0ff44;
  border: 1.5px solid #e3f0ff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: pillIn 0.7s forwards;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skills-card.tech-card .skill-pill { animation-delay: 0.3s; }
.skills-card.tech-card .skill-pill:nth-child(2) { animation-delay: 0.4s; }
.skills-card.tech-card .skill-pill:nth-child(3) { animation-delay: 0.5s; }
.skills-card.tech-card .skill-pill:nth-child(4) { animation-delay: 0.6s; }
.skills-card.tech-card .skill-pill:nth-child(5) { animation-delay: 0.7s; }
.skills-card.tech-card .skill-pill:nth-child(6) { animation-delay: 0.8s; }
.skills-card.tech-card .skill-pill:nth-child(7) { animation-delay: 0.9s; }

.skills-card.soft-card .skill-pill { animation-delay: 0.3s; }
.skills-card.soft-card .skill-pill:nth-child(2) { animation-delay: 0.4s; }
.skills-card.soft-card .skill-pill:nth-child(3) { animation-delay: 0.5s; }
.skills-card.soft-card .skill-pill:nth-child(4) { animation-delay: 0.6s; }
.skills-card.soft-card .skill-pill:nth-child(5) { animation-delay: 0.7s; }
.skills-card.soft-card .skill-pill:nth-child(6) { animation-delay: 0.8s; }

@keyframes pillIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.skill-pill:hover {
  background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%);
  color: #fff;
  box-shadow: 0 4px 16px #1976d244;
}

.pill-icon {
  margin-right: 7px;
  font-size: 1.15em;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.skill-img-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px #e3f0ff44;
}
.projects-section {
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fafc;
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-title {
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.projects-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px;
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

.project-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.10);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.2s;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 16px 48px rgba(25, 118, 210, 0.18);
}

.project-thumb {
  background-size: cover;
  background-position: center;
  height: 120px;
  width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  transition: filter 0.3s;
  filter: grayscale(0.2) brightness(0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
}

.project-card:hover .project-thumb {
  filter: grayscale(0) brightness(1.05);
}

.project-info {
  padding: 1.2rem 1rem 1.5rem 1rem;
  text-align: left;
}

.project-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 0.3rem;
}

.project-short {
  color: #444;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Modal Styles */
.project-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  align-items: center;
  justify-content: center;
}

.project-modal.active {
  display: flex;
  animation: modalFadeIn 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 41, 59, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 16px 64px rgba(25, 118, 210, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 480px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalPopIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  transform: scale(0.92);
  font-family: 'Segoe UI', Arial, sans-serif;
}

@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.7) translateY(60px);}
  to { opacity: 1; transform: scale(1) translateY(0);}
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1976d2;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 3;
}
.modal-close:hover {
  color: #e53935;
}

.modal-body {
  margin-top: 1.5rem;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  overflow-y: auto;
  max-height: 60vh;
  padding-right: 6px;
}

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 1.2rem 0.5rem 1.2rem 0.5rem; }
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* General Section */
.certificates-section {
  padding: 60px 20px;
  background: #f7fbff;
  text-align: center;
  overflow: hidden;
}

.certificates-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0074e4;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInHeading 1s ease forwards;
}

/* Container */
.flip-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Flip Card */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.flip-card:nth-child(1) { animation-delay: 0.3s; }
.flip-card:nth-child(2) { animation-delay: 0.6s; }
.flip-card:nth-child(3) { animation-delay: 0.9s; }

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 0 20px #0074e4, 0 0 40px #0074e4;
}

/* Front and Back */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flip-card-front {
  font-family: 'Poppins', sans-serif;
  color: #0074e4;
}

.flip-card-front h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.issuer {
  font-size: 1rem;
  color: #555;
}

/* Back Side */
.flip-card-back {
  transform: rotateY(180deg);
  background-color: #ffffff;
}

.flip-card-back p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Button */
.view-certificate-button {
  display: inline-block;
  padding: 10px 20px;
  background: #0074e4;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.view-certificate-button:hover {
  background: #005bb5;
}

/* Fade In Animations */
@keyframes fadeInHeading {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 40px;
}

/* Glassmorphism Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 123, 255, 0.5);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
  transition: all 0.4s ease-in-out;
  animation: glow 3s infinite alternate;
}

/* Neon Glow Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5), 0 0 20px rgba(0, 123, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8), 0 0 40px rgba(0, 123, 255, 0.5);
  }
}

/* Each Contact Item */
.contact-item {
  margin: 20px 0;
  font-size: 20px;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-item a {
  color: #007bff;
  text-decoration: underline;
}

.contact-item a:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Icon Styling */
.icon {
  width: 24px;
  height: 24px;
}

/* Hover effect */
.contact-card:hover {
  transform: scale(1.02);
  border: 2px solid #00c6ff;
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    width: 90%;
    padding: 30px 20px;
  }

  .contact-item {
    font-size: 18px;
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Contact Heading Style (like Certificates & Achievements) */
.contact-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0074e4;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInHeading 1s ease forwards;
}

@keyframes fadeInHeading {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}