* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('bg.jpg') center/cover no-repeat;
  filter: blur(5px) brightness(0.4);
  z-index: -2;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 60px 20px;
  color: white;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header span {
  color: #00bcd4;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 8%;
  gap: 60px;
}

.about .image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.5);
}

.about .content {
  max-width: 750px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.about h2 {
  margin: 20px 0 10px;
  color: #00bcd4;
}

.about p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ddd;
}

.achievements li {
  margin-bottom: 8px;
  color: #ccc;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.value-card {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 28px;
  color: #00bcd4;
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  background: #00bcd4;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  color: #00bcd4;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  color: #aaa;
  font-size: 0.9rem;
}

