body {
  background: radial-gradient(ellipse at 60% 40%, #181828 60%, #0a0a0f 100%);
  color: #e0e0e0;
  font-family: 'Fira Code', 'Poppins', monospace, sans-serif;
  padding-top: 72px;
}

.navbar {
  background: #10101a !important;
  box-shadow: 0 2px 16px 0 #00f0ff33;
}

.navbar-brand, .nav-link {
  font-family: 'Fira Code', monospace;
  letter-spacing: 1px;
}

.nav-link.active, .nav-link:hover {
  color: #00f0ff !important;
  text-shadow: 0 0 8px #00f0ff99;
}

.glow {
  color: #00f0ff;
  text-shadow: 0 0 8px #00f0ff99, 0 0 16px #00f0ff44;
}

.hero-custom {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #1a223a 60%, #0a0a0f 100%);
  position: relative;
  overflow: hidden;
  padding: 0 5rem;
}

.hero-left { flex: 1 1 0; max-width: 600px; z-index: 2; }
.hero-greeting { color: #00f0ff; font-family: 'Fira Code', monospace; font-size: 1.1rem; margin-bottom: 0.5rem; }
.hero-name, .hero-surname {
  font-size: 3.5rem; font-weight: 800; line-height: 1; letter-spacing: -2px;
}
.hero-name {
  background: linear-gradient(90deg, #6a5af9 20%, #00f0ff 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.2em;
}
.hero-surname { color: #fff; margin-bottom: 1rem; }
.hero-roles {
  font-size: 1.4rem; color: #b0b0b0; margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif; font-weight: 500;
}
.hero-desc {
  color: #b0c4d6; font-size: 1.1rem; margin-bottom: 2.2rem;
  font-family: 'Poppins', sans-serif; max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-gradient {
  background: linear-gradient(90deg, 
 #6a5af9 20%);
  color: #10101a; font-weight: 700; border: none; border-radius: 1.5rem;
  padding: 0.8rem 2.2rem; font-size: 1.1rem; box-shadow: 0 0 0px #00f0ff99;
  transition: background 0.1s, color 0.1s, box-shadow 0.2s;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #00f0ff 0%, #6a5af9 100%);
  color: #000; box-shadow: 0 0 10px #00f0ff99;
}
.btn-outline-glow {
  background: transparent; color: #e0e0e0; border: 2px solid #00f0ff;
  border-radius: 1.8rem; padding: 0.8rem 2.2rem; font-size: 1.1rem; font-weight: 700;
  margin-right: 0.5rem; transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-outline-glow:hover { background: #00f0ff; color: #10101a; border-color: #6a5af9; }
.btn-icon { margin-right: 0.7em; }
.hero-right {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hero-profile-img {
  width: 400px; height: 400px; border-radius: 50%; border: 6px solid #00f0ff;
  box-shadow: 0 0 64px #00f0ff55, 0 0 0 12px #181828; object-fit: cover;
  background: #181828; position: relative; z-index: 2;
}
@media (max-width: 991px) {
  .hero-custom { flex-direction: column; padding: 2rem 0.5rem; min-height: 70vh; }
  .hero-right { margin-top: 2.5rem; }
  .hero-profile-img { width: 200px; height: 200px; }
  .hero-name, .hero-surname { font-size: 2.2rem; }
}
@media (min-width: 992px) {
  .hero-custom > .hero-left,
  .hero-custom > .hero-right {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 991.98px) {
  .hero-custom {
    flex-direction: column;
    padding: 2rem 1rem;
    min-height: 70vh;
  }
  .hero-custom > .hero-left,
  .hero-custom > .hero-right {
    margin-left: 0;
    margin-right: 0;
  }
}

.floating-icon {
  position: absolute; right: 10%; top: 18%;
  background: linear-gradient(135deg, #6a5af9 0%, #00f0ff 100%);
  color: #fff; border-radius: 16px; padding: 0.5rem 0.7rem; font-size: 1.5rem;
  box-shadow: 0 0 16px #00f0ff55; z-index: 3;
}

/* About Section Styles */
.about-section {
  position: relative; overflow: visible; background: #11131a; border-radius: 24px;
  margin-top: 2rem; margin-bottom: 2rem; box-shadow: 0 4px 32px #00f0ff11;
}
.about-section::before {
  content: ""; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 120%; background: radial-gradient(circle at 50% 30%, #00f0ff33 0%, transparent 80%);
  z-index: 0; filter: blur(32px); pointer-events: none;
}
.about-title { font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; }
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.gradient-text {
  background: linear-gradient(90deg, #6a5af9, #00f0ff, #6a5af9);
  background-size: 200% 200%; animation: gradient-move 3s linear infinite alternate;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-subtitle {
  color: #b0c4d6; font-size: 1.2rem; font-family: 'Poppins', sans-serif;
}
.about-badge {
  background: #181828; color: #00f0ff; border: 1px solid #00f0ff44; font-size: 1rem;
  padding: 0.5em 1em; border-radius: 2em; font-family: 'Fira Code', monospace;
  display: flex; align-items: center; gap: 0.3em;
}
.about-badge i { margin-right: 0.5rem; animation: badge-bounce 2s infinite; }
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-4px);}
}
.about-edu-card {
  background: #181828; border: 2px solid #00f0ff55; border-radius: 1.2em;
  box-shadow: 0 2px 16px #00f0ff22;
}

.about-edu-icon {
  font-size: 2.2rem; color: #6a5af9; background: #15151f; border-radius: 1em;
  padding: 0.5em 0.7em; margin-right: 0.5em; box-shadow: 0 0 12px #00f0ff33;
}
.about-edu-score {
  background: #181828; border: 1px solid #00f0ff33; border-radius: 1em; color: #e0e0e0;
}
.about-section .row {
  opacity: 0; transform: translateY(40px); animation: about-fadein 1.2s 0.2s forwards;
}
@keyframes about-fadein {
  to { opacity: 1; transform: none; }
}

/* skills*/
#skills .row div {
  color: #fff !important;
}
#ai-tools .row div {
  color: #fff !important;
}

/* Footer Social Cards */
.footer-social-cards {
  margin-top: 3rem; margin-bottom: 1.5rem; gap: 1.5rem !important;
}
.footer-social-card {
  display: flex; align-items: center; gap: 1rem; background: #15151f;
  border: 1.5px solid #23233a; border-radius: 1.2rem; padding: 1.1rem 2.2rem;
  color: #e0e0e0; text-decoration: none; min-width: 220px;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 16px #00f0ff11; font-size: 1.1rem;
}
.footer-social-card:hover {
  border: 1.5px solid #00f0ff;
  background: linear-gradient(90deg, #181828 60%, #00f0ff22 100%);
  box-shadow: 0 0 24px #00f0ff44; color: #00f0ff;
}
.footer-social-card i { font-size: 2rem; color: #6a5af9; }
.footer-social-title { font-weight: 600; font-size: 1.1rem; }
.footer-social-handle { font-size: 0.97rem; color: #b0c4d6; }

/* Footer Main */
.footer-main {
  background: linear-gradient(180deg, #181828 0%, #19192a 60%, #0a0a0f 100%);
  color: #e0e0e0; border-top: 1.5px solid #23233a; margin-top: 0; padding-top: 0;
}
.footer-logo {
  font-family: 'Fira Code', monospace; letter-spacing: 1px; font-size: 2rem; margin-right: 0.5rem;
}
.footer-desc { color: #b0c4d6; font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer-icons { gap: 0.7rem; }
.footer-icon {
  display: inline-flex; align-items: center; justify-content: center; background: #15151f;
  border: 1.5px solid #23233a; border-radius: 50%; width: 2.3rem; height: 2.3rem;
  color: #e0e0e0; font-size: 1.2rem; transition: border 0.2s, color 0.2s, background 0.2s;
}
.footer-icon:hover {
  border: 1.5px solid #00f0ff; color: #00f0ff; background: #23233a;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  color: #b0c4d6; text-decoration: none; transition: color 0.2s; font-size: 1.05rem;
}
.footer-links a:hover { color: #00f0ff; text-decoration: underline; }
.footer-contact {
  margin-bottom: 0.6rem; font-size: 1.05rem; display: flex; align-items: center;
}
.footer-hr {
  border: none; border-top: 1.5px solid #23233a; margin-top: 2rem; margin-bottom: 0; opacity: 0.7;
}
@media (max-width: 991px) {
  .about-title { font-size: 2rem; }
  .about-section { margin-top: 1rem; margin-bottom: 1rem; }
  .footer-main .row > div { margin-bottom: 2rem; }
  .footer-social-cards { flex-direction: column !important; align-items: stretch !important; }
}

.navbar-blur {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(16, 16, 26, 0.7) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px 0 #00f0ff33;
  transition: background 0.3s, backdrop-filter 0.3s;
}
