.image-section {
    background-color: #ecf3fd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    overflow: hidden; 
  }
  
  .image-section img {
    max-width:  100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px;
  }
  
.homepage-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f7f7f7;
  }
  
  .homepage-section:nth-child(odd) {
    background-color: #ffffff;
  }
  
  .homepage-section .homepage-text-container {
    flex: 1;
    margin-right: 20px;
  }
  
  .homepage-section .homepage-image-container {
    flex: 1;
    text-align: center;
  }
  
  .homepage-hours {
    color: #0355cc;
  }
  
  .homepage-section img {
    width: 70%;
    height: 50%;
  }
  
  .homepage-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .homepage-section p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding: 0,0,0,0;
  }
  
  .homepage-section .btn {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
  }

  .tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 60px;
    padding: 50px;
  }

  .tile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .tile:hover {
    transform: translateY(-5px);
  }
  
  .tile-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .tile-text {
    padding: 8px;
  }
  
  .tile-text h4 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .tile-text p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  
  .buttons {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
  }
  
  
  .btn {
    padding: 5px 5px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
  }
  
  .btn-primary {
    background-color: #007BFF;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .btn-secondary {
    background-color: #28a745;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #218838;
  }
  
  
  .whysection{
    padding: 3%;
  }
  .whychooseus h2{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2%;
    font-weight: bold;
    color: #333;

  }
  .whychooseus p{
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
  }

  .brand-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #f0f0f0;
    padding: 20px;
  }
  
  .brand-logo {
    max-width: 100%;
    height: auto;
  }
  
  .banner {
    background-color: #0355cc;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.5;
  }
  
  .banner-content .btn {
    display: inline-block;
    background-color: #f7b500;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .banner-content .btn:hover {
    background-color: #e6a000;
  }
  .appliance-repair-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f7f7f7;
    gap: 20px;
  }
  
  .appliance-repair-section:nth-child(odd) {
    background-color: #f7f7f7;
  }
  
  .appliance-repair-section .repair-content {
    flex: 1;
  }
  
  .appliance-repair-section .repair-image {
    flex: 1;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .appliance-repair-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0355cc;
  }
  
  .appliance-repair-section p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .appliance-repair-section strong {
    color: #0355cc;
    font-weight: bold;
  }
  
  @media (max-width: 450px) {
    .image-section {
        padding: 30px 0;
        height: 300px;
      }
    
      .image-section img {
        max-width: 90%;
        height: 150%;
    }
    .homepage-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .homepage-section img {
      width: 100%;
      height: auto;
    }
  
    .homepage-text-container h2 {
      padding-top: 20px;
      font-size: 2rem;
    }
    .homepage-text-container p {
      font-size: 1.2rem;
    }
    .tiles-container {
      grid-template-columns: 1fr;
      padding: 10px;
    }
  
    .tile-text h4 {
      font-size: 0.9rem;
    }
  
    .tile-text p {
      font-size: 1rem;
    }
  
    .whychooseus h2 {
      font-size: 2rem;
    }
  
    .whychooseus p {
      font-size: 1.3rem;
    }
  
    .brand-logo-section {
      flex-direction: column;
      height: auto;
    }
    .banner-content h2 {
      font-size: 1.8rem;
    }
  
    .banner-content .btn {
      font-size: 0.9rem;
    }
  
    .appliance-repair-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .appliance-repair-section .repair-image {
      width: 100%;
      max-width: 100%;
    }
  
    .appliance-repair-section h2 {
      font-size: 2.5rem;
    }
  
    .appliance-repair-section p {
      font-size: 1.5rem;
    }
    .detail-box a {
      margin-left: 70px;
    }
  }
  