/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  background-color: #0f172a;
  color: #e2e8f0;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background: #1e293b;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  height: 100vh;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.sidebar img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.sidebar h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #facc15;
}

.sidebar p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #94a3b8;
}

.sidebar .info {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.sidebar .info span {
  color: #facc15;
}

/* Main */
.main {
  margin-left: 260px;
  padding: 2rem;
  width: 100%;
}

/* Navbar */
nav {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #334155;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #facc15;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

section h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #facc15;
}

section p {
  max-width: 700px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: #1e293b;
  padding: 1.2rem;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #facc15;
}

/* Contact Section */
.map {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  background: #1e293b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: #facc15;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #1e293b;
  outline: 2px solid #facc15;
  transform: scale(1.01);
}

.contact-form input[type="file"] {
  background: transparent;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: #facc15;
  color: #1e293b;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
  margin-top: 3rem;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
