
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #b922e7;
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  .header h1 {
    font-size: 2.5em;
    font-weight: bold;
  }
  
  /* Shop Now Button */
  .shop-now {
    text-align: center;
    margin: 30px 0;
  }
  
  .shop-link {
    display: inline-block;
    background-color: #f1070e;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .shop-link:hover {
    background-color: #080ce6;
  }
  
  /* Content Section (Horizontal Alignment) */
  .content-horizontal {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }
  
  .about, .contact {
    background-color: #e9ec3f;
    width: 45%; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
     position: relative;
     color: #fff; /* Ensure text is readable on background */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s ease;
  }
  .about{
    background: url('images/container-bg1.jpg') no-repeat center center/cover; /* Background image for the container */
  }
  .contact{
    background: url('images/container-bg2.jpg') no-repeat center center/cover; /* Background image for the container */
  }
  .about::before, .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to ensure text readability */
    z-index: 1;
  }

  /**add */
  .about h2, .contact h2, .about p, .contact p, .contact ul, .contact li {
    position: relative;
    z-index: 2; /* Ensure text is above the overlay */
  }
  
  .about:hover, .contact:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }
    /**/  
  
  .about h2, .contact h2 {
    font-size: 1.8em;
    color: #ff5a5f;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .about p, .contact p, .contact ul {
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
  }
  
  .contact ul {
    list-style: none;
  }
  
  .contact ul li {
    margin-bottom: 8px;
  }
  
  /* Footer */
  .footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top: 134px;
  }
  
  .footer p {
    font-size: 0.9em;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about, .contact {
      width: 100%; /* Stack sections vertically on smaller screens */
    }
  }
  