* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #0e0e12;
  color: #f1f1f1;
  line-height: 1.6;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  position: relative;
  overflow-x: hidden;
}

body.fade-out {
  opacity: 0;
}

.section-divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #6c63ff 0%, #3f3d9f 50%, #6c63ff 100%);
  margin: 1rem auto;
  width: 99%;
  border-radius: 2px;
  opacity: 0.7;
}
/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #1a1a22;
  position: sticky;
  top: 0;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c63ff;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #f1f1f1;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6c63ff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #6c63ff, #3f3d9f, #6c6fff, #3f3d9f, #6c63ff);
  border-radius: 0 0 20px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

/* About Section */
.about {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.about h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Card Styles */
.card {
  background: #1a1a22;
  padding: 1.8rem; /* from first file */
  border-radius: 15px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  margin-bottom: 2rem; /* from first file */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* from first file */
}

.card:hover {
  transform: translateY(-9px);
}

.card h2, .card h3 {
  margin-bottom: 1rem;
  color: #6c63ff;
}

.card p {
  color: #d0d0d0;
}



/* Our Team Section */
.OurTeam {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.OurTeam h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.OurTeam .team-members .card {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  min-height: unset;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.OurTeam .team-members .card .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.OurTeam .team-members .card h3 {
  margin-bottom: 0.5rem;
}
.OurTeam .team-members .card p {
  color: #c0c0c0;
  font-size: 0.9rem;
}
.team-socials {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  padding: 4px;
  background: #23233a;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(108,99,255,0.15);
  border: 1px solid #6c63ff;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  filter: brightness(2) drop-shadow(0 0 2px #6c63ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon img,
.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon:hover {
  transform: scale(1.18);
  box-shadow: 0 4px 16px rgba(108,99,255,0.35);
  filter: brightness(2.5) drop-shadow(0 0 6px #6c63ff);
}

/* Bots Section */
.bots {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.bot-card {
  background: #1a1a22;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.bot-card:hover {
  transform: translateY(-6px);
}

.bot-card h3 {
  margin-bottom: 0.8rem;
  color: #6c63ff;
}

.bot-card p {
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.bot-card .btn {
  text-decoration: none;
  background: #6c63ff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease-in-out;
}

.bot-card .btn:hover {
  background: #5145c7;
}

/* Features List */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  background: #2a2a33;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #e4e4e4;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #1a1a22;
  margin-top: 2rem;
  border-top: 1px solid #2a2a33;
  color: #aaa;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #c2c6cc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}