/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f9f9f9;
    color: #333;
  }
  
  header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #f39c12;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  .hero {
    background: url('tailor-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in-out;
  }
  
  .cta {
    background: #f39c12;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .cta:hover {
    background: #e67e22;
  }
  
  .services, .about, .contact {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .services h2, .about h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 10px;
  }
  
  .about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .contact input, .contact textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact button {
    background: #f39c12;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .contact button:hover {
    background: #e67e22;
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
  }
  
  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #f39c12;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
  
    nav ul.active {
      display: flex;
    }
  
    .card {
      width: 100%;
    }
  }
  /* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
}

.hero-images {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-images img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-images img:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero-images {
    flex-direction: column;
    align-items: center;
  }

  .hero-images img {
    width: 100%;
    height: 300px;
  }
}

/* Contact Info */
.contact-info {
  text-align: center;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.contact-info i {
  margin-right: 10px;
  color: #f39c12;
}

/* Footer Info */
.footer-info {
  text-align: center;
  margin: 10px 0;
}

.footer-info p {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-info i {
  margin-right: 10px;
  color: #f39c12;
}