.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0px;
}

.logo {
  height: 65px;
  width: auto;
}

body {
    background-image: url("images/brickwall.png");
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px ;
  }
  
  header {
    background-color: #494b8f;
    color: white;
    padding: 20px 0;
    
  }
  
  header h1 {
    margin: 0;
    padding-left: 20px;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
    padding-right: 20px;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: white;
    font-weight: bold;
  }
  
  .hero {
    background-color: #eee;
    text-align: center;
    padding: 80px 20px;
  }
  
  .welcome, .featured-products {
    padding: 40px 20px;
    background-color: transparent;
  }
  
  h2, h3 {
    color: #494b8f;
  }
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-top: 30px;
  }
  
  .product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .product-card h4 {
    margin-top: 15px;
    color: #494b8f;
  }
  
  .button, .button-outline {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: 0.3s ease;
    
  }
  
  .button {
    background-color: #494b8f;
    color: white;
    border: none;
  }
  
  .button:hover {
    background-color: #494b8f;
  }
  
  .button-outline {
    border: 2px solid #494b8f;
    color: #494b8f;
    background-color: transparent;
    margin-left: 10px;
  }
  
  .button-outline:hover {
    background-color: #494b8f;
    color: white;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-details {
    margin-top: 30px;
    text-align: center;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
  }
  .whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.whatsapp-bubble {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 10px 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.whatsapp-bubble img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
}

.whatsapp-bubble:hover {
  background-color: #20b558;
}
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  nav ul {
    flex-direction: column;
    background-color: #494b8f;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    text-align: center;
    margin: 15px 0;
  }
}

