*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: #e5e7eb;
  position: relative;
  min-height: 100vh;
  background: #000;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Navigation bar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

/* Mobile navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(38, 38, 38, 0.5);
  }

  .nav-links.active {
    display: flex;
  }
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Hero section styles */
.hero {
  position: relative;
  z-index: 2;
  color: #f9fafb;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 12rem;
  gap: 0.5rem;
}

.hero-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: 2rem;
  padding-bottom: 0;
  height: fit-content;
  max-height: fit-content;
  gap: 1rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background: linear-gradient(to right, #ffffff, #e5e5e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.hero p {
  font-size: 1.25rem;
  max-width: 540px;
  line-height: 1.7;
  color: #a1a1aa;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
}

/* Loader styles */
.loader {
  display: flex;
  width: 8rem;
  height: 8rem;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  transform: scale(1.5);
  padding-right: 4rem; /* Move right on desktop */
}

.curve {
  width: 180%;
  height: 180%;
  position: absolute;
  animation: rotate 8s linear infinite;
  fill: transparent;
}

.curve text {
  letter-spacing: 20px;
  text-transform: uppercase;
  font: 1.5em "Fira Sans", sans-serif;
  fill: white;
  filter: drop-shadow(0 2px 8px black);
}

.blackhole {
  z-index: -1;
  display: flex;
  position: absolute;
  width: 8rem;
  height: 8rem;
  align-items: center;
  justify-content: center;
}

.blackhole-circle {
  z-index: 0;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    black 25%,
    white 35%,
    white 100%
  );
  box-shadow: 0px 0px 2rem #c2babb;
  align-items: center;
  justify-content: center;
}

.blackhole-circle::after {
  z-index: 0;
  position: absolute;
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid white;
  background: radial-gradient(
    circle at center,
    black 35%,
    white 60%,
    white 100%
  );
  box-shadow: 0px 0px 5rem #c2babb;
  align-items: center;
  justify-content: center;
  filter: blur(4px);
  animation: pulseAnimation linear infinite 2s alternate-reverse;
}

.blackhole-circle::before {
  z-index: 1;
  content: "";
  display: flex;
  width: 4rem;
  height: 4rem;
  border: 2px solid #ffffff;
  box-shadow: 3px 3px 10px #c2babb, inset 0 0 1rem #ffffff;
  border-radius: 50%;
  top: 5rem;
  filter: blur(0.5px);
  animation: rotate linear infinite 3s;
}

.blackhole-disc {
  position: absolute;
  z-index: 0;
  display: flex;
  width: 5rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    #ffffff 80%,
    #353535 90%,
    white 100%
  );
  filter: blur(1rem) brightness(130%);
  border: 1rem solid white;
  box-shadow: 0px 0px 3rem #d7c4be;
  transform: rotate3d(1, 1, 1, 220deg);
  animation: pulseAnimation2 linear infinite 2s alternate-reverse;
  justify-content: center;
  align-items: center;
}

.blackhole-disc::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: flex;
  width: 5rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    #ffffff 80%,
    #353535 90%,
    white 100%
  );
  filter: blur(3rem);
  border: 1rem solid white;
  box-shadow: 0px 0px 6rem #d7c4be;
  animation: pulseAnimation linear infinite 2s alternate-reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseAnimation {
  0% {
    box-shadow: 0px 0px 3rem #c2babb;
    transform: scale(1);
  }
  100% {
    box-shadow: 0px 0px 5rem #c2babb;
    transform: scale(1.09);
  }
}

@keyframes pulseAnimation2 {
  0% {
    box-shadow: 0px 0px 3rem #c2babb;
    transform: rotate3d(1, 1, 1, 220deg) scale(1);
  }
  100% {
    box-shadow: 0px 0px 5rem #c2babb;
    transform: rotate3d(1, 1, 1, 220deg) scale(0.95);
  }
}

/* Project Showcase Section */
.projects {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.projects-title-container {
  text-align: center;
  margin-bottom: 1rem;
}

.projects-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.project-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card-description {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  gap: 1rem;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  padding: 3px;
  background: linear-gradient(
    var(--gradient-angle, 0deg),
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-gradient {
  from {
    --gradient-angle: 0deg;
  }
  to {
    --gradient-angle: 360deg;
  }
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.project-card:hover::before {
  opacity: 1;
  animation: rotate-gradient 3s linear infinite;
}

.project-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.project-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.tag {
  color: #a1a1aa;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.project-content p {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 640px;
}

.project-links {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.project-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  display: inline-block;
}

.project-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nolink {
  color: #666;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  cursor: not-allowed;
}

/* Achievements Section */
.achievements {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative;
  z-index: 2;
}

.achievements-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  padding: 1rem;
}

.outer {
  width: 220px;
  height: 180px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(
    circle 230px at 0% 0%,
    rgba(255, 255, 255, 0.1),
    rgba(12, 13, 13, 0.5)
  );
  position: relative;
  backdrop-filter: blur(5px);
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 35px);
  }
  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }
  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px rgba(32, 34, 34, 0.3);
  background-size: 20px 20px;
  background: radial-gradient(
    circle 280px at 0% 0%,
    rgba(68, 68, 68, 0.1),
    rgba(12, 13, 13, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
  animation: moveRay 8s ease-in-out infinite;
}

@keyframes moveRay {
  0%,
  100% {
    transform: rotate(40deg) translateY(-20%);
    opacity: 0.4;
  }
  50% {
    transform: rotate(40deg) translateY(120%);
    opacity: 0.6;
  }
}

.card .text {
  font-weight: 700;
  font-size: 2.8rem;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.7) 4%,
    rgba(255, 255, 255, 0.9),
    rgba(0, 0, 0, 0.7)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: rgba(44, 44, 44, 0.3);
}

.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}

.bottoml {
  bottom: 10%;
}

.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}

.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}

/* Media queries for achievements */
@media (max-width: 1200px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .outer {
    width: 240px;
    height: 190px;
  }
}

@media (max-width: 768px) {
  .achievements {
    padding: 3rem 1rem;
  }

  .achievements-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .outer {
    width: 200px;
    height: 160px;
  }

  .card .text {
    font-size: 2.2rem;
  }

  .projects {
    padding: 6rem 1rem 3rem;
  }

  .project-content {
    grid-template-columns: 1fr;
  }

  .projects-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .project-card {
    padding: 1.5rem;
  }

  .project-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .outer {
    width: 240px;
    height: 180px;
  }
}

@media (max-width: 1200px) {
  .hero {
    padding: 2rem 4rem;
  }

  .hero-content {
    margin-left: 1rem;
  }

  .loader {
    transform: scale(1.3);
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 2rem;
  }

  .hero-content {
    margin-left: 0;
  }

  .loader {
    transform: scale(1.2);
  }

  .projects {
    padding-top: 2.5rem;
  }

  .project-cards {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    padding: 8rem 2rem;
    gap: 3rem;
    justify-content: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1.1rem;
    text-align: center;
  }

  .loader {
    transform: scale(1.1);
    padding-left: 0; /* Remove the right shift on mobile */
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .loader {
    transform: scale(1);
  }

  .projects {
    padding-top: 1.5rem;
  }

  .projects-title {
    font-size: 1.3rem;
  }

  .project-image {
    height: 110px;
  }

  .project-content {
    padding: 1rem 0.7rem 0.8rem 0.7rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations for multiple items */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}

/* Hero content initially visible */
.hero-content {
  opacity: 1;
  transform: none;
}

/* Footer Styles */
.footer {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info {
  max-width: 500px;
}

.footer-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-description {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  padding: 1px;
  background: linear-gradient(
    var(--gradient-angle, 0deg),
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link:hover::before {
  opacity: 1;
  animation: rotate-gradient 3s linear infinite;
}

.footer-nav {
  display: flex;
  gap: 4rem;
}

.footer-links {
  min-width: 120px;
  flex-shrink: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-contact p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.email-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  display: inline-block;
}

.email-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 2rem;
}

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

.footer-copyright p {
  color: #71717a;
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.footer-built {
  opacity: 0.7;
  font-style: italic;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-container {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-links {
    min-width: auto;
  }

  .footer-contact {
    text-align: left;
  }

  .email-link {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .social-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    gap: 0.75rem;
  }

  .footer-social {
    gap: 0.5rem;
  }

  .footer-container {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.875rem;
  }

  .email-link {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-built {
    margin-top: 0.5rem;
  }
}
