body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    color: #ffffff;
    background-image: url(images/a.jpg);
    padding: 150px;
    text-align: center;
}

header img {width: 100px;}




.tagline {
    font-size: 1.1em;
    margin-top: 5px;
}
.hero {
    background-image: url(); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .hero-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  .btn-primary {
    background-color: #0077b6;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #005f87;
  }
  
  .btn-secondary {
    background-color: #ffffff;
    color: #0077b6;
  }
  
  .btn-secondary:hover {
    background-color: #e0e0e0;
  }
  
  /* Smooth scroll */
  html {
    scroll-behavior: smooth;
  }
  
.contact-info,
.services,
.gallery,
.contact-form {
    padding: 20px;
    background: whitesmoke;
    margin: 20px;
    border-radius: 10px;
}

.contact-info h2,
.services h2,
.gallery h2,
.contact-form h2 {
    color: #0077b6;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 10px 0;
    font-size: 1.1em;
}

ul li i {
    margin-right: 10px;
    color: #0077b6;
}

.gallery-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.slider {
    height:250px ;
    margin-left: 60px;
    position: relative;
     width: 1250px;
    display:grid ;
    place-items:center ;
    overflow: hidden;
   

}

.slide-track {
    display: flex;
    width: calc(250px * 80) ;
animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9));
    }
}

.slide {
    height: 200px; ;
    width: 250px; ;
    display:flex ;
    align-items:center ;
    padding: 15px; ;
}

.inline .slider .slide-track .slide img {
    width:100% ;
    border-radius: 8px;
}
.inline {
    display: inline-block;
}


.all-flex {
    display: flex;
}

/* Footer styles were incorrectly nested — now properly placed */
footer {
    background: #222;
    color: white;
    padding: 40px 20px;
}

.site-footer {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
}

.footer-content h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
}

.footer-content p,
.footer-content li {
    margin: 6px 0;
    font-size: 14px;
}

.contact-info {
    color: #1e1e1e;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-form input,
.footer-form textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 100%;
    
}

.footer-form button {
    background-color: #3498db;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 50%;
    margin-right: 10%;
}

.footer-form button:hover {
    background-color: black;
}

button {
    padding: 8px;
}


body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  

  

    .hero-services {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
  }
  
  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
  }
  
  .service-item {
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .product-form {
    margin-top: 10px;
  }
  
  .product-form select,
  .product-form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .product-form button {
    width: 100%;
    background-color: #0077b6;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  .product-form button:hover {
    background-color: #005f8d;
  }
  
  .confirmation-message {
    background-color: #28a745;
    color: white;
    padding: 15px;
    margin: 20px;
    text-align: center;
    border-radius: 5px;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  .nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .nav-links {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 1);
  }
  .nav-links:hover {
    
    transform: translateY(-2px);
  }
  .nav-links:active {
    
    transform: translateY(0);
  }
 a button.btn-login {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

a button.btn-login:hover {
    background-color: #0056b3;
}
