:root {
  --primary-yellow: #f3d433;
  --bg-dark: #0a0a0a;
  --accent-glow: rgba(243, 212, 51, 0.2);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-dark);
  color: white;
  height: 100%;
  /* overflow-x: hidden; */
}
a {
  text-decoration: none;
}

/* Radial Gradient Background */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom, #2b2b05 0%, #0a0a0a 70%);
  z-index: -1;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  /* position: fixed; */
  top: 0;
  left: 0; /* full width */
  z-index: 1000;
  background: #0c0c0c80; /* Semi-transparent background */
  border-bottom: 1px solid #222;
  backdrop-filter: blur(8px);
}

/* Logo */
.logo img {
  height: 40px;
}

/* Buttons container */
.nav-buttons {
  display: flex;
  align-items: center;
}

/* Buttons */
.nav-buttons .sign-up {
  background: transparent;
  border: 1px solid #333;
  border-color: rgba(33, 110, 255, 0.6);
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  margin-right: 15px;
  cursor: pointer;
}

.nav-buttons .login {
  background: #2563eb;
  border: none;
  color: white;
  padding: 10px 30px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* ========================= */
/* Tablet View (≤ 1024px) */
/* ========================= */
@media (max-width: 1024px) {
  nav {
    padding: 15px 30px;
  }

  .logo img {
    height: 36px;
  }

  .nav-buttons .sign-up,
  .nav-buttons .login {
    padding: 8px 22px;
  }
}

/* ========================= */
/* Mobile View (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  .logo img {
    height: 32px;
  }

  .nav-buttons .sign-up {
    padding: 7px 18px;
    margin-right: 10px;
  }

  .nav-buttons .login {
    padding: 7px 22px;
  }
}

/* ========================= */
/* Small Mobile (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
  }

  .logo img {
    height: 28px;
  }

  .nav-buttons {
    gap: 8px;
  }

  .nav-buttons .sign-up,
  .nav-buttons .login {
    padding: 6px 16px;
    font-size: 14px;
  }
}

/* Stats Bar */
.stats-container {
  display: flex;
  justify-content: center;
  margin-top: 130px;
  padding: 0 15px; /* prevent overflow on small screens */
}

.stats-bar {
  border: 1px solid #5f86f6;
  border-radius: 30px;
  padding: 8px 40px;
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #ccc;
  flex-wrap: wrap; /* allow wrapping on small screens */
  justify-content: center;
  text-align: center;
}

/* Text highlight */
.stats-bar span b {
  color: white;
  margin-left: 5px;
}

.highlight-yellow {
  color: var(--primary-yellow) !important;
}

/* ========================= */
/* Tablet View (≤ 1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .stats-container {
    margin-top: 110px;
  }

  .stats-bar {
    padding: 8px 30px;
    gap: 20px;
    font-size: 12.5px;
  }
}

/* ========================= */
/* Mobile View (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
  .stats-container {
    margin-top: 100px;
  }

  .stats-bar {
    padding: 10px 20px;
    gap: 15px;
    font-size: 12px;
  }
}

/* ========================= */
/* Small Mobile (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
  .stats-container {
    margin-top: 90px;
  }

  .stats-bar {
    padding: 12px 15px;
    gap: 10px;
    font-size: 11.5px;
    border-radius: 20px;
  }
}

/* Main Content */
.hero {
  text-align: center;
  margin-top: 100px;
  position: relative;
}

/* Heading */
.hero h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero h2 span {
  color: #888;
}

/* Floating Passive Badge */
.passive-badge {
  position: absolute;
  right: 20%;
  top: 0;
  width: 120px;
  height: 120px;
  border: 1px dashed var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--primary-yellow);
  /* animation: rotate 10s linear infinite; */
  transform: rotate(-360deg);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.t-logo img {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-yellow);
  height: 100px;
  position: relative;
}

/* Main X2 Box */
.x2-container {
  margin-top: 40px;
  display: inline-block;
  border: 1px solid #33bbf3;
  padding: 10px 100px;
  border-radius: 100px;
  position: relative;
  box-shadow: 0 0 40px var(--accent-glow);
  margin-bottom: 20px;
}

.x2-text {
  font-size: 80px;
  font-weight: 800;
  color: var(--primary-yellow);
  letter-spacing: -2px;
}

.x2-text span {
  font-weight: 300;
  margin-right: 15px;
}

/* ========================= */
/* Tablet View (≤ 1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .hero {
    margin-top: 90px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .passive-badge {
    width: 100px;
    height: 100px;
    right: 15%;
  }

  .t-logo {
    font-size: 34px;
  }

  .x2-container {
    padding: 35px 90px;
  }

  .x2-text {
    font-size: 64px;
  }
}

/* ========================= */
/* Mobile View (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
  }

  .hero h2 {
    font-size: 30px;
    padding: 0 15px;
  }

  .passive-badge {
    position: static; /* move below heading */
    margin: 15px auto 0;
  }

  .x2-container {
    padding: 30px 60px;
    border-radius: 70px;
  }

  .x2-text {
    font-size: 54px;
  }
}

/* ========================= */
/* Small Mobile (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
  .hero {
    margin-top: 70px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .passive-badge {
    width: 80px;
    height: 80px;
    font-size: 9px;
  }

  .t-logo {
    font-size: 26px;
  }

  .x2-container {
    padding: 5px 30px;
    border-radius: 60px;
  }

  .x2-text {
    font-size: 44px;
  }

  .x2-text span {
    margin-right: 10px;
  }
}

/* features section */
.features-section {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}

.section-header span {
  color: #666; /* Grayed out text effect */
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Common Card Styling */
.card {
  background: linear-gradient(145deg, #111, #050505);
  border: 1px solid #222;
  border-radius: 24px;
  width: 320px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* AI Powered Card (Highlighted) */
.card.highlight {
  border: 2px solid #1e4ed8;
  box-shadow: 0 0 30px rgba(30, 77, 216, 0.67);
  transform: scale(1.05);
  z-index: 2;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button Styling */
.card-btn {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 40px;
}

.highlight .card-btn {
  border-color: #1e4ed8;
}

/* Icon/Graphic Placeholders */
.card-graphic {
  height: 120px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-icon {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #333;
  font-weight: bold;
  font-size: 24px;
}

.ai-icon span {
  color: #3b82f6; /* Blue stars color */
}
/* school section  */
.school-section {
  background-color: #080808;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  text-align: center;
  padding: 0 20px;
}

/* Large background watermark text */
.bg-watermark {
  position: absolute;
  font-size: 320px;
  font-weight: 900;
  color: rgb(255 255 255 / 4%);
  letter-spacing: -10px;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.school-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.school-content h2 {
  color: #a5c7f7;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* Glowing Blue Button */
.btn-school {
  background: linear-gradient(180deg, #4483ff 0%, #1e4ed8 100%);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(30, 78, 216, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-school:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 78, 216, 0.6);
}

/* ========================= */
/* Tablet View (≤ 1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .school-section {
    height: 520px;
  }

  .bg-watermark {
    font-size: 240px;
    letter-spacing: -8px;
  }

  .school-content h2 {
    font-size: 32px;
  }
}

/* ========================= */
/* Mobile View (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
  .school-section {
    height: auto;
    padding: 80px 20px;
  }

  .bg-watermark {
    font-size: 180px;
    letter-spacing: -6px;
  }

  .school-content h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .btn-school {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* ========================= */
/* Small Mobile (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
  .bg-watermark {
    font-size: 120px;
    letter-spacing: -4px;
  }

  .school-content h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .btn-school {
    padding: 11px 26px;
    font-size: 12.5px;
  }
}
/* partner results section */
.partner-results {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
  font-family: "Inter", -apple-system, sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background Blue Glow */
.partner-results::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 78, 216, 0.4) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
}

.icon-box {
  background: #1e4ed8;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.partner-results h2 {
  font-size: 32px;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.sub-text {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

/* Stacked Container */
.results-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* Top Card */
.main-stats-card {
  background: linear-gradient(135deg, #1e293bf0 0%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 40px;
  padding: 40px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Bottom Card */
.contract-card {
  background: rgb(30 58 138 / 51%);
  border: 1px solid #1e3a8a;
  border-radius: 40px;
  padding: 60px 40px 30px;
  margin-top: -40px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

/* Toggle */
.filter-toggle {
  background: #111;
  display: inline-flex;
  padding: 5px;
  border-radius: 20px;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-item {
  padding: 6px 18px;
  font-size: 12px;
  border-radius: 15px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease;
}

.filter-item:hover {
  background: #1e40af;
  color: #fff;
}

.filter-item.active {
  background: #3b82f6;
  color: white;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
  gap: 30px;
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.stat-change {
  color: #22c55e;
  font-size: 18px;
  margin-left: 10px;
}

/* Contract Rows */
.contract-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #aaa;
  gap: 10px;
  flex-wrap: wrap;
}

.contract-row:last-child {
  border: none;
}

.address {
  color: #888;
  font-family: monospace;
  word-break: break-all;
  text-align: right;
}

/* ========================= */
/* Tablet (≤1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .partner-results {
    padding: 80px 20px;
  }

  .partner-results h2 {
    font-size: 28px;
  }

  .stat-value {
    font-size: 30px;
  }
}

/* ========================= */
/* Mobile (≤768px) */
/* ========================= */
@media (max-width: 768px) {
  .partner-results {
    padding: 70px 15px;
  }

  .main-stats-card,
  .contract-card {
    padding: 30px 25px;
    border-radius: 30px;
  }

  .contract-card {
    margin-top: -25px;
    width: 82%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-change {
    font-size: 16px;
  }

  .contract-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .address {
    text-align: left;
  }
}

/* ========================= */
/* Small Mobile (≤480px) */
/* ========================= */
@media (max-width: 480px) {
  .partner-results h2 {
    font-size: 24px;
  }

  .sub-text {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .filter-toggle {
    gap: 8px;
  }

  .filter-item {
    font-size: 11px;
    padding: 5px 14px;
  }

  .stat-value {
    font-size: 24px;
  }

  .contract-row {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* tech section */

.tech-section {
  background-color: #050505;
  color: white;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.icon-header {
  background: #2563eb;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tech-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tech-section .description {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Tabs Container */
.tabs-container {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 24px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  /* min-height: 400px; */
  overflow: hidden;
  text-align: left;
}

/* Sidebar */
.tabs-sidebar {
  width: 250px;
  border-right: 1px solid #222;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #888;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #2563eb;
  color: white;
}

/* Content Area */
.tabs-content {
  padding: 50px;
  flex: 1;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.tab-panel p {
  color: #888;
  line-height: 1.8;
  font-size: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* Tablet (≤1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .tech-section h2 {
    font-size: 32px;
  }

  .tabs-container {
    max-width: 100%;
  }

  .tabs-content {
    padding: 40px;
  }
}

/* ========================= */
/* Mobile (≤768px) */
/* ========================= */
@media (max-width: 768px) {
  .tech-section {
    padding: 70px 15px;
  }

  .tech-section h2 {
    font-size: 28px;
  }

  .tabs-container {
    flex-direction: column;
    min-height: auto;
  }

  .tabs-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #222;
    padding: 15px;
    gap: 8px;
  }

  .tab-btn {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }

  .tabs-content {
    padding: 30px 25px;
  }

  .tab-panel h3 {
    font-size: 24px;
  }

  .tab-panel p {
    font-size: 14px;
  }
}

/* ========================= */
/* Small Mobile (≤480px) */
/* ========================= */
@media (max-width: 480px) {
  .tech-section h2 {
    font-size: 24px;
  }

  .tech-section .description {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .tabs-content {
    padding: 25px 20px;
  }

  .tab-panel h3 {
    font-size: 22px;
  }

  .tab-panel p {
    font-size: 13.5px;
  }
}

/* fAQ section  */
:root {
  --bg-black: #050505;
  --card-bg: #0f0f0f;
  --border-color: #222;
  --text-gray: #888;
  --accent-blue: #3b82f6;
}

.faq-section {
  background-color: var(--bg-black);
  color: white;
  padding: 100px 20px;
  font-family: "Inter", -apple-system, sans-serif;
  text-align: center;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 78, 216, 0.4) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
}

.faq-icon {
  background: var(--accent-blue);
  width: 35px;
  height: 35px;
  border-radius: 8px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-section .subtitle {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Accordion Item Styling */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #333;
}

/* The clickable summary */
.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Removes default arrow */
  font-weight: 500;
  font-size: 15px;
}

/* Custom Plus/Minus Icon */
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--text-gray);
  transition: transform 0.3s ease;
}

/* Rotates the plus to a minus effect or X when open */
details[open] .faq-question::after {
  content: "−";
  color: white;
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove default marker for Chrome/Safari */
.faq-question::-webkit-details-marker {
  display: none;
}
/* footer section */
:root {
  --footer-bg: #050505;
  --text-muted: #888;
  --text-light: #ccc;
}

footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 80px 60px 40px;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #111;
}

/* Blue Glow */
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 78, 216, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Branding */
.footer-brand {
  flex: 1;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 250px;
}

/* Links */
.footer-links-wrapper {
  display: flex;
  gap: 100px;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-column li b {
  color: var(--text-light);
  font-family: monospace;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  font-size: 11px;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 1;
}

/* ========================= */
/* Tablet (≤1024px) */
/* ========================= */
@media (max-width: 1024px) {
  footer {
    padding: 70px 40px 35px;
  }

  .footer-links-wrapper {
    gap: 60px;
  }
}

/* ========================= */
/* Mobile (≤768px) */
/* ========================= */
@media (max-width: 768px) {
  footer {
    padding: 60px 25px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ========================= */
/* Small Mobile (≤480px) */
/* ========================= */
@media (max-width: 480px) {
  footer {
    padding: 50px 20px 25px;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-column h4 {
    font-size: 13px;
  }

  .footer-column li {
    font-size: 11.5px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    font-size: 16px;
  }
}
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-rotate {
  opacity: 0;
  transform: translateY(30px) rotate(-180deg);
  animation: fadeRotate 2s ease forwards;
}

@keyframes fadeRotate {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.animate-scale-up {
  opacity: 0;
  transform: scale(0.8);
  transform-origin: bottom;
  animation: scaleUp 0.8s ease-out forwards;
}

@keyframes scaleUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-glow {
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 rgba(20, 94, 137, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(74, 116, 242, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(41, 104, 238, 0.2);
  }
}
.go-top-glow {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0033ff, #25ebdc);
  color: #f9f8f8ff;
  font-size: 30px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0, 64, 255, 0.67);
  transition: all 0.3s ease;
  animation: floatBtn 3s ease-in-out infinite;
}

.go-top-glow:hover {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(0, 106, 255, 0.53);
}

@keyframes floatBtn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* about section */
.about-alt-section {
  padding: 60px 20px;
  background: radial-gradient(circle at top left, #000, #000);
  color: #888;
  animation: slideIn 1s ease forwards;
}
/* Slide in from left */
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.about-alt-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-alt-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(47, 107, 255, 0.25);
}

/* CARD */
.about-alt-card {
  background: linear-gradient(145deg, #000, #0f0f0f);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 48px 44px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}

/* Glow border */
.about-alt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(130deg, #2f6bff, transparent, #2f6bff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  box-shadow: 0 0 40px rgba(64, 61, 240, 0.89);
}

.about-alt-card h2 {
  font-size: 38px;
  margin-bottom: 14px;
  background: #a5c7f7;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-alt-sub {
  color: #b8c0d4;
  font-size: 16px;
  margin-bottom: 34px;
}

/* POINTS */
.about-alt-points .point {
  margin-bottom: 26px;
}

.about-alt-points h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.about-alt-points p {
  font-size: 15px;
  line-height: 1.7;
  color: #b2bbd3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-alt-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-alt-card {
    padding: 36px 28px;
  }

  .about-alt-card h2 {
    font-size: 32px;
  }
}
.abc {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.abc.show {
  transform: translateX(0);
  opacity: 1;
}
