/* Our Services section*/

/.services-button {
  background-color: #28a745; /* Green background */
  color: #fff; /* White text */
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px; /* Space between text and arrow */
  margin-top: 20px; /* Space above the button */
}

.services-button:hover {
  background-color: #304971!important; /* Darker green on hover */
  transform: translateY(-2px); /* Lift button on hover */
}

.services-button .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.services-button:hover .arrow {
  transform: translateX(5px); /* Move arrow to the right on hover */
}

/* Vertical Carousel */
.vertical-carousel {
  height: 400px; /* Fixed height for the list */
  overflow-y: auto; /* Enable vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
  padding-right: 10px; /* Add padding to avoid overlap with scrollbar */
}

/* Custom Scrollbar */
.vertical-carousel::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.vertical-carousel::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track color */
  border-radius: 10px;
}

.vertical-carousel::-webkit-scrollbar-thumb {
  background: #0098da; /* Logo Sky Blue  scrollbar thumb */
  border-radius: 10px;
}

.vertical-carousel::-webkit-scrollbar-thumb:hover {
  background: #0098da; /* Darker green on hover */
}

/* Service Cards */
.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px; /* Space between cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card .card-img {
  width: 120px; /* Image width */
  height: 120px; /* Image height */
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px; /* Space between image and content */
}

.service-card .card-content {
  flex: 1; /* Allow content to take remaining space */
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.services-button {
    padding:10px; /* Smaller padding */
    background-color: #304971; /*Logo blue -color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em; /* Smaller font size */
   
    margin: 10px 0; /* Margin for spacing */
    transition: background-color 0.3s ease; /* Smooth hover transition */
    text-decoration: none; /* Remove underline if it's a link */
    display: inline-block; /* Ensure it behaves like a button */
    text-align: center; /* Center text inside the button */
}

.services-button:hover {
    background-color: #218838; /* Darker green on hover */
}



.services h1 {
    font-size: 4em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3em;
}


.services .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}



/* Services Section CSS Ends */