/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #fceabb, #f8b500);
  color: #333;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo { font-size: 26px; font-weight: bold; color: #fff; }
.header nav ul { list-style: none; display: flex; gap: 25px; }
.header nav ul li a { text-decoration: none; color: #fff; font-weight: 500; transition: 0.3s; }
.header nav ul li a.active, .header nav ul li a:hover { color: #ff6b6b; }

/* Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-content { position: relative; z-index: 1; }
.about-hero h2 { font-size: 48px; margin-bottom: 20px; }
.about-hero p { font-size: 18px; }

/* Sections */
.our-story, .team {
  padding: 60px 20px;
  text-align: center;
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.card {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 220px;
  transition: 0.3s;
}
.card:hover { transform: translateY(-10px) scale(1.05); }

/* Footer */
footer {
  background: rgba(0,0,0,0.2);
  color: #fff;
  text-align: center;
}
footer .footer-top { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px; }
footer .footer-links a { margin: 0 15px; color: #fff; text-decoration: none; transition: 0.3s; }
footer .footer-links a:hover { color: #ff6b6b; }
footer .footer-contact p { margin-top: 5px; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding: 10px 0; font-size: 14px; }

/* Animations */
.animate { opacity: 0; transform: translateY(20px); animation-fill-mode: forwards; }
.fadeInUp { animation: fadeInUp 1s ease forwards; }
.fadeInDown { animation: fadeInDown 1s ease forwards; }
.fadeInLeft { animation: fadeInLeft 1s ease forwards; }
.fadeInRight { animation: fadeInRight 1s ease forwards; }
.zoomIn { animation: zoomIn 0.8s ease forwards; }
.pulse { animation: pulse 2s infinite; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp { to { opacity:1; transform: translateY(0); } }
@keyframes fadeInDown { to { opacity:1; transform: translateY(0); } }
@keyframes fadeInLeft { to { opacity:1; transform: translateX(0); } }
@keyframes fadeInRight { to { opacity:1; transform: translateX(0); } }
@keyframes zoomIn { from { transform: scale(0.8); opacity:0;} to { transform: scale(1); opacity:1;} }
@keyframes pulse { 0%, 100% { transform: scale(1);} 50% { transform: scale(1.05);} }
