
/* Base styles for all pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #22d3ee;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: #0891b2;
}

.button svg {
  margin-left: 8px;
  transition: transform 0.3s;
}

.button:hover svg {
  transform: translateX(4px);
}

/* Gradients */
.text-gradient {
  background: linear-gradient(to right, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card styles */
.card {
  background-color: rgba(31, 41, 55, 0.6);
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
  transform: translateY(-5px);
}

/* Section spacing */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #9ca3af;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
}


/* Animation utilities */
.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   NAVIGATION BAR
======================== */
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent 100%;
  z-index: 1000;
}

/* Logo Styling */
.logo {
  font-family: "Rubik Distressed", system-ui;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00ffff, #0080bd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Default Menu Styles (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Navbar Links */
.nav-links li a {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #22d3ee;
}

/* Mobile Menu Button */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none; /* Hidden by default */
}

/* Responsive: Mobile Styling */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show button on small screens */
  }
  @media (max-width: 768px) {
    .logo {
      font-size: 2rem; /* Reduce font size for smaller screens */
      margin-bottom: 10px; /* Reduce spacing */
    }
  }

  .nav-links {
    display: none; /* Hide menu initially */
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
  }

  .nav-links.active {
    display: flex; /* Show when toggled */
  }

  .nav-links li {
    padding: 10px 0;
  }
}


/* ========================
   FOOTER
======================== */
.site-footer {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #000, #111827);
}

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

.footer-logo-distressed {
  font-family: "Rubik Distressed", system-ui;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #00FFFF, #012f45);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
 
}
.logo {
  width: 50%; /* or any size you want */
  height: auto; /* keeps the aspect ratio */
  
}
@media (max-width: 1000px) {
  .logo {
    width: 200px; /* bigger size for mobile */
  }
}

.footer-logo {
  width: 200px; /* or any size you want */
  height: auto; /* keeps the aspect ratio */
  
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}

.footer-social a img:hover {
  opacity: 0.7;
}

.alert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  z-index: 10000;
  max-width: 90%;
  text-align: center;
  white-space: nowrap;
  animation: fadeIn 0.3s ease-in-out;
}

.alert.success {
  background-color: #4CAF50;
}

.alert.error {
  background-color: #f44336;
}

