/* 🎨 General Page Design */
body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #0f1724 0%, #071028 100%);
  color: #e6eef8;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 🌟 Header Section */
header {
  background: rgba(15, 23, 36, 0.9);
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInDown 1s ease-in-out;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.logo {
  width: 130px;
  display: block;
  margin: 0 auto 15px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3);
  transition: transform 0.4s ease;
}
.logo:hover { transform: scale(1.05) rotate(3deg); }
header h1 {
  font-size: 2.8rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}
.x-highlight {
  color: #00C3FF;
  text-shadow: 0 0 8px #00C3FF, 0 0 15px #00C3FF;
  font-weight: 700;
}
header p {
  color: #94a3b8;
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* 🌍 Section Style */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #06b6d4;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}
p { text-align: center; color: #94a3b8; }

/* 🧭 About Section */
#about p {
  max-width: 750px;
  margin: 20px auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 👥 Team Section */
#team {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 60px 20px;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
  transition: box-shadow 0.3s ease;
}
#team:hover { box-shadow: 0 0 40px rgba(6, 182, 212, 0.2); }

.team-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 15px;
  scroll-behavior: smooth;
}
.team-container::-webkit-scrollbar { height: 6px; }
.team-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  border-radius: 10px;
}

.member {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  flex: 0 0 200px;
  text-align: center;
  padding: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: popIn 0.8s ease;
}
@keyframes popIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.member:hover { transform: translateY(-10px); box-shadow: 0 0 25px rgba(6, 182, 212, 0.3); }

.member img {
  width: 120px; height: 120px; object-fit: cover;
  object-position: center 10%;
  border-radius: 50%;
  margin: 0 auto 15px; display: block;
  border: 3px solid #06b6d4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}
.member img:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}
.member h3 { margin: 8px 0 4px; color: #fff; font-size: 1.1rem; }
.member p { color: #94a3b8; font-size: 0.9rem; }

.read-more-btn {
  background: #06b6d4;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  background: #0ea5e9;
  box-shadow: 0 0 15px rgba(6,182,212,0.5);
}

/* 🪩 Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
}
.modal-content {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  padding: 25px;
  max-width: 400px;
  margin: 8% auto;
  text-align: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  position: relative;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #06b6d4;
  animation: zoomIn 0.7s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(6,182,212,0.5);
}
.close-btn {
  background: #06b6d4;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.close-btn:hover { background: #0ea5e9; }
.desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 10px 0 15px;
  line-height: 1.5;
  text-align: center;
}

/* 📞 Footer */
footer {
  text-align: center;
  padding: 25px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  font-size: 0.95rem;
  animation: fadeIn 1s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
footer a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #38bdf8;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* 📱 Responsive */
@media (max-width: 700px) {
  .team-container { gap: 20px; }
  .member { flex: 0 0 170px; }
  .member img { width: 100px; height: 100px; }
}

#learn-more {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      background-image: linear-gradient(180deg, #0f1724, #071028),
                        linear-gradient(90deg, #00c3ff, #007bff);
      background-origin: border-box;
      background-clip: padding-box, border-box;
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      padding: 60px 20px;
      max-width: 1100px;
      margin: 60px auto;
    }

    #learn-more:hover {
      box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
      transform: translateY(-5px);
    }

    /* Read More Button */
    .read-more-btn {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(90deg, #06b6d4, #2563eb);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .read-more-btn:hover {
      transform: scale(1.08);
      background: linear-gradient(90deg, #0ea5e9, #3b82f6);
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
      text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    }
