

/* Reset some default styles */
body, h2, p, form {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;}
body a {
    text-decoration: none;
    color: #fff;}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #afa6a6;
    color: #fff;
    padding: 10px 0;
}
#header_image{
    position:relative;
    height: 800px;
    width: 100%;
}


/* Contact section styles */

.contact-section {
    padding: 40px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ab2020;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #555;
}
#whatsapp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Ensure the logo is on top of other elements */
  }
  
  #whatsapp-link img {
    width: 100px; /* Adjust the size of the logo as needed */
    height: 100px; /* Adjust the size of the logo as needed */

    border-radius: 70%; /* Makes the logo circular */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
  }

  #barcode_image {
    position: fixed;
    bottom: 30px;
    right: 160px;
    z-index: 9999;
    width: 100px;
    height:100px;
  }


/* Footer styles */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

/* Media queries */
@media screen and (max-width: 768px) {
    

    .contact-form {
        max-width: 100%;
        padding: 20px;
    }
}

#msg{
    color: #00ff26;
    margin-top: 10px;
    display: block;
}