/* style.css - Professional Black & White Theme */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #aaaaaa;
}

/* Buttons */
.btn {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
  border-radius: 40px;
  cursor: pointer;
}

.btn:hover {
  background: white;
  color: black;
}

/* Sections */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #111;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Cards Grid */
.services-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-card, .team-card {
  background: #0f0f0f;
  padding: 30px 20px;
  width: 280px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.service-card:hover, .team-card:hover {
  transform: translateY(-5px);
  background: #141414;
}

/* Forms */
input, textarea, select {
  width: 80%;
  max-width: 500px;
  padding: 12px;
  margin: 10px auto;
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  display: block;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #666;
}

/* Footer */
footer {
  background: #050505;
  padding: 50px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-column p, .footer-column a {
  color: #aaaaaa;
  text-decoration: none;
  line-height: 1.8;
}

.footer-column a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #1a1a1a;
  color: #777;
  font-size: 0.9rem;
}

/* Two Columns Layout */
.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: left;
}

.info-box {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  border: 1px solid #222;
}

.info-box ul {
  list-style: none;
}

.info-box li {
  margin: 12px 0;
  color: #cccccc;
}

/* Responsive */
@media (max-width: 800px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }
  .section h2 {
    font-size: 1.8rem;
  }
  .section {
    padding: 50px 20px;
  }
  input, textarea {
    width: 95%;
  }
}