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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

  /* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: -0.25rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: 2.5rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.5));
  transform: scale(1.05);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

.logo:hover .logo-text {
  color: #06b6d4;
}

.logo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
  transition: all 0.3s ease;
}

.logo-status:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.status-code {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

/* Footer logo styles */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo-image {
  height: 2rem;
  filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.2));
}

.footer-logo .logo-text {
  font-size: 1rem;
  color: #94a3b8;
}

/* Responsive design */
@media (max-width: 768px) {
  .logo {
    gap: 0.5rem;
  }
  
  .logo-image {
    height: 2rem;
    max-width: 100px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .status-code {
    font-size: 0.75rem;
  }
  
  .logo-status {
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 1.75rem;
    max-width: 80px;
  }
  
  .logo-text {
    font-size: 0.875rem;
  }
}
/* Navigation */
.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
}

.nav-link:hover {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}


/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  color: #06b6d4;
}

.menu-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #334155;
}

.mobile-nav.active {
  display: block;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

  
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero Text Content */
.hero-text-content {
  text-align: left;
  order: 2;
}
/* Hero Title */
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
}
/* Greeting */
.greeting {
  margin-bottom: 2rem;
}

.greeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 9999px;
  color: #06b6d4;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.greeting-badge:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.greeting-icon {
  width: 1rem;
  height: 1rem;
  color: #06b6d4;
}
/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-secondary { 
  border: 2px solid #06b6d4;
  color: #06b6d4;
  background: transparent;
}

.btn-secondary:hover {
  background: #06b6d4;
  color: #0f172a;
}
  
.btn-secondary:hover .btn-icon {
  transform: translateY(0.25rem);
}

.btn-primary:hover .btn-icon {
  transform: translateX(0.25rem);
}
  
.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
/* About Section */
.about {
  padding: 5rem 0;
  background: #1e293b;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.skill-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.skill-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-0.5rem);
}

.skill-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: white;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.skill-icon svg {
  height: 2rem;
  width: 2rem;
}

.skill-card:hover .skill-icon {
  transform: scale(1.1);
}

.skill-icon-1 {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.skill-icon-2 {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.skill-icon-3 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.skill-icon-4 {
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
}

.skill-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.skill-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.about-footer {
  text-align: center;
}

  /* Projects Section */
.projects {
  padding: 5rem 0;
  background: #0f172a;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.project-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-0.5rem);
}

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

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

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

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
}

.project-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(6, 182, 212, 0.9);
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  z-index: 1;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.project-card:hover .project-title {
  color: #06b6d4;
}

.project-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background: #334155;
  color: #06b6d4;
  font-size: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.project-actions {
  display: flex;
  gap: 0.75rem;
}

.project-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.project-actions .btn-secondary {
  flex: none;
}

/* Contact Section */
.contact {
  padding: 7rem 0;
  background: #1e293b;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.contact-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.75rem;
  border: 1px solid #334155;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-0.25rem);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 0.5rem;
  color: #06b6d4;
}

.contact-icon svg {
  height: 1.5rem;
  width: 1.5rem;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #334155;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: white;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #06b6d4;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Success Message */
.success-message {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 0.5rem;
  color: #10b981;
  font-weight: 500;
}

.success-message.show {
  display: flex;
}

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(188, 29, 29, 0.2);
  border: 1px solid rgba(188, 29, 29, 0.2);
  border-radius: 0.5rem;
  color: #a52727;
  font-weight: 500;
}

.error-message.show {
  display: flex;
}

.success-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.error-icon {
  height: 1.25rem;
  width: 1.25rem;
}

/* Loading Spinner */
.loading-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 2rem;
  height: 3rem;
  border: 2px solid #64748b;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.5rem;
  background: #64748b;
  border-radius: 9999px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Learning Badge */
.learning-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 9999px;
  color: #06b6d4;
  font-weight: 500;
}
/* Hero Image Content */
.hero-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
  position: relative;
}

/* Hero Profile Image */
.hero-profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-hero {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 8px 32px 0 rgba(6, 182, 212, 0.15), 0 2px 8px 0 rgba(0,0,0,0.1);
  background: #1e293b;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.profile-image-hero:hover {
  border-color: #06b6d4;
  box-shadow: 0 16px 48px 0 rgba(6, 182, 212, 0.25), 0 4px 16px 0 rgba(0,0,0,0.15);
  transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
  position: absolute;
  color: #06b6d4;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.floating-element svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-element-1 {
  top: -30px;
  right: -20px;
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: -20px;
  left: -30px;
  animation-delay: 2s;
}

.floating-element-3 {
  top: 50%;
  right: -40px;
  animation-delay: 4s;
}

/* === Animation === */

/* Section Title */
@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}
/* Nav Desktop */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

/* Container */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Container Skills Grid & Stats */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}
  
/* Hero Image Content */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero-text-content {
    order: 1;
  }
}
/* Responsive design helpers */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-text-content {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .stat-item {
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-image-content {
    order: 2;
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Projects Grid */
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Profile Image Hero */
@media (min-width: 640px) {
  .profile-image-hero {
    width: 250px;
    height: 250px;
  }
  
  .floating-element svg {
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 1024px) {
  .profile-image-hero {
    width: 320px;
    height: 320px;
  }
  
  .floating-element svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
/* Contact Content */
@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-footer {
  text-align: center;
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid #334155;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  padding: 0.75rem;
  background: #1e293b;
  color: #9ca3af;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #334155;
  color: #06b6d4;
  transform: translateY(-0.25rem);
}

.social-link svg {
  height: 1.25rem;
  width: 1.25rem;
}
/* Copyright */
.copyright p {
  margin-bottom: 0.5rem;
}

.back-to-top {
  padding: 0.75rem;
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.back-to-top svg {
  height: 1.25rem;
  width: 1.25rem;
}