body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px; /* Add some padding to keep content away from the edges */
  }
  
.head12 {
 font-size: 1.0em;
  background: maroon;
  padding-left: 20px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
  gap: 20px;
  text-align: center;  

  overflow: hidden;
  position: relative;
}

.head12 p {
  animation: slideLeft 3s linear infinite;
 /* white-space: nowrap;*/
 /*position: absolute;*/
  top: 0;
  right: 100%;
}

@keyframes slideLeft {
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }}




  header {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
/*
  .logo img {
    width: 150px;
    height: auto;
  }
  */
 .logo-container {
    width: 200px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
}

.logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




  nav ul {
    list-style-type: none;
    padding: 0;
  }
  
  nav li {
    display: inline-block;
    margin-right: 20px;
  }

  nav li a:hover {
    color: #0056b3; /* Change the text color of navigation links on hover */
  }
  
  .search-bar {
    display: flex;
    align-items: center;
  }
  
  .search-bar input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .search-bar button {
   /* background-color: #007bff;*/
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }

  .search-bar button img {
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
}  
.search-bar button:hover {
    background-color: #0056b3; /* Change the background color on hover */
  }

  

  /*---Image slide section starts here ----- -*/

  .back-button {
    margin: 20px;
}

.back-button a {
    text-decoration: none;
    color: white;
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button a:hover {
    background-color: #0056b3;
}





















 
  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    height: 500px; /* Set a fixed height for the slider */
    transition: transform 0.5s ease; /* Add transition for smooth animation */

  }
  
  .slide {
    flex: 0 0 100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%; /* Ensure the image fills the height of the slider */
    object-fit: cover; /* Maintain aspect ratio while covering the entire space */
  }
  
  .prev-btn,
  .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  


/* ------------ Our services starts here----*/

.heading {
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .service-groups {
    /*display: grid;*/
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Three columns with equal width */
    gap: 20px; /* Gap between columns */
  }
  
  .service-group {
    background-color: #32d623;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
  }

  .service-group:hover {
    transform: scale(1.05);
  }
  




  .service-group h2 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.5em;
    color: #f0f0f0;
  }
  
  .service-group p {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.0em;
    color: #f0f0f0;
  }
  
  .service-list {
    max-height: 200px; /* Set max height for scrollable list */
    overflow-y: auto; /* Enable vertical scrolling */
  }
  
  .service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .service-list ul li {
    margin-bottom: 10px;
  }
  
  .service-list ul li a {
    display: block;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .service-list ul li a:hover {
    background-color: #f0f0f0;
  }
  

