/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #333;
    color: #fff;
  }
  
  header img {
    width: 50px;
  }
  
  header nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  header nav a:hover {
    color: #ff6b6b;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #e63946;
  }
  
  /* Services Section */
  .services {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background: #fff;
  }
  
  .service {
    text-align: center;
    max-width: 300px;
  }
  
  .service img {
    width: 80px;
    margin-bottom: 10px;
  }
  
  /* About Section */
  .about {
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background: #f3f3f3;
  }
  
  .about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }
  
  /* Portfolio */
  .portfolio {
    padding: 60px 20px;
    background: #fff;
  }
  
  .portfolio h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .portfolio-item {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .portfolio-item img {
    width: 100%;
    display: block;
  }
  
  .portfolio-item:hover {
    transform: scale(1.05);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }

  .testimonials {
    text-align: center;
    padding: 2rem 0;
    background-color: #f9f9f9;
}
.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 1rem;
}
.testimonial-item blockquote {
    font-style: italic;
    color: #555;
}
.testimonial-item cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #333;
}

.contact {
    padding: 2rem;
    background-color: #f1f1f1;
}
.contact form {
    max-width: 500px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.cta-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}
.social-links {
    margin-top: 1rem;
    text-align: center;
}
.social-links a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
  }
  
  footer a {
    color: #ff6b6b;
    text-decoration: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
    }
  
    .about {
      flex-direction: column;
    }
  
    .services {
      flex-direction: column;
      gap: 20px;
    }
  }
  