/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }

body {
    background-color: #fff;
}

.services-title{
    text-align: center;
    /* padding-bottom: 60px; */
    position: relative;
    margin-top: 30px; /* Adds space after header */
    padding: 10px 20px; /* Adjust spacing */
    
   
    visibility: visible;
}


.services-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .services-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}




.service-card {
    border: 1px solid #f07f1f; 
    border-radius: 0; /* Square edges */
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease-in-out;
    min-height: 100%; /* Ensures even height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);    

   
}

.service-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    background: #ffdbbd; 
}
/* .service-card:hover {
    background: #e3f2fd; 
    transform: translateY(-5px);
} */

.service-icon {
    font-size: 40px;
    color: #f07f1f;
    
}

.service-icon img[src*="17-removebg.png"] {
    width: 75px; 
    height: auto;
  }
  
.service-icon img {
    width: 60px;  
    height: 60px; 
    object-fit: contain; 
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: auto;
}

.specific-title{
    font-size: 17px;
}

.service-text {
    font-size: 14px;
    color: #333;
    flex-grow: 1;
    font-family: 'Roboto',sans-serif;
    margin-top: 10px;
}

.service-section p {
    font-size: 18px; /* Adjust as needed */
    line-height: 1.6;
    font-weight: 400;
    /* font-family: var(--default-font); */
    font-family: 'Roboto', sans-serif;
  }
  .service-section .col-lg-7 {
    padding-top: 40px; /* Moves text down */
  }

  .service-section {
    margin-top: 140px; /* Adds space after header */
    padding: 50px 20px; /* Adjust spacing */
    text-align: center;
    visibility: visible;
}

.colored-icon{
    filter: sepia(100%) saturate(500%) hue-rotate(10deg);
}

.neuro-title {
    white-space: nowrap;  /* Prevents line break */
    display: inline-block; /* Ensures proper spacing */
}
.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
}

.text-center h5, 
.text-center h6 {
    line-height: 1.6; /* Adjust this value for more or less spacing */
}

.text-center h6{
    font-size: 12.5px;
}

@media screen and (max-width: 768px) {
    .service-section .col-lg-7 {
        padding-top: 0px; /* Moves text down */
        padding-bottom: 20px;
      }
}
  
 
  