.slider {
    width: 960px;
    height: 316px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    border-radius: 4px;
    background: #000;
  }

  .slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
  }

  .slides img {
    width: 960px;
    height: 316px;
    object-fit: cover;
    flex-shrink: 0;
  }

  @keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(0); }

    36% { transform: translateX(-960px); }
    66% { transform: translateX(-960px); }

    69% { transform: translateX(-1920px); }
    100% { transform: translateX(-1920px); }
  }
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image:url(images/bg_1.png); background-repeat:repeat-x;
}


.scroll-wrapper {
    width: 960px;
    height: 200px;
    overflow: hidden;
    margin: 20px auto;
    background: #ffffff;
    border: 1px solid #ddd;
  }

  .scroll-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 25s linear infinite;
  }

  .scroll-track img {
    width: 230px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-1000px);
    }
  }

  .mar1{
    margin-left: 20px;
  }

  .container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
  }

  h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }

  .gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
  }

  .lightbox:target {
    display: flex;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
  }


  .contact-wrapper {
    max-width: 960px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .contact-title {
    font-size: 26px;
    color: #0a5fa5;
    margin-bottom: 8px;
  }

  .contact-subtitle {
    color: #555;
    margin-bottom: 25px;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }

  .contact-form textarea {
    grid-column: span 2;
    resize: none;
    height: 120px;
  }

  .contact-form button {
    grid-column: span 2;
    background: #0a5fa5;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }

  .contact-form button:hover {
    background: #084c86;
  }

  @media(max-width: 768px) {
    .contact-form {
      grid-template-columns: 1fr;
    }
    .contact-form textarea,
    .contact-form button {
      grid-column: span 1;
    }
  }