/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

header {
  background-color: #000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-light {
  background-color: #000 !important;
}

.navbar-light .navbar-brand,
.navbar-light .nav-link {
  color: #fff !important;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
  color: #bbb !important;
}

.navbar-light .navbar-toggler {
  border-color: #fff !important;
  color: #fff !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  border-bottom: 1px solid #ddd;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  width: 250px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #000;
}

.social-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-links a:hover {
  color: #fff;
  background-color: #000;
}

ul {
  list-style: disc inside;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
}

blockquote {
  max-width: 600px;
  margin: 1rem auto;
  font-style: italic;
  color: #444;
  border-left: 4px solid #000;
  padding-left: 1rem;
  background-color: #fafafa;
  border-radius: 4px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 700;
  color: #000;
}

input, textarea {
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
  background-color: #fff;
  color: #000;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 5px #000;
}

button {
  background-color: #000;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #333;
}

.service-templates {
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-templates h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
  text-align: center;
}

.template-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.template-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 160px;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.template-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-title {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  nav {
    position: relative;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #000;
    position: absolute;
    top: 3.5rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
  }
}

#menu-toggle {
  display: none;
}

/* Our Services Section Styles */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 3rem 1rem;
  border-radius: 12px;
}

.contact-section h2,
.contact-section p {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-container {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info {
  flex: 1 1 300px;
  padding: 1rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.contact-info ul li {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  flex: 1 1 300px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
  outline: none;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background: white;
  padding: 0 0.25rem;
  color: #666;
  font-weight: 600;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: #667eea;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

.service-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.4);
  padding: 2rem 2.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  width: 240px;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 28px rgba(118, 75, 162, 0.6);
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: #fff;
}

.service-icon {
  stroke: #fff;
  width: 48px;
  height: 48px;
  transition: stroke 0.4s ease;
}

.service-card:hover .service-icon {
  stroke: #ffd700;
}

/* Why Choose Us Section Styles */
.choose-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.choose-us-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  width: 280px;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.choose-us-card:hover {
  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
  transform: translateY(-8px);
}

.choose-us-icon {
  stroke: #667eea;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

.choose-us-card:hover .choose-us-icon {
  stroke: #764ba2;
}
