/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Body Style */

body {
    background-color: rgb(255, 255, 255);
    color: #000;
    line-height: 1.6;
}

.header {
    text-align: center;
    background-color: rgb(0, 0, 0);
    padding: 16px 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    color: #ffffff;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    background-color: #fefefe;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Hero Section */
  .hero {
    background: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background-color: #FF0000;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #CC0000;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 0;
    text-align: center;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-card {
    background-color: #000000;
    background: cover;
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .service-card img {
    width: 340px;
    height: 400px;
    margin-left: -10px;
    object-fit: cover;
    border-radius: 4px;
}
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  /* Portfolio Section */
  .portfolio {
    padding: 4rem 0;
    text-align: center;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .portfolio-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 0;
    text-align: center;
  }
  
  .contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
  }
  
  .contact-form {
    flex: 1;
    margin-right: 2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-info {
    flex: 1;
    text-align: left;
  }
  
  /* Footer */
  .footer {
    background-color: #000;
    padding: 2rem 0;
    text-align: center;
  }
  
  .footer-logo img {
    width: 100px;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
  }
  
  .footer-social img {
    width: 30px;
    margin: 0 0.5rem;
  }