/* ===============================
   FONT SYSTEM - SORA
================================= */
body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.logo {
  font-weight: 700;
}

.sidebar-links a,
.btn,
.view-cert-btn,
.verify-cert-btn {
  font-weight: 600;
}

/* ===============================
   RESET & BASE
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark Mode Only - Default Theme */
:root {
  --primary-color: #2563eb;
  --secondary-color: #7c3aed;
  --text-color: #f5f5f5;
  --text-light: #b5b5b5;
  --bg-color: #111;
  --bg-secondary: #1a1a1a;
  --border-color: #2563eb;
  --transition: all 0.3s ease;
  --card-bg: rgba(255, 255, 255, 0.05);
  --shadow-color: rgba(37, 99, 235, 0.3);
  --footer-bg: #1a1a1a;
  --menu-bg: #1a1a1a;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none !important;
}

/* ===============================
   SIDEBAR - FIXED ALIGNMENT
================================= */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100%;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  box-shadow: 0 0 25px var(--shadow-color);
  z-index: 3;
}

.logo {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0;
}

.sidebar-links li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sidebar-links a {
  text-decoration: none;
  color: var(--text-color);
  background: transparent;
  border: 2px solid rgba(37, 99, 235, 0.5);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  display: block;
  box-shadow: 0 0 10px var(--shadow-color);
  transition: var(--transition);
  width: 160px;
  text-align: center;
  font-size: 0.95rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
  transform: translateY(-3px);
}

/* ===============================
   MOBILE FLOATING MENU
================================= */
.mobile-menu-container {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.mobile-menu-toggle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--shadow-color);
  transition: var(--transition);
  position: relative;
  z-index: 1002;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--primary-color);
}

/* Blur overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Centered Popup Menu */
.mobile-menu-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70%;
  max-width: 260px;
  background: var(--menu-bg);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 1.5rem 0.8rem;
  box-shadow: 0 0 30px var(--shadow-color);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.menu-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--text-color);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-close-btn:hover {
  background: var(--primary-color);
  transform: rotate(90deg);
  color: white;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0.3rem;
  text-align: center;
}

.mobile-menu-links li {
  margin: 0;
  padding: 0;
}

.mobile-menu-links a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 8px;
  margin: 0.2rem 0;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-menu-links a i {
  margin-right: 10px;
  width: 18px;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.mobile-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 0.8rem 0;
}

/* Show mobile menu only on mobile */
@media (max-width: 900px) {
  .mobile-menu-container {
    display: block;
  }
}

/* ===============================
   CONTENT LAYOUT
================================= */
.content-align {
  margin-left: 230px;
  padding: 60px;
  text-align: center;
}

/* ===============================
   SECTION TITLES
================================= */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.3rem;
  position: relative;
  text-align: center;
  color: var(--text-color);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}

/* ===============================
   HERO SECTION
================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 230px;
  padding: 2rem;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-color);
}

.static-text {
  display: block;
  color: var(--text-color);
  font-size: 2.5rem;
}

.name-line {
  display: block;
  font-size: 3.2rem;
}

.highlight {
  display: inline;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--shadow-color);
}

.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: var(--primary-color);
  margin-left: 2px;
  animation: blink 0.7s infinite;
  vertical-align: middle;
}

.typed-cursor.hide-cursor {
  display: none !important;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===============================
   HERO BUTTONS - 2x2 GRID
================================= */
.hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  background: transparent;
  min-width: 120px;
}

.btn.primary {
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px var(--shadow-color);
}

.btn.primary:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 25px var(--primary-color);
  transform: translateY(-3px);
}

.btn.secondary {
  color: var(--text-color);
  border: 2px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 10px var(--shadow-color);
}

.btn.secondary:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-color);
  transform: translateY(-3px);
}

/* Resume Button */
.btn.resume-btn {
  color: var(--text-color);
  border: 2px solid #00ffb7;
  box-shadow: 0 0 15px rgba(0, 255, 183, 0.3);
  background: transparent;
  gap: 0.5rem;
}

.btn.resume-btn i {
  color: #00ffb7;
  font-size: 1rem;
  transition: var(--transition);
}

.btn.resume-btn:hover {
  background: #00ffb7;
  color: #111;
  box-shadow: 0 0 25px #00ffb7;
  transform: translateY(-3px);
}

.btn.resume-btn:hover i {
  color: #111;
}

/* GitHub Button */
.btn.github-btn {
  color: var(--text-color);
  border: 2px solid #00ffb7;
  box-shadow: 0 0 15px rgba(0, 255, 183, 0.3);
  background: transparent;
  gap: 0.5rem;
}

.btn.github-btn i {
  color: #00ffb7;
  font-size: 1rem;
  transition: var(--transition);
}

.btn.github-btn:hover {
  background: #00ffb7;
  color: #111;
  box-shadow: 0 0 25px #00ffb7;
  transform: translateY(-3px);
}

.btn.github-btn:hover i {
  color: #111;
}

/* ===============================
   PROFILE CARD
================================= */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px var(--shadow-color);
  animation: float 3s ease-in-out infinite;
  transition: all 0.4s ease;
  border: 3px solid var(--primary-color) !important;
  cursor: default;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   SKILLS GLASS GRID
================================= */
.skills-glass-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background: var(--bg-secondary);
  border: 2px solid rgba(37, 99, 235, 0.4);
  border-radius: 1rem;
  box-shadow: 0 0 15px var(--shadow-color);
  transition: var(--transition);
}

.skills-glass-container:hover {
  box-shadow: 0 0 25px var(--primary-color);
}

.skills-glass-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  justify-content: center;
}

.skill-glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.skill-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  transition: left 0.5s ease;
}

.skill-glass-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px -5px var(--shadow-color);
  background: rgba(37, 99, 235, 0.1);
}

.skill-glass-card:hover::before {
  left: 100%;
}

.skill-glass-card i {
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.skill-glass-card span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  transition: all 0.3s ease;
}

.skill-glass-card:hover span {
  color: var(--primary-color);
}

/* Skill Icon Colors */
.skill-glass-card.python i { color: #3776AB; }
.skill-glass-card.python:hover i { color: #FFD43B; }
.skill-glass-card.java i { color: #007396; }
.skill-glass-card.java:hover i { color: #F89820; }
.skill-glass-card.javascript i { color: #F7DF1E; }
.skill-glass-card.javascript:hover i { color: #000000; }
.skill-glass-card.cpp i { color: #00599C; }
.skill-glass-card.cpp:hover i { color: #004482; }
.skill-glass-card.c i { color: #A8B9CC; }
.skill-glass-card.c:hover i { color: #00599C; }
.skill-glass-card.html i { color: #E34F26; }
.skill-glass-card.html:hover i { color: #F16529; }
.skill-glass-card.css i { color: #1572B6; }
.skill-glass-card.css:hover i { color: #33A9DC; }
.skill-glass-card.bootstrap i { color: #7952B3; }
.skill-glass-card.bootstrap:hover i { color: #563D7C; }
.skill-glass-card.nodejs i { color: #339933; }
.skill-glass-card.nodejs:hover i { color: #68A063; }
.skill-glass-card.opencv i { color: #5C3EE8; }
.skill-glass-card.opencv:hover i { color: #FF0000; }
.skill-glass-card.numpy i { color: #013243; }
.skill-glass-card.numpy:hover i { color: #4DABCF; }
.skill-glass-card.pandas i { color: #150458; }
.skill-glass-card.pandas:hover i { color: #FFCA00; }
.skill-glass-card.mongodb i { color: #47A248; }
.skill-glass-card.mongodb:hover i { color: #4DB33D; }
.skill-glass-card.firebase i { color: #FFCA28; }
.skill-glass-card.firebase:hover i { color: #F57C00; }
.skill-glass-card.mysql i { color: #00758F; }
.skill-glass-card.mysql:hover i { color: #F29111; }
.skill-glass-card.github i { color: #f5f5f5; }
.skill-glass-card.github:hover i { color: #6e5494; }
.skill-glass-card.linux i { color: #FCC624; }
.skill-glass-card.linux:hover i { color: #000000; }
.skill-glass-card.vscode i { color: #007ACC; }
.skill-glass-card.vscode:hover i { color: #0066B8; }
.skill-glass-card.vercel i { color: #f5f5f5; }
.skill-glass-card.vercel:hover i { color: #cccccc; }

/* ===============================
   EDUCATION & CERTIFICATION CARDS
================================= */
.education-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.education-item {
  background: var(--bg-secondary);
  border: 2px solid rgba(37, 99, 235, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 0 15px var(--shadow-color);
  transition: var(--transition);
  text-align: center;
}

.education-item:hover {
  box-shadow: 0 0 25px var(--primary-color);
}

.education-item h3 {
  text-align: center;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.education-item p {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.institution, .duration, .achievement {
  text-align: center;
  color: var(--text-light);
}

/* ===============================
   CONTACT SECTION
================================= */
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 0;
}

.connect-box {
  background: var(--bg-secondary);
  border: 2px solid rgba(37, 99, 235, 0.4);
  border-radius: 1rem;
  padding: 2.2rem 2.5rem;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 0 15px var(--shadow-color);
  transition: all 0.4s ease;
  text-align: center;
}

.connect-box:hover {
  box-shadow: 0 0 25px var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-align: center;
}

.contact-info p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem auto;
  line-height: 1.7;
  text-align: center;
}

.contact-method {
  margin: 1rem 0;
  text-align: center;
}

.contact-method h4 {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.3rem;
  text-align: center;
}

.contact-method p {
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 2px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 15px var(--shadow-color);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-color);
}

.social-link i {
  font-size: 1.6rem;
  color: var(--text-color);
}

/* ===============================
   CERTIFICATE BUTTONS
================================= */
.view-cert-btn,
.verify-cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1.8rem;
  color: var(--text-color);
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--shadow-color);
}

.verify-cert-btn {
  border: 2px solid #00ffb7;
  box-shadow: 0 0 20px rgba(0, 255, 183, 0.3);
}

.view-cert-btn:hover,
.verify-cert-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--primary-color);
}

.verify-cert-btn:hover {
  background: #00ffb7;
  color: #111;
  box-shadow: 0 0 25px #00ffb7;
}

/* ===============================
   FAB BUTTON
================================= */
.fab-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.fab-button.external-fab {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 2px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 15px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fab-button.external-fab:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-color);
}

/* ===============================
   FOOTER
================================= */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-light);
  background: var(--footer-bg);
  margin-left: 230px;
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===============================
   DESKTOP OPTIMIZATIONS
================================= */
@media (min-width: 901px) {
  .hero {
    margin-left: 230px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    text-align: center;
  }
  
  .static-text {
    font-size: 2.5rem;
  }
  
  .name-line {
    font-size: 3.2rem;
  }
  
  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
    max-width: 500px;
  }
  
  .btn {
    min-width: 130px;
  }
  
  .education-item h3,
  .education-item p,
  .institution,
  .duration,
  .achievement {
    text-align: center;
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 900px) {
  /* Hide sidebar only */
  .sidebar {
    display: none !important;
  }
  
  /* Show footer on mobile */
  .footer {
    display: block !important;
    margin-left: 0 !important;
    padding: 1.5rem 1rem !important;
    font-size: 0.9rem;
  }
  
  /* Hide FAB on mobile */
  .fab-container {
    display: none !important;
  }
  
  /* Reset margins */
  .hero,
  .content-align {
    margin-left: 0 !important;
  }
  
  /* Hero section mobile */
  .hero {
    min-height: auto;
    padding: 2rem 1rem 1.5rem;
  }
  
  .hero-grid {
    display: flex;
    flex-direction: column !important;
    gap: 1rem;
    padding: 0;
  }
  
  .hero-image {
    order: -1 !important;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .profile-card {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto;
    animation: none !important;
    box-shadow: none !important;
  }
  
  .hero-text {
    width: 100%;
    max-width: 100%;
    text-align: center !important;
    order: 0 !important;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    text-align: center !important;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    gap: 0.1rem;
  }
  
  .static-text {
    font-size: 1.8rem;
  }
  
  .name-line {
    font-size: 2rem;
  }
  
  .typed-cursor {
    height: 1.2em;
  }
  
  .hero-description {
    font-size: 1rem;
    text-align: center !important;
    max-width: 100%;
    margin: 0 auto 1.2rem;
    padding: 0 1rem;
    color: var(--text-light);
  }
  
  /* Mobile button layout - 2x2 grid */
  .hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .btn {
    width: 100%;
    padding: 0.7rem 0.5rem;
    font-size: 0.9rem;
    box-shadow: none !important;
    min-height: 45px;
    min-width: auto;
  }
  
  /* Content sections */
  .content-align {
    padding: 30px 16px !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }
  
  .education-item,
  .connect-box,
  .skills-glass-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1rem auto !important;
    padding: 1.5rem !important;
    text-align: center !important;
    background: var(--bg-secondary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: none !important;
    border-radius: 12px;
  }
  
  .skills-glass-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .skill-glass-card {
    padding: 10px 3px;
  }
  
  .skill-glass-card i {
    font-size: 1.4rem;
  }
  
  .skill-glass-card span {
    font-size: 0.65rem;
  }
  
  .contact-method h4 {
    color: var(--text-color);
  }
  
  .social-link {
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: none !important;
  }
  
  .view-cert-btn,
  .verify-cert-btn {
    box-shadow: none !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0.8rem 1rem;
  }
  
  .profile-card {
    width: 160px !important;
    height: 160px !important;
  }
  
  .static-text {
    font-size: 1.6rem;
  }
  
  .name-line {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .hero-buttons {
    max-width: 300px;
    gap: 0.6rem;
  }
  
  .btn {
    padding: 0.6rem 0.4rem;
    font-size: 0.85rem;
    min-height: 40px;
  }
  
  .section-title {
    font-size: 1.6rem !important;
  }
  
  .education-item {
    padding: 1.2rem !important;
  }
  
  .education-item h3 {
    font-size: 1.1rem;
  }
  
  .education-item p {
    font-size: 0.9rem;
  }
  
  .connect-box {
    padding: 1.5rem !important;
  }
  
  .footer {
    padding: 1.2rem 0.8rem !important;
    font-size: 0.85rem;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .profile-card {
    width: 140px !important;
    height: 140px !important;
  }
  
  .static-text {
    font-size: 1.4rem;
  }
  
  .name-line {
    font-size: 1.6rem;
  }
  
  .hero-buttons {
    max-width: 260px;
  }
  
  .btn {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
    min-height: 36px;
  }
  
  .footer {
    padding: 1rem 0.5rem !important;
    font-size: 0.8rem;
  }
}

/* ===============================
   DISABLE TEXT SELECTION
================================= */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection on input fields if you add them later */
input, textarea {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
