/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #9455ad;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}

body {
  font-family: "Inter", sans-serif;
  background-size: contain;
  color: #333;
  background: url(/images/Bzz.png);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: #fff;
  padding: 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  text-align: center;
}
.navbar {
  background: #fff;
  padding: 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
}
.hero {
  position: relative;
  background: linear-gradient(135deg, #fde3ff, #e3c6e785);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
}

.hero::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: floatUp 1.2s ease-out;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #5f5f5f;
  animation: fadeIn 1.6s ease-out;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.team {
  background: radial-gradient(circle at top left, #fde3ff 0%, #fff0f6 100%);
  padding: 80px 20px;
  margin-top: 60px;
}

.team h2 {
  text-align: center;
  font-size: 42px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, var(--primary-color), #9869aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.founder-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: url(/images/Bz.png);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.founder-photo {
  flex: 0 0 auto;
  width: 100%;
  max-width: 350px;
  max-height: 300px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
}

.founder-text h3 {
  color: #996eaa;
  font-size: 28px;
  margin-bottom: 10px;
}

.founder-text p {
  flex: 1 1 auto;
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.founder-layout-reverse {
  flex-direction: row-reverse;
}
.founder-layout-reverse .founder-text {
  text-align: left;
}

footer {
  background-color: rgba(235, 255, 231, 255);
  color: black;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}
