/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  text-align: left; /* Default text alignment */
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 2rem; /* Even thinner navbar */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 3rem; /* Ensure consistent height */
}

.nav-brand h1 {
  font-size: 1.1rem; /* Slightly smaller for thinner navbar */
  font-weight: 700;
  color: #1a1a1a;
  margin: 0; /* Remove all margins */
  line-height: 1; /* Tighter line height */
  text-align: left;
}

/* Theme Toggle Styles */
.toggle-container {
  display: flex;
  align-items: center;
}

.theme-toggle {
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #374151;
  background: rgba(59, 130, 246, 0.1);
  border: none;
}

.theme-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

/* CSS Variables for theme toggle */
:root {
  --icon-fill: #374151;
  --icon-fill-hover: #1f2937;
}

html[data-theme="dark"] {
  --icon-fill: #f9fafb;
  --icon-fill-hover: #ffffff;
}

/* Import Open Props for animations */
@import "https://unpkg.com/open-props/easings.min.css";

.sun-and-moon > :is(.moon, .sun, .sun-beams) {
  transform-origin: center;
}

.sun-and-moon > :is(.moon, .sun) {
  fill: var(--icon-fill);
}

.theme-toggle:is(:hover, :focus-visible) > .sun-and-moon > :is(.moon, .sun) {
  fill: var(--icon-fill-hover);
}

.sun-and-moon > .sun-beams {
  stroke: var(--icon-fill);
  stroke-width: 2px;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon > .sun-beams {
  stroke: var(--icon-fill-hover);
}

html[data-theme="dark"] .sun-and-moon > .sun {
  transform: scale(1.75);
}

html[data-theme="dark"] .sun-and-moon > .sun-beams {
  opacity: 0;
}

html[data-theme="dark"] .sun-and-moon > .moon > circle {
  transform: translateX(-7px);
}

@supports (cx: 1) {
  html[data-theme="dark"] .sun-and-moon > .moon > circle {
    cx: 17;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .sun-and-moon > .sun {
    transition: transform .5s var(--ease-elastic-3);
  }

  .sun-and-moon > .sun-beams {
    transition: transform .5s var(--ease-elastic-4), opacity .5s var(--ease-3);
  }

  .sun-and-moon .moon > circle {
    transition: transform .25s var(--ease-out-5);
  }

  @supports (cx: 1) {
    .sun-and-moon .moon > circle {
      transition: cx .25s var(--ease-out-5);
    }
  }

  html[data-theme="dark"] .sun-and-moon > .sun {
    transition-timing-function: var(--ease-3);
    transition-duration: .25s;
    transform: scale(1.75);
  }

  html[data-theme="dark"] .sun-and-moon > .sun-beams {
    transition-duration: .15s;
    transform: rotateZ(-25deg);
  }

  html[data-theme="dark"] .sun-and-moon > .moon > circle {
    transition-duration: .5s;
    transition-delay: .25s;
  }
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding: 2rem 0 4rem 0;
  width: 100%;
}

.hero-content {
  text-align: left;
  width: 100%;
  max-width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: #3b82f6;
  color: white;
}

/* Cyber Grid Animation */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  justify-self: center;
}

.grid-item {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  animation: pulse 2s infinite;
}

.grid-item:nth-child(2) { animation-delay: 0.3s; }
.grid-item:nth-child(3) { animation-delay: 0.6s; }
.grid-item:nth-child(4) { animation-delay: 0.9s; }
.grid-item:nth-child(5) { animation-delay: 1.2s; }
.grid-item:nth-child(6) { animation-delay: 1.5s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
  width: 100%;
}

/* Prevent anchor targets from hiding under fixed navbar */
.section-title, h2, h3, h4 {
  scroll-margin-top: 3.5rem;
}

/* Skills Section */
.skills-section {
  padding: 4rem 0;
  width: 100%;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
}

.skill-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.skill-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skill-icon .material-icons {
  font-size: 3rem;
  color: #3b82f6;
}

.skill-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

.skill-card p {
  color: #666;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
  width: 100%;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.sblock-bg {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfirewall-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

.project-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.project-logo svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
  width: 80px;
  height: 80px;
}

.project-card:hover .project-logo svg {
  transform: scale(1.1);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.project-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  text-align: left;
}

.project-description {
  color: #666;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.9rem;
  font-style: italic;
  text-align: left;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.project-links {
  margin-top: auto;
  align-self: flex-start;
}

.project-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-link:hover {
  color: #1d4ed8;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  text-align: center;
  width: 100%;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-info h4:hover {
  background: #3b82f6;
  color: white;
}

.about-info h4:hover .material-icons {
  color: white;
}

.about-info h4 .material-icons {
  font-size: 1.5rem;
  color: #3b82f6;
  transition: color 0.3s;
}

.about-info p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
  font-style: italic;
}

.about-info p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  text-align: center;
  width: 100%;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.75rem 1.5rem;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  background: transparent;
  text-align: center;
}
.contact-link .material-icons {
  font-size: 1.2em;
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
  transition: color 0.3s;
  color: #3b82f6;
}

.contact-link:hover {
  background: #3b82f6;
  color: white;
}

.contact-link:hover .material-icons {
  color: white;
}

.contact-link.btn-primary,
.contact-link.btn-primary .material-icons {
  color: #fff !important;
}

.contact-link.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1rem;
  font-weight: 600;
  vertical-align: middle;
}
.contact-link.btn .material-icons {
  font-size: 1.2em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background: #f9fafb;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content p {
  color: #666;
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Dark Mode Styles */
html[data-theme="dark"] {
  background: #0f0f0f;
  color: #f9fafb;
}

html[data-theme="dark"] body {
  background: #0f0f0f;
  color: #f9fafb;
}

html[data-theme="dark"] .navbar {
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Thinner border for dark mode */
}

html[data-theme="dark"] .nav-brand h1 {
  color: #f9fafb;
}

html[data-theme="dark"] .section-title {
  color: #f9fafb;
}

html[data-theme="dark"] .skill-card,
html[data-theme="dark"] .project-card {
  background: #1a1a1a;
  color: #f9fafb;
}

html[data-theme="dark"] .skill-card h4,
html[data-theme="dark"] .project-title {
  color: #f9fafb;
}

html[data-theme="dark"] .skill-icon .material-icons {
  color: #3b82f6;
}

html[data-theme="dark"] .skill-card p,
html[data-theme="dark"] .project-description {
  color: #9ca3af;
}

html[data-theme="dark"] .tag {
  background: #374151;
  color: #d1d5db;
}

html[data-theme="dark"] .project-link {
  color: #3b82f6;
}

html[data-theme="dark"] .project-link:hover {
  color: #60a5fa;
}

html[data-theme="dark"] .sblock-bg {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

html[data-theme="dark"] .sfirewall-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

html[data-theme="dark"] .project-overlay {
  background: rgba(15, 15, 15, 0.9);
}

html[data-theme="dark"] .project-logo svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

html[data-theme="dark"] .theme-toggle {
  color: #f9fafb;
  background: rgba(59, 130, 246, 0.2);
}

html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(59, 130, 246, 0.3);
}

html[data-theme="dark"] footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .footer-content p,
html[data-theme="dark"] .footer-links a {
  color: #9ca3af;
}

html[data-theme="dark"] .footer-links a:hover {
  color: #10b981;
}

html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .contact-info h4 {
  color: #f9fafb;
}

html[data-theme="dark"] .contact-info p {
  color: #666;
}

html[data-theme="dark"] .contact-link {
  color: #f9fafb;
  border-color: #3b82f6;
}

html[data-theme="dark"] .contact-link:hover {
  background: #3b82f6;
  color: white;
}

html[data-theme="dark"] .contact-link:hover .material-icons {
  color: white;
}

html[data-theme="dark"] .contact-link .material-icons {
  color: #3b82f6;
}

html[data-theme="dark"] .about-info h4 {
  color: #f9fafb;
  border-color: #3b82f6;
}

html[data-theme="dark"] .about-info h4:hover {
  background: #3b82f6;
  color: white;
}

html[data-theme="dark"] .about-info h4:hover .material-icons {
  color: white;
}

html[data-theme="dark"] .about-info h4 .material-icons {
  color: #3b82f6;
}

html[data-theme="dark"] .about-info p {
  color: #9ca3af;
}

html[data-theme="dark"] .hero-subtitle {
  color: #9ca3af;
}

html[data-theme="dark"] .btn-secondary {
  color: #f9fafb;
  border-color: #3b82f6;
}

html[data-theme="dark"] .btn-secondary:hover {
  background: #3b82f6;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  main {
    padding: 4rem 1rem 1rem 1rem;
  }
  
  .navbar {
    position: sticky;
    top: 0;
  }
  
  .navbar {
    padding: 0.1rem 1rem; /* Even thinner for mobile */
  }
  
  /* Mobile theme toggle improvements */
  .theme-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .theme-toggle__around {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0 2rem 0;
    min-height: 60vh;
  }
  
  .hero-content {
    text-align: center;
    width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .cyber-grid {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .skills-section,
  .projects-section,
  .about-section,
  .contact-section {
    padding: 2rem 0;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .skill-card {
    text-align: center;
    padding: 1.5rem;
  }
  
  .skill-card h4 {
    text-align: center;
  }
  
  .skill-card p {
    text-align: center;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    gap: 1.5rem;
  }
  
  .project-title {
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .project-description {
    text-align: center;
  }
  
  .project-links {
    align-self: center;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .contact-link {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    min-height: 48px; /* Better touch target */
  }
  
  .contact-info h4 {
    text-align: center;
  }
  
  .contact-info p {
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-content p {
    text-align: center;
    margin-bottom: 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-links a {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .footer-links a:hover {
    background: rgba(59, 130, 246, 0.1);
  }
  
  /* Mobile-specific fixes for cybersecurity enthusiast icon */
  .about-info h4 {
    font-size: 1.25rem;
    flex-direction: row;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1.5rem auto;
  }
  
  .about-info h4 .material-icons {
    font-size: 1.5rem;
    margin: 0;
    display: inline-flex;
  }
  
  .about-info p {
    text-align: center;
  }
  .section-title, h2, h3, h4 {
    scroll-margin-top: 2.7rem;
  }
}

/* Additional responsive improvements for very small screens */
@media (max-width: 480px) {
  main {
    padding: 3.5rem 0.75rem 0.75rem 0.75rem;
  }
  
  .hero {
    min-height: 50vh;
    padding: 1.5rem 0 1.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .skills-section,
  .projects-section,
  .about-section,
  .contact-section {
    padding: 1.5rem 0;
  }
  
  .skill-card {
    padding: 1.25rem;
  }
  
  .project-content {
    padding: 0.75rem;
  }
  
  .contact-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .project-title {
    font-size: 1.05rem;
    line-height: 1.25;
    padding: 0 0.5rem;
  }
  
  .project-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Mobile contact button improvements */
  .contact-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .contact-link {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-height: 44px; /* Better touch target */
  }
  
  .contact-link .material-icons {
    font-size: 1.1em;
  }
  
  /* Very small screen improvements for cybersecurity enthusiast button */
  .about-info h4 {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    max-width: 320px;
    gap: 0.4rem;
  }
  
  .about-info h4 .material-icons {
    font-size: 1.25rem;
  }
  
  /* Mobile footer improvements */
  footer {
    padding: 1.5rem 0.75rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-content p {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-links a {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .footer-links a:hover {
    background: rgba(59, 130, 246, 0.1);
  }
  .section-title, h2, h3, h4 {
    scroll-margin-top: 2.7rem;
  }
}
