/* style.css */

/* 🔹 Reset and basic setup */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 🔹 Topbar */
.topbar {
  background-color: #eaf3ff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #003366;
}
.topbar a {
  margin-right: 15px;
  color: #003366;
  transition: color 0.3s;
}
.topbar a:hover {
  color: #0056b3;
}
.social-icons a {
  margin-left: 10px;
  font-size: 16px;
}

/* 🔹 Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9fbff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}
.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* 🔹 Navigation */
.navbar a {
  margin-left: 20px;
  font-weight: 500;
  color: #005fa3;
}
.navbar a:hover {
  color: #003366;
}

/* 🔹Biddle Body */
/* All styles scoped within #contact-page to avoid conflict */

#contact-page .hero {
  background: url('https://source.unsplash.com/1600x600/?contact,technology') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#contact-page .hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 50px;
  border-radius: 10px;
  color: white;
}

#contact-page .hero-content h1 {
  font-size: 36px;
}

#contact-page .hero-content p {
  margin-top: 10px;
  font-size: 18px;
}

#contact-page .contact-section {
  padding: 50px 20px;
  background-color: #f0f0f0;
}

#contact-page .contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media(min-width: 768px) {
  #contact-page .contact-container {
    flex-direction: row;
  }
}

#contact-page .contact-info {
  background: linear-gradient(135deg, #1e3a8a, #6d28d9);
  color: white;
  padding: 30px;
  border-radius: 15px;
  flex: 1;
}

#contact-page .contact-info h2 {
  margin-bottom: 20px;
  color: #facc15;
  font-size: 24px;
}

#contact-page .contact-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

#contact-page .profile {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

#contact-page .profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #facc15;
}

#contact-page .profile-text h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

#contact-page .contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  flex: 1;
}

#contact-page .contact-form h2 {
  margin-bottom: 20px;
  color: #1e3a8a;
  font-size: 24px;
}

#contact-page .contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

#contact-page .contact-form input,
#contact-page .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease;
  font-size: 14px;
}

#contact-page .contact-form input:focus,
#contact-page .contact-form textarea:focus {
  border-color: #1e3a8a;
}

#contact-page .contact-form button {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #1e3a8a;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#contact-page .contact-form button:hover {
  background-color: #1e40af;
}





/* 🔹 Footer */
.footer {
  background-color: #f9fbff;
  padding: 10px 05px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.footer .social-icons a {
  margin: 0 10px;
  font-size: 18px;
  color: #003366;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #0077cc;
}
.footer p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.footer a {
  color: #0077cc;
}
.footer a:hover {
  text-decoration: underline;
}
