@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../../public/font/Inter/InterVariable.woff2") format("woff2");
}

:root {
  --gradient: linear-gradient(
    90deg,
    var(--color-blue-500),
    var(--color-blue-400)
  );
  /* --gradient: linear-gradient(to left, #487beb, #6962ec); */
  /* --gradient: linear-gradient(-90deg, red,blue); */
  /* ---------- Primary (blue) palette ---------- */
  --color-blue-50: oklch(0.97 0.014 254.6);
  --color-blue-100: oklch(0.932 0.032 255.6);
  --color-blue-200: oklch(0.882 0.059 254.1);
  --color-blue-300: oklch(0.809 0.105 251.8);
  --color-blue-400: oklch(0.707 0.165 254.6);
  --color-blue-500: oklch(0.623 0.214 259.8);
  --color-blue-600: oklch(0.546 0.245 262.9);
  --color-blue-700: oklch(0.488 0.243 264.4);
  --color-blue-800: oklch(0.424 0.199 265.6);
  --color-blue-900: oklch(0.379 0.146 265.5);
  --primary: blue;
  /* ---------- Backgrounds ---------- */
  --bg: #ffffff;
  --bg-muted: #fafafa;
  --bg-subtle: #f6f6f6;
  --bg-active: #dadada;
  --bg-black: #0e0e0e;

  /* ---------- Text ---------- */
  --text: oklch(0.15 0 260);
  --text-muted: oklch(0.4 0 260);
  --text-subtle: oklch(0.6 0 260);

  /* ---------- Border ---------- */
  --border: oklch(0.88 0 260);

  /* ---------- Semantic (success, warning, danger, info) ---------- */
  --success: oklch(0.723 0.219 149.6);
  --success-hover: oklch(0.627 0.194 149.2);
  --success-muted: oklch(0.962 0.044 156.7);

  --warning: oklch(0.769 0.188 70.1);
  --warning-hover: oklch(0.666 0.179 58.3);
  --warning-muted: oklch(0.962 0.059 95.6);

  --danger: oklch(0.637 0.237 25.33);
  --danger-hover: oklch(0.577 0.245 27.33);
  --danger-muted: oklch(0.936 0.032 17.72);

  --info: oklch(0.685 0.169 237.32);
  --info-hover: oklch(0.588 0.158 241.97);
  --info-muted: oklch(0.951 0.026 236.82);

  /* ---------- Typography ---------- */
  /* --font-family: "Inter";*/
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.75rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* ---------- Spacing (4–64px) ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 52px;
  --space-14: 56px;
  --space-15: 60px;
  --space-16: 64px;

  /* ---------- Borders & Radius ---------- */
  --border-width-thin: 1px;
  --border-width-thick: 2px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---------- Shadows ---------- */
  --shadow-sm: 0 2px 4px oklch(0.15 0 260 / 0.06);
  --shadow-md: 0 6px 18px oklch(0.15 0 260 / 0.08);
  --shadow-lg: 0 12px 30px oklch(0.15 0 260 / 0.1);
}
[data-theme="dark"] {
  /* --gradient: linear-gradient(
    90deg,
    hsla(221, 97%, 53%, 0.75),
    hsla(225, 84%, 49%, 0.75)
  ); */
  --bg: #131313;
  --bg-muted: #121212;
  --bg-subtle: #1a1a1a;
  --bg-active: #0e0e0e;

  --text: oklch(0.94 0 260);
  --text-muted: oklch(0.7 0 260);
  --text-subtle: oklch(0.5 0 260);

  --border: oklch(0.3 0 260);

  /* --shadow-sm: 0 1px 2px oklch(0.94 0 260 / 0.04);
  --shadow-md: 0 6px 18px oklch(0.94 0 260 / 0.06);
  --shadow-lg: 0 12px 30px oklch(0.94 0 260 / 0.07); */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid black; */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: #000;
  width: 100%;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  height: auto;
  overflow-x: hidden;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg);
  padding: 15px 20px;
  position: sticky;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 0;
  color: #000;

  .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-blue-500);
    font-size: 2.5rem;
  }
  .logo {
    display: block;
    height: 50px;
    margin-left: 15px;
  }
  .brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    margin-left: 10px;
    color: #06070b;
  }
  .navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .navbar-links li {
    display: flex;
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    gap: 4px;
  }
  .nav-link:hover {
    color: var(--color-blue-500);
  }
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue-500);
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  hr {
    border: 0;
    width: 1px;
    height: 24px;
    background-color: var(--text-muted);
    margin: 0 8px;
  }
  .auth-buttons {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 8px;

    .btn {
      background: var(--gradient) !important;
    }
  }

  .theme-toggle {
    color: var(--text);
    background: var(--bg-muted);
    box-shadow: var(--shadow-md);
    border: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;

    &:hover {
      transform: rotate(30deg);
    }
  }
}
/* BUTTON STYLES */
.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;

  &.btn-primary {
    background: var(--color-blue-500);
  }
  &.btn-primary:hover {
    background: var(--color-blue-600);
  }
  &.btn-secondary {
    background-color: white;
    color: var(--color-blue-500);
    border: 2px solid currentColor;
  }
  &.btn-secondary:hover {
    color: var(--color-blue-600);
  }
}
main {
  padding: var(--space-8);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About Section Styling */
.about-section {
  padding: var(--space-16) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-6);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.highlight {
  color: var(--color-blue-500);
  font-weight: var(--fw-semibold);
}

/* Vision & Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: var(--border-width-thin) solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-blue-300);
}

.card h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
  color: var(--color-blue-600);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.card h2::before {
  content: "";
  display: block;
  width: 6px;
  height: 24px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
}

.card p {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.btn-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  border: var(--border-width-thin) solid transparent;
} */

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--color-blue-500);
  color: var(--color-blue-500);
}

.btn-outline:hover {
  background: var(--color-blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Team Section */
.team-section {
  padding: var(--space-16) 0;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  margin-top: var(--space-16);
}

.team-section .section-header {
  margin-bottom: var(--space-12);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.team-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: var(--border-width-thin) solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-blue-300);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--color-blue-400);
  box-shadow: var(--shadow-sm);
}

.team-image img {
  width: 100%;
  color: white;
}

.team-name {
  font-size: var(--font-size-xl);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
  color: var(--text);
}

.team-role {
  font-size: var(--font-size-base);
  color: var(--color-blue-500);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-4);
  background: var(--color-blue-50);
  border-radius: var(--radius-full);
}

.team-description {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.team-divider {
  width: 40px;
  height: 3px;
  background: var(--gradient);
  margin: var(--space-4) 0;
  border-radius: var(--radius-full);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  justify-content: center;
}

.skill-tag {
  font-size: var(--font-size-xs);
  padding: var(--space-1) var(--space-3);
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
}
.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: var(--font-size-3xl);
  }

  .section-header p {
    font-size: var(--font-size-base);
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  aside {
    display: none;
  }
  .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
  }
  .navbar {
    justify-content: space-between;
    align-items: center;
    padding: 10px 1rem;
    .navbar-brand img {
      width: 50px !important;
      height: 50px !important;
      display: block;
    }
    .navbar-links.topbar {
      /* flex-direction: row; */
      gap: 10px;
      display: none !important;
    }
    button {
      background-color: white;
      outline: none;
      border: none;
      align-content: center;
    }
    .hamburger span {
      background-color: white;
      cursor: pointer;
      font-size: 2rem;
      margin-right: 0.5rem;
    }
  }
  aside {
    width: 100%;
    position: fixed;
    top: 70px;
    right: 0;
    height: max-content;
    transition: transform 0.3s ease-in;
    z-index: 100;
    background-color: #fafafa;
    transform: translateY(-400px);
    display: flex;
    justify-content: center;
    align-items: center;

    .navbar-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      justify-content: center;

      width: 100%;
      li {
        text-align: center;
        border-bottom: 1px solid #5c5c5c !important;
        padding: 0.75rem 0;
      }
      .nav-link {
        text-decoration: none;
        color: #000;
        font-size: 1rem;
        width: 100% !important;
        /* padding: 1.5rem; */
        /* border: 0; */
        text-align: center;
        /* background-color: red; */
      }
      .nav-link:hover {
        color: #007bff;
      }
      .auth-buttons {
        gap: 10px;
        border: 0;
        display: flex;
        flex-direction: column;
      }
    }
    &.show {
      transform: translateX(0);
    }
  }
  section {
    padding: 1rem;
  }
  .container {
    max-width: 100%;
    padding: 0;
    /* padding: 0 20px; */
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.2rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

