/*-----------------------------------*\

  #navbar styling 

\*-----------------------------------*/


.header {
background-color: white;
}

.nav-open-btn {

  color: black;

  font-size: 30px;

  padding: 4px;

}


.navbar-link {

    color: var(--st-patricks-blue);/* Set the color to black */

  }

  

  .logo {

    color: var(--st-patricks-blue); /* Set the color to black */

    float: left; /* Align the title to the left */

    margin-right: 20px; /* Adjust the spacing between the title and the navigation */

  }

  

  /* Optionally, you can change the color of the links on hover */

  .navbar-link:hover {

    color:lightgreen; /* Darken the color on hover */
    transition: 0.2s;

  }

 

/*-----------------------------------*\

  #PRODUCT

\*-----------------------------------*/



.service-list {

    display: grid;

    gap: 30px;

    

  }

  

  

  .service-card {

    padding: 60px;

    height: 800px; 

    box-shadow: var(--shadow);

    border-radius: var(--radius-12);

    text-align: center; 

    grid-template-columns: 1fr 1fr;

  }

  

  

  .service-card li {

    margin-bottom: 10px; /* Adjust the spacing as needed */

  }

  .service-card li:hover {

    color: var(--winter-sky_50); /* Adjust the color as needed */

  }

  .service-card .card-icon {

    background-image: url("../images/pblogo.png");

    background-repeat: no-repeat;

    background-size: contain;

    background-color: transparent;

    max-width: 165px;

    display: grid;

    place-content: center;

    margin-inline: auto;

    aspect-ratio: 1 / 1;

    transition: var(--transition-1);

  }

  

  .service-card:hover .card-icon {
    background-image: none;
    background-color: transparent;
    transform: scale(1.3);
  }

  

  .service-card .card-icon ion-icon {

    font-size: 8rem;

    color: transparent;

    --ionicon-stroke-width: 20px;

    transition: var(--transition-1);

  }

  

  .service-card:hover .card-icon ion-icon { 
    color:red;
    transition: 0.3s;
    /* text-shadow:  -1px 3px 5px grey; */
   }

  

  .service-card .title {

    margin-block-end: 15px;

  }
  
  /* a1:hover {
    color: rgb(0, 0, 0);
    text-decoration: underline;
    transform: scale(1.1);
    
  } */

  a:hover {
    font-weight: bold;
    color: lightgreen;
    transition: 0.2s;
    text-decoration: underline;
    transform: scale(1.1);
    
  }

  .service-card .text {

    text-align: center;

    margin-block-end: 20px;

  }

  

  .service-card .card-btn {

    margin-inline: auto;

    padding: 15px;

    border: 1px solid var(--winter-sky);

    border-radius: 50%;

    color: var(--winter-sky);

    transition: var(--transition-1);

  }

  

  .service-card .card-btn:is(:hover, :focus) {

    color: var(--white);

    background-color: var(--winter-sky);

  }

  

  