/* Global styles */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #1e3a8a, #3b82f6, #0d4f8b);
  color: white;
  margin: 0;
  padding: 0;
}

h1, h2, p {
  margin: 0;
  padding: 0;
}

/* Navbar styles */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.navbar-links {
  display: flex;
  gap: 15px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
}

.navbar-toggle {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
}

/* Main content */
.main-content {
  margin-top: 80px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card-container {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.card-container:hover {
  transform: scale(1.05);
}

.card-header {
  position: relative;
}

.hero-banner {
  height: 200px;
  background-image: url('https://wallpapercave.com/wp/wp9482497.jpg');
  background-size: cover;
  background-position: center;
}

.profile-container {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
}

.card-body {
  padding: 40px 20px;
}

.name {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.title {
  font-size: 1.25rem;
  color: #3b82f6;
}

.contact-info {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: #3b82f6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-link {
  background-color: #3b82f6;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #2563eb;
}

.about {
  text-align: center;
  margin-top: 20px;
}

.about-text {
  background-color: #e0f2fe;
  color: #3b82f6;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: medium;
  display: inline-block;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .card-container {
    width: 90%;
    margin: 0 auto;
  }

  .profile-image {
    width: 80px;
    height: 80px;
  }

  .card-body {
    padding: 20px;
  }
}
