@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1c2331;
  color: #555252;
}

header {
  display: none;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  display: block;
  margin: 0 auto;
}

#hero {
  text-align: center;
  padding: 100px 20px 60px;
  background-color: #1c2331;
  color: #fff;
  position: relative;
  width: 100%;
  z-index: 1;
}

#hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
}

#hero p {
  font-size: 1.2rem;
  font-weight: 300;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: -50px auto 0;
  background: #fff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #fff;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #1c2331;
  color: #fff;
}

.tab-navigation {
  background-color: #1c2331;
  padding: 0 20px 30px;
  position: relative;
  z-index: 2;
}

.tab-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: none;
  margin-bottom: 0;
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.tab-button:hover {
  opacity: 1;
}

.tab-button.active {
  color: #fff;
  opacity: 1;
  border-bottom: 4px solid #357af1;
}

.tab-content {
  background-color: #fff;
  min-height: 500px;
  margin-top: -50px;
  padding: 40px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.tab-pane.active {
  display: block;
}

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

.social-links a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1c2331;
  box-shadow: 0 0 5px rgba(28, 35, 49, 0.2);
}

.submit-btn {
  background-color: #1c2331;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2c3545;
}

/* Add loading and success/error states */
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}