/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #00bfff;
  animation: logoBounce 2s infinite;
}

.logo-circle img {
  width: 50px;
  height: 50px;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover, header nav .btn:hover {
  color: #00bfff;
}

header nav .btn {
  padding: 6px 15px;
  border: 2px solid #00bfff;
  border-radius: 5px;
  transition: 0.3s;
}

/* Hero Section */
.hero-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  flex-wrap: wrap;
  background: #f4f4f4;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

/* Our Story */
.our-story {
  padding: 60px 40px;
  text-align: center;
}

.our-story h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #111;
  animation: fadeInDown 1s ease-in-out;
}

.our-story p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 40px;
  gap: 20px;
}

.mission-vision .feature {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
}

.mission-vision .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mission-vision h3 {
  margin-bottom: 15px;
  color: #00bfff;
}

/* Team Section */
.team {
  padding: 60px 40px;
  text-align: center;
}

.team h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #111;
  animation: fadeInDown 1s ease-in-out;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.team-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 10px;
  color: #00bfff;
}

.team-card p {
  font-size: 16px;
  line-height: 1.5;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  padding: 50px 40px;
  text-align: center;
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.cta .btn.hero-btn {
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 18px;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo-circle-footer {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00bfff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle-footer img {
  width: 40px;
  height: 40px;
}

footer .footer-right a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

footer .footer-right a:hover {
  color: #00bfff;
}

/* Animations */
@keyframes fadeInDown {0%{opacity:0;transform:translateY(-30px);}100%{opacity:1;transform:translateY(0);}}
@keyframes fadeInUp {0%{opacity:0;transform:translateY(30px);}100%{opacity:1;transform:translateY(0);}}
@keyframes fadeInLeft {0%{opacity:0;transform:translateX(-50px);}100%{opacity:1;transform:translateX(0);}}
@keyframes float {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
@keyframes logoBounce {0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);}}

@media(max-width:768px){
  header{flex-direction:column;align-items:center;height:auto;padding:15px;}
  header nav{margin-top:10px;flex-wrap:wrap;justify-content:center;}
  .hero-about{flex-direction:column;text-align:center;}
  .hero-text h1{font-size:32px;}
  .hero-text p{font-size:16px;}
  .our-story,.mission-vision,.team,.cta{padding:40px 20px;}
  .mission-vision{flex-direction:column;align-items:center;}
}
