*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  font-size: 62.5%; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #050b16;
  color: #ffffff;
}
/* nav starts from here  */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 96%;
  z-index: 9999;
  padding: 1.2rem 2rem; 
}

.nav-container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.4rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  width: 90%;
}

/* INFO BOX SOLUTION – LOGO STYLES */
.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;

  padding: 0.6rem 1.6rem;
  border-radius: 1.8rem;

  background: linear-gradient(
    180deg,
    rgba(10, 15, 35, 0.9),
    rgba(4, 8, 22, 0.95)
  );

  border: 0.1rem solid rgba(255,255,255,0.08);
  box-shadow: 0 0 2.4rem rgba(0,229,255,0.18);
}

/* SVG container */
.logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    circle at top left,
    rgba(0,229,255,0.35),
    rgba(2,132,199,0.6)
  );

  box-shadow:
    0 0 1.6rem rgba(0,229,255,0.6),
    inset 0 0 0 0.1rem rgba(255,255,255,0.25);
}

/* SVG itself */
.logo-icon img {
  width: 2rem;
  height: 2rem;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));
}

/* Brand text */
.logo span {
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04rem;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #60a5fa
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: logoGradientMove 6s linear infinite;
}

/* Emphasis word */
.logo strong {
  font-weight: 500;

  /* Dark → purple gradient */
  background: linear-gradient(
    90deg,
    #1e1b4b,   /* deep indigo (dark base) */
    #3b1579,   /* rich purple */
    #a78bfa,   /* soft violet highlight */
    #6d28d9,
    #1e1b4b
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: logoStrongGradient 15s linear infinite;
}

/* Smooth gradient motion */
@keyframes logoStrongGradient {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .logo strong {
    animation: none;
  }
}

/* Gradient animation */
@keyframes logoGradientMove {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .logo span {
    animation: none;
  }
}


/* NAV LINKS  */
.nav-links {
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0.8rem 1.8rem;
  border-radius: 2.4rem;
  transition: color 0.3s ease;
}

/*  Animated Glow Hover */
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0;
  filter: blur(1.4rem);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-links a:hover {
  color: #e0faff;
}

.nav-links a:hover::before {
  opacity: 1;
}

/* Active */
.nav-links a.active {
  color: #e0faff;
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 1.2rem var(--primary-soft);
}
.menuClose{
  display: none;
  width: 5rem;
height: auto;
    filter: brightness(0) invert(1);
}
.navMenuOpen{
    display: none;
    width: 5rem;
height: auto;
    filter: brightness(0) invert(1);
}
/* aside link for small screens */
/* aside link for small screens */
aside{
  position: fixed;
  top: 7.5rem; /* below navbar */
  right: 2rem;
  width: 90%;
  max-width: 32rem;
  height: auto;
  margin: 2rem auto;

  /* glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;

  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.4rem;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 9998;
}

/* when aside is open */
aside.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

aside > a{
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e5e7eb;

  padding: 1.2rem 1.6rem;
  border-radius: 1.4rem;

  /* glass look */

  border: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: 
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

/* active / current link */
aside > a.active{
  color: #00f6ff;
  background: rgba(0, 246, 255, 0.18);
  box-shadow: 0 0 2.4rem rgba(0, 246, 255, 0.45);
}

/* subtle divider effect */
aside > a:not(:last-child){
  position: relative;
}

aside > a:not(:last-child)::after{
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 10%;
  width: 80%;
  height: 0.1rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

/* nav ends here  */

/* team hero section */
.team-hero {
  position: relative;
  padding: 10rem 2.4rem;
  overflow: hidden;
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #35086b;
  background-size: 4rem 4rem;
}

/* CONTAINER */
.team-container {
  max-width: 110rem;
  margin: 19rem auto;
  text-align: center;

  /* slide-up */
  opacity: 0;
  animation: teamSlideUp 0.9s ease-out forwards;
}

/* BADGE */
.team-badge {
  display: inline-block;
  margin-bottom: 2.4rem;
  padding: 0.6rem 1.8rem;

  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;

  color: #00f6ff;
  border-radius: 2rem;

  background: rgba(0, 246, 255, 0.12);
  border: 0.1rem solid rgba(0, 246, 255, 0.45);

  box-shadow: 0 0 2.4rem rgba(0, 246, 255, 0.35);

  /* slide-up */
  opacity: 0;
  animation: teamSlideUp 0.9s ease-out forwards;
  animation-delay: 0.05s;
}

/* TITLE */
.team-title {
  font-size: 4.6rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;

  /* slide-up */
  opacity: 0;
  animation: teamSlideUp 0.9s ease-out forwards;
  animation-delay: 0.12s;
}

/* Gradient word */
.team-gradient {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #00e5ff,
    #6366f1
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  animation: teamGradientMove 6s linear infinite;

  text-shadow:
    0 0 4rem rgba(99,102,241,0.45),
    0 0 6rem rgba(0,229,255,0.35);
}

/* TEXT */
.team-description {
  max-width: 70rem;
  margin: 0 auto;

  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  color: #cbd5f5;

  /* slide-up */
  opacity: 0;
  animation: teamSlideUp 0.9s ease-out forwards;
  animation-delay: 0.2s;
}

/* SLIDE-UP KEYFRAMES */
@keyframes teamSlideUp {
  from {
    opacity: 0;
    transform: translateY(4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRADIENT ANIMATION */
@keyframes teamGradientMove {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .team-container,
  .team-badge,
  .team-title,
  .team-description {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .team-gradient {
    animation: none;
  }
}


/* team hero section ends here */

/* principles section starts */

.principles {
  padding: 8rem 2.4rem;
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;
  background-size: 4rem 4rem;
}

/*  GRID  */
.principles-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  gap: 3.2rem;
}

@media (min-width: 64rem) {
  .principles-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*  CARD  */
.principle-card {
  padding: 4rem 3.2rem;
  border-radius: 2.4rem;
  text-align: center;
  background: rgba(2, 6, 23, 0.92);

  box-shadow:
    inset 0 0 0 0.1rem rgba(255,255,255,0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-0.6rem);
}

/*  ICON  */
.principle-icon {
  width: 6.4rem;
  height: 6.4rem;
  margin: 0 auto 2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 1.6rem;
}

/* SVG inside icon */
.principle-icon img {
  width: 3.2rem;
  height: 3.2rem;
  filter: brightness(0) invert(1);
}

/*  COLOR VARIANTS  */
.principle-card.cyan .principle-icon {
  background: radial-gradient(circle, #00e5ff, #0284c7);
  box-shadow: 0 0 3.2rem rgba(0,229,255,0.65);
}

.principle-card.purple .principle-icon {
  background: radial-gradient(circle, #a855f7, #6366f1);
  box-shadow: 0 0 3.2rem rgba(168,85,247,0.65);
}

.principle-card.green .principle-icon {
  background: radial-gradient(circle, #22c55e, #16a34a);
  box-shadow: 0 0 3.2rem rgba(34,197,94,0.65);
}

/*  CARD HOVER GLOW  */
.principle-card.cyan:hover {
  box-shadow:
    0 0 3.6rem rgba(0,229,255,0.35),
    inset 0 0 0 0.1rem rgba(0,229,255,0.35);
}

.principle-card.purple:hover {
  box-shadow:
    0 0 3.6rem rgba(168,85,247,0.35),
    inset 0 0 0 0.1rem rgba(168,85,247,0.35);
}

.principle-card.green:hover {
  box-shadow:
    0 0 3.6rem rgba(34,197,94,0.35),
    inset 0 0 0 0.1rem rgba(34,197,94,0.35);
}

/*  TEXT */
.principle-card h3 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.principle-card p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #94a3b8;
}
/* principles ends here  */

/* founders section */
.founder {
  padding: 8rem 2.4rem;

  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;
  background-size: 4rem 4rem;
}

/*  HEADER  */
.founder-header {
  max-width: 80rem;
  margin: 0 auto 6.4rem;
  text-align: center;
}

.founder-header h2 {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.founder-header h2 span {
  background: linear-gradient(90deg, #00e5ff, #6366f1);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}

.founder-header p {
  font-size: 1.6rem;
  color: #94a3b8;
}

/*  CARD  */
.founder-card {
  max-width: 110rem;
  margin: 0 auto;

  display: grid;
  gap: 4.8rem;

  padding: 4.8rem;
  border-radius: 2.4rem;

  background: rgba(2, 6, 23, 0.92);
  box-shadow: inset 0 0 0 0.1rem rgba(255,255,255,0.06);
}

/* Desktop layout */
@media (min-width: 64rem) {
  .founder-card {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
  }
}

/*  AVATAR  */
.founder-avatar {
  display: flex;
  justify-content: center;
}

/* Avatar container */
.avatar-circle {
  width: 22rem;
  height: 22rem;

  position: relative;
  border-radius: 50%;
  overflow: hidden;

  background: radial-gradient(circle at top left, #1e293b, #020617);

  box-shadow:
    0 0 6.4rem rgba(99,102,241,0.35),
    inset 0 0 0 0.25rem rgba(99,102,241,0.45);
}

/* Image fills the circle */
.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;


}
.avatar-circle-Co {
  width: 22rem;
  height: 22rem;

  position: relative;
  border-radius: 50%;
  overflow: hidden;

  background: radial-gradient(circle at top left, #1e293b, #020617);

  box-shadow:
    0 0 6.4rem rgba(99,102,241,0.35),
    inset 0 0 0 0.25rem rgba(99,102,241,0.45);
}

/* Image fills the circle */
.avatar-circle-Co img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;


}


/*  CONTENT  */
.founder-content .badge {
  display: inline-block;
  margin-bottom: 1.6rem;

  padding: 0.6rem 1.4rem;
  border-radius: 999rem;

  font-size: 1.2rem;
  font-weight: 500;

  color: #00e5ff;
  background: rgba(0,229,255,0.1);
  border: 0.1rem solid rgba(0,229,255,0.35);
}

.founder-content h3 {
  font-size: 2.8rem;
  margin-bottom: 1.6rem;
}

.founder-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2.4rem;
}

/*  TAGS  */
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.founder-tags span {
  padding: 0.6rem 1.4rem;
  font-size: 1.2rem;

  border-radius: 999rem;
  color: #e5e7eb;

  background: rgba(255,255,255,0.06);
  border: 0.1rem solid rgba(255,255,255,0.15);
}
/* founders end here  */

/* achievements section starts here */
.achievements {
  padding: 8rem 2.4rem;

  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;
  background-size: 4rem 4rem;
}

/*  HEADER  */
.achievements-header {
  text-align: center;
  margin-bottom: 6.4rem;
}

.achievements-header h2 {
  font-size: 4.2rem;
  font-weight: 600;
}

.achievements-header h2 span {
  background: linear-gradient(90deg, #00e5ff, #8b5cf6);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}

/*  GRID  */
.achievements-grid {
  max-width: 120rem;
  margin: 0 auto;

  display: grid;
  gap: 3.2rem;
}

/* Desktop */
@media (min-width: 64rem) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*  CARD  */
.achievement-card {
  padding: 4rem 3.2rem;
  text-align: center;

  border-radius: 2.4rem;
  background: rgba(2, 6, 23, 0.92);

  box-shadow:
    inset 0 0 0 0.1rem rgba(255,255,255,0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-0.6rem);
  box-shadow:
    0 0 3.6rem rgba(0,229,255,0.25),
    inset 0 0 0 0.1rem rgba(0,229,255,0.35);
}

/*  ICON  */
.achievement-icon {
  width: 6.4rem;
  height: 6.4rem;
  margin: 0 auto 2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 1.6rem;

  background: radial-gradient(circle, #00e5ff, #0284c7);
  box-shadow: 0 0 3.2rem rgba(0,229,255,0.6);
}

.achievement-icon img {
  width: 3.2rem;
  height: 3.2rem;
  filter: brightness(0) invert(1);
}

/*  TEXT  */
.achievement-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.achievement-card p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #94a3b8;
}
/* achievement section ends here  */

/* team section */
.team {
  padding: 8rem 2.4rem;

  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #020617;
  background-size: 4rem 4rem;
}

/*  HEADER  */
.team-header {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6.4rem;
}

.team-header h2 {
  font-size: 4.2rem;
  margin-bottom: 1.6rem;
}

.team-header h2 span {
  background: linear-gradient(90deg, #00e5ff, #6366f1);
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;
}

.team-header p {
  font-size: 1.6rem;
  color: #94a3b8;
}

/*  GRID  */
.team-grid {
  max-width: 120rem;
  margin: 0 auto;

  display: grid;
  gap: 3.2rem;
}

@media (min-width: 64rem) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*  CARD  */
.team-card {
  padding: 4rem 3.2rem;
  border-radius: 2.4rem;

  background: rgba(2, 6, 23, 0.92);
  box-shadow: inset 0 0 0 0.1rem rgba(255,255,255,0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-0.6rem);
  box-shadow:
    0 0 3.6rem rgba(0,229,255,0.25),
    inset 0 0 0 0.1rem rgba(0,229,255,0.35);
}



/*  AVATAR  */
.team-avatar {
  width: 9.6rem;
  height: 9.6rem;
  margin-bottom: 2.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: radial-gradient(circle, #00e5ff, #0284c7);
  box-shadow: 0 0 3.6rem rgba(0,229,255,0.6);
}

.team-avatar img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1);
}

/*  TEXT  */
.team-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.team-card .role {
  display: block;
  margin-bottom: 1.6rem;

  font-size: 1.3rem;
  color: #22d3ee;
}

.team-card p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 2.4rem;
}

/*  TAGS  */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.team-tags span {
  padding: 0.6rem 1.4rem;
  font-size: 1.2rem;

  border-radius: 999rem;
  color: #e5e7eb;

  background: rgba(255,255,255,0.06);
  border: 0.1rem solid rgba(255,255,255,0.15);
}
/* team section ends here */

/* footer start here  */
.footer {
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 96%),
    #04060e;
  background-size: 4rem 4rem;
  padding: 6rem 3.2rem 3rem;
  color: #cbd5f5;
}

.footer-container {
  max-width: 120rem;
  margin: auto;
}

/* Top section */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 30.8rem;
  margin: 0rem auto;
  padding: 0.6rem 1rem;
  border-radius: 1.8rem;

  background: linear-gradient(
    180deg,
    rgba(10, 15, 35, 0.9),
    rgba(4, 8, 22, 0.95)
  );

  border: 0.1rem solid rgba(255,255,255,0.08);
  box-shadow: 0 0 2.4rem rgba(0,229,255,0.18);
}

/* SVG container */
.footer-logo-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: radial-gradient(
    circle at top left,
    rgba(0,229,255,0.35),
    rgba(2,132,199,0.6)
  );

  box-shadow:
    0 0 1.6rem rgba(0,229,255,0.6),
    inset 0 0 0 0.1rem rgba(255,255,255,0.25);
}

/* SVG itself */
.footer-logo-icon img {
  width: 2rem;
  height: 2rem;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 0.6rem rgba(0,229,255,0.8));
}

/* Brand text */
.footer-logo span {
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04rem;

  background: linear-gradient(
    90deg,
    #00e5ff,
    #60a5fa
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: logoGradientMove 6s linear infinite;
}
/* Gradient animation */
@keyframes logoGradientMove {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-logo span {
    animation: none;
  }
}
/* Emphasis word */
.footer-logo >span >strong {
  font-weight: 500;

  background: linear-gradient(
    90deg,
    #1e1b4b,   /* deep indigo */
    #6d28d9,   /* rich purple */
    #a78bfa,   /* soft violet */
    #6d28d9,
    #1e1b4b
  );
  background-size: 300% 100%;

  -webkit-background-clip: text;
    background-clip: text;
  color: transparent;

  animation: footerLogoGradient 15s linear infinite;
}

@keyframes footerLogoGradient {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-logo strong {
    animation: none;
  }
}



.footer-brand p {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 40rem;
  text-align: center;
  margin: 0rem auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  color: #7dd3fc;
}

.footer-logo strong {
  color: #a78bfa;
}

/* Links */
.footer-links h4 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: #e5e7eb;
}

.footer-links a {
  display: block;
  font-size: 1.4rem;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

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

/* Divider */
.footer-divider {
  margin: 4rem 0 2.4rem;
  height: 0.1rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 1.3rem;
  color: #94a3b8;
}

.heart {
  color: #ef4444;
  margin-inline: 0.2rem;
}

