@charset "UTF-8";
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, -20px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes slideInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}
@keyframes slideInRightBig {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", Arial, Helvetica, sans-serif;
}

body {
  background: #f6f8fc;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html, body {
  scrollbar-width: 50px;
  cursor: url("https://img.icons8.com/external-royyan-wijaya-detailed-outline-royyan-wijaya/24/external-cursor-interface-royyan-wijaya-detailed-outline-royyan-wijaya.png"), auto;
  scrollbar-color: #000 #fff;
}

::-webkit-scrollbar {
  width: 20px;
  height: 12px;
  border: 1px solid #ddd;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b8e600;
}

.landing {
  height: -moz-max-content !important;
  height: max-content !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 1em 2em;
  padding-top: 2em;
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1.5em;
  gap: 2em;
  animation: fadeInDown 0.8s ease-out;
}

.Adithya {
  font-size: 5em;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  font-family: "Google Sans Display", "Google Sans", Arial, sans-serif;
  border-bottom: 4px solid #000;
  padding-bottom: 0.2em;
  margin: 0;
  display: block;
  flex: 1;
  min-width: 0;
  animation: fadeIn 1s ease-out;
}

.pronunciation, .word-type {
  font-size: 0.28em;
  color: #666;
  font-weight: 400;
  font-style: italic;
  padding: 0.3em 0.6em;
  border: 2px solid #ddd;
  border-radius: 15px;
  background: #f8f9fa;
  display: inline-block;
  font-family: "Google Sans Text", monospace;
  margin-top: 0.5em;
  margin-left: 0;
  transition: all 0.3s ease;
  cursor: help;
}
.pronunciation:hover, .word-type:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.word-type {
  font-size: 1.1em;
  color: #666;
  font-weight: 500;
  margin: 1.5em 0 2em 0;
  padding: 0.5em 1em;
  background: #f1f3f4;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  display: inline-block;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  animation: bounceIn 1s ease-out;
}

.definition {
  font-size: 1.5em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2em;
  padding-left: 1.8em;
  border-left: 6px solid #4285f4;
  font-family: "Google Sans Text", Arial, sans-serif;
  opacity: 0.9;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.definition:hover {
  opacity: 1;
  transform: translateX(5px);
  border-left-width: 8px;
}
.definition strong {
  font-weight: 600;
  color: #000;
  margin-right: 0.5em;
}

.highlight {
  background: #fff9c4;
  color: #333;
  padding: 0.2em 0.4em;
  border: 2px solid #f9ab00;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 0.3em;
  display: inline-block;
  transition: all 0.2s ease;
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: #fff4a0;
  border-color: #e69500;
}

.netapp-logo {
  height: 30px;
  width: auto;
  vertical-align: middle;
  border: 1px solid #000;
  background: #fff;
  padding: 5px;
  margin: 0 0.5em;
  border-radius: 6px;
}

.resume-button {
  background: #E14434;
  color: #fff;
  border: 3px solid #000;
  border-radius: 0;
  padding: 1.2em 2.5em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 0px #000;
  font-family: "Google Sans", Arial, sans-serif;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
  /* center by default */
  margin: 1em auto 0 auto;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.resume-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: 1;
}
.resume-button:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000;
}
.resume-button i {
  margin-left: 0.5em;
  font-weight: 600;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.resume-button span {
  position: relative;
  z-index: 2;
}

#about {
  background: #d8e2ff;
  width: 100% !important;
  min-height: 80vh !important;
  padding: 4em 2em;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 2em auto;
}
#about::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border: 2px solid #000;
  border-radius: 2px;
  z-index: 0;
}

.about-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5em;
  text-align: center;
  position: relative;
  padding-bottom: 0.5em;
  width: 100%;
}

.about-cards {
  display: flex;
  gap: 2em;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}

.about-card {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 2.5em;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  background: #FFD700;
  border-radius: 50%;
  border: 2px solid #000;
  z-index: 0;
}
.about-card::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  background: #FEBA17;
  transform: rotate(45deg);
  border: 2px solid #000;
  z-index: 0;
}

.about-header-section {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}

.about-image-circular {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #000;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.about-name-title {
  flex: 1;
}

.about-name {
  font-size: 1.8em;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.3em 0;
  line-height: 1.2;
}

.about-job-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #333;
  margin: 0.2em 0 0.3em 0;
  line-height: 1.3;
}

.about-role {
  font-size: 1.1em;
  color: #0077b5;
  font-weight: 600;
  margin: 0.2em 0 0.3em 0;
  font-style: italic;
}

.about-location {
  font-size: 1.1em;
  color: #000;
  font-weight: 500;
  margin: 0.2em 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.about-location .flag {
  font-size: 1.2em;
}

.about-image {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #000;
  border-radius: 16px;
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}

.about-card-content {
  position: relative;
  z-index: 1;
}
.about-card-content h3 {
  font-size: 2em;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.2em;
  border-bottom: 4px solid #000;
  padding-bottom: 0.6em;
  text-align: center;
}
.about-card-content p {
  font-size: 1.2em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1em;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  text-align: left;
  font-weight: 400;
}

.about-subtitle {
  font-size: 1.3em;
  font-weight: 600;
  color: #0077b5;
  margin-bottom: 1.5em;
  text-align: center;
}

.about-body {
  margin-bottom: 2em;
}
.about-body p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.highlights {
  margin-bottom: 2em;
}
.highlights h5 {
  font-size: 1.2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.8em;
  border-bottom: 2px solid #000;
  padding-bottom: 0.3em;
}
.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlights li {
  font-size: 1em;
  color: #333;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}
.highlights li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #0077b5;
  font-weight: bold;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 2em;
}

.skill-chip {
  background: #f0f8ff;
  color: #0077b5;
  padding: 0.4em 0.8em;
  border: 2px solid #0077b5;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  transition: all 0.3s ease;
}
.skill-chip:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-2px);
}

.links-section {
  margin-top: 2em;
}
.links-section h5 {
  font-size: 1.2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.8em;
  border-bottom: 2px solid #000;
  padding-bottom: 0.3em;
}

.icon-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 3px solid #000;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.4em;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px #000;
  position: relative;
}
.icon-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000;
  text-decoration: none;
  color: green;
}
.icon-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000;
}

.github-btn {
  background: #333;
  color: white;
}
.github-btn:hover {
  background: #000;
}

.linkedin-btn {
  background: #0077b5;
  color: white;
}
.linkedin-btn:hover {
  background: #005a87;
}

.twitter-btn {
  background: #1da1f2;
  color: white;
}
.twitter-btn:hover {
  background: #0d8bd9;
}

.resume-btn {
  background: #ff6b6b;
  color: white;
}
.resume-btn:hover {
  background: #ff5252;
}

.email-btn {
  background: #4caf50;
  color: white;
}
.email-btn:hover {
  background: #45a049;
}

.contact-info, .social-links {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 2px dashed #000;
}
.contact-info p, .social-links p {
  font-size: 1.1em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
.contact-info a, .social-links a {
  color: #0077b5;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted #0077b5;
  transition: all 0.3s ease;
}
.contact-info a:hover, .social-links a:hover {
  color: #005a87;
  border-bottom: 1px solid #005a87;
}

.education-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.education-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.education-content h3 {
  font-size: 1.6em;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.2em;
  text-align: center;
}
.education-content h3 i {
  margin-right: 0.5em;
  color: #0077b5;
}

.education-items {
  display: flex;
  flex-direction: column;
  gap: 2em;
  flex: 1;
}

.education-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 3px solid #000;
  border-radius: 16px;
  padding: 1.8em;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.education-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px #000;
}

.education-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  width: 100%;
}

.education-logo-container {
  flex-shrink: 0;
  position: relative;
}

.education-logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  border: 3px solid #000;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
}
.education-logo:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 0px #000;
}

.education-details {
  flex: 1;
  min-width: 0;
}

.education-degree {
  font-size: 1.4em;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.8em 0;
  line-height: 1.3;
}
.education-degree i {
  margin-right: 0.5em;
  color: #0077b5;
  font-size: 0.9em;
}

.institution-name {
  font-size: 1.2em;
  color: #333;
  margin: 0 0 0.6em 0;
  font-weight: 600;
  line-height: 1.4;
}
.institution-name i {
  margin-right: 0.4em;
  color: #666;
  font-size: 0.9em;
}

.affiliation {
  font-size: 1em;
  color: #666;
  margin: 0 0 0.6em 0;
  font-style: italic;
}
.affiliation i {
  margin-right: 0.4em;
  color: #999;
  font-size: 0.8em;
}

.location {
  font-size: 1em;
  color: #000;
  margin: 0 0 1em 0;
}
.location i {
  margin-right: 0.4em;
  color: red;
  font-size: 0.9em;
}

.education-info {
  margin-top: 1em;
}

.education-stats {
  display: flex;
  gap: 2em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}

.gpa, .duration {
  display: flex;
  align-items: center;
  font-size: 1em;
  font-weight: 600;
}
.gpa i, .duration i {
  margin-right: 0.4em;
  font-size: 0.9em;
}

.gpa {
  color: #000000;
}
.gpa i {
  color: #ffd700;
}

.duration {
  color: #333;
}
.duration i {
  color: #0077b5;
}

.education-status {
  display: flex;
  justify-content: flex-start;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1em;
  border: 2px solid #000;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  box-shadow: 3px 3px 0px #000;
  transition: all 0.3s ease;
}
.status-badge i {
  margin-right: 0.4em;
  font-size: 0.8em;
}

.status-badge.current {
  background: #e8f5e8;
  color: #2e7d32;
}
.status-badge.current:hover {
  background: #c8e6c9;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000;
}

.status-badge.completed {
  background: #e8f5e8;
  color: #2e7d32;
}
.status-badge.completed:hover {
  background: #c8e6c9;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000;
}

.projects {
  background: #222;
  padding: 4em 2em;
  width: 100%;
  background-size: 80px 80px;
  border: 2px solid #000;
  margin: 0 auto;
}
.projects .projects-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  flex: 1;
  flex-wrap: wrap;
  position: relative;
}
.projects .section-title {
  font-size: 2.5em;
  font-weight: 500;
  color: #fff;
}
.projects .section-subtitle {
  font-size: 1.2em;
  color: #b8b7b7;
  margin-bottom: 2em;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  padding-bottom: 1em;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 2em auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  width: 100%;
  max-width: 1400px;
  align-items: stretch;
}

.project-list li {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #ddd;
  padding: 1.5em;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.3s ease;
}
.project-list li:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px #000;
}
.project-list li .project-image {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  border: 2px solid #000;
  margin: 0 auto 1.5em auto;
  padding: 1em;
  background: #f9f9f9;
  display: block;
}
.project-list li h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.8em;
  text-align: center;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-list li p {
  font-size: 1em;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1em;
  text-align: left;
  flex-grow: 1;
}
.project-list li .project-date {
  font-size: 0.9em;
  color: #666;
  font-weight: 500;
  margin-bottom: 0.8em;
  text-align: left;
}
.project-list li .project-tech {
  font-size: 0.9em;
  color: #333;
  margin-top: auto;
  padding-top: 1em;
  border-top: 1px solid #eee;
  text-align: left;
}
.project-list li .project-tech strong {
  display: block;
  margin-bottom: 0.5em;
  color: #000;
}
.project-list li .project-tech .badge {
  display: inline-block;
  border-radius: 12px;
  font-size: 0.8em;
  margin: 0.2em 0.3em 0.2em 0;
}

.projects .more-projects-button {
  margin-top: 2em;
  padding: 1em 2.5em;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  border: 1px solid #000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.projects .more-projects-button:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.projects .more-projects-button i {
  margin-left: 0.5em;
  font-weight: 600;
}

.more-projects {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certifications {
  background: #fff;
  padding: 1em 1em;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.0784313725) 2px, transparent 0), linear-gradient(180deg, rgba(0, 0, 0, 0.0784313725) 2px, transparent 0);
  background-size: 100px 100px;
  padding-bottom: 5em;
}
.certifications .certifications-content {
  margin: 0 auto;
  margin-top: 11vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.certifications .section-title {
  margin-bottom: 1.5em;
  font-size: 2.5em;
  font-weight: 500;
  color: #000;
}
.certifications .section-subtitle {
  text-align: center;
  margin-bottom: 1em;
}
.certifications .section-subtitle quote {
  font-size: 1.2em;
  color: #555;
  font-style: italic;
  display: block;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.certifications .section-subtitle sub {
  font-size: 1em;
  color: #777;
  font-weight: 500;
}

.certification-list {
  list-style: none;
  padding: 0;
  margin: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}
.certification-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #000000 0, #000 8px, transparent 8px, transparent 16px);
  transform: translateX(-50%);
  z-index: 1;
}

.certification-list li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 1.2em 1.5em;
  gap: 1.2em;
  width: 45%;
  position: relative;
  z-index: 2;
  border: 1px solid #000;
}
.certification-list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.5568627451);
  border-radius: 50%;
  top: 1.5em;
  z-index: 3;
}
.certification-list li:nth-child(odd) {
  align-self: flex-start;
  margin-right: auto;
}
.certification-list li:nth-child(odd)::before {
  right: -31px;
}
.certification-list li:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
}
.certification-list li:nth-child(even)::before {
  left: -31px;
}

.cert-logo {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.cert-details {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-size: 1.05em;
  line-height: 1.4;
  min-width: 0;
  word-break: break-word;
}
.cert-details h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0 0 0.2em 0;
  color: #2e42d1;
}
.cert-details .cert-issuer {
  font-size: 1em;
  color: #303030;
  font-weight: 600;
}
.cert-details .cert-date, .cert-details .cert-id, .cert-details .cert-skill {
  font-size: 0.98em;
  color: #666;
  margin-top: 0.1em;
  font-weight: 400;
}

.information {
  background: #00bfff;
  padding: 3em 0;
  width: 100% !important;
}
.information .information-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2em;
}
.information .information-content .section-title {
  font-size: 2.5em;
  font-weight: 500;
  color: #000;
}
.information .information-content .ip-address-container {
  background: #fff;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
}
.information .information-content .ip-address-container p {
  font-size: 1.4em;
  color: #333;
  margin: 0;
  text-align: left;
  line-height: 1.6;
}

.contact {
  background: #f1f3f4;
  padding: 3em 0;
  width: 100% !important;
  border: 1px solid #000;
}
.contact .contact-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 100%;
}
.contact .contact-content .section-title {
  font-size: 2em;
  font-weight: 500;
  color: #000;
  margin-bottom: 1em;
}
.contact .contact-container {
  display: flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em;
  flex-wrap: wrap;
}
.contact .contact-form {
  padding: 2em;
  background: white;
  border-radius: 12px;
  border: 1px solid #000;
  height: -moz-fit-content;
  height: fit-content;
  flex: 1;
}
.contact .contact-form .form-row {
  display: flex;
  gap: 1.5em;
  margin-bottom: 1.5em;
}
.contact .contact-form .form-row .form-group {
  flex: 1;
}
.contact .contact-form .form-row .form-group .form-label {
  display: block;
  margin-bottom: 0.7em;
  font-weight: 500;
  color: #333;
  font-size: 1em;
  margin-top: 0.5em;
}
.contact .contact-form .form-row .form-group .form-control {
  width: 100%;
  padding: 1em;
  border: 1px solid #000;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  transition: all 0.3s ease;
}
.contact .contact-form .form-row .form-group .form-control:focus {
  outline: none;
  transform: translateY(-2px);
}
.contact .contact-form .form-row .form-group .form-control::-moz-placeholder {
  color: #999;
}
.contact .contact-form .form-row .form-group .form-control::placeholder {
  color: #999;
}
.contact .contact-form .message-send-row {
  display: flex;
  gap: 1.5em;
  align-items: flex-end;
  margin-bottom: 1.5em;
}
.contact .contact-form .message-send-row .message-group {
  flex: 1;
}
.contact .contact-form .message-send-row .message-group .form-label {
  display: block;
  margin-bottom: 0.7em;
  font-weight: 500;
  color: #333;
  font-size: 1em;
}
.contact .contact-form .message-send-row .message-group textarea.form-control {
  width: 100%;
  padding: 1em;
  border: 1px solid #000;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}
.contact .contact-form .message-send-row .message-group textarea.form-control:focus {
  outline: none;
  transform: translateY(-2px);
}
.contact .contact-form .message-send-row .send-button-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.contact .contact-form .message-send-row .send-button-group .btn {
  padding: 1em 2em;
  background: linear-gradient(90deg, #2e42d1 0%, #357ae8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.contact .contact-form .message-send-row .send-button-group .btn:hover {
  background: linear-gradient(90deg, #357ae8 0%, #2e42d1 100%);
  box-shadow: 0 4px 12px rgba(46, 66, 209, 0.15);
  transform: translateY(-2px);
}
.contact .contact-form .recaptcha-row {
  margin: 1.5em 0;
  display: flex;
  justify-content: center;
}
.contact .information-card {
  background: #e8f4f8;
  padding: 2em;
  border-radius: 12px;
  border: 1px solid #000;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}
.contact .information-card .section-title {
  font-size: 1.5em;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.5em;
  text-align: center;
}
.contact .information-card .ip-address-container {
  background: #fff;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact .information-card .ip-address-container p {
  font-size: 1.1em;
  color: #333;
  margin: 0 0 1em 0;
  text-align: left;
  line-height: 1.6;
}
.contact .information-card .ip-address-container p:last-child {
  margin-bottom: 0;
}
.contact .information-card .ip-address-container #text-muted {
  width: 100%;
  font-weight: 600;
  color: #000;
  font-family: monospace;
  background: #fff9c4;
  padding: 0.2em 0.5em;
  border-radius: 6px;
  border: 1px solid #000;
  text-align: justify;
}
.contact .information-card .ip-address-container #ip-address {
  color: lime;
  font-family: monospace;
  background: #000;
  padding: 0.2em 0.5em;
  border-radius: 6px;
  border: 1px solid #d1e7ff;
  font-weight: 600;
}

.footer {
  background: #f8f9fa !important;
  padding: 2em 0 1em 0;
  color: #5f6368;
}
.footer .footer-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  text-align: left;
}
.footer .footer-copyright p {
  margin: 0;
  font-size: 1em;
}
.footer .footer-social-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-social-links ul li {
  margin: 0;
}
.footer .footer-social-links ul li a {
  color: #5f6368;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.footer .footer-social-links ul li a:hover {
  color: #000;
}
.footer .footer-social-links ul li a i {
  margin-right: 0.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  font-size: 1.05em;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
}
.footer .doodle-element-footer {
  margin: 0 auto 1em auto;
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}
.footer .doodle-element-footer:hover {
  color: #fff;
}

@media (max-width: 700px) {
  .landing {
    padding: 2em 1.5em;
    width: 100vw;
    align-items: flex-start;
  }
  .header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    margin-bottom: 1em;
  }
  .Adithya {
    font-size: 2.8em;
    letter-spacing: -0.02em;
    border-bottom-width: 3px;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 0;
    padding-bottom: 0.15em;
    width: 100%;
  }
  .pronunciation {
    font-size: 0.5em;
    display: block;
    margin: 0.6em 0 0 0;
    text-align: left;
    border-width: 2px;
    padding: 0.4em 0.8em;
    border-radius: 12px;
    width: -moz-max-content;
    width: max-content;
  }
  .word-type {
    font-size: 1.1em;
    padding: 0.4em 0.9em;
    border-width: 2px;
    margin: 1.2em 0;
    display: block;
    text-align: left;
  }
  .definition {
    font-size: 1.2em;
    padding-left: 1em;
    margin-bottom: 1.2em;
    border-left-width: 4px;
    text-align: left;
    line-height: 1.5;
  }
  .highlight {
    border-width: 1.5px;
    padding: 0.15em 0.3em;
    margin: 0 0.15em;
    font-weight: 600;
  }
  .resume-button {
    font-size: 1em;
    padding: 1em 2em;
    border-width: 2.5px;
    letter-spacing: 1px;
    margin-top: 0.6em;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
    text-decoration: none;
  }
  .middlesection .card {
    flex-direction: column;
  }
  .middlesection .card .leftImageSection {
    border-right: none;
    border-bottom: 2px solid #2e42d1;
    padding: 1em;
  }
  .middlesection .card .rightTextSection {
    padding: 1em;
  }
  .projects .projects-content {
    padding: 0 1em;
  }
  .projects .projects-content .section-title {
    font-size: 2em;
  }
  .project-list {
    grid-template-columns: 1fr;
    gap: 1.5em;
    margin: 1.5em auto;
  }
  .project-list li {
    padding: 1.2em;
    max-height: none !important;
  }
  .project-list li .project-image {
    height: 150px;
  }
  .project-list li h3 {
    font-size: 1.2em;
  }
  .project-list li p {
    font-size: 0.95em;
  }
  .certification-list::before {
    display: none;
  }
  .certification-list li {
    width: 90%;
    align-self: center !important;
    margin: 0 auto !important;
  }
  .certification-list li::before {
    display: none;
  }
  .cert-logo {
    width: 40px;
    height: 40px;
  }
  .contact .contact-content {
    padding: 0 1em;
  }
  .contact .contact-content .section-title {
    font-size: 2em;
  }
  .contact .contact-form {
    padding: 1.5em;
    max-width: 100%;
  }
  .contact .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact .contact-form .message-send-row {
    gap: 1em;
  }
  .contact .contact-form .message-send-row .send-button-group {
    align-self: center;
    margin-bottom: 0;
  }
  .about-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    margin-top: 1.5em;
    max-width: 100%;
  }
  .about-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1.5em;
    border-width: 2px;
    box-shadow: 5px 5px 0px #000;
  }
  .about-card:hover {
    box-shadow: none;
  }
  .about-header-section {
    flex-direction: column;
    text-align: center;
    gap: 1em;
    margin-bottom: 1.5em;
  }
  .about-image-circular {
    width: 100px;
    height: 100px;
    border-width: 2px;
    box-shadow: 3px 3px 0px #000;
  }
  .about-name {
    font-size: 1.5em;
    margin-bottom: 0.2em;
  }
  .about-job-title {
    font-size: 1.2em;
    margin: 0.2em 0;
  }
  .about-role {
    font-size: 1em;
    margin: 0.2em 0;
  }
  .about-location {
    font-size: 1em;
    margin: 0.2em 0 0 0;
  }
  .about-location .flag {
    font-size: 1.1em;
  }
  .about-image {
    width: 100px;
    height: 100px;
    border-width: 3px;
    border-radius: 12px;
    margin-bottom: 1.5em;
  }
  .about-card-content h3 {
    font-size: 1.8em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom-width: 3px;
  }
  .about-subtitle {
    font-size: 1.1em;
    margin-bottom: 1.2em;
  }
  .about-body {
    margin-bottom: 1.5em;
  }
  .about-body p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 1em;
  }
  .highlights {
    margin-bottom: 1.5em;
  }
  .highlights h5 {
    font-size: 1.1em;
    margin-bottom: 0.6em;
    border-bottom-width: 2px;
    padding-bottom: 0.2em;
  }
  .highlights li {
    font-size: 0.9em;
    margin-bottom: 0.4em;
    padding-left: 1em;
  }
  .skill-chips {
    gap: 0.4em;
    margin-bottom: 1.5em;
  }
  .skill-chip {
    padding: 0.3em 0.6em;
    font-size: 0.8em;
    border-radius: 15px;
  }
  .links-section {
    margin-top: 1.5em;
  }
  .links-section h5 {
    font-size: 1.1em;
    margin-bottom: 0.6em;
    border-bottom-width: 2px;
    padding-bottom: 0.2em;
  }
  .icon-buttons {
    gap: 0.8em;
    justify-content: center;
    margin-bottom: 3em;
  }
  .icon-btn {
    width: 45px;
    height: 45px;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1.2em;
    box-shadow: 3px 3px 0px #000;
  }
  .icon-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
  }
  .education-card {
    min-height: auto;
    padding-bottom: 1.5em;
    padding-bottom: 5em;
  }
  .education-content h3 {
    font-size: 1.6em;
    margin-bottom: 1.2em;
    padding-bottom: 0.4em;
    border-bottom-width: 3px;
  }
  .education-items {
    gap: 1.5em;
  }
  .education-item {
    padding: 1.2em;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 5px 5px 0px #000;
  }
  .education-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000;
  }
  .education-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1em;
  }
  .education-logo-container {
    order: -1;
  }
  .education-logo {
    width: 60px;
    height: 60px;
    border-width: 2px;
    border-radius: 10px;
    box-shadow: 3px 3px 0px #000;
  }
  .education-degree {
    font-size: 1.2em;
    margin-bottom: 0.6em;
    text-align: center;
  }
  .institution-name {
    font-size: 1em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .affiliation {
    font-size: 0.9em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .location {
    font-size: 0.9em;
    margin-bottom: 0.8em;
    text-align: center;
  }
  .education-stats {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
    margin-bottom: 0.8em;
  }
  .gpa, .duration {
    font-size: 0.9em;
    justify-content: center;
  }
  .status-badge {
    padding: 0.4em 0.8em;
    font-size: 0.8em;
    border-width: 2px;
    box-shadow: 2px 2px 0px #000;
  }
  .education-status {
    justify-content: center;
  }
  .education-status .completed {
    border: 1px solid #000;
    box-shadow: none;
  }
  .linkedin-link {
    padding: 0.8em 1.5em;
    border-width: 2px;
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: 4px 4px 0px #000;
    max-width: 220px;
  }
  .education-items {
    gap: 1.5em;
    margin-top: 1.5em;
  }
  .education-item {
    padding: 1em;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 4px 4px 0px #000;
  }
  .education-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
  }
  .education-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8em;
  }
  .education-logo {
    width: 50px;
    height: 50px;
  }
  .education-degree {
    font-size: 1.1em;
    margin-bottom: 0.2em;
  }
  .education-institution {
    font-size: 1em;
    margin-bottom: 0.2em;
  }
  .education-location {
    font-size: 0.9em;
    margin-bottom: 0.2em;
  }
  .education-details {
    font-size: 0.8em;
    margin-bottom: 0.3em;
  }
  .education-gpa {
    font-size: 0.9em;
  }
  .education-duration {
    font-size: 0.8em;
    margin-top: 0.3em;
  }
  .contact-info p, .social-links p {
    font-size: 1em;
    margin-bottom: 0.7em;
    line-height: 1.5;
  }
  .contact .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-form {
    width: 100% !important;
    max-width: 500px !important;
    margin-bottom: 2em;
  }
  .contact .information-card {
    max-width: 100% !important;
    padding: 1.5em;
  }
  .contact .information-card .section-title {
    font-size: 1.8em;
  }
  .contact .information-card .ip-address-container {
    padding: 1.2em;
  }
  .contact .information-card .ip-address-container p {
    font-size: 1em;
  }
  .footer {
    padding: 1.5em 0;
  }
  .footer .footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75em;
  }
  .footer .footer-copyright {
    order: 1;
    width: 100%;
  }
  .footer .footer-copyright p {
    margin: 0;
    font-size: 0.95em;
  }
  .footer .footer-social-links {
    order: 2;
    width: 100%;
  }
  .footer .footer-social-links ul {
    justify-content: center;
    gap: 1.25em;
    padding-top: 0.5em;
  }
  .contact .contact-form .form-control,
  .contact .contact-form textarea.form-control {
    font-size: 0.95em;
    padding: 0.7em;
  }
  .definition, .project-list p, .cert-details p {
    font-size: 1em !important;
  }
  .resume-button,
  .more-projects-button,
  .btn,
  .linkedin-link {
    min-height: 48px;
    padding: 0.85em 1.6em;
  }
  .project-list {
    grid-template-columns: 1fr;
    gap: 1.5em;
    margin: 1.5em 0;
    max-width: 100%;
  }
  .project-list li {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
  .projects {
    padding: 2em 1em;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .netapp-logo {
    height: 22px;
    margin: 0 0.25em;
  }
  .cert-logo {
    width: 34px;
    height: 34px;
  }
  .contact .contact-container {
    overflow-x: auto;
    padding: 0.8em 0.4em;
  }
}
.terminal-container {
  background: #0d1117;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  font-family: "Courier New", monospace;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid #30363d;
}

.terminal-header {
  background: #161b22;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #30363d;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.terminal-button.close {
  background: #ff5f56;
}
.terminal-button.minimize {
  background: #ffbd2e;
}
.terminal-button.maximize {
  background: #27ca3f;
}

.terminal-title {
  color: #8b949e;
  font-size: 0.875rem;
  font-weight: 500;
}

.terminal-body {
  padding: 1rem;
  background: #0d1117;
  min-height: 200px;
}

.terminal-line {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.terminal-prompt {
  color: #58a6ff;
  margin-right: 0.5rem;
  font-weight: 600;
}

.terminal-command {
  color: #7ee787;
  font-weight: 500;
}

.terminal-output {
  color: #f0f6fc;
  margin-left: 0.5rem;
}

.terminal-cursor {
  color: #7ee787;
  animation: blink 1s infinite;
  font-weight: bold;
  margin-left: 0.25rem;
}

#ip-address {
  color: #ffa657;
  font-weight: 600;
}

#greetings {
  color: #a5f3fc;
  font-style: italic;
}

.project-list .error-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 2em;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  color: #856404;
}
.project-list .error-message h3 {
  color: #721c24;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=styles.css.map */