* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: url('https://www.transparenttextures.com/patterns/foggy-birds.png'), #fff5f8;
  background-size: contain;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #f25ca2;
  transform: translateY(-4px);
  text-decoration: none;
  line-height: 44px;
  letter-spacing: -0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav a {
  color: #f25ca2;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #f25ca2;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #ffe3ec, #fff0f6);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 50% 50%, #ff69b4aa, transparent);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, #ffaacc55, transparent);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.hero h1, .hero p {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  color: #f25ca2;
  margin-bottom: 20px;
  animation: floatUp 1.2s ease-out;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #5f5f5f;
  animation: fadeIn 1.6s ease-out;
}

/* Animations */
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Vision Section */
.vision {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  background: #fff;
}

.vision img {
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
  object-fit: cover;
}

.vision-text {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
}

.vision-text h2 {
  color: #f25ca2;
  font-size: 30px;
  margin-bottom: 20px;
}

.vision-text p {
  font-size: 17px;
  color: #555;
}

/* Team and Founders */
.team {
  background: #fff0f5;
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  font-size: 28px;
  color: #f25ca2;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.founder-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.founder-photo {
  width: 350px;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.founder-text {
  flex: 1;
  min-width: 280px;
}

.founder-text h3 {
  color: #f25ca2;
  font-size: 28px;
  margin-bottom: 10px;
}

.founder-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* CTA and Footer */
.cta-banner {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 60px 40px;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.cta-banner h2 {
  font-size: 28px;
  color: #f25ca2;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #444;
}

.cta-banner a {
  display: inline-block;
  margin-top: 15px;
  background: #f25ca2;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-banner a:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(242, 92, 162, 0.3);
}

footer {
  background: #f25ca2;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Scroll animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}