/* ------------------- CONTACT PAGE ------------------- */

.contact-card h2 {
  text-align: center;
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 8px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00ffff88;
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: 20px auto;
  text-align: left;
}

.contact-info p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 8px;
}

.contact-info a {
  color: #00ffff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: rgba(0, 255, 255, 0.15);
  transform: scale(1.1);
}

.social-links img {
  width: 26px;
  height: 26px;
  filter: invert(1) drop-shadow(0 0 3px #00fff7aa);
}

.message-note {
  margin-top: 30px;
  font-style: italic;
  color: #cccccc;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-info {
    padding: 12px 15px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  min-height: 100vh;
  padding: 20px;
}

/* Glass Card Styling */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}

/* Header */
.header-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #ffffffcc;
  margin: 0 10px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #ffffff22;
  color: #fff;
}
